Files
tsview/ts/plugins.ts
Juergen Kunz a7ee9dff9f fix: implement S3 listBuckets to actually list buckets
- Add @aws-sdk/client-s3 dependency for direct S3 operations
- Fix listBuckets handler which was hardcoded to return empty array
- Now properly queries S3 and returns actual bucket names
2026-01-23 23:28:04 +00:00

50 lines
1.3 KiB
TypeScript

// node native
import * as path from 'path';
export { path };
// @push.rocks scope
import * as early from '@push.rocks/early';
early.start('tsview');
import * as npmextra from '@push.rocks/npmextra';
import * as smartbucket from '@push.rocks/smartbucket';
import * as smartcli from '@push.rocks/smartcli';
import * as smartdata from '@push.rocks/smartdata';
import * as smartfile from '@push.rocks/smartfile';
import * as smartlog from '@push.rocks/smartlog';
import * as smartlogDestinationLocal from '@push.rocks/smartlog-destination-local';
import * as smartnetwork from '@push.rocks/smartnetwork';
import * as smartopen from '@push.rocks/smartopen';
import * as smartpath from '@push.rocks/smartpath';
import * as smartpromise from '@push.rocks/smartpromise';
export {
early,
npmextra,
smartbucket,
smartcli,
smartdata,
smartfile,
smartlog,
smartlogDestinationLocal,
smartnetwork,
smartopen,
smartpath,
smartpromise,
};
// AWS S3 SDK for direct S3 operations
import * as s3 from '@aws-sdk/client-s3';
export { s3 };
// @api.global scope
import * as typedrequest from '@api.global/typedrequest';
import * as typedrequestInterfaces from '@api.global/typedrequest-interfaces';
import * as typedserver from '@api.global/typedserver';
export {
typedrequest,
typedrequestInterfaces,
typedserver,
};