@jjrawlins/cdk-diff-pr-github-action 0.0.41 → 0.0.43

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.
Files changed (44) hide show
  1. package/.jsii +3 -3
  2. package/lib/CdkDiffIamTemplate.js +1 -1
  3. package/lib/CdkDiffStackWorkflow.js +1 -1
  4. package/lib/CdkDriftDetectionWorkflow.js +1 -1
  5. package/lib/CdkDriftIamTemplate.js +1 -1
  6. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/index.js +29 -29
  7. package/node_modules/@aws-sdk/client-cloudformation/dist-es/schemas/schemas_0.js +29 -29
  8. package/node_modules/@aws-sdk/client-cloudformation/package.json +34 -34
  9. package/node_modules/@aws-sdk/client-sso/package.json +32 -32
  10. package/node_modules/@aws-sdk/core/dist-cjs/index.js +97 -4
  11. package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +97 -4
  12. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/UnionSerde.js +23 -0
  13. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeDeserializer.js +14 -3
  14. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeSerializer.js +7 -0
  15. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.js +9 -0
  16. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QueryShapeSerializer.js +26 -1
  17. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeDeserializer.js +12 -0
  18. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeSerializer.js +16 -0
  19. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/UnionSerde.d.ts +24 -0
  20. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/UnionSerde.d.ts +9 -0
  21. package/node_modules/@aws-sdk/core/package.json +11 -11
  22. package/node_modules/@aws-sdk/credential-provider-env/package.json +5 -5
  23. package/node_modules/@aws-sdk/credential-provider-http/package.json +10 -10
  24. package/node_modules/@aws-sdk/credential-provider-ini/package.json +14 -14
  25. package/node_modules/@aws-sdk/credential-provider-login/package.json +8 -8
  26. package/node_modules/@aws-sdk/credential-provider-node/package.json +12 -12
  27. package/node_modules/@aws-sdk/credential-provider-process/package.json +6 -6
  28. package/node_modules/@aws-sdk/credential-provider-sso/package.json +8 -8
  29. package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +7 -7
  30. package/node_modules/@aws-sdk/middleware-host-header/package.json +4 -4
  31. package/node_modules/@aws-sdk/middleware-logger/package.json +3 -3
  32. package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +4 -4
  33. package/node_modules/@aws-sdk/middleware-user-agent/package.json +7 -7
  34. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +7 -7
  35. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/schemas/schemas_0.js +7 -7
  36. package/node_modules/@aws-sdk/nested-clients/package.json +32 -32
  37. package/node_modules/@aws-sdk/region-config-resolver/package.json +5 -5
  38. package/node_modules/@aws-sdk/token-providers/package.json +7 -7
  39. package/node_modules/@aws-sdk/types/package.json +2 -2
  40. package/node_modules/@aws-sdk/util-endpoints/package.json +5 -5
  41. package/node_modules/@aws-sdk/util-user-agent-browser/package.json +3 -3
  42. package/node_modules/@aws-sdk/util-user-agent-node/package.json +5 -5
  43. package/node_modules/@aws-sdk/xml-builder/package.json +2 -2
  44. package/package.json +3 -3
@@ -4,6 +4,7 @@ import { NormalizedSchema } from "@smithy/core/schema";
4
4
  import { getValueFromTextNode } from "@smithy/smithy-client";
5
5
  import { toUtf8 } from "@smithy/util-utf8";
6
6
  import { SerdeContextConfig } from "../ConfigurableSerdeContext";
7
+ import { UnionSerde } from "../UnionSerde";
7
8
  export class XmlShapeDeserializer extends SerdeContextConfig {
8
9
  settings;
9
10
  stringDeserializer;
@@ -91,15 +92,26 @@ export class XmlShapeDeserializer extends SerdeContextConfig {
91
92
  return buffer;
92
93
  }
93
94
  if (ns.isStructSchema()) {
95
+ const union = ns.isUnionSchema();
96
+ let unionSerde;
97
+ if (union) {
98
+ unionSerde = new UnionSerde(value, buffer);
99
+ }
94
100
  for (const [memberName, memberSchema] of ns.structIterator()) {
95
101
  const memberTraits = memberSchema.getMergedTraits();
96
102
  const xmlObjectKey = !memberTraits.httpPayload
97
103
  ? memberSchema.getMemberTraits().xmlName ?? memberName
98
104
  : memberTraits.xmlName ?? memberSchema.getName();
105
+ if (union) {
106
+ unionSerde.mark(xmlObjectKey);
107
+ }
99
108
  if (value[xmlObjectKey] != null) {
100
109
  buffer[memberName] = this.readSchema(memberSchema, value[xmlObjectKey]);
101
110
  }
102
111
  }
112
+ if (union) {
113
+ unionSerde.writeUnknown();
114
+ }
103
115
  return buffer;
104
116
  }
105
117
  if (ns.isDocumentSchema()) {
@@ -87,6 +87,22 @@ export class XmlShapeSerializer extends SerdeContextConfig {
87
87
  }
88
88
  }
89
89
  }
90
+ const { $unknown } = value;
91
+ if ($unknown && ns.isUnionSchema() && Array.isArray($unknown) && Object.keys(value).length === 1) {
92
+ const [k, v] = $unknown;
93
+ const node = XmlNode.of(k);
94
+ if (typeof v !== "string") {
95
+ if (value instanceof XmlNode || value instanceof XmlText) {
96
+ structXmlNode.addChildNode(value);
97
+ }
98
+ else {
99
+ throw new Error(`@aws-sdk - $unknown union member in XML requires ` +
100
+ `value of type string, @aws-sdk/xml-builder::XmlNode or XmlText.`);
101
+ }
102
+ }
103
+ this.writeSimpleInto(0, v, node, xmlns);
104
+ structXmlNode.addChildNode(node);
105
+ }
90
106
  if (xmlns) {
91
107
  structXmlNode.addAttribute(xmlnsAttr, xmlns);
92
108
  }
@@ -0,0 +1,24 @@
1
+ /**
2
+ * Helper for identifying unknown union members during deserialization.
3
+ */
4
+ export declare class UnionSerde {
5
+ private from;
6
+ private to;
7
+ private keys;
8
+ constructor(from: any, to: any);
9
+ /**
10
+ * Marks the key as being a known member.
11
+ * @param key - to mark.
12
+ */
13
+ mark(key: string): void;
14
+ /**
15
+ * @returns whether only one key remains unmarked and nothing has been written,
16
+ * implying the object is a union.
17
+ */
18
+ hasUnknown(): boolean;
19
+ /**
20
+ * Writes the unknown key-value pair, if present, into the $unknown property
21
+ * of the union object.
22
+ */
23
+ writeUnknown(): void;
24
+ }
@@ -0,0 +1,9 @@
1
+ export declare class UnionSerde {
2
+ private from;
3
+ private to;
4
+ private keys;
5
+ constructor(from: any, to: any);
6
+ mark(key: string): void;
7
+ hasUnknown(): boolean;
8
+ writeUnknown(): void;
9
+ }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/core",
3
- "version": "3.954.0",
3
+ "version": "3.956.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,17 +81,17 @@
81
81
  },
82
82
  "license": "Apache-2.0",
83
83
  "dependencies": {
84
- "@aws-sdk/types": "3.953.0",
85
- "@aws-sdk/xml-builder": "3.953.0",
86
- "@smithy/core": "^3.19.0",
87
- "@smithy/node-config-provider": "^4.3.6",
88
- "@smithy/property-provider": "^4.2.6",
89
- "@smithy/protocol-http": "^5.3.6",
90
- "@smithy/signature-v4": "^5.3.6",
91
- "@smithy/smithy-client": "^4.10.1",
92
- "@smithy/types": "^4.10.0",
84
+ "@aws-sdk/types": "3.956.0",
85
+ "@aws-sdk/xml-builder": "3.956.0",
86
+ "@smithy/core": "^3.20.0",
87
+ "@smithy/node-config-provider": "^4.3.7",
88
+ "@smithy/property-provider": "^4.2.7",
89
+ "@smithy/protocol-http": "^5.3.7",
90
+ "@smithy/signature-v4": "^5.3.7",
91
+ "@smithy/smithy-client": "^4.10.2",
92
+ "@smithy/types": "^4.11.0",
93
93
  "@smithy/util-base64": "^4.3.0",
94
- "@smithy/util-middleware": "^4.2.6",
94
+ "@smithy/util-middleware": "^4.2.7",
95
95
  "@smithy/util-utf8": "^4.2.0",
96
96
  "tslib": "^2.6.2"
97
97
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-env",
3
- "version": "3.954.0",
3
+ "version": "3.956.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",
@@ -26,10 +26,10 @@
26
26
  },
27
27
  "license": "Apache-2.0",
28
28
  "dependencies": {
29
- "@aws-sdk/core": "3.954.0",
30
- "@aws-sdk/types": "3.953.0",
31
- "@smithy/property-provider": "^4.2.6",
32
- "@smithy/types": "^4.10.0",
29
+ "@aws-sdk/core": "3.956.0",
30
+ "@aws-sdk/types": "3.956.0",
31
+ "@smithy/property-provider": "^4.2.7",
32
+ "@smithy/types": "^4.11.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-http",
3
- "version": "3.954.0",
3
+ "version": "3.956.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",
@@ -28,15 +28,15 @@
28
28
  },
29
29
  "license": "Apache-2.0",
30
30
  "dependencies": {
31
- "@aws-sdk/core": "3.954.0",
32
- "@aws-sdk/types": "3.953.0",
33
- "@smithy/fetch-http-handler": "^5.3.7",
34
- "@smithy/node-http-handler": "^4.4.6",
35
- "@smithy/property-provider": "^4.2.6",
36
- "@smithy/protocol-http": "^5.3.6",
37
- "@smithy/smithy-client": "^4.10.1",
38
- "@smithy/types": "^4.10.0",
39
- "@smithy/util-stream": "^4.5.7",
31
+ "@aws-sdk/core": "3.956.0",
32
+ "@aws-sdk/types": "3.956.0",
33
+ "@smithy/fetch-http-handler": "^5.3.8",
34
+ "@smithy/node-http-handler": "^4.4.7",
35
+ "@smithy/property-provider": "^4.2.7",
36
+ "@smithy/protocol-http": "^5.3.7",
37
+ "@smithy/smithy-client": "^4.10.2",
38
+ "@smithy/types": "^4.11.0",
39
+ "@smithy/util-stream": "^4.5.8",
40
40
  "tslib": "^2.6.2"
41
41
  },
42
42
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-ini",
3
- "version": "3.955.0",
3
+ "version": "3.956.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",
@@ -28,19 +28,19 @@
28
28
  },
29
29
  "license": "Apache-2.0",
30
30
  "dependencies": {
31
- "@aws-sdk/core": "3.954.0",
32
- "@aws-sdk/credential-provider-env": "3.954.0",
33
- "@aws-sdk/credential-provider-http": "3.954.0",
34
- "@aws-sdk/credential-provider-login": "3.955.0",
35
- "@aws-sdk/credential-provider-process": "3.954.0",
36
- "@aws-sdk/credential-provider-sso": "3.955.0",
37
- "@aws-sdk/credential-provider-web-identity": "3.955.0",
38
- "@aws-sdk/nested-clients": "3.955.0",
39
- "@aws-sdk/types": "3.953.0",
40
- "@smithy/credential-provider-imds": "^4.2.6",
41
- "@smithy/property-provider": "^4.2.6",
42
- "@smithy/shared-ini-file-loader": "^4.4.1",
43
- "@smithy/types": "^4.10.0",
31
+ "@aws-sdk/core": "3.956.0",
32
+ "@aws-sdk/credential-provider-env": "3.956.0",
33
+ "@aws-sdk/credential-provider-http": "3.956.0",
34
+ "@aws-sdk/credential-provider-login": "3.956.0",
35
+ "@aws-sdk/credential-provider-process": "3.956.0",
36
+ "@aws-sdk/credential-provider-sso": "3.956.0",
37
+ "@aws-sdk/credential-provider-web-identity": "3.956.0",
38
+ "@aws-sdk/nested-clients": "3.956.0",
39
+ "@aws-sdk/types": "3.956.0",
40
+ "@smithy/credential-provider-imds": "^4.2.7",
41
+ "@smithy/property-provider": "^4.2.7",
42
+ "@smithy/shared-ini-file-loader": "^4.4.2",
43
+ "@smithy/types": "^4.11.0",
44
44
  "tslib": "^2.6.2"
45
45
  },
46
46
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-login",
3
- "version": "3.955.0",
3
+ "version": "3.956.0",
4
4
  "description": "AWS credential provider that sources credentials from aws login cached tokens",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -28,13 +28,13 @@
28
28
  },
29
29
  "license": "Apache-2.0",
30
30
  "dependencies": {
31
- "@aws-sdk/core": "3.954.0",
32
- "@aws-sdk/nested-clients": "3.955.0",
33
- "@aws-sdk/types": "3.953.0",
34
- "@smithy/property-provider": "^4.2.6",
35
- "@smithy/protocol-http": "^5.3.6",
36
- "@smithy/shared-ini-file-loader": "^4.4.1",
37
- "@smithy/types": "^4.10.0",
31
+ "@aws-sdk/core": "3.956.0",
32
+ "@aws-sdk/nested-clients": "3.956.0",
33
+ "@aws-sdk/types": "3.956.0",
34
+ "@smithy/property-provider": "^4.2.7",
35
+ "@smithy/protocol-http": "^5.3.7",
36
+ "@smithy/shared-ini-file-loader": "^4.4.2",
37
+ "@smithy/types": "^4.11.0",
38
38
  "tslib": "^2.6.2"
39
39
  },
40
40
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-node",
3
- "version": "3.955.0",
3
+ "version": "3.956.0",
4
4
  "description": "AWS credential provider that sources credentials from a Node.JS environment. ",
5
5
  "engines": {
6
6
  "node": ">=18.0.0"
@@ -31,17 +31,17 @@
31
31
  },
32
32
  "license": "Apache-2.0",
33
33
  "dependencies": {
34
- "@aws-sdk/credential-provider-env": "3.954.0",
35
- "@aws-sdk/credential-provider-http": "3.954.0",
36
- "@aws-sdk/credential-provider-ini": "3.955.0",
37
- "@aws-sdk/credential-provider-process": "3.954.0",
38
- "@aws-sdk/credential-provider-sso": "3.955.0",
39
- "@aws-sdk/credential-provider-web-identity": "3.955.0",
40
- "@aws-sdk/types": "3.953.0",
41
- "@smithy/credential-provider-imds": "^4.2.6",
42
- "@smithy/property-provider": "^4.2.6",
43
- "@smithy/shared-ini-file-loader": "^4.4.1",
44
- "@smithy/types": "^4.10.0",
34
+ "@aws-sdk/credential-provider-env": "3.956.0",
35
+ "@aws-sdk/credential-provider-http": "3.956.0",
36
+ "@aws-sdk/credential-provider-ini": "3.956.0",
37
+ "@aws-sdk/credential-provider-process": "3.956.0",
38
+ "@aws-sdk/credential-provider-sso": "3.956.0",
39
+ "@aws-sdk/credential-provider-web-identity": "3.956.0",
40
+ "@aws-sdk/types": "3.956.0",
41
+ "@smithy/credential-provider-imds": "^4.2.7",
42
+ "@smithy/property-provider": "^4.2.7",
43
+ "@smithy/shared-ini-file-loader": "^4.4.2",
44
+ "@smithy/types": "^4.11.0",
45
45
  "tslib": "^2.6.2"
46
46
  },
47
47
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-process",
3
- "version": "3.954.0",
3
+ "version": "3.956.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",
@@ -26,11 +26,11 @@
26
26
  },
27
27
  "license": "Apache-2.0",
28
28
  "dependencies": {
29
- "@aws-sdk/core": "3.954.0",
30
- "@aws-sdk/types": "3.953.0",
31
- "@smithy/property-provider": "^4.2.6",
32
- "@smithy/shared-ini-file-loader": "^4.4.1",
33
- "@smithy/types": "^4.10.0",
29
+ "@aws-sdk/core": "3.956.0",
30
+ "@aws-sdk/types": "3.956.0",
31
+ "@smithy/property-provider": "^4.2.7",
32
+ "@smithy/shared-ini-file-loader": "^4.4.2",
33
+ "@smithy/types": "^4.11.0",
34
34
  "tslib": "^2.6.2"
35
35
  },
36
36
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-sso",
3
- "version": "3.955.0",
3
+ "version": "3.956.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,13 +26,13 @@
26
26
  },
27
27
  "license": "Apache-2.0",
28
28
  "dependencies": {
29
- "@aws-sdk/client-sso": "3.955.0",
30
- "@aws-sdk/core": "3.954.0",
31
- "@aws-sdk/token-providers": "3.955.0",
32
- "@aws-sdk/types": "3.953.0",
33
- "@smithy/property-provider": "^4.2.6",
34
- "@smithy/shared-ini-file-loader": "^4.4.1",
35
- "@smithy/types": "^4.10.0",
29
+ "@aws-sdk/client-sso": "3.956.0",
30
+ "@aws-sdk/core": "3.956.0",
31
+ "@aws-sdk/token-providers": "3.956.0",
32
+ "@aws-sdk/types": "3.956.0",
33
+ "@smithy/property-provider": "^4.2.7",
34
+ "@smithy/shared-ini-file-loader": "^4.4.2",
35
+ "@smithy/types": "^4.11.0",
36
36
  "tslib": "^2.6.2"
37
37
  },
38
38
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-web-identity",
3
- "version": "3.955.0",
3
+ "version": "3.956.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",
@@ -34,12 +34,12 @@
34
34
  },
35
35
  "license": "Apache-2.0",
36
36
  "dependencies": {
37
- "@aws-sdk/core": "3.954.0",
38
- "@aws-sdk/nested-clients": "3.955.0",
39
- "@aws-sdk/types": "3.953.0",
40
- "@smithy/property-provider": "^4.2.6",
41
- "@smithy/shared-ini-file-loader": "^4.4.1",
42
- "@smithy/types": "^4.10.0",
37
+ "@aws-sdk/core": "3.956.0",
38
+ "@aws-sdk/nested-clients": "3.956.0",
39
+ "@aws-sdk/types": "3.956.0",
40
+ "@smithy/property-provider": "^4.2.7",
41
+ "@smithy/shared-ini-file-loader": "^4.4.2",
42
+ "@smithy/types": "^4.11.0",
43
43
  "tslib": "^2.6.2"
44
44
  },
45
45
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-host-header",
3
- "version": "3.953.0",
3
+ "version": "3.956.0",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
6
6
  "build:cjs": "node ../../scripts/compilation/inline middleware-host-header",
@@ -25,9 +25,9 @@
25
25
  },
26
26
  "license": "Apache-2.0",
27
27
  "dependencies": {
28
- "@aws-sdk/types": "3.953.0",
29
- "@smithy/protocol-http": "^5.3.6",
30
- "@smithy/types": "^4.10.0",
28
+ "@aws-sdk/types": "3.956.0",
29
+ "@smithy/protocol-http": "^5.3.7",
30
+ "@smithy/types": "^4.11.0",
31
31
  "tslib": "^2.6.2"
32
32
  },
33
33
  "engines": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-logger",
3
- "version": "3.953.0",
3
+ "version": "3.956.0",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
6
6
  "build:cjs": "node ../../scripts/compilation/inline middleware-logger",
@@ -25,8 +25,8 @@
25
25
  "module": "./dist-es/index.js",
26
26
  "types": "./dist-types/index.d.ts",
27
27
  "dependencies": {
28
- "@aws-sdk/types": "3.953.0",
29
- "@smithy/types": "^4.10.0",
28
+ "@aws-sdk/types": "3.956.0",
29
+ "@smithy/types": "^4.11.0",
30
30
  "tslib": "^2.6.2"
31
31
  },
32
32
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-recursion-detection",
3
- "version": "3.953.0",
3
+ "version": "3.956.0",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
6
6
  "build:cjs": "node ../../scripts/compilation/inline middleware-recursion-detection",
@@ -24,10 +24,10 @@
24
24
  },
25
25
  "license": "Apache-2.0",
26
26
  "dependencies": {
27
- "@aws-sdk/types": "3.953.0",
27
+ "@aws-sdk/types": "3.956.0",
28
28
  "@aws/lambda-invoke-store": "^0.2.2",
29
- "@smithy/protocol-http": "^5.3.6",
30
- "@smithy/types": "^4.10.0",
29
+ "@smithy/protocol-http": "^5.3.7",
30
+ "@smithy/types": "^4.11.0",
31
31
  "tslib": "^2.6.2"
32
32
  },
33
33
  "engines": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-user-agent",
3
- "version": "3.954.0",
3
+ "version": "3.956.0",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
6
6
  "build:cjs": "node ../../scripts/compilation/inline middleware-user-agent",
@@ -25,12 +25,12 @@
25
25
  },
26
26
  "license": "Apache-2.0",
27
27
  "dependencies": {
28
- "@aws-sdk/core": "3.954.0",
29
- "@aws-sdk/types": "3.953.0",
30
- "@aws-sdk/util-endpoints": "3.953.0",
31
- "@smithy/core": "^3.19.0",
32
- "@smithy/protocol-http": "^5.3.6",
33
- "@smithy/types": "^4.10.0",
28
+ "@aws-sdk/core": "3.956.0",
29
+ "@aws-sdk/types": "3.956.0",
30
+ "@aws-sdk/util-endpoints": "3.956.0",
31
+ "@smithy/core": "^3.20.0",
32
+ "@smithy/protocol-http": "^5.3.7",
33
+ "@smithy/types": "^4.11.0",
34
34
  "tslib": "^2.6.2"
35
35
  },
36
36
  "devDependencies": {
@@ -206,7 +206,7 @@ var ExpiredTokenException$ = [
206
206
  -3,
207
207
  n0,
208
208
  _ETE,
209
- { [_e]: _c, [_hE]: 400, [_aQE]: [`ExpiredTokenException`, 400] },
209
+ { [_aQE]: [`ExpiredTokenException`, 400], [_e]: _c, [_hE]: 400 },
210
210
  [_m],
211
211
  [0],
212
212
  ];
@@ -215,7 +215,7 @@ var IDPCommunicationErrorException$ = [
215
215
  -3,
216
216
  n0,
217
217
  _IDPCEE,
218
- { [_e]: _c, [_hE]: 400, [_aQE]: [`IDPCommunicationError`, 400] },
218
+ { [_aQE]: [`IDPCommunicationError`, 400], [_e]: _c, [_hE]: 400 },
219
219
  [_m],
220
220
  [0],
221
221
  ];
@@ -224,7 +224,7 @@ var IDPRejectedClaimException$ = [
224
224
  -3,
225
225
  n0,
226
226
  _IDPRCE,
227
- { [_e]: _c, [_hE]: 403, [_aQE]: [`IDPRejectedClaim`, 403] },
227
+ { [_aQE]: [`IDPRejectedClaim`, 403], [_e]: _c, [_hE]: 403 },
228
228
  [_m],
229
229
  [0],
230
230
  ];
@@ -233,7 +233,7 @@ var InvalidIdentityTokenException$ = [
233
233
  -3,
234
234
  n0,
235
235
  _IITE,
236
- { [_e]: _c, [_hE]: 400, [_aQE]: [`InvalidIdentityToken`, 400] },
236
+ { [_aQE]: [`InvalidIdentityToken`, 400], [_e]: _c, [_hE]: 400 },
237
237
  [_m],
238
238
  [0],
239
239
  ];
@@ -242,7 +242,7 @@ var MalformedPolicyDocumentException$ = [
242
242
  -3,
243
243
  n0,
244
244
  _MPDE,
245
- { [_e]: _c, [_hE]: 400, [_aQE]: [`MalformedPolicyDocument`, 400] },
245
+ { [_aQE]: [`MalformedPolicyDocument`, 400], [_e]: _c, [_hE]: 400 },
246
246
  [_m],
247
247
  [0],
248
248
  ];
@@ -251,7 +251,7 @@ var PackedPolicyTooLargeException$ = [
251
251
  -3,
252
252
  n0,
253
253
  _PPTLE,
254
- { [_e]: _c, [_hE]: 400, [_aQE]: [`PackedPolicyTooLarge`, 400] },
254
+ { [_aQE]: [`PackedPolicyTooLarge`, 400], [_e]: _c, [_hE]: 400 },
255
255
  [_m],
256
256
  [0],
257
257
  ];
@@ -262,7 +262,7 @@ var RegionDisabledException$ = [
262
262
  -3,
263
263
  n0,
264
264
  _RDE,
265
- { [_e]: _c, [_hE]: 403, [_aQE]: [`RegionDisabledException`, 403] },
265
+ { [_aQE]: [`RegionDisabledException`, 403], [_e]: _c, [_hE]: 403 },
266
266
  [_m],
267
267
  [0],
268
268
  ];
@@ -107,7 +107,7 @@ export var ExpiredTokenException$ = [
107
107
  -3,
108
108
  n0,
109
109
  _ETE,
110
- { [_e]: _c, [_hE]: 400, [_aQE]: [`ExpiredTokenException`, 400] },
110
+ { [_aQE]: [`ExpiredTokenException`, 400], [_e]: _c, [_hE]: 400 },
111
111
  [_m],
112
112
  [0],
113
113
  ];
@@ -116,7 +116,7 @@ export var IDPCommunicationErrorException$ = [
116
116
  -3,
117
117
  n0,
118
118
  _IDPCEE,
119
- { [_e]: _c, [_hE]: 400, [_aQE]: [`IDPCommunicationError`, 400] },
119
+ { [_aQE]: [`IDPCommunicationError`, 400], [_e]: _c, [_hE]: 400 },
120
120
  [_m],
121
121
  [0],
122
122
  ];
@@ -125,7 +125,7 @@ export var IDPRejectedClaimException$ = [
125
125
  -3,
126
126
  n0,
127
127
  _IDPRCE,
128
- { [_e]: _c, [_hE]: 403, [_aQE]: [`IDPRejectedClaim`, 403] },
128
+ { [_aQE]: [`IDPRejectedClaim`, 403], [_e]: _c, [_hE]: 403 },
129
129
  [_m],
130
130
  [0],
131
131
  ];
@@ -134,7 +134,7 @@ export var InvalidIdentityTokenException$ = [
134
134
  -3,
135
135
  n0,
136
136
  _IITE,
137
- { [_e]: _c, [_hE]: 400, [_aQE]: [`InvalidIdentityToken`, 400] },
137
+ { [_aQE]: [`InvalidIdentityToken`, 400], [_e]: _c, [_hE]: 400 },
138
138
  [_m],
139
139
  [0],
140
140
  ];
@@ -143,7 +143,7 @@ export var MalformedPolicyDocumentException$ = [
143
143
  -3,
144
144
  n0,
145
145
  _MPDE,
146
- { [_e]: _c, [_hE]: 400, [_aQE]: [`MalformedPolicyDocument`, 400] },
146
+ { [_aQE]: [`MalformedPolicyDocument`, 400], [_e]: _c, [_hE]: 400 },
147
147
  [_m],
148
148
  [0],
149
149
  ];
@@ -152,7 +152,7 @@ export var PackedPolicyTooLargeException$ = [
152
152
  -3,
153
153
  n0,
154
154
  _PPTLE,
155
- { [_e]: _c, [_hE]: 400, [_aQE]: [`PackedPolicyTooLarge`, 400] },
155
+ { [_aQE]: [`PackedPolicyTooLarge`, 400], [_e]: _c, [_hE]: 400 },
156
156
  [_m],
157
157
  [0],
158
158
  ];
@@ -163,7 +163,7 @@ export var RegionDisabledException$ = [
163
163
  -3,
164
164
  n0,
165
165
  _RDE,
166
- { [_e]: _c, [_hE]: 403, [_aQE]: [`RegionDisabledException`, 403] },
166
+ { [_aQE]: [`RegionDisabledException`, 403], [_e]: _c, [_hE]: 403 },
167
167
  [_m],
168
168
  [0],
169
169
  ];