Compare commits

..

2 Commits

Author SHA1 Message Date
277a3fff41 3.0.4 2022-06-06 11:29:13 +02:00
fc107509ff fix(core): update 2022-06-06 11:29:13 +02:00
4 changed files with 22 additions and 4 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "@pushrocks/smartarchive",
"version": "3.0.3",
"version": "3.0.4",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@pushrocks/smartarchive",
"version": "3.0.3",
"version": "3.0.4",
"license": "MIT",
"dependencies": {
"@pushrocks/smartfile": "^9.0.6",

View File

@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartarchive",
"version": "3.0.3",
"version": "3.0.4",
"description": "work with archives",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@pushrocks/smartarchive',
version: '3.0.3',
version: '3.0.4',
description: 'work with archives'
}

View File

@ -91,4 +91,22 @@ export class SmartArchive {
const replaySubject = this.extractArchiveFromBufferToObservable(response.body);
return replaySubject;
}
// TODO
public async extractArchiveFromUrlToStream() {}
// TODO
public async extractArchiveFromFsToStream() {}
// TODO
public async extractArchiveFromStreamToStream() {}
// TODO
public async packFromStreamToStream() {}
// TODO
public async packFromFsToStream() {}
// TODO
public async packFromFsToFs() {}
}