- Rename from @lossless.zone/s3container to @lossless.zone/objectstorage - Replace @push.rocks/smarts3 with @push.rocks/smartstorage - Change env var prefix from S3_ to OBJST_ - Rename S3Container class to ObjectStorageContainer - Update web component prefix from s3c- to objst- - Update UI labels, CLI flags, documentation, and Docker config
15 lines
270 B
TypeScript
15 lines
270 B
TypeScript
export interface IObjectInfo {
|
|
key: string;
|
|
size: number;
|
|
lastModified: number;
|
|
etag: string;
|
|
contentType: string;
|
|
}
|
|
|
|
export interface IObjectListResult {
|
|
objects: IObjectInfo[];
|
|
commonPrefixes: string[];
|
|
isTruncated: boolean;
|
|
currentPrefix: string;
|
|
}
|