From dba7193605fa7f6ff3334b67ca8b98a4cd5d9ab5 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Sat, 8 Jun 2024 19:10:46 +0200 Subject: [PATCH] fix(core): update --- ts/00_commitinfo_data.ts | 2 +- ts/storage/index.ts | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 884190c..ef3b654 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@tsclass/tsclass', - version: '4.0.54', + version: '4.0.55', description: 'Provides TypeScript definitions for various business, financial, networking, content, and other common classes.' } diff --git a/ts/storage/index.ts b/ts/storage/index.ts index 3ec9e68..012df65 100644 --- a/ts/storage/index.ts +++ b/ts/storage/index.ts @@ -4,4 +4,12 @@ export interface IS3Descriptor { useSsl?: boolean; accessKey: string; accessSecret: string; + /** + * may be used to preselect a certain bucket + */ + bucketName?: string; + /** + * may be used to preselect a certain directory + */ + directoryPath?: string; }