fix(core): update

This commit is contained in:
Philipp Kunz 2024-06-08 19:10:46 +02:00
parent 3cd02b61b3
commit dba7193605
2 changed files with 9 additions and 1 deletions

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@tsclass/tsclass', 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.' description: 'Provides TypeScript definitions for various business, financial, networking, content, and other common classes.'
} }

View File

@ -4,4 +4,12 @@ export interface IS3Descriptor {
useSsl?: boolean; useSsl?: boolean;
accessKey: string; accessKey: string;
accessSecret: string; accessSecret: string;
/**
* may be used to preselect a certain bucket
*/
bucketName?: string;
/**
* may be used to preselect a certain directory
*/
directoryPath?: string;
} }