fix(core): update

This commit is contained in:
Philipp Kunz 2024-05-17 19:09:00 +02:00
parent 72d1e1e5a2
commit 2cacfcf990
3 changed files with 6 additions and 4 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/smartbucket',
version: '3.0.0',
version: '3.0.1',
description: 'A TypeScript library for simple cloud independent object storage with support for buckets, directories, and files.'
}

View File

@ -96,14 +96,14 @@ export class Bucket {
.getObject(this.name, optionsArg.path)
.catch((e) => console.log(e));
const replaySubject = new plugins.smartrx.rxjs.ReplaySubject<Buffer>();
const duplexStream = new plugins.smartstream.SmartDuplex<Buffer, Buffer>({
const duplexStream = new plugins.smartstream.SmartDuplex<Buffer, void>({
writeFunction: async (chunk) => {
replaySubject.next(chunk);
return chunk;
return;
},
finalFunction: async (cb) => {
replaySubject.complete();
return Buffer.from('');
return;
}
});

View File

@ -71,6 +71,7 @@ export class Directory {
);
const fileArray: File[] = [];
const duplexStream = new plugins.smartstream.SmartDuplex<plugins.minio.BucketItem, void>({
objectMode: true,
writeFunction: async (bucketItem) => {
if (bucketItem.prefix) {
return;
@ -113,6 +114,7 @@ export class Directory {
);
const directoryArray: Directory[] = [];
const duplexStream = new plugins.smartstream.SmartDuplex<plugins.minio.BucketItem, void>({
objectMode: true,
writeFunction: async (bucketItem) => {
if (bucketItem.name) {
return;