From fc107509fff779781780da6dd53dc73d5149b9c3 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Mon, 6 Jun 2022 11:29:13 +0200 Subject: [PATCH] fix(core): update --- ts/00_commitinfo_data.ts | 2 +- ts/smartarchive.classes.smartarchive.ts | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index f827190..d51fee9 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@pushrocks/smartarchive', - version: '3.0.3', + version: '3.0.4', description: 'work with archives' } diff --git a/ts/smartarchive.classes.smartarchive.ts b/ts/smartarchive.classes.smartarchive.ts index f0e2d73..bcdceb1 100644 --- a/ts/smartarchive.classes.smartarchive.ts +++ b/ts/smartarchive.classes.smartarchive.ts @@ -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() {} }