@cdk8s/awscdk-resolver 0.0.359 → 0.0.361
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/resolve.js +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/package.json +38 -38
- package/node_modules/@aws-sdk/client-sso/package.json +36 -36
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +82 -36
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeDeserializer.js +24 -7
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeSerializer.js +34 -11
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeSerializer.js +2 -6
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonShapeSerializer.d.ts +4 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonShapeSerializer.d.ts +1 -0
- package/node_modules/@aws-sdk/core/package.json +12 -12
- package/node_modules/@aws-sdk/credential-provider-env/package.json +4 -4
- package/node_modules/@aws-sdk/credential-provider-http/package.json +9 -9
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +10 -10
- package/node_modules/@aws-sdk/credential-provider-node/package.json +9 -9
- package/node_modules/@aws-sdk/credential-provider-process/package.json +4 -4
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +6 -6
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +5 -5
- package/node_modules/@aws-sdk/middleware-host-header/package.json +4 -4
- package/node_modules/@aws-sdk/middleware-logger/package.json +3 -3
- package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +4 -4
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +7 -7
- package/node_modules/@aws-sdk/nested-clients/package.json +36 -36
- package/node_modules/@aws-sdk/region-config-resolver/package.json +5 -5
- package/node_modules/@aws-sdk/token-providers/package.json +5 -5
- package/node_modules/@aws-sdk/types/package.json +2 -2
- package/node_modules/@aws-sdk/util-endpoints/package.json +5 -5
- package/node_modules/@aws-sdk/util-user-agent-browser/package.json +3 -3
- package/node_modules/@aws-sdk/util-user-agent-node/package.json +5 -5
- package/node_modules/@aws-sdk/xml-builder/package.json +2 -2
- package/package.json +4 -4
@@ -1,5 +1,7 @@
|
|
1
|
+
import { determineTimestampFormat } from "@smithy/core/protocols";
|
1
2
|
import { NormalizedSchema, SCHEMA } from "@smithy/core/schema";
|
2
|
-
import { dateToUtcString, generateIdempotencyToken, LazyJsonString } from "@smithy/core/serde";
|
3
|
+
import { dateToUtcString, generateIdempotencyToken, LazyJsonString, NumericValue } from "@smithy/core/serde";
|
4
|
+
import { toBase64 } from "@smithy/util-base64";
|
3
5
|
import { SerdeContextConfig } from "../ConfigurableSerdeContext";
|
4
6
|
import { JsonReplacer } from "./jsonReplacer";
|
5
7
|
export class JsonShapeSerializer extends SerdeContextConfig {
|
@@ -14,8 +16,16 @@ export class JsonShapeSerializer extends SerdeContextConfig {
|
|
14
16
|
this.rootSchema = NormalizedSchema.of(schema);
|
15
17
|
this.buffer = this._write(this.rootSchema, value);
|
16
18
|
}
|
19
|
+
writeDiscriminatedDocument(schema, value) {
|
20
|
+
this.write(schema, value);
|
21
|
+
if (typeof this.buffer === "object") {
|
22
|
+
this.buffer.__type = NormalizedSchema.of(schema).getName(true);
|
23
|
+
}
|
24
|
+
}
|
17
25
|
flush() {
|
18
|
-
|
26
|
+
const { rootSchema } = this;
|
27
|
+
this.rootSchema = undefined;
|
28
|
+
if (rootSchema?.isStructSchema() || rootSchema?.isDocumentSchema()) {
|
19
29
|
const replacer = new JsonReplacer();
|
20
30
|
return replacer.replaceInJson(JSON.stringify(this.buffer, replacer.createReplacer(), 0));
|
21
31
|
}
|
@@ -60,22 +70,18 @@ export class JsonShapeSerializer extends SerdeContextConfig {
|
|
60
70
|
if (value === null && container?.isStructSchema()) {
|
61
71
|
return void 0;
|
62
72
|
}
|
63
|
-
if (ns.isBlobSchema() && (value instanceof Uint8Array || typeof value === "string"))
|
73
|
+
if ((ns.isBlobSchema() && (value instanceof Uint8Array || typeof value === "string")) ||
|
74
|
+
(ns.isDocumentSchema() && value instanceof Uint8Array)) {
|
64
75
|
if (ns === this.rootSchema) {
|
65
76
|
return value;
|
66
77
|
}
|
67
78
|
if (!this.serdeContext?.base64Encoder) {
|
68
|
-
|
79
|
+
return toBase64(value);
|
69
80
|
}
|
70
81
|
return this.serdeContext?.base64Encoder(value);
|
71
82
|
}
|
72
|
-
if (ns.isTimestampSchema() && value instanceof Date) {
|
73
|
-
const
|
74
|
-
const format = options.useTrait
|
75
|
-
? ns.getSchema() === SCHEMA.TIMESTAMP_DEFAULT
|
76
|
-
? options.default
|
77
|
-
: ns.getSchema() ?? options.default
|
78
|
-
: options.default;
|
83
|
+
if ((ns.isTimestampSchema() || ns.isDocumentSchema()) && value instanceof Date) {
|
84
|
+
const format = determineTimestampFormat(ns, this.settings);
|
79
85
|
switch (format) {
|
80
86
|
case SCHEMA.TIMESTAMP_DATE_TIME:
|
81
87
|
return value.toISOString().replace(".000Z", "Z");
|
@@ -105,6 +111,23 @@ export class JsonShapeSerializer extends SerdeContextConfig {
|
|
105
111
|
}
|
106
112
|
}
|
107
113
|
}
|
114
|
+
if (ns.isDocumentSchema()) {
|
115
|
+
if (isObject) {
|
116
|
+
const out = Array.isArray(value) ? [] : {};
|
117
|
+
for (const [k, v] of Object.entries(value)) {
|
118
|
+
if (v instanceof NumericValue) {
|
119
|
+
out[k] = v;
|
120
|
+
}
|
121
|
+
else {
|
122
|
+
out[k] = this._write(ns, v);
|
123
|
+
}
|
124
|
+
}
|
125
|
+
return out;
|
126
|
+
}
|
127
|
+
else {
|
128
|
+
return structuredClone(value);
|
129
|
+
}
|
130
|
+
}
|
108
131
|
return value;
|
109
132
|
}
|
110
133
|
}
|
@@ -1,4 +1,5 @@
|
|
1
1
|
import { XmlNode, XmlText } from "@aws-sdk/xml-builder";
|
2
|
+
import { determineTimestampFormat } from "@smithy/core/protocols";
|
2
3
|
import { NormalizedSchema, SCHEMA } from "@smithy/core/schema";
|
3
4
|
import { generateIdempotencyToken, NumericValue } from "@smithy/core/serde";
|
4
5
|
import { dateToUtcString } from "@smithy/smithy-client";
|
@@ -211,12 +212,7 @@ export class XmlShapeSerializer extends SerdeContextConfig {
|
|
211
212
|
nodeContents = (this.serdeContext?.base64Encoder ?? toBase64)(value);
|
212
213
|
}
|
213
214
|
else if (ns.isTimestampSchema() && value instanceof Date) {
|
214
|
-
const
|
215
|
-
const format = options.useTrait
|
216
|
-
? ns.getSchema() === SCHEMA.TIMESTAMP_DEFAULT
|
217
|
-
? options.default
|
218
|
-
: ns.getSchema() ?? options.default
|
219
|
-
: options.default;
|
215
|
+
const format = determineTimestampFormat(ns, this.settings);
|
220
216
|
switch (format) {
|
221
217
|
case SCHEMA.TIMESTAMP_DATE_TIME:
|
222
218
|
nodeContents = value.toISOString().replace(".000Z", "Z");
|
package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonShapeSerializer.d.ts
CHANGED
@@ -10,6 +10,10 @@ export declare class JsonShapeSerializer extends SerdeContextConfig implements S
|
|
10
10
|
private rootSchema;
|
11
11
|
constructor(settings: JsonSettings);
|
12
12
|
write(schema: Schema, value: unknown): void;
|
13
|
+
/**
|
14
|
+
* @internal
|
15
|
+
*/
|
16
|
+
writeDiscriminatedDocument(schema: Schema, value: unknown): void;
|
13
17
|
flush(): string;
|
14
18
|
private _write;
|
15
19
|
}
|
@@ -10,6 +10,7 @@ export declare class JsonShapeSerializer
|
|
10
10
|
private rootSchema;
|
11
11
|
constructor(settings: JsonSettings);
|
12
12
|
write(schema: Schema, value: unknown): void;
|
13
|
+
writeDiscriminatedDocument(schema: Schema, value: unknown): void;
|
13
14
|
flush(): string;
|
14
15
|
private _write;
|
15
16
|
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@aws-sdk/core",
|
3
|
-
"version": "3.
|
3
|
+
"version": "3.888.0",
|
4
4
|
"description": "Core functions & classes shared by multiple AWS SDK clients.",
|
5
5
|
"scripts": {
|
6
6
|
"build": "yarn lint && concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
@@ -81,19 +81,19 @@
|
|
81
81
|
},
|
82
82
|
"license": "Apache-2.0",
|
83
83
|
"dependencies": {
|
84
|
-
"@aws-sdk/types": "3.
|
85
|
-
"@aws-sdk/xml-builder": "3.
|
86
|
-
"@smithy/core": "^3.
|
87
|
-
"@smithy/node-config-provider": "^4.1
|
84
|
+
"@aws-sdk/types": "3.887.0",
|
85
|
+
"@aws-sdk/xml-builder": "3.887.0",
|
86
|
+
"@smithy/core": "^3.11.0",
|
87
|
+
"@smithy/node-config-provider": "^4.2.1",
|
88
88
|
"@smithy/property-provider": "^4.0.5",
|
89
|
-
"@smithy/protocol-http": "^5.1
|
89
|
+
"@smithy/protocol-http": "^5.2.1",
|
90
90
|
"@smithy/signature-v4": "^5.1.3",
|
91
|
-
"@smithy/smithy-client": "^4.
|
92
|
-
"@smithy/types": "^4.
|
93
|
-
"@smithy/util-base64": "^4.
|
94
|
-
"@smithy/util-body-length-browser": "^4.
|
95
|
-
"@smithy/util-middleware": "^4.
|
96
|
-
"@smithy/util-utf8": "^4.
|
91
|
+
"@smithy/smithy-client": "^4.6.1",
|
92
|
+
"@smithy/types": "^4.5.0",
|
93
|
+
"@smithy/util-base64": "^4.1.0",
|
94
|
+
"@smithy/util-body-length-browser": "^4.1.0",
|
95
|
+
"@smithy/util-middleware": "^4.1.1",
|
96
|
+
"@smithy/util-utf8": "^4.1.0",
|
97
97
|
"fast-xml-parser": "5.2.5",
|
98
98
|
"tslib": "^2.6.2"
|
99
99
|
},
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@aws-sdk/credential-provider-env",
|
3
|
-
"version": "3.
|
3
|
+
"version": "3.888.0",
|
4
4
|
"description": "AWS credential provider that sources credentials from known environment variables",
|
5
5
|
"main": "./dist-cjs/index.js",
|
6
6
|
"module": "./dist-es/index.js",
|
@@ -25,10 +25,10 @@
|
|
25
25
|
},
|
26
26
|
"license": "Apache-2.0",
|
27
27
|
"dependencies": {
|
28
|
-
"@aws-sdk/core": "3.
|
29
|
-
"@aws-sdk/types": "3.
|
28
|
+
"@aws-sdk/core": "3.888.0",
|
29
|
+
"@aws-sdk/types": "3.887.0",
|
30
30
|
"@smithy/property-provider": "^4.0.5",
|
31
|
-
"@smithy/types": "^4.
|
31
|
+
"@smithy/types": "^4.5.0",
|
32
32
|
"tslib": "^2.6.2"
|
33
33
|
},
|
34
34
|
"devDependencies": {
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@aws-sdk/credential-provider-http",
|
3
|
-
"version": "3.
|
3
|
+
"version": "3.888.0",
|
4
4
|
"description": "AWS credential provider for containers and HTTP sources",
|
5
5
|
"main": "./dist-cjs/index.js",
|
6
6
|
"module": "./dist-es/index.js",
|
@@ -27,15 +27,15 @@
|
|
27
27
|
},
|
28
28
|
"license": "Apache-2.0",
|
29
29
|
"dependencies": {
|
30
|
-
"@aws-sdk/core": "3.
|
31
|
-
"@aws-sdk/types": "3.
|
32
|
-
"@smithy/fetch-http-handler": "^5.
|
33
|
-
"@smithy/node-http-handler": "^4.
|
30
|
+
"@aws-sdk/core": "3.888.0",
|
31
|
+
"@aws-sdk/types": "3.887.0",
|
32
|
+
"@smithy/fetch-http-handler": "^5.2.1",
|
33
|
+
"@smithy/node-http-handler": "^4.2.1",
|
34
34
|
"@smithy/property-provider": "^4.0.5",
|
35
|
-
"@smithy/protocol-http": "^5.1
|
36
|
-
"@smithy/smithy-client": "^4.
|
37
|
-
"@smithy/types": "^4.
|
38
|
-
"@smithy/util-stream": "^4.
|
35
|
+
"@smithy/protocol-http": "^5.2.1",
|
36
|
+
"@smithy/smithy-client": "^4.6.1",
|
37
|
+
"@smithy/types": "^4.5.0",
|
38
|
+
"@smithy/util-stream": "^4.3.1",
|
39
39
|
"tslib": "^2.6.2"
|
40
40
|
},
|
41
41
|
"devDependencies": {
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@aws-sdk/credential-provider-ini",
|
3
|
-
"version": "3.
|
3
|
+
"version": "3.888.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",
|
@@ -27,18 +27,18 @@
|
|
27
27
|
},
|
28
28
|
"license": "Apache-2.0",
|
29
29
|
"dependencies": {
|
30
|
-
"@aws-sdk/core": "3.
|
31
|
-
"@aws-sdk/credential-provider-env": "3.
|
32
|
-
"@aws-sdk/credential-provider-http": "3.
|
33
|
-
"@aws-sdk/credential-provider-process": "3.
|
34
|
-
"@aws-sdk/credential-provider-sso": "3.
|
35
|
-
"@aws-sdk/credential-provider-web-identity": "3.
|
36
|
-
"@aws-sdk/nested-clients": "3.
|
37
|
-
"@aws-sdk/types": "3.
|
30
|
+
"@aws-sdk/core": "3.888.0",
|
31
|
+
"@aws-sdk/credential-provider-env": "3.888.0",
|
32
|
+
"@aws-sdk/credential-provider-http": "3.888.0",
|
33
|
+
"@aws-sdk/credential-provider-process": "3.888.0",
|
34
|
+
"@aws-sdk/credential-provider-sso": "3.888.0",
|
35
|
+
"@aws-sdk/credential-provider-web-identity": "3.888.0",
|
36
|
+
"@aws-sdk/nested-clients": "3.888.0",
|
37
|
+
"@aws-sdk/types": "3.887.0",
|
38
38
|
"@smithy/credential-provider-imds": "^4.0.7",
|
39
39
|
"@smithy/property-provider": "^4.0.5",
|
40
40
|
"@smithy/shared-ini-file-loader": "^4.0.5",
|
41
|
-
"@smithy/types": "^4.
|
41
|
+
"@smithy/types": "^4.5.0",
|
42
42
|
"tslib": "^2.6.2"
|
43
43
|
},
|
44
44
|
"devDependencies": {
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@aws-sdk/credential-provider-node",
|
3
|
-
"version": "3.
|
3
|
+
"version": "3.888.0",
|
4
4
|
"description": "AWS credential provider that sources credentials from a Node.JS environment. ",
|
5
5
|
"engines": {
|
6
6
|
"node": ">=18.0.0"
|
@@ -29,17 +29,17 @@
|
|
29
29
|
},
|
30
30
|
"license": "Apache-2.0",
|
31
31
|
"dependencies": {
|
32
|
-
"@aws-sdk/credential-provider-env": "3.
|
33
|
-
"@aws-sdk/credential-provider-http": "3.
|
34
|
-
"@aws-sdk/credential-provider-ini": "3.
|
35
|
-
"@aws-sdk/credential-provider-process": "3.
|
36
|
-
"@aws-sdk/credential-provider-sso": "3.
|
37
|
-
"@aws-sdk/credential-provider-web-identity": "3.
|
38
|
-
"@aws-sdk/types": "3.
|
32
|
+
"@aws-sdk/credential-provider-env": "3.888.0",
|
33
|
+
"@aws-sdk/credential-provider-http": "3.888.0",
|
34
|
+
"@aws-sdk/credential-provider-ini": "3.888.0",
|
35
|
+
"@aws-sdk/credential-provider-process": "3.888.0",
|
36
|
+
"@aws-sdk/credential-provider-sso": "3.888.0",
|
37
|
+
"@aws-sdk/credential-provider-web-identity": "3.888.0",
|
38
|
+
"@aws-sdk/types": "3.887.0",
|
39
39
|
"@smithy/credential-provider-imds": "^4.0.7",
|
40
40
|
"@smithy/property-provider": "^4.0.5",
|
41
41
|
"@smithy/shared-ini-file-loader": "^4.0.5",
|
42
|
-
"@smithy/types": "^4.
|
42
|
+
"@smithy/types": "^4.5.0",
|
43
43
|
"tslib": "^2.6.2"
|
44
44
|
},
|
45
45
|
"devDependencies": {
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@aws-sdk/credential-provider-process",
|
3
|
-
"version": "3.
|
3
|
+
"version": "3.888.0",
|
4
4
|
"description": "AWS credential provider that sources credential_process from ~/.aws/credentials and ~/.aws/config",
|
5
5
|
"main": "./dist-cjs/index.js",
|
6
6
|
"module": "./dist-es/index.js",
|
@@ -25,11 +25,11 @@
|
|
25
25
|
},
|
26
26
|
"license": "Apache-2.0",
|
27
27
|
"dependencies": {
|
28
|
-
"@aws-sdk/core": "3.
|
29
|
-
"@aws-sdk/types": "3.
|
28
|
+
"@aws-sdk/core": "3.888.0",
|
29
|
+
"@aws-sdk/types": "3.887.0",
|
30
30
|
"@smithy/property-provider": "^4.0.5",
|
31
31
|
"@smithy/shared-ini-file-loader": "^4.0.5",
|
32
|
-
"@smithy/types": "^4.
|
32
|
+
"@smithy/types": "^4.5.0",
|
33
33
|
"tslib": "^2.6.2"
|
34
34
|
},
|
35
35
|
"devDependencies": {
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@aws-sdk/credential-provider-sso",
|
3
|
-
"version": "3.
|
3
|
+
"version": "3.888.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",
|
@@ -25,13 +25,13 @@
|
|
25
25
|
},
|
26
26
|
"license": "Apache-2.0",
|
27
27
|
"dependencies": {
|
28
|
-
"@aws-sdk/client-sso": "3.
|
29
|
-
"@aws-sdk/core": "3.
|
30
|
-
"@aws-sdk/token-providers": "3.
|
31
|
-
"@aws-sdk/types": "3.
|
28
|
+
"@aws-sdk/client-sso": "3.888.0",
|
29
|
+
"@aws-sdk/core": "3.888.0",
|
30
|
+
"@aws-sdk/token-providers": "3.888.0",
|
31
|
+
"@aws-sdk/types": "3.887.0",
|
32
32
|
"@smithy/property-provider": "^4.0.5",
|
33
33
|
"@smithy/shared-ini-file-loader": "^4.0.5",
|
34
|
-
"@smithy/types": "^4.
|
34
|
+
"@smithy/types": "^4.5.0",
|
35
35
|
"tslib": "^2.6.2"
|
36
36
|
},
|
37
37
|
"devDependencies": {
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@aws-sdk/credential-provider-web-identity",
|
3
|
-
"version": "3.
|
3
|
+
"version": "3.888.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",
|
@@ -33,11 +33,11 @@
|
|
33
33
|
},
|
34
34
|
"license": "Apache-2.0",
|
35
35
|
"dependencies": {
|
36
|
-
"@aws-sdk/core": "3.
|
37
|
-
"@aws-sdk/nested-clients": "3.
|
38
|
-
"@aws-sdk/types": "3.
|
36
|
+
"@aws-sdk/core": "3.888.0",
|
37
|
+
"@aws-sdk/nested-clients": "3.888.0",
|
38
|
+
"@aws-sdk/types": "3.887.0",
|
39
39
|
"@smithy/property-provider": "^4.0.5",
|
40
|
-
"@smithy/types": "^4.
|
40
|
+
"@smithy/types": "^4.5.0",
|
41
41
|
"tslib": "^2.6.2"
|
42
42
|
},
|
43
43
|
"devDependencies": {
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@aws-sdk/middleware-host-header",
|
3
|
-
"version": "3.
|
3
|
+
"version": "3.887.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-host-header",
|
@@ -24,9 +24,9 @@
|
|
24
24
|
},
|
25
25
|
"license": "Apache-2.0",
|
26
26
|
"dependencies": {
|
27
|
-
"@aws-sdk/types": "3.
|
28
|
-
"@smithy/protocol-http": "^5.1
|
29
|
-
"@smithy/types": "^4.
|
27
|
+
"@aws-sdk/types": "3.887.0",
|
28
|
+
"@smithy/protocol-http": "^5.2.1",
|
29
|
+
"@smithy/types": "^4.5.0",
|
30
30
|
"tslib": "^2.6.2"
|
31
31
|
},
|
32
32
|
"engines": {
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@aws-sdk/middleware-logger",
|
3
|
-
"version": "3.
|
3
|
+
"version": "3.887.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-logger",
|
@@ -24,8 +24,8 @@
|
|
24
24
|
"module": "./dist-es/index.js",
|
25
25
|
"types": "./dist-types/index.d.ts",
|
26
26
|
"dependencies": {
|
27
|
-
"@aws-sdk/types": "3.
|
28
|
-
"@smithy/types": "^4.
|
27
|
+
"@aws-sdk/types": "3.887.0",
|
28
|
+
"@smithy/types": "^4.5.0",
|
29
29
|
"tslib": "^2.6.2"
|
30
30
|
},
|
31
31
|
"devDependencies": {
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@aws-sdk/middleware-recursion-detection",
|
3
|
-
"version": "3.
|
3
|
+
"version": "3.887.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",
|
@@ -23,10 +23,10 @@
|
|
23
23
|
},
|
24
24
|
"license": "Apache-2.0",
|
25
25
|
"dependencies": {
|
26
|
-
"@aws-sdk/types": "3.
|
26
|
+
"@aws-sdk/types": "3.887.0",
|
27
27
|
"@aws/lambda-invoke-store": "^0.0.1",
|
28
|
-
"@smithy/protocol-http": "^5.1
|
29
|
-
"@smithy/types": "^4.
|
28
|
+
"@smithy/protocol-http": "^5.2.1",
|
29
|
+
"@smithy/types": "^4.5.0",
|
30
30
|
"tslib": "^2.6.2"
|
31
31
|
},
|
32
32
|
"engines": {
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@aws-sdk/middleware-user-agent",
|
3
|
-
"version": "3.
|
3
|
+
"version": "3.888.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-user-agent",
|
@@ -24,12 +24,12 @@
|
|
24
24
|
},
|
25
25
|
"license": "Apache-2.0",
|
26
26
|
"dependencies": {
|
27
|
-
"@aws-sdk/core": "3.
|
28
|
-
"@aws-sdk/types": "3.
|
29
|
-
"@aws-sdk/util-endpoints": "3.
|
30
|
-
"@smithy/core": "^3.
|
31
|
-
"@smithy/protocol-http": "^5.1
|
32
|
-
"@smithy/types": "^4.
|
27
|
+
"@aws-sdk/core": "3.888.0",
|
28
|
+
"@aws-sdk/types": "3.887.0",
|
29
|
+
"@aws-sdk/util-endpoints": "3.887.0",
|
30
|
+
"@smithy/core": "^3.11.0",
|
31
|
+
"@smithy/protocol-http": "^5.2.1",
|
32
|
+
"@smithy/types": "^4.5.0",
|
33
33
|
"tslib": "^2.6.2"
|
34
34
|
},
|
35
35
|
"devDependencies": {
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@aws-sdk/nested-clients",
|
3
|
-
"version": "3.
|
3
|
+
"version": "3.888.0",
|
4
4
|
"description": "Nested clients for AWS SDK packages.",
|
5
5
|
"main": "./dist-cjs/index.js",
|
6
6
|
"module": "./dist-es/index.js",
|
@@ -28,41 +28,41 @@
|
|
28
28
|
"dependencies": {
|
29
29
|
"@aws-crypto/sha256-browser": "5.2.0",
|
30
30
|
"@aws-crypto/sha256-js": "5.2.0",
|
31
|
-
"@aws-sdk/core": "3.
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
35
|
-
"@aws-sdk/middleware-user-agent": "3.
|
36
|
-
"@aws-sdk/region-config-resolver": "3.
|
37
|
-
"@aws-sdk/types": "3.
|
38
|
-
"@aws-sdk/util-endpoints": "3.
|
39
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
40
|
-
"@aws-sdk/util-user-agent-node": "3.
|
41
|
-
"@smithy/config-resolver": "^4.1
|
42
|
-
"@smithy/core": "^3.
|
43
|
-
"@smithy/fetch-http-handler": "^5.
|
44
|
-
"@smithy/hash-node": "^4.
|
45
|
-
"@smithy/invalid-dependency": "^4.
|
46
|
-
"@smithy/middleware-content-length": "^4.
|
47
|
-
"@smithy/middleware-endpoint": "^4.1
|
48
|
-
"@smithy/middleware-retry": "^4.1
|
49
|
-
"@smithy/middleware-serde": "^4.
|
50
|
-
"@smithy/middleware-stack": "^4.
|
51
|
-
"@smithy/node-config-provider": "^4.1
|
52
|
-
"@smithy/node-http-handler": "^4.
|
53
|
-
"@smithy/protocol-http": "^5.1
|
54
|
-
"@smithy/smithy-client": "^4.
|
55
|
-
"@smithy/types": "^4.
|
56
|
-
"@smithy/url-parser": "^4.
|
57
|
-
"@smithy/util-base64": "^4.
|
58
|
-
"@smithy/util-body-length-browser": "^4.
|
59
|
-
"@smithy/util-body-length-node": "^4.
|
60
|
-
"@smithy/util-defaults-mode-browser": "^4.
|
61
|
-
"@smithy/util-defaults-mode-node": "^4.
|
62
|
-
"@smithy/util-endpoints": "^3.
|
63
|
-
"@smithy/util-middleware": "^4.
|
64
|
-
"@smithy/util-retry": "^4.
|
65
|
-
"@smithy/util-utf8": "^4.
|
31
|
+
"@aws-sdk/core": "3.888.0",
|
32
|
+
"@aws-sdk/middleware-host-header": "3.887.0",
|
33
|
+
"@aws-sdk/middleware-logger": "3.887.0",
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.887.0",
|
35
|
+
"@aws-sdk/middleware-user-agent": "3.888.0",
|
36
|
+
"@aws-sdk/region-config-resolver": "3.887.0",
|
37
|
+
"@aws-sdk/types": "3.887.0",
|
38
|
+
"@aws-sdk/util-endpoints": "3.887.0",
|
39
|
+
"@aws-sdk/util-user-agent-browser": "3.887.0",
|
40
|
+
"@aws-sdk/util-user-agent-node": "3.888.0",
|
41
|
+
"@smithy/config-resolver": "^4.2.1",
|
42
|
+
"@smithy/core": "^3.11.0",
|
43
|
+
"@smithy/fetch-http-handler": "^5.2.1",
|
44
|
+
"@smithy/hash-node": "^4.1.1",
|
45
|
+
"@smithy/invalid-dependency": "^4.1.1",
|
46
|
+
"@smithy/middleware-content-length": "^4.1.1",
|
47
|
+
"@smithy/middleware-endpoint": "^4.2.1",
|
48
|
+
"@smithy/middleware-retry": "^4.2.1",
|
49
|
+
"@smithy/middleware-serde": "^4.1.1",
|
50
|
+
"@smithy/middleware-stack": "^4.1.1",
|
51
|
+
"@smithy/node-config-provider": "^4.2.1",
|
52
|
+
"@smithy/node-http-handler": "^4.2.1",
|
53
|
+
"@smithy/protocol-http": "^5.2.1",
|
54
|
+
"@smithy/smithy-client": "^4.6.1",
|
55
|
+
"@smithy/types": "^4.5.0",
|
56
|
+
"@smithy/url-parser": "^4.1.1",
|
57
|
+
"@smithy/util-base64": "^4.1.0",
|
58
|
+
"@smithy/util-body-length-browser": "^4.1.0",
|
59
|
+
"@smithy/util-body-length-node": "^4.1.0",
|
60
|
+
"@smithy/util-defaults-mode-browser": "^4.1.1",
|
61
|
+
"@smithy/util-defaults-mode-node": "^4.1.1",
|
62
|
+
"@smithy/util-endpoints": "^3.1.1",
|
63
|
+
"@smithy/util-middleware": "^4.1.1",
|
64
|
+
"@smithy/util-retry": "^4.1.1",
|
65
|
+
"@smithy/util-utf8": "^4.1.0",
|
66
66
|
"tslib": "^2.6.2"
|
67
67
|
},
|
68
68
|
"devDependencies": {
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@aws-sdk/region-config-resolver",
|
3
|
-
"version": "3.
|
3
|
+
"version": "3.887.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 region-config-resolver",
|
@@ -22,11 +22,11 @@
|
|
22
22
|
},
|
23
23
|
"license": "Apache-2.0",
|
24
24
|
"dependencies": {
|
25
|
-
"@aws-sdk/types": "3.
|
26
|
-
"@smithy/node-config-provider": "^4.1
|
27
|
-
"@smithy/types": "^4.
|
25
|
+
"@aws-sdk/types": "3.887.0",
|
26
|
+
"@smithy/node-config-provider": "^4.2.1",
|
27
|
+
"@smithy/types": "^4.5.0",
|
28
28
|
"@smithy/util-config-provider": "^4.0.0",
|
29
|
-
"@smithy/util-middleware": "^4.
|
29
|
+
"@smithy/util-middleware": "^4.1.1",
|
30
30
|
"tslib": "^2.6.2"
|
31
31
|
},
|
32
32
|
"devDependencies": {
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@aws-sdk/token-providers",
|
3
|
-
"version": "3.
|
3
|
+
"version": "3.888.0",
|
4
4
|
"description": "A collection of token providers",
|
5
5
|
"main": "./dist-cjs/index.js",
|
6
6
|
"module": "./dist-es/index.js",
|
@@ -29,12 +29,12 @@
|
|
29
29
|
},
|
30
30
|
"license": "Apache-2.0",
|
31
31
|
"dependencies": {
|
32
|
-
"@aws-sdk/core": "3.
|
33
|
-
"@aws-sdk/nested-clients": "3.
|
34
|
-
"@aws-sdk/types": "3.
|
32
|
+
"@aws-sdk/core": "3.888.0",
|
33
|
+
"@aws-sdk/nested-clients": "3.888.0",
|
34
|
+
"@aws-sdk/types": "3.887.0",
|
35
35
|
"@smithy/property-provider": "^4.0.5",
|
36
36
|
"@smithy/shared-ini-file-loader": "^4.0.5",
|
37
|
-
"@smithy/types": "^4.
|
37
|
+
"@smithy/types": "^4.5.0",
|
38
38
|
"tslib": "^2.6.2"
|
39
39
|
},
|
40
40
|
"devDependencies": {
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@aws-sdk/types",
|
3
|
-
"version": "3.
|
3
|
+
"version": "3.887.0",
|
4
4
|
"main": "./dist-cjs/index.js",
|
5
5
|
"module": "./dist-es/index.js",
|
6
6
|
"types": "./dist-types/index.d.ts",
|
@@ -41,7 +41,7 @@
|
|
41
41
|
"directory": "packages/types"
|
42
42
|
},
|
43
43
|
"dependencies": {
|
44
|
-
"@smithy/types": "^4.
|
44
|
+
"@smithy/types": "^4.5.0",
|
45
45
|
"tslib": "^2.6.2"
|
46
46
|
},
|
47
47
|
"devDependencies": {
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@aws-sdk/util-endpoints",
|
3
|
-
"version": "3.
|
3
|
+
"version": "3.887.0",
|
4
4
|
"description": "Utilities to help with endpoint resolution",
|
5
5
|
"main": "./dist-cjs/index.js",
|
6
6
|
"module": "./dist-es/index.js",
|
@@ -25,10 +25,10 @@
|
|
25
25
|
"license": "Apache-2.0",
|
26
26
|
"sideEffects": true,
|
27
27
|
"dependencies": {
|
28
|
-
"@aws-sdk/types": "3.
|
29
|
-
"@smithy/types": "^4.
|
30
|
-
"@smithy/url-parser": "^4.
|
31
|
-
"@smithy/util-endpoints": "^3.
|
28
|
+
"@aws-sdk/types": "3.887.0",
|
29
|
+
"@smithy/types": "^4.5.0",
|
30
|
+
"@smithy/url-parser": "^4.1.1",
|
31
|
+
"@smithy/util-endpoints": "^3.1.1",
|
32
32
|
"tslib": "^2.6.2"
|
33
33
|
},
|
34
34
|
"engines": {
|