feat(core): rebrand to @lossless.zone/objectstorage
- 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
This commit is contained in:
48
ts/plugins.ts
Normal file
48
ts/plugins.ts
Normal file
@@ -0,0 +1,48 @@
|
||||
import * as smartstorage from '@push.rocks/smartstorage';
|
||||
export { smartstorage };
|
||||
|
||||
import * as smartbucket from '@push.rocks/smartbucket';
|
||||
export { smartbucket };
|
||||
|
||||
import {
|
||||
S3Client,
|
||||
ListBucketsCommand,
|
||||
CreateBucketCommand,
|
||||
DeleteBucketCommand,
|
||||
ListObjectsV2Command,
|
||||
HeadObjectCommand,
|
||||
DeleteObjectCommand,
|
||||
GetObjectCommand,
|
||||
PutObjectCommand,
|
||||
CopyObjectCommand,
|
||||
GetBucketPolicyCommand,
|
||||
PutBucketPolicyCommand,
|
||||
DeleteBucketPolicyCommand,
|
||||
} from '@aws-sdk/client-s3';
|
||||
export {
|
||||
S3Client,
|
||||
ListBucketsCommand,
|
||||
CreateBucketCommand,
|
||||
DeleteBucketCommand,
|
||||
ListObjectsV2Command,
|
||||
HeadObjectCommand,
|
||||
DeleteObjectCommand,
|
||||
GetObjectCommand,
|
||||
PutObjectCommand,
|
||||
CopyObjectCommand,
|
||||
GetBucketPolicyCommand,
|
||||
PutBucketPolicyCommand,
|
||||
DeleteBucketPolicyCommand,
|
||||
};
|
||||
|
||||
import * as typedrequest from '@api.global/typedrequest';
|
||||
export { typedrequest };
|
||||
|
||||
import * as typedserver from '@api.global/typedserver';
|
||||
export { typedserver };
|
||||
|
||||
import * as smartguard from '@push.rocks/smartguard';
|
||||
export { smartguard };
|
||||
|
||||
import * as smartjwt from '@push.rocks/smartjwt';
|
||||
export { smartjwt };
|
||||
Reference in New Issue
Block a user