@socket.tech/dl-common 1.0.7-test.1 → 1.0.7-test.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/utils/test.d.ts +1 -0
- package/dist/utils/test.js +10 -0
- package/package.json +2 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const main: () => Promise<void>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.main = void 0;
|
|
4
|
+
const s3Service_1 = require("./s3Service");
|
|
5
|
+
const main = async () => {
|
|
6
|
+
let config = await (0, s3Service_1.getS3Config)("dev", "us-east-1", "ll");
|
|
7
|
+
console.log(config);
|
|
8
|
+
};
|
|
9
|
+
exports.main = main;
|
|
10
|
+
(0, exports.main)();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@socket.tech/dl-common",
|
|
3
|
-
"version": "1.0.7-test.
|
|
3
|
+
"version": "1.0.7-test.2",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"description": "common utilities for socket data layer.",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"@aws-sdk/client-eventbridge": "^3.449.0",
|
|
49
49
|
"@aws-sdk/client-kms": "^3.454.0",
|
|
50
|
-
"@aws-sdk/client-s3": "
|
|
50
|
+
"@aws-sdk/client-s3": "3.630.0",
|
|
51
51
|
"@aws-sdk/client-secrets-manager": "^3.433.0",
|
|
52
52
|
"@aws-sdk/client-sqs": "^3.421.0",
|
|
53
53
|
"@ethersproject/providers": "^5.7.2",
|