p6-cdk-namer 1.3.53 → 1.3.54
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/.jsii +3 -3
- package/lib/p6cdknamer.js +1 -1
- package/node_modules/@aws/lambda-invoke-store/README.md +8 -0
- package/node_modules/@aws/lambda-invoke-store/{dist → dist-cjs}/invoke-store.js +12 -36
- package/node_modules/@aws/lambda-invoke-store/dist-es/invoke-store.js +64 -0
- package/node_modules/@aws/lambda-invoke-store/{dist → dist-types}/invoke-store.d.ts +5 -0
- package/node_modules/@aws/lambda-invoke-store/package.json +26 -8
- package/node_modules/@aws-sdk/client-iam/node_modules/@aws-sdk/credential-provider-ini/package.json +4 -4
- package/node_modules/@aws-sdk/client-iam/node_modules/@aws-sdk/credential-provider-node/package.json +4 -4
- package/node_modules/@aws-sdk/client-iam/node_modules/@aws-sdk/credential-provider-sso/package.json +3 -3
- package/node_modules/@aws-sdk/client-iam/node_modules/@aws-sdk/credential-provider-web-identity/package.json +2 -2
- package/node_modules/@aws-sdk/client-iam/node_modules/@aws-sdk/middleware-recursion-detection/package.json +2 -2
- package/node_modules/@aws-sdk/client-iam/node_modules/@aws-sdk/nested-clients/package.json +2 -2
- package/node_modules/@aws-sdk/client-iam/package.json +3 -3
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/middleware-recursion-detection/package.json +2 -2
- package/node_modules/@aws-sdk/client-sso/package.json +2 -2
- package/node_modules/@aws-sdk/token-providers/node_modules/@aws-sdk/middleware-recursion-detection/package.json +2 -2
- package/node_modules/@aws-sdk/token-providers/node_modules/@aws-sdk/nested-clients/package.json +2 -2
- package/node_modules/@aws-sdk/token-providers/package.json +2 -2
- package/package.json +7 -7
package/.jsii
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
]
|
|
9
9
|
},
|
|
10
10
|
"bundled": {
|
|
11
|
-
"@aws-sdk/client-iam": "^3.
|
|
11
|
+
"@aws-sdk/client-iam": "^3.919.0",
|
|
12
12
|
"cdk-iam-floyd": "^0.728.0",
|
|
13
13
|
"winston": "^3.18.3"
|
|
14
14
|
},
|
|
@@ -4198,6 +4198,6 @@
|
|
|
4198
4198
|
"symbolId": "src/p6cdknamer:P6CDKNamer"
|
|
4199
4199
|
}
|
|
4200
4200
|
},
|
|
4201
|
-
"version": "1.3.
|
|
4202
|
-
"fingerprint": "
|
|
4201
|
+
"version": "1.3.54",
|
|
4202
|
+
"fingerprint": "IZ7bWhIvQarXii0wxRW1q3vLF7EcwS6683uJq30ZQlI="
|
|
4203
4203
|
}
|
package/lib/p6cdknamer.js
CHANGED
|
@@ -41,7 +41,7 @@ const lambdajs = __importStar(require("aws-cdk-lib/aws-lambda-nodejs"));
|
|
|
41
41
|
const cr = __importStar(require("aws-cdk-lib/custom-resources"));
|
|
42
42
|
const floyd = __importStar(require("cdk-iam-floyd"));
|
|
43
43
|
class P6CDKNamer extends cdk.Resource {
|
|
44
|
-
static [JSII_RTTI_SYMBOL_1] = { fqn: "p6-cdk-namer.P6CDKNamer", version: "1.3.
|
|
44
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "p6-cdk-namer.P6CDKNamer", version: "1.3.54" };
|
|
45
45
|
constructor(scope, id, props) {
|
|
46
46
|
super(scope, id);
|
|
47
47
|
const policy = new floyd.Statement.Iam().allow().toCreateAccountAlias();
|
|
@@ -99,6 +99,14 @@ Convenience method to get the current request ID.
|
|
|
99
99
|
const requestId = InvokeStore.getRequestId(); // Returns '-' if outside context
|
|
100
100
|
```
|
|
101
101
|
|
|
102
|
+
### InvokeStore.getTenantId()
|
|
103
|
+
|
|
104
|
+
Convenience method to get the tenant ID.
|
|
105
|
+
|
|
106
|
+
```typescript
|
|
107
|
+
const requestId = InvokeStore.getTenantId();
|
|
108
|
+
```
|
|
109
|
+
|
|
102
110
|
### InvokeStore.getXRayTraceId()
|
|
103
111
|
|
|
104
112
|
Convenience method to get the current [X-Ray trace ID](https://docs.aws.amazon.com/xray/latest/devguide/xray-concepts.html#xray-concepts-traces). This ID is used for distributed tracing across AWS services.
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
// AWS_LAMBDA_NODEJS_NO_GLOBAL_AWSLAMBDA provides an escape hatch since we're modifying the global object which may not be expected to a customer's handler.
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var async_hooks = require('async_hooks');
|
|
4
|
+
|
|
6
5
|
const noGlobalAwsLambda = process.env["AWS_LAMBDA_NODEJS_NO_GLOBAL_AWSLAMBDA"] === "1" ||
|
|
7
6
|
process.env["AWS_LAMBDA_NODEJS_NO_GLOBAL_AWSLAMBDA"] === "true";
|
|
8
7
|
if (!noGlobalAwsLambda) {
|
|
@@ -11,37 +10,21 @@ if (!noGlobalAwsLambda) {
|
|
|
11
10
|
const PROTECTED_KEYS = {
|
|
12
11
|
REQUEST_ID: Symbol("_AWS_LAMBDA_REQUEST_ID"),
|
|
13
12
|
X_RAY_TRACE_ID: Symbol("_AWS_LAMBDA_X_RAY_TRACE_ID"),
|
|
13
|
+
TENANT_ID: Symbol("_AWS_LAMBDA_TENANT_ID"),
|
|
14
14
|
};
|
|
15
|
-
/**
|
|
16
|
-
* InvokeStore implementation class
|
|
17
|
-
*/
|
|
18
15
|
class InvokeStoreImpl {
|
|
19
|
-
static storage = new
|
|
20
|
-
// Protected keys for Lambda context fields
|
|
16
|
+
static storage = new async_hooks.AsyncLocalStorage();
|
|
21
17
|
static PROTECTED_KEYS = PROTECTED_KEYS;
|
|
22
|
-
/**
|
|
23
|
-
* Initialize and run code within an invoke context
|
|
24
|
-
*/
|
|
25
18
|
static run(context, fn) {
|
|
26
19
|
return this.storage.run({ ...context }, fn);
|
|
27
20
|
}
|
|
28
|
-
/**
|
|
29
|
-
* Get the complete current context
|
|
30
|
-
*/
|
|
31
21
|
static getContext() {
|
|
32
22
|
return this.storage.getStore();
|
|
33
23
|
}
|
|
34
|
-
/**
|
|
35
|
-
* Get a specific value from the context by key
|
|
36
|
-
*/
|
|
37
24
|
static get(key) {
|
|
38
25
|
const context = this.storage.getStore();
|
|
39
26
|
return context?.[key];
|
|
40
27
|
}
|
|
41
|
-
/**
|
|
42
|
-
* Set a custom value in the current context
|
|
43
|
-
* Protected Lambda context fields cannot be overwritten
|
|
44
|
-
*/
|
|
45
28
|
static set(key, value) {
|
|
46
29
|
if (this.isProtectedKey(key)) {
|
|
47
30
|
throw new Error(`Cannot modify protected Lambda context field`);
|
|
@@ -51,27 +34,18 @@ class InvokeStoreImpl {
|
|
|
51
34
|
context[key] = value;
|
|
52
35
|
}
|
|
53
36
|
}
|
|
54
|
-
/**
|
|
55
|
-
* Get the current request ID
|
|
56
|
-
*/
|
|
57
37
|
static getRequestId() {
|
|
58
38
|
return this.get(this.PROTECTED_KEYS.REQUEST_ID) ?? "-";
|
|
59
39
|
}
|
|
60
|
-
/**
|
|
61
|
-
* Get the current X-ray trace ID
|
|
62
|
-
*/
|
|
63
40
|
static getXRayTraceId() {
|
|
64
41
|
return this.get(this.PROTECTED_KEYS.X_RAY_TRACE_ID);
|
|
65
42
|
}
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
43
|
+
static getTenantId() {
|
|
44
|
+
return this.get(this.PROTECTED_KEYS.TENANT_ID);
|
|
45
|
+
}
|
|
69
46
|
static hasContext() {
|
|
70
47
|
return this.storage.getStore() !== undefined;
|
|
71
48
|
}
|
|
72
|
-
/**
|
|
73
|
-
* Check if a key is protected (readonly Lambda context field)
|
|
74
|
-
*/
|
|
75
49
|
static isProtectedKey(key) {
|
|
76
50
|
return (key === this.PROTECTED_KEYS.REQUEST_ID ||
|
|
77
51
|
key === this.PROTECTED_KEYS.X_RAY_TRACE_ID);
|
|
@@ -87,4 +61,6 @@ else {
|
|
|
87
61
|
globalThis.awslambda.InvokeStore = instance;
|
|
88
62
|
}
|
|
89
63
|
}
|
|
90
|
-
|
|
64
|
+
const InvokeStore = instance;
|
|
65
|
+
|
|
66
|
+
exports.InvokeStore = InvokeStore;
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { AsyncLocalStorage } from 'async_hooks';
|
|
2
|
+
|
|
3
|
+
const noGlobalAwsLambda = process.env["AWS_LAMBDA_NODEJS_NO_GLOBAL_AWSLAMBDA"] === "1" ||
|
|
4
|
+
process.env["AWS_LAMBDA_NODEJS_NO_GLOBAL_AWSLAMBDA"] === "true";
|
|
5
|
+
if (!noGlobalAwsLambda) {
|
|
6
|
+
globalThis.awslambda = globalThis.awslambda || {};
|
|
7
|
+
}
|
|
8
|
+
const PROTECTED_KEYS = {
|
|
9
|
+
REQUEST_ID: Symbol("_AWS_LAMBDA_REQUEST_ID"),
|
|
10
|
+
X_RAY_TRACE_ID: Symbol("_AWS_LAMBDA_X_RAY_TRACE_ID"),
|
|
11
|
+
TENANT_ID: Symbol("_AWS_LAMBDA_TENANT_ID"),
|
|
12
|
+
};
|
|
13
|
+
class InvokeStoreImpl {
|
|
14
|
+
static storage = new AsyncLocalStorage();
|
|
15
|
+
static PROTECTED_KEYS = PROTECTED_KEYS;
|
|
16
|
+
static run(context, fn) {
|
|
17
|
+
return this.storage.run({ ...context }, fn);
|
|
18
|
+
}
|
|
19
|
+
static getContext() {
|
|
20
|
+
return this.storage.getStore();
|
|
21
|
+
}
|
|
22
|
+
static get(key) {
|
|
23
|
+
const context = this.storage.getStore();
|
|
24
|
+
return context?.[key];
|
|
25
|
+
}
|
|
26
|
+
static set(key, value) {
|
|
27
|
+
if (this.isProtectedKey(key)) {
|
|
28
|
+
throw new Error(`Cannot modify protected Lambda context field`);
|
|
29
|
+
}
|
|
30
|
+
const context = this.storage.getStore();
|
|
31
|
+
if (context) {
|
|
32
|
+
context[key] = value;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
static getRequestId() {
|
|
36
|
+
return this.get(this.PROTECTED_KEYS.REQUEST_ID) ?? "-";
|
|
37
|
+
}
|
|
38
|
+
static getXRayTraceId() {
|
|
39
|
+
return this.get(this.PROTECTED_KEYS.X_RAY_TRACE_ID);
|
|
40
|
+
}
|
|
41
|
+
static getTenantId() {
|
|
42
|
+
return this.get(this.PROTECTED_KEYS.TENANT_ID);
|
|
43
|
+
}
|
|
44
|
+
static hasContext() {
|
|
45
|
+
return this.storage.getStore() !== undefined;
|
|
46
|
+
}
|
|
47
|
+
static isProtectedKey(key) {
|
|
48
|
+
return (key === this.PROTECTED_KEYS.REQUEST_ID ||
|
|
49
|
+
key === this.PROTECTED_KEYS.X_RAY_TRACE_ID);
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
let instance;
|
|
53
|
+
if (!noGlobalAwsLambda && globalThis.awslambda?.InvokeStore) {
|
|
54
|
+
instance = globalThis.awslambda.InvokeStore;
|
|
55
|
+
}
|
|
56
|
+
else {
|
|
57
|
+
instance = InvokeStoreImpl;
|
|
58
|
+
if (!noGlobalAwsLambda && globalThis.awslambda) {
|
|
59
|
+
globalThis.awslambda.InvokeStore = instance;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
const InvokeStore = instance;
|
|
63
|
+
|
|
64
|
+
export { InvokeStore };
|
|
@@ -13,6 +13,7 @@ declare class InvokeStoreImpl {
|
|
|
13
13
|
static readonly PROTECTED_KEYS: {
|
|
14
14
|
readonly REQUEST_ID: symbol;
|
|
15
15
|
readonly X_RAY_TRACE_ID: symbol;
|
|
16
|
+
readonly TENANT_ID: symbol;
|
|
16
17
|
};
|
|
17
18
|
/**
|
|
18
19
|
* Initialize and run code within an invoke context
|
|
@@ -39,6 +40,10 @@ declare class InvokeStoreImpl {
|
|
|
39
40
|
* Get the current X-ray trace ID
|
|
40
41
|
*/
|
|
41
42
|
static getXRayTraceId(): string | undefined;
|
|
43
|
+
/**
|
|
44
|
+
* Get the current tenant ID
|
|
45
|
+
*/
|
|
46
|
+
static getTenantId(): string | undefined;
|
|
42
47
|
/**
|
|
43
48
|
* Check if we're currently within an invoke context
|
|
44
49
|
*/
|
|
@@ -1,12 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws/lambda-invoke-store",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Invoke scoped data storage for AWS Lambda Node.js Runtime Environment",
|
|
5
5
|
"homepage": "https://github.com/awslabs/aws-lambda-invoke-store",
|
|
6
|
-
"main": "./dist/invoke-store.js",
|
|
7
|
-
"
|
|
6
|
+
"main": "./dist-cjs/invoke-store.js",
|
|
7
|
+
"module": "./dist-es/invoke-store.js",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist-types/invoke-store.d.ts",
|
|
11
|
+
"module": "./dist-es/invoke-store.js",
|
|
12
|
+
"node": "./dist-cjs/invoke-store.js",
|
|
13
|
+
"import": "./dist-es/invoke-store.js",
|
|
14
|
+
"require": "./dist-cjs/invoke-store.js"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
8
17
|
"files": [
|
|
9
|
-
"dist"
|
|
18
|
+
"dist-es",
|
|
19
|
+
"dist-cjs",
|
|
20
|
+
"dist-types"
|
|
10
21
|
],
|
|
11
22
|
"repository": {
|
|
12
23
|
"type": "git",
|
|
@@ -18,15 +29,22 @@
|
|
|
18
29
|
"url": "http://aws.amazon.com"
|
|
19
30
|
},
|
|
20
31
|
"scripts": {
|
|
21
|
-
"build": "
|
|
32
|
+
"build": "yarn clean && yarn build:types && node ./scripts/build-rollup.js",
|
|
33
|
+
"build:types": "tsc -p tsconfig.types.json",
|
|
34
|
+
"clean": "rm -rf dist-types dist-cjs dist-es",
|
|
22
35
|
"test": "vitest run",
|
|
23
36
|
"test:watch": "vitest watch",
|
|
24
|
-
"
|
|
37
|
+
"release": "yarn build && changeset publish"
|
|
25
38
|
},
|
|
26
39
|
"devDependencies": {
|
|
40
|
+
"@changesets/cli": "^2.29.6",
|
|
41
|
+
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
42
|
+
"@rollup/plugin-typescript": "^12.3.0",
|
|
27
43
|
"@tsconfig/node18": "^18.2.4",
|
|
28
|
-
"@types/node": "^18.19.
|
|
29
|
-
"
|
|
44
|
+
"@types/node": "^18.19.130",
|
|
45
|
+
"rollup": "^4.52.5",
|
|
46
|
+
"tslib": "^2.8.1",
|
|
47
|
+
"typescript": "^5.9.3",
|
|
30
48
|
"vitest": "^3.1.1"
|
|
31
49
|
},
|
|
32
50
|
"engines": {
|
package/node_modules/@aws-sdk/client-iam/node_modules/@aws-sdk/credential-provider-ini/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/credential-provider-ini",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.919.0",
|
|
4
4
|
"description": "AWS credential provider that sources credentials from ~/.aws/credentials and ~/.aws/config",
|
|
5
5
|
"main": "./dist-cjs/index.js",
|
|
6
6
|
"module": "./dist-es/index.js",
|
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
"@aws-sdk/credential-provider-env": "3.916.0",
|
|
33
33
|
"@aws-sdk/credential-provider-http": "3.916.0",
|
|
34
34
|
"@aws-sdk/credential-provider-process": "3.916.0",
|
|
35
|
-
"@aws-sdk/credential-provider-sso": "3.
|
|
36
|
-
"@aws-sdk/credential-provider-web-identity": "3.
|
|
37
|
-
"@aws-sdk/nested-clients": "3.
|
|
35
|
+
"@aws-sdk/credential-provider-sso": "3.919.0",
|
|
36
|
+
"@aws-sdk/credential-provider-web-identity": "3.919.0",
|
|
37
|
+
"@aws-sdk/nested-clients": "3.919.0",
|
|
38
38
|
"@aws-sdk/types": "3.914.0",
|
|
39
39
|
"@smithy/credential-provider-imds": "^4.2.3",
|
|
40
40
|
"@smithy/property-provider": "^4.2.3",
|
package/node_modules/@aws-sdk/client-iam/node_modules/@aws-sdk/credential-provider-node/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/credential-provider-node",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.919.0",
|
|
4
4
|
"description": "AWS credential provider that sources credentials from a Node.JS environment. ",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=18.0.0"
|
|
@@ -33,10 +33,10 @@
|
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@aws-sdk/credential-provider-env": "3.916.0",
|
|
35
35
|
"@aws-sdk/credential-provider-http": "3.916.0",
|
|
36
|
-
"@aws-sdk/credential-provider-ini": "3.
|
|
36
|
+
"@aws-sdk/credential-provider-ini": "3.919.0",
|
|
37
37
|
"@aws-sdk/credential-provider-process": "3.916.0",
|
|
38
|
-
"@aws-sdk/credential-provider-sso": "3.
|
|
39
|
-
"@aws-sdk/credential-provider-web-identity": "3.
|
|
38
|
+
"@aws-sdk/credential-provider-sso": "3.919.0",
|
|
39
|
+
"@aws-sdk/credential-provider-web-identity": "3.919.0",
|
|
40
40
|
"@aws-sdk/types": "3.914.0",
|
|
41
41
|
"@smithy/credential-provider-imds": "^4.2.3",
|
|
42
42
|
"@smithy/property-provider": "^4.2.3",
|
package/node_modules/@aws-sdk/client-iam/node_modules/@aws-sdk/credential-provider-sso/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/credential-provider-sso",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.919.0",
|
|
4
4
|
"description": "AWS credential provider that exchanges a resolved SSO login token file for temporary AWS credentials",
|
|
5
5
|
"main": "./dist-cjs/index.js",
|
|
6
6
|
"module": "./dist-es/index.js",
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
},
|
|
27
27
|
"license": "Apache-2.0",
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@aws-sdk/client-sso": "3.
|
|
29
|
+
"@aws-sdk/client-sso": "3.919.0",
|
|
30
30
|
"@aws-sdk/core": "3.916.0",
|
|
31
|
-
"@aws-sdk/token-providers": "3.
|
|
31
|
+
"@aws-sdk/token-providers": "3.919.0",
|
|
32
32
|
"@aws-sdk/types": "3.914.0",
|
|
33
33
|
"@smithy/property-provider": "^4.2.3",
|
|
34
34
|
"@smithy/shared-ini-file-loader": "^4.3.3",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/credential-provider-web-identity",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.919.0",
|
|
4
4
|
"description": "AWS credential provider that calls STS assumeRole for temporary AWS credentials",
|
|
5
5
|
"main": "./dist-cjs/index.js",
|
|
6
6
|
"module": "./dist-es/index.js",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"license": "Apache-2.0",
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@aws-sdk/core": "3.916.0",
|
|
38
|
-
"@aws-sdk/nested-clients": "3.
|
|
38
|
+
"@aws-sdk/nested-clients": "3.919.0",
|
|
39
39
|
"@aws-sdk/types": "3.914.0",
|
|
40
40
|
"@smithy/property-provider": "^4.2.3",
|
|
41
41
|
"@smithy/shared-ini-file-loader": "^4.3.3",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/middleware-recursion-detection",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.919.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
6
6
|
"build:cjs": "node ../../scripts/compilation/inline middleware-recursion-detection",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"license": "Apache-2.0",
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@aws-sdk/types": "3.914.0",
|
|
28
|
-
"@aws/lambda-invoke-store": "^0.
|
|
28
|
+
"@aws/lambda-invoke-store": "^0.1.1",
|
|
29
29
|
"@smithy/protocol-http": "^5.3.3",
|
|
30
30
|
"@smithy/types": "^4.8.0",
|
|
31
31
|
"tslib": "^2.6.2"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/nested-clients",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.919.0",
|
|
4
4
|
"description": "Nested clients for AWS SDK packages.",
|
|
5
5
|
"main": "./dist-cjs/index.js",
|
|
6
6
|
"module": "./dist-es/index.js",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"@aws-sdk/core": "3.916.0",
|
|
33
33
|
"@aws-sdk/middleware-host-header": "3.914.0",
|
|
34
34
|
"@aws-sdk/middleware-logger": "3.914.0",
|
|
35
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
+
"@aws-sdk/middleware-recursion-detection": "3.919.0",
|
|
36
36
|
"@aws-sdk/middleware-user-agent": "3.916.0",
|
|
37
37
|
"@aws-sdk/region-config-resolver": "3.914.0",
|
|
38
38
|
"@aws-sdk/types": "3.914.0",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iam",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iam Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.919.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-iam",
|
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.916.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.919.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.914.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.914.0",
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.919.0",
|
|
28
28
|
"@aws-sdk/middleware-user-agent": "3.916.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.914.0",
|
|
30
30
|
"@aws-sdk/types": "3.914.0",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/middleware-recursion-detection",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.919.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
6
6
|
"build:cjs": "node ../../scripts/compilation/inline middleware-recursion-detection",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"license": "Apache-2.0",
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@aws-sdk/types": "3.914.0",
|
|
28
|
-
"@aws/lambda-invoke-store": "^0.
|
|
28
|
+
"@aws/lambda-invoke-store": "^0.1.1",
|
|
29
29
|
"@smithy/protocol-http": "^5.3.3",
|
|
30
30
|
"@smithy/types": "^4.8.0",
|
|
31
31
|
"tslib": "^2.6.2"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sso",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sso Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.919.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-sso",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"@aws-sdk/core": "3.916.0",
|
|
24
24
|
"@aws-sdk/middleware-host-header": "3.914.0",
|
|
25
25
|
"@aws-sdk/middleware-logger": "3.914.0",
|
|
26
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
26
|
+
"@aws-sdk/middleware-recursion-detection": "3.919.0",
|
|
27
27
|
"@aws-sdk/middleware-user-agent": "3.916.0",
|
|
28
28
|
"@aws-sdk/region-config-resolver": "3.914.0",
|
|
29
29
|
"@aws-sdk/types": "3.914.0",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/middleware-recursion-detection",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.919.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
6
6
|
"build:cjs": "node ../../scripts/compilation/inline middleware-recursion-detection",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"license": "Apache-2.0",
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@aws-sdk/types": "3.914.0",
|
|
28
|
-
"@aws/lambda-invoke-store": "^0.
|
|
28
|
+
"@aws/lambda-invoke-store": "^0.1.1",
|
|
29
29
|
"@smithy/protocol-http": "^5.3.3",
|
|
30
30
|
"@smithy/types": "^4.8.0",
|
|
31
31
|
"tslib": "^2.6.2"
|
package/node_modules/@aws-sdk/token-providers/node_modules/@aws-sdk/nested-clients/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/nested-clients",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.919.0",
|
|
4
4
|
"description": "Nested clients for AWS SDK packages.",
|
|
5
5
|
"main": "./dist-cjs/index.js",
|
|
6
6
|
"module": "./dist-es/index.js",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"@aws-sdk/core": "3.916.0",
|
|
33
33
|
"@aws-sdk/middleware-host-header": "3.914.0",
|
|
34
34
|
"@aws-sdk/middleware-logger": "3.914.0",
|
|
35
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
+
"@aws-sdk/middleware-recursion-detection": "3.919.0",
|
|
36
36
|
"@aws-sdk/middleware-user-agent": "3.916.0",
|
|
37
37
|
"@aws-sdk/region-config-resolver": "3.914.0",
|
|
38
38
|
"@aws-sdk/types": "3.914.0",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/token-providers",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.919.0",
|
|
4
4
|
"description": "A collection of token providers",
|
|
5
5
|
"main": "./dist-cjs/index.js",
|
|
6
6
|
"module": "./dist-es/index.js",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"license": "Apache-2.0",
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@aws-sdk/core": "3.916.0",
|
|
33
|
-
"@aws-sdk/nested-clients": "3.
|
|
33
|
+
"@aws-sdk/nested-clients": "3.919.0",
|
|
34
34
|
"@aws-sdk/types": "3.914.0",
|
|
35
35
|
"@smithy/property-provider": "^4.2.3",
|
|
36
36
|
"@smithy/shared-ini-file-loader": "^4.3.3",
|
package/package.json
CHANGED
|
@@ -52,12 +52,12 @@
|
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@antfu/eslint-config": "^6.1.0",
|
|
55
|
-
"@types/aws-lambda": "^8.10.
|
|
55
|
+
"@types/aws-lambda": "^8.10.157",
|
|
56
56
|
"@types/jest": "^30.0.0",
|
|
57
57
|
"@typescript-eslint/eslint-plugin": "^8.46.2",
|
|
58
58
|
"@typescript-eslint/parser": "^8.46.2",
|
|
59
59
|
"aws-cdk": "^2.1031.0",
|
|
60
|
-
"aws-cdk-lib": "^2.221.
|
|
60
|
+
"aws-cdk-lib": "^2.221.1",
|
|
61
61
|
"cdk-dia": "^0.12.1",
|
|
62
62
|
"constructs": "^10.4.2",
|
|
63
63
|
"esbuild": "^0.25.11",
|
|
@@ -66,9 +66,9 @@
|
|
|
66
66
|
"http-server": "^14.1.1",
|
|
67
67
|
"jest": "^30.2.0",
|
|
68
68
|
"jsii": "^5.9.10",
|
|
69
|
-
"jsii-diff": "^1.
|
|
70
|
-
"jsii-docgen": "^10.11.
|
|
71
|
-
"jsii-pacmak": "^1.
|
|
69
|
+
"jsii-diff": "^1.118.0",
|
|
70
|
+
"jsii-docgen": "^10.11.1",
|
|
71
|
+
"jsii-pacmak": "^1.118.0",
|
|
72
72
|
"jsii-rosetta": "^5.9.12",
|
|
73
73
|
"publib": "^0.2.1025",
|
|
74
74
|
"ts-jest": "^29.4.5",
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"constructs": "^10.4.2"
|
|
81
81
|
},
|
|
82
82
|
"dependencies": {
|
|
83
|
-
"@aws-sdk/client-iam": "^3.
|
|
83
|
+
"@aws-sdk/client-iam": "^3.919.0",
|
|
84
84
|
"cdk-iam-floyd": "^0.728.0",
|
|
85
85
|
"winston": "^3.18.3"
|
|
86
86
|
},
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
"main": "lib/index.js",
|
|
101
101
|
"types": "lib/index.d.ts",
|
|
102
102
|
"license": "Apache-2.0",
|
|
103
|
-
"version": "1.3.
|
|
103
|
+
"version": "1.3.54",
|
|
104
104
|
"jsii": {
|
|
105
105
|
"outdir": "dist",
|
|
106
106
|
"tsc": {
|