@cdk8s/awscdk-resolver 0.0.304 → 0.0.306
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 +5 -5
- package/node_modules/@aws-sdk/client-sso/package.json +4 -4
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +1466 -14
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/ConfigurableSerdeContext.js +6 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/index.js +13 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJson1_0Protocol.js +14 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJson1_1Protocol.js +14 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJsonRpcProtocol.js +89 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsRestJsonProtocol.js +123 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonCodec.js +20 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeDeserializer.js +105 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeSerializer.js +106 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/jsonReplacer.js +46 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/jsonReviver.js +18 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsEc2QueryProtocol.js +3 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsQueryProtocol.js +134 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QueryShapeSerializer.js +143 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/AwsRestXmlProtocol.js +131 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlCodec.js +20 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeDeserializer.js +154 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeSerializer.js +279 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/simpleFormatXml.js +27 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/ConfigurableSerdeContext.d.ts +8 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/common.d.ts +2 -2
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/index.d.ts +13 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJson1_0Protocol.d.ts +12 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJson1_1Protocol.d.ts +12 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJsonRpcProtocol.d.ts +18 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsRestJsonProtocol.d.ts +19 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonCodec.d.ts +19 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonShapeDeserializer.d.ts +13 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonShapeSerializer.d.ts +15 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/jsonReplacer.d.ts +21 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/jsonReviver.d.ts +15 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/parseJsonBody.d.ts +3 -3
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/AwsEc2QueryProtocol.d.ts +6 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/AwsQueryProtocol.d.ts +29 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/QueryShapeSerializer.d.ts +14 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/AwsRestXmlProtocol.d.ts +21 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlCodec.d.ts +14 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlShapeDeserializer.d.ts +20 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlShapeSerializer.d.ts +21 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/simpleFormatXml.d.ts +6 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/ConfigurableSerdeContext.d.ts +5 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/common.d.ts +2 -2
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/index.d.ts +13 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJson1_0Protocol.d.ts +6 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJson1_1Protocol.d.ts +6 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJsonRpcProtocol.d.ts +33 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsRestJsonProtocol.d.ts +34 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonCodec.d.ts +16 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonShapeDeserializer.d.ts +13 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonShapeSerializer.d.ts +15 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/jsonReplacer.d.ts +7 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/jsonReviver.d.ts +7 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/parseJsonBody.d.ts +3 -3
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/AwsEc2QueryProtocol.d.ts +2 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/AwsQueryProtocol.d.ts +52 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/QueryShapeSerializer.d.ts +14 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/AwsRestXmlProtocol.d.ts +39 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/XmlCodec.d.ts +17 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/XmlShapeDeserializer.d.ts +15 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/XmlShapeSerializer.d.ts +21 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/simpleFormatXml.d.ts +1 -0
- package/node_modules/@aws-sdk/core/package.json +5 -1
- package/node_modules/@aws-sdk/credential-provider-env/package.json +2 -2
- package/node_modules/@aws-sdk/credential-provider-http/package.json +2 -2
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +8 -8
- package/node_modules/@aws-sdk/credential-provider-node/package.json +7 -7
- package/node_modules/@aws-sdk/credential-provider-process/package.json +2 -2
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +4 -4
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +3 -3
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +2 -2
- package/node_modules/@aws-sdk/nested-clients/package.json +4 -4
- package/node_modules/@aws-sdk/token-providers/package.json +3 -3
- package/node_modules/@aws-sdk/util-user-agent-node/package.json +2 -2
- package/node_modules/@aws-sdk/xml-builder/LICENSE +201 -0
- package/node_modules/@aws-sdk/xml-builder/README.md +10 -0
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/index.js +173 -0
- package/node_modules/@aws-sdk/xml-builder/dist-es/XmlNode.js +88 -0
- package/node_modules/@aws-sdk/xml-builder/dist-es/XmlText.js +10 -0
- package/node_modules/@aws-sdk/xml-builder/dist-es/escape-attribute.js +3 -0
- package/node_modules/@aws-sdk/xml-builder/dist-es/escape-element.js +12 -0
- package/node_modules/@aws-sdk/xml-builder/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/xml-builder/dist-es/stringable.js +1 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/XmlNode.d.ts +49 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/XmlText.d.ts +11 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/escape-attribute.d.ts +6 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/escape-element.d.ts +6 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/stringable.d.ts +6 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/XmlNode.d.ts +29 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/XmlText.d.ts +6 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/escape-attribute.d.ts +1 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/escape-element.d.ts +1 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/stringable.d.ts +3 -0
- package/node_modules/@aws-sdk/xml-builder/package.json +54 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +9 -8
- package/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js +4 -1
- package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpBindingProtocol.js +1 -6
- package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +9 -2
- package/node_modules/@smithy/core/dist-es/submodules/schema/TypeRegistry.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/NormalizedSchema.js +3 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/HttpProtocol.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/HttpProtocol.d.ts +4 -0
- package/node_modules/@smithy/core/package.json +1 -1
- package/node_modules/@smithy/middleware-endpoint/package.json +2 -2
- package/node_modules/@smithy/middleware-retry/package.json +2 -2
- package/node_modules/@smithy/smithy-client/package.json +3 -3
- package/node_modules/@smithy/util-defaults-mode-browser/package.json +2 -2
- package/node_modules/@smithy/util-defaults-mode-node/package.json +2 -2
- package/package.json +4 -4
@@ -0,0 +1,54 @@
|
|
1
|
+
{
|
2
|
+
"name": "@aws-sdk/xml-builder",
|
3
|
+
"version": "3.821.0",
|
4
|
+
"description": "XML builder for the AWS SDK",
|
5
|
+
"dependencies": {
|
6
|
+
"@smithy/types": "^4.3.1",
|
7
|
+
"tslib": "^2.6.2"
|
8
|
+
},
|
9
|
+
"scripts": {
|
10
|
+
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
11
|
+
"build:cjs": "node ../../scripts/compilation/inline xml-builder",
|
12
|
+
"build:es": "tsc -p tsconfig.es.json",
|
13
|
+
"build:include:deps": "lerna run --scope $npm_package_name --include-dependencies build",
|
14
|
+
"build:types": "tsc -p tsconfig.types.json",
|
15
|
+
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
16
|
+
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
|
17
|
+
"test": "yarn g:vitest run",
|
18
|
+
"test:watch": "yarn g:vitest watch"
|
19
|
+
},
|
20
|
+
"author": {
|
21
|
+
"name": "AWS SDK for JavaScript Team",
|
22
|
+
"url": "https://aws.amazon.com/javascript/"
|
23
|
+
},
|
24
|
+
"license": "Apache-2.0",
|
25
|
+
"main": "./dist-cjs/index.js",
|
26
|
+
"module": "./dist-es/index.js",
|
27
|
+
"types": "./dist-types/index.d.ts",
|
28
|
+
"engines": {
|
29
|
+
"node": ">=18.0.0"
|
30
|
+
},
|
31
|
+
"typesVersions": {
|
32
|
+
"<4.0": {
|
33
|
+
"dist-types/*": [
|
34
|
+
"dist-types/ts3.4/*"
|
35
|
+
]
|
36
|
+
}
|
37
|
+
},
|
38
|
+
"files": [
|
39
|
+
"dist-*/**"
|
40
|
+
],
|
41
|
+
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/packages/xml-builder",
|
42
|
+
"repository": {
|
43
|
+
"type": "git",
|
44
|
+
"url": "https://github.com/aws/aws-sdk-js-v3.git",
|
45
|
+
"directory": "packages/xml-builder"
|
46
|
+
},
|
47
|
+
"devDependencies": {
|
48
|
+
"@tsconfig/recommended": "1.0.1",
|
49
|
+
"concurrently": "7.0.0",
|
50
|
+
"downlevel-dts": "0.10.1",
|
51
|
+
"rimraf": "3.0.2",
|
52
|
+
"typescript": "~5.8.3"
|
53
|
+
}
|
54
|
+
}
|
@@ -136,7 +136,13 @@ var HttpProtocol = class {
|
|
136
136
|
cfId: output.headers["x-amz-cf-id"]
|
137
137
|
};
|
138
138
|
}
|
139
|
-
async deserializeHttpMessage(schema, context, response,
|
139
|
+
async deserializeHttpMessage(schema, context, response, arg4, arg5) {
|
140
|
+
let dataObject;
|
141
|
+
if (arg4 instanceof Set) {
|
142
|
+
dataObject = arg5;
|
143
|
+
} else {
|
144
|
+
dataObject = arg4;
|
145
|
+
}
|
140
146
|
const deserializer = this.deserializer;
|
141
147
|
const ns = import_schema.NormalizedSchema.of(schema);
|
142
148
|
const nonHttpBindingMembers = [];
|
@@ -200,7 +206,7 @@ var HttpProtocol = class {
|
|
200
206
|
} else if (memberTraits.httpPrefixHeaders !== void 0) {
|
201
207
|
dataObject[memberName] = {};
|
202
208
|
for (const [header, value] of Object.entries(response.headers)) {
|
203
|
-
if (
|
209
|
+
if (header.startsWith(memberTraits.httpPrefixHeaders)) {
|
204
210
|
dataObject[memberName][header.slice(memberTraits.httpPrefixHeaders.length)] = await deserializer.read(
|
205
211
|
[memberSchema.getValueSchema(), { httpHeader: header }],
|
206
212
|
value
|
@@ -373,12 +379,7 @@ var HttpBindingProtocol = class extends HttpProtocol {
|
|
373
379
|
delete response.headers[header];
|
374
380
|
response.headers[header.toLowerCase()] = value;
|
375
381
|
}
|
376
|
-
const
|
377
|
-
Object.values(ns.getMemberSchemas()).map((schema) => {
|
378
|
-
return schema.getMergedTraits().httpHeader;
|
379
|
-
}).filter(Boolean)
|
380
|
-
);
|
381
|
-
const nonHttpBindingMembers = await this.deserializeHttpMessage(ns, context, response, headerBindings, dataObject);
|
382
|
+
const nonHttpBindingMembers = await this.deserializeHttpMessage(ns, context, response, dataObject);
|
382
383
|
if (nonHttpBindingMembers.length) {
|
383
384
|
const bytes = await collectBody(response.body, context);
|
384
385
|
if (bytes.byteLength > 0) {
|
@@ -207,7 +207,7 @@ var TypeRegistry = class _TypeRegistry {
|
|
207
207
|
*/
|
208
208
|
getBaseException() {
|
209
209
|
for (const [id, schema] of this.schemas.entries()) {
|
210
|
-
if (id.startsWith("
|
210
|
+
if (id.startsWith("smithy.ts.sdk.synthetic.") && id.endsWith("ServiceException")) {
|
211
211
|
return schema;
|
212
212
|
}
|
213
213
|
}
|
@@ -715,6 +715,9 @@ var NormalizedSchema = class _NormalizedSchema {
|
|
715
715
|
* This avoids the overhead of calling Object.entries(ns.getMemberSchemas()).
|
716
716
|
*/
|
717
717
|
*structIterator() {
|
718
|
+
if (this.isUnitSchema()) {
|
719
|
+
return;
|
720
|
+
}
|
718
721
|
if (!this.isStructSchema()) {
|
719
722
|
throw new Error("@smithy/core/schema - cannot acquire structIterator on non-struct schema.");
|
720
723
|
}
|
@@ -159,12 +159,7 @@ export class HttpBindingProtocol extends HttpProtocol {
|
|
159
159
|
delete response.headers[header];
|
160
160
|
response.headers[header.toLowerCase()] = value;
|
161
161
|
}
|
162
|
-
const
|
163
|
-
.map((schema) => {
|
164
|
-
return schema.getMergedTraits().httpHeader;
|
165
|
-
})
|
166
|
-
.filter(Boolean));
|
167
|
-
const nonHttpBindingMembers = await this.deserializeHttpMessage(ns, context, response, headerBindings, dataObject);
|
162
|
+
const nonHttpBindingMembers = await this.deserializeHttpMessage(ns, context, response, dataObject);
|
168
163
|
if (nonHttpBindingMembers.length) {
|
169
164
|
const bytes = await collectBody(response.body, context);
|
170
165
|
if (bytes.byteLength > 0) {
|
@@ -75,7 +75,14 @@ export class HttpProtocol {
|
|
75
75
|
cfId: output.headers["x-amz-cf-id"],
|
76
76
|
};
|
77
77
|
}
|
78
|
-
async deserializeHttpMessage(schema, context, response,
|
78
|
+
async deserializeHttpMessage(schema, context, response, arg4, arg5) {
|
79
|
+
let dataObject;
|
80
|
+
if (arg4 instanceof Set) {
|
81
|
+
dataObject = arg5;
|
82
|
+
}
|
83
|
+
else {
|
84
|
+
dataObject = arg4;
|
85
|
+
}
|
79
86
|
const deserializer = this.deserializer;
|
80
87
|
const ns = NormalizedSchema.of(schema);
|
81
88
|
const nonHttpBindingMembers = [];
|
@@ -147,7 +154,7 @@ export class HttpProtocol {
|
|
147
154
|
else if (memberTraits.httpPrefixHeaders !== undefined) {
|
148
155
|
dataObject[memberName] = {};
|
149
156
|
for (const [header, value] of Object.entries(response.headers)) {
|
150
|
-
if (
|
157
|
+
if (header.startsWith(memberTraits.httpPrefixHeaders)) {
|
151
158
|
dataObject[memberName][header.slice(memberTraits.httpPrefixHeaders.length)] = await deserializer.read([memberSchema.getValueSchema(), { httpHeader: header }], value);
|
152
159
|
}
|
153
160
|
}
|
@@ -23,7 +23,7 @@ export class TypeRegistry {
|
|
23
23
|
}
|
24
24
|
getBaseException() {
|
25
25
|
for (const [id, schema] of this.schemas.entries()) {
|
26
|
-
if (id.startsWith("
|
26
|
+
if (id.startsWith("smithy.ts.sdk.synthetic.") && id.endsWith("ServiceException")) {
|
27
27
|
return schema;
|
28
28
|
}
|
29
29
|
}
|
@@ -261,6 +261,9 @@ export class NormalizedSchema {
|
|
261
261
|
return {};
|
262
262
|
}
|
263
263
|
*structIterator() {
|
264
|
+
if (this.isUnitSchema()) {
|
265
|
+
return;
|
266
|
+
}
|
264
267
|
if (!this.isStructSchema()) {
|
265
268
|
throw new Error("@smithy/core/schema - cannot acquire structIterator on non-struct schema.");
|
266
269
|
}
|
@@ -25,5 +25,9 @@ export declare abstract class HttpProtocol implements ClientProtocol<IHttpReques
|
|
25
25
|
protected setHostPrefix<Input extends object>(request: IHttpRequest, operationSchema: OperationSchema, input: Input): void;
|
26
26
|
protected abstract handleError(operationSchema: OperationSchema, context: HandlerExecutionContext & SerdeFunctions, response: IHttpResponse, dataObject: any, metadata: ResponseMetadata): Promise<never>;
|
27
27
|
protected deserializeMetadata(output: IHttpResponse): ResponseMetadata;
|
28
|
+
/**
|
29
|
+
* @deprecated use signature without headerBindings.
|
30
|
+
*/
|
28
31
|
protected deserializeHttpMessage(schema: Schema, context: HandlerExecutionContext & SerdeFunctions, response: IHttpResponse, headerBindings: Set<string>, dataObject: any): Promise<string[]>;
|
32
|
+
protected deserializeHttpMessage(schema: Schema, context: HandlerExecutionContext & SerdeFunctions, response: IHttpResponse, dataObject: any): Promise<string[]>;
|
29
33
|
}
|
@@ -25,5 +25,9 @@ export declare abstract class HttpProtocol implements ClientProtocol<IHttpReques
|
|
25
25
|
protected setHostPrefix<Input extends object>(request: IHttpRequest, operationSchema: OperationSchema, input: Input): void;
|
26
26
|
protected abstract handleError(operationSchema: OperationSchema, context: HandlerExecutionContext & SerdeFunctions, response: IHttpResponse, dataObject: any, metadata: ResponseMetadata): Promise<never>;
|
27
27
|
protected deserializeMetadata(output: IHttpResponse): ResponseMetadata;
|
28
|
+
/**
|
29
|
+
* @deprecated use signature without headerBindings.
|
30
|
+
*/
|
28
31
|
protected deserializeHttpMessage(schema: Schema, context: HandlerExecutionContext & SerdeFunctions, response: IHttpResponse, headerBindings: Set<string>, dataObject: any): Promise<string[]>;
|
32
|
+
protected deserializeHttpMessage(schema: Schema, context: HandlerExecutionContext & SerdeFunctions, response: IHttpResponse, dataObject: any): Promise<string[]>;
|
29
33
|
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@smithy/middleware-endpoint",
|
3
|
-
"version": "4.1.
|
3
|
+
"version": "4.1.11",
|
4
4
|
"scripts": {
|
5
5
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types && yarn build:types:downlevel'",
|
6
6
|
"build:cjs": "node ../../scripts/inline middleware-endpoint",
|
@@ -24,7 +24,7 @@
|
|
24
24
|
},
|
25
25
|
"license": "Apache-2.0",
|
26
26
|
"dependencies": {
|
27
|
-
"@smithy/core": "^3.5.
|
27
|
+
"@smithy/core": "^3.5.3",
|
28
28
|
"@smithy/middleware-serde": "^4.0.8",
|
29
29
|
"@smithy/node-config-provider": "^4.1.3",
|
30
30
|
"@smithy/shared-ini-file-loader": "^4.0.4",
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@smithy/middleware-retry",
|
3
|
-
"version": "4.1.
|
3
|
+
"version": "4.1.12",
|
4
4
|
"scripts": {
|
5
5
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types && yarn build:types:downlevel'",
|
6
6
|
"build:cjs": "node ../../scripts/inline middleware-retry",
|
@@ -36,7 +36,7 @@
|
|
36
36
|
"@smithy/node-config-provider": "^4.1.3",
|
37
37
|
"@smithy/protocol-http": "^5.1.2",
|
38
38
|
"@smithy/service-error-classification": "^4.0.5",
|
39
|
-
"@smithy/smithy-client": "^4.4.
|
39
|
+
"@smithy/smithy-client": "^4.4.3",
|
40
40
|
"@smithy/types": "^4.3.1",
|
41
41
|
"@smithy/util-middleware": "^4.0.4",
|
42
42
|
"@smithy/util-retry": "^4.0.5",
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@smithy/smithy-client",
|
3
|
-
"version": "4.4.
|
3
|
+
"version": "4.4.3",
|
4
4
|
"scripts": {
|
5
5
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types && yarn build:types:downlevel'",
|
6
6
|
"build:cjs": "node ../../scripts/inline smithy-client",
|
@@ -24,8 +24,8 @@
|
|
24
24
|
},
|
25
25
|
"license": "Apache-2.0",
|
26
26
|
"dependencies": {
|
27
|
-
"@smithy/core": "^3.5.
|
28
|
-
"@smithy/middleware-endpoint": "^4.1.
|
27
|
+
"@smithy/core": "^3.5.3",
|
28
|
+
"@smithy/middleware-endpoint": "^4.1.11",
|
29
29
|
"@smithy/middleware-stack": "^4.0.4",
|
30
30
|
"@smithy/protocol-http": "^5.1.2",
|
31
31
|
"@smithy/types": "^4.3.1",
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@smithy/util-defaults-mode-browser",
|
3
|
-
"version": "4.0.
|
3
|
+
"version": "4.0.19",
|
4
4
|
"scripts": {
|
5
5
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types && yarn build:types:downlevel'",
|
6
6
|
"build:cjs": "node ../../scripts/inline util-defaults-mode-browser",
|
@@ -24,7 +24,7 @@
|
|
24
24
|
"license": "Apache-2.0",
|
25
25
|
"dependencies": {
|
26
26
|
"@smithy/property-provider": "^4.0.4",
|
27
|
-
"@smithy/smithy-client": "^4.4.
|
27
|
+
"@smithy/smithy-client": "^4.4.3",
|
28
28
|
"@smithy/types": "^4.3.1",
|
29
29
|
"bowser": "^2.11.0",
|
30
30
|
"tslib": "^2.6.2"
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@smithy/util-defaults-mode-node",
|
3
|
-
"version": "4.0.
|
3
|
+
"version": "4.0.19",
|
4
4
|
"scripts": {
|
5
5
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types && yarn build:types:downlevel'",
|
6
6
|
"build:cjs": "node ../../scripts/inline util-defaults-mode-node",
|
@@ -27,7 +27,7 @@
|
|
27
27
|
"@smithy/credential-provider-imds": "^4.0.6",
|
28
28
|
"@smithy/node-config-provider": "^4.1.3",
|
29
29
|
"@smithy/property-provider": "^4.0.4",
|
30
|
-
"@smithy/smithy-client": "^4.4.
|
30
|
+
"@smithy/smithy-client": "^4.4.3",
|
31
31
|
"@smithy/types": "^4.3.1",
|
32
32
|
"tslib": "^2.6.2"
|
33
33
|
},
|
package/package.json
CHANGED
@@ -42,7 +42,7 @@
|
|
42
42
|
"organization": false
|
43
43
|
},
|
44
44
|
"devDependencies": {
|
45
|
-
"@cdk8s/projen-common": "0.0.
|
45
|
+
"@cdk8s/projen-common": "0.0.607",
|
46
46
|
"@stylistic/eslint-plugin": "^2",
|
47
47
|
"@types/fs-extra": "^11.0.4",
|
48
48
|
"@types/jest": "^27",
|
@@ -52,7 +52,7 @@
|
|
52
52
|
"aws-cdk": "^2.1017.1",
|
53
53
|
"aws-cdk-lib": "2.195.0",
|
54
54
|
"cdk8s": "2.68.91",
|
55
|
-
"cdk8s-cli": "^2.200.
|
55
|
+
"cdk8s-cli": "^2.200.90",
|
56
56
|
"commit-and-tag-version": "^12",
|
57
57
|
"constructs": "10.3.0",
|
58
58
|
"eslint": "^9",
|
@@ -77,7 +77,7 @@
|
|
77
77
|
"constructs": "^10.3.0"
|
78
78
|
},
|
79
79
|
"dependencies": {
|
80
|
-
"@aws-sdk/client-cloudformation": "^3.
|
80
|
+
"@aws-sdk/client-cloudformation": "^3.823.0"
|
81
81
|
},
|
82
82
|
"bundledDependencies": [
|
83
83
|
"@aws-sdk/client-cloudformation"
|
@@ -93,7 +93,7 @@
|
|
93
93
|
"publishConfig": {
|
94
94
|
"access": "public"
|
95
95
|
},
|
96
|
-
"version": "0.0.
|
96
|
+
"version": "0.0.306",
|
97
97
|
"jest": {
|
98
98
|
"coverageProvider": "v8",
|
99
99
|
"testMatch": [
|