@cdklabs/cdk-ecs-codedeploy 0.0.412 → 0.0.414

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 (161) hide show
  1. package/.jsii +4 -4
  2. package/.jsii.tabl.json +1 -1
  3. package/lib/api-canary/code-bundling.js +1 -1
  4. package/lib/api-canary/index.js +2 -2
  5. package/lib/ecs-appspec/index.js +2 -2
  6. package/lib/ecs-deployment/index.js +2 -2
  7. package/lib/ecs-deployment-provider/is-complete.lambda.js +3 -3
  8. package/lib/ecs-deployment-provider/on-event.lambda.js +2 -3
  9. package/lib/ecs-patterns/application-load-balanced-codedeployed-fargate-service.js +2 -2
  10. package/node_modules/@aws-sdk/client-codedeploy/package.json +34 -34
  11. package/node_modules/@aws-sdk/client-sso/package.json +32 -32
  12. package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +1496 -14
  13. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/ConfigurableSerdeContext.js +6 -0
  14. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/index.js +13 -0
  15. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJson1_0Protocol.js +14 -0
  16. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJson1_1Protocol.js +14 -0
  17. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJsonRpcProtocol.js +84 -0
  18. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsRestJsonProtocol.js +118 -0
  19. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonCodec.js +20 -0
  20. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeDeserializer.js +105 -0
  21. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeSerializer.js +106 -0
  22. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/jsonReplacer.js +46 -0
  23. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/jsonReviver.js +18 -0
  24. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsEc2QueryProtocol.js +17 -0
  25. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsQueryProtocol.js +147 -0
  26. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QuerySerializerSettings.js +1 -0
  27. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QueryShapeSerializer.js +152 -0
  28. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/AwsRestXmlProtocol.js +126 -0
  29. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlCodec.js +20 -0
  30. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeDeserializer.js +154 -0
  31. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeSerializer.js +279 -0
  32. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/simpleFormatXml.js +27 -0
  33. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/ConfigurableSerdeContext.d.ts +8 -0
  34. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/common.d.ts +2 -2
  35. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/index.d.ts +13 -0
  36. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJson1_0Protocol.d.ts +12 -0
  37. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJson1_1Protocol.d.ts +12 -0
  38. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJsonRpcProtocol.d.ts +18 -0
  39. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsRestJsonProtocol.d.ts +19 -0
  40. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonCodec.d.ts +19 -0
  41. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonShapeDeserializer.d.ts +13 -0
  42. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonShapeSerializer.d.ts +15 -0
  43. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/jsonReplacer.d.ts +21 -0
  44. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/jsonReviver.d.ts +15 -0
  45. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/parseJsonBody.d.ts +3 -3
  46. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/AwsEc2QueryProtocol.d.ts +20 -0
  47. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/AwsQueryProtocol.d.ts +39 -0
  48. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/QuerySerializerSettings.d.ts +6 -0
  49. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/QueryShapeSerializer.d.ts +16 -0
  50. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/AwsRestXmlProtocol.d.ts +21 -0
  51. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlCodec.d.ts +14 -0
  52. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlShapeDeserializer.d.ts +20 -0
  53. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlShapeSerializer.d.ts +21 -0
  54. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/simpleFormatXml.d.ts +6 -0
  55. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/ConfigurableSerdeContext.d.ts +5 -0
  56. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/common.d.ts +2 -2
  57. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/index.d.ts +13 -0
  58. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJson1_0Protocol.d.ts +6 -0
  59. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJson1_1Protocol.d.ts +6 -0
  60. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJsonRpcProtocol.d.ts +33 -0
  61. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsRestJsonProtocol.d.ts +34 -0
  62. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonCodec.d.ts +16 -0
  63. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonShapeDeserializer.d.ts +13 -0
  64. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonShapeSerializer.d.ts +15 -0
  65. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/jsonReplacer.d.ts +7 -0
  66. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/jsonReviver.d.ts +7 -0
  67. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/parseJsonBody.d.ts +3 -3
  68. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/AwsEc2QueryProtocol.d.ts +14 -0
  69. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/AwsQueryProtocol.d.ts +55 -0
  70. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/QuerySerializerSettings.d.ts +6 -0
  71. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/QueryShapeSerializer.d.ts +16 -0
  72. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/AwsRestXmlProtocol.d.ts +39 -0
  73. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/XmlCodec.d.ts +17 -0
  74. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/XmlShapeDeserializer.d.ts +15 -0
  75. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/XmlShapeSerializer.d.ts +21 -0
  76. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/simpleFormatXml.d.ts +1 -0
  77. package/node_modules/@aws-sdk/core/package.json +14 -10
  78. package/node_modules/@aws-sdk/credential-provider-env/package.json +5 -5
  79. package/node_modules/@aws-sdk/credential-provider-http/package.json +10 -10
  80. package/node_modules/@aws-sdk/credential-provider-ini/package.json +13 -13
  81. package/node_modules/@aws-sdk/credential-provider-node/package.json +12 -12
  82. package/node_modules/@aws-sdk/credential-provider-process/package.json +6 -6
  83. package/node_modules/@aws-sdk/credential-provider-sso/package.json +8 -8
  84. package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +6 -6
  85. package/node_modules/@aws-sdk/middleware-host-header/package.json +4 -4
  86. package/node_modules/@aws-sdk/middleware-logger/package.json +3 -3
  87. package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +4 -4
  88. package/node_modules/@aws-sdk/middleware-user-agent/package.json +7 -7
  89. package/node_modules/@aws-sdk/nested-clients/package.json +32 -32
  90. package/node_modules/@aws-sdk/region-config-resolver/package.json +5 -5
  91. package/node_modules/@aws-sdk/token-providers/package.json +7 -7
  92. package/node_modules/@aws-sdk/types/package.json +2 -2
  93. package/node_modules/@aws-sdk/util-endpoints/package.json +4 -4
  94. package/node_modules/@aws-sdk/util-user-agent-browser/package.json +3 -3
  95. package/node_modules/@aws-sdk/util-user-agent-node/package.json +5 -5
  96. package/node_modules/@aws-sdk/xml-builder/LICENSE +201 -0
  97. package/node_modules/@aws-sdk/xml-builder/README.md +10 -0
  98. package/node_modules/@aws-sdk/xml-builder/dist-cjs/index.js +173 -0
  99. package/node_modules/@aws-sdk/xml-builder/dist-es/XmlNode.js +88 -0
  100. package/node_modules/@aws-sdk/xml-builder/dist-es/XmlText.js +10 -0
  101. package/node_modules/@aws-sdk/xml-builder/dist-es/escape-attribute.js +3 -0
  102. package/node_modules/@aws-sdk/xml-builder/dist-es/escape-element.js +12 -0
  103. package/node_modules/@aws-sdk/xml-builder/dist-es/index.js +2 -0
  104. package/node_modules/@aws-sdk/xml-builder/dist-es/stringable.js +1 -0
  105. package/node_modules/@aws-sdk/xml-builder/dist-types/XmlNode.d.ts +49 -0
  106. package/node_modules/@aws-sdk/xml-builder/dist-types/XmlText.d.ts +11 -0
  107. package/node_modules/@aws-sdk/xml-builder/dist-types/escape-attribute.d.ts +6 -0
  108. package/node_modules/@aws-sdk/xml-builder/dist-types/escape-element.d.ts +6 -0
  109. package/node_modules/@aws-sdk/xml-builder/dist-types/index.d.ts +8 -0
  110. package/node_modules/@aws-sdk/xml-builder/dist-types/stringable.d.ts +6 -0
  111. package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/XmlNode.d.ts +29 -0
  112. package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/XmlText.d.ts +6 -0
  113. package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/escape-attribute.d.ts +1 -0
  114. package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/escape-element.d.ts +1 -0
  115. package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/index.d.ts +2 -0
  116. package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/stringable.d.ts +3 -0
  117. package/node_modules/@aws-sdk/xml-builder/package.json +54 -0
  118. package/node_modules/@smithy/abort-controller/package.json +2 -2
  119. package/node_modules/@smithy/config-resolver/package.json +4 -4
  120. package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +9 -8
  121. package/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js +4 -1
  122. package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpBindingProtocol.js +1 -6
  123. package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +9 -2
  124. package/node_modules/@smithy/core/dist-es/submodules/schema/TypeRegistry.js +1 -1
  125. package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/NormalizedSchema.js +3 -0
  126. package/node_modules/@smithy/core/dist-types/submodules/protocols/HttpProtocol.d.ts +4 -0
  127. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/HttpProtocol.d.ts +4 -0
  128. package/node_modules/@smithy/core/package.json +6 -6
  129. package/node_modules/@smithy/credential-provider-imds/package.json +5 -5
  130. package/node_modules/@smithy/fetch-http-handler/package.json +5 -5
  131. package/node_modules/@smithy/hash-node/package.json +2 -2
  132. package/node_modules/@smithy/invalid-dependency/package.json +2 -2
  133. package/node_modules/@smithy/middleware-content-length/package.json +3 -3
  134. package/node_modules/@smithy/middleware-endpoint/package.json +8 -8
  135. package/node_modules/@smithy/middleware-retry/package.json +8 -8
  136. package/node_modules/@smithy/middleware-serde/package.json +3 -3
  137. package/node_modules/@smithy/middleware-stack/package.json +2 -2
  138. package/node_modules/@smithy/node-config-provider/package.json +4 -4
  139. package/node_modules/@smithy/node-http-handler/package.json +5 -5
  140. package/node_modules/@smithy/property-provider/package.json +2 -2
  141. package/node_modules/@smithy/protocol-http/package.json +2 -2
  142. package/node_modules/@smithy/querystring-builder/package.json +2 -2
  143. package/node_modules/@smithy/querystring-parser/package.json +2 -2
  144. package/node_modules/@smithy/service-error-classification/package.json +2 -2
  145. package/node_modules/@smithy/shared-ini-file-loader/package.json +2 -2
  146. package/node_modules/@smithy/signature-v4/package.json +4 -4
  147. package/node_modules/@smithy/smithy-client/package.json +7 -7
  148. package/node_modules/@smithy/types/dist-types/command.d.ts +5 -2
  149. package/node_modules/@smithy/types/dist-types/schema/schema.d.ts +2 -4
  150. package/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +5 -2
  151. package/node_modules/@smithy/types/dist-types/ts3.4/schema/schema.d.ts +2 -4
  152. package/node_modules/@smithy/types/package.json +1 -1
  153. package/node_modules/@smithy/url-parser/package.json +3 -3
  154. package/node_modules/@smithy/util-defaults-mode-browser/package.json +4 -4
  155. package/node_modules/@smithy/util-defaults-mode-node/package.json +7 -7
  156. package/node_modules/@smithy/util-endpoints/package.json +3 -3
  157. package/node_modules/@smithy/util-middleware/package.json +2 -2
  158. package/node_modules/@smithy/util-retry/package.json +3 -3
  159. package/node_modules/@smithy/util-stream/package.json +4 -4
  160. package/node_modules/@smithy/util-waiter/package.json +3 -3
  161. package/package.json +12 -11
@@ -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/core",
3
- "version": "3.5.0",
3
+ "version": "3.5.3",
4
4
  "scripts": {
5
5
  "build": "yarn lint && concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types && yarn build:types:downlevel'",
6
6
  "build:cjs": "node ../../scripts/inline core",
@@ -69,13 +69,13 @@
69
69
  },
70
70
  "license": "Apache-2.0",
71
71
  "dependencies": {
72
- "@smithy/middleware-serde": "^4.0.7",
73
- "@smithy/protocol-http": "^5.1.1",
74
- "@smithy/types": "^4.3.0",
72
+ "@smithy/middleware-serde": "^4.0.8",
73
+ "@smithy/protocol-http": "^5.1.2",
74
+ "@smithy/types": "^4.3.1",
75
75
  "@smithy/util-base64": "^4.0.0",
76
76
  "@smithy/util-body-length-browser": "^4.0.0",
77
- "@smithy/util-middleware": "^4.0.3",
78
- "@smithy/util-stream": "^4.2.1",
77
+ "@smithy/util-middleware": "^4.0.4",
78
+ "@smithy/util-stream": "^4.2.2",
79
79
  "@smithy/util-utf8": "^4.0.0",
80
80
  "tslib": "^2.6.2"
81
81
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/credential-provider-imds",
3
- "version": "4.0.5",
3
+ "version": "4.0.6",
4
4
  "description": "AWS credential provider that sources credentials from the EC2 instance metadata service and ECS container metadata service",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -27,10 +27,10 @@
27
27
  },
28
28
  "license": "Apache-2.0",
29
29
  "dependencies": {
30
- "@smithy/node-config-provider": "^4.1.2",
31
- "@smithy/property-provider": "^4.0.3",
32
- "@smithy/types": "^4.3.0",
33
- "@smithy/url-parser": "^4.0.3",
30
+ "@smithy/node-config-provider": "^4.1.3",
31
+ "@smithy/property-provider": "^4.0.4",
32
+ "@smithy/types": "^4.3.1",
33
+ "@smithy/url-parser": "^4.0.4",
34
34
  "tslib": "^2.6.2"
35
35
  },
36
36
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/fetch-http-handler",
3
- "version": "5.0.3",
3
+ "version": "5.0.4",
4
4
  "description": "Provides a way to make requests",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types && yarn build:types:downlevel'",
@@ -27,14 +27,14 @@
27
27
  "module": "./dist-es/index.js",
28
28
  "types": "./dist-types/index.d.ts",
29
29
  "dependencies": {
30
- "@smithy/protocol-http": "^5.1.1",
31
- "@smithy/querystring-builder": "^4.0.3",
32
- "@smithy/types": "^4.3.0",
30
+ "@smithy/protocol-http": "^5.1.2",
31
+ "@smithy/querystring-builder": "^4.0.4",
32
+ "@smithy/types": "^4.3.1",
33
33
  "@smithy/util-base64": "^4.0.0",
34
34
  "tslib": "^2.6.2"
35
35
  },
36
36
  "devDependencies": {
37
- "@smithy/abort-controller": "^4.0.3",
37
+ "@smithy/abort-controller": "^4.0.4",
38
38
  "concurrently": "7.0.0",
39
39
  "downlevel-dts": "0.10.1",
40
40
  "rimraf": "3.0.2",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/hash-node",
3
- "version": "4.0.3",
3
+ "version": "4.0.4",
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 hash-node",
@@ -31,7 +31,7 @@
31
31
  "typedoc": "0.23.23"
32
32
  },
33
33
  "dependencies": {
34
- "@smithy/types": "^4.3.0",
34
+ "@smithy/types": "^4.3.1",
35
35
  "@smithy/util-buffer-from": "^4.0.0",
36
36
  "@smithy/util-utf8": "^4.0.0",
37
37
  "tslib": "^2.6.2"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/invalid-dependency",
3
- "version": "4.0.3",
3
+ "version": "4.0.4",
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 invalid-dependency",
@@ -23,7 +23,7 @@
23
23
  },
24
24
  "license": "Apache-2.0",
25
25
  "dependencies": {
26
- "@smithy/types": "^4.3.0",
26
+ "@smithy/types": "^4.3.1",
27
27
  "tslib": "^2.6.2"
28
28
  },
29
29
  "typesVersions": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/middleware-content-length",
3
- "version": "4.0.3",
3
+ "version": "4.0.4",
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-content-length",
@@ -24,8 +24,8 @@
24
24
  },
25
25
  "license": "Apache-2.0",
26
26
  "dependencies": {
27
- "@smithy/protocol-http": "^5.1.1",
28
- "@smithy/types": "^4.3.0",
27
+ "@smithy/protocol-http": "^5.1.2",
28
+ "@smithy/types": "^4.3.1",
29
29
  "tslib": "^2.6.2"
30
30
  },
31
31
  "engines": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/middleware-endpoint",
3
- "version": "4.1.8",
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,13 +24,13 @@
24
24
  },
25
25
  "license": "Apache-2.0",
26
26
  "dependencies": {
27
- "@smithy/core": "^3.5.0",
28
- "@smithy/middleware-serde": "^4.0.7",
29
- "@smithy/node-config-provider": "^4.1.2",
30
- "@smithy/shared-ini-file-loader": "^4.0.3",
31
- "@smithy/types": "^4.3.0",
32
- "@smithy/url-parser": "^4.0.3",
33
- "@smithy/util-middleware": "^4.0.3",
27
+ "@smithy/core": "^3.5.3",
28
+ "@smithy/middleware-serde": "^4.0.8",
29
+ "@smithy/node-config-provider": "^4.1.3",
30
+ "@smithy/shared-ini-file-loader": "^4.0.4",
31
+ "@smithy/types": "^4.3.1",
32
+ "@smithy/url-parser": "^4.0.4",
33
+ "@smithy/util-middleware": "^4.0.4",
34
34
  "tslib": "^2.6.2"
35
35
  },
36
36
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/middleware-retry",
3
- "version": "4.1.9",
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",
@@ -33,13 +33,13 @@
33
33
  },
34
34
  "license": "Apache-2.0",
35
35
  "dependencies": {
36
- "@smithy/node-config-provider": "^4.1.2",
37
- "@smithy/protocol-http": "^5.1.1",
38
- "@smithy/service-error-classification": "^4.0.4",
39
- "@smithy/smithy-client": "^4.4.0",
40
- "@smithy/types": "^4.3.0",
41
- "@smithy/util-middleware": "^4.0.3",
42
- "@smithy/util-retry": "^4.0.4",
36
+ "@smithy/node-config-provider": "^4.1.3",
37
+ "@smithy/protocol-http": "^5.1.2",
38
+ "@smithy/service-error-classification": "^4.0.5",
39
+ "@smithy/smithy-client": "^4.4.3",
40
+ "@smithy/types": "^4.3.1",
41
+ "@smithy/util-middleware": "^4.0.4",
42
+ "@smithy/util-retry": "^4.0.5",
43
43
  "tslib": "^2.6.2",
44
44
  "uuid": "^9.0.1"
45
45
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/middleware-serde",
3
- "version": "4.0.7",
3
+ "version": "4.0.8",
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-serde",
@@ -25,8 +25,8 @@
25
25
  },
26
26
  "license": "Apache-2.0",
27
27
  "dependencies": {
28
- "@smithy/protocol-http": "^5.1.1",
29
- "@smithy/types": "^4.3.0",
28
+ "@smithy/protocol-http": "^5.1.2",
29
+ "@smithy/types": "^4.3.1",
30
30
  "tslib": "^2.6.2"
31
31
  },
32
32
  "engines": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/middleware-stack",
3
- "version": "4.0.3",
3
+ "version": "4.0.4",
4
4
  "description": "Provides a means for composing multiple middleware functions into a single handler",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types && yarn build:types:downlevel'",
@@ -26,7 +26,7 @@
26
26
  "module": "./dist-es/index.js",
27
27
  "types": "./dist-types/index.d.ts",
28
28
  "dependencies": {
29
- "@smithy/types": "^4.3.0",
29
+ "@smithy/types": "^4.3.1",
30
30
  "tslib": "^2.6.2"
31
31
  },
32
32
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/node-config-provider",
3
- "version": "4.1.2",
3
+ "version": "4.1.3",
4
4
  "description": "Load config default values from ini config files and environmental variable",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types && yarn build:types:downlevel'",
@@ -25,9 +25,9 @@
25
25
  "module": "./dist-es/index.js",
26
26
  "types": "./dist-types/index.d.ts",
27
27
  "dependencies": {
28
- "@smithy/property-provider": "^4.0.3",
29
- "@smithy/shared-ini-file-loader": "^4.0.3",
30
- "@smithy/types": "^4.3.0",
28
+ "@smithy/property-provider": "^4.0.4",
29
+ "@smithy/shared-ini-file-loader": "^4.0.4",
30
+ "@smithy/types": "^4.3.1",
31
31
  "tslib": "^2.6.2"
32
32
  },
33
33
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/node-http-handler",
3
- "version": "4.0.5",
3
+ "version": "4.0.6",
4
4
  "description": "Provides a way to make requests",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types && yarn build:types:downlevel'",
@@ -26,10 +26,10 @@
26
26
  "module": "./dist-es/index.js",
27
27
  "types": "./dist-types/index.d.ts",
28
28
  "dependencies": {
29
- "@smithy/abort-controller": "^4.0.3",
30
- "@smithy/protocol-http": "^5.1.1",
31
- "@smithy/querystring-builder": "^4.0.3",
32
- "@smithy/types": "^4.3.0",
29
+ "@smithy/abort-controller": "^4.0.4",
30
+ "@smithy/protocol-http": "^5.1.2",
31
+ "@smithy/querystring-builder": "^4.0.4",
32
+ "@smithy/types": "^4.3.1",
33
33
  "tslib": "^2.6.2"
34
34
  },
35
35
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/property-provider",
3
- "version": "4.0.3",
3
+ "version": "4.0.4",
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 property-provider",
@@ -23,7 +23,7 @@
23
23
  },
24
24
  "license": "Apache-2.0",
25
25
  "dependencies": {
26
- "@smithy/types": "^4.3.0",
26
+ "@smithy/types": "^4.3.1",
27
27
  "tslib": "^2.6.2"
28
28
  },
29
29
  "engines": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/protocol-http",
3
- "version": "5.1.1",
3
+ "version": "5.1.2",
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 protocol-http",
@@ -24,7 +24,7 @@
24
24
  },
25
25
  "license": "Apache-2.0",
26
26
  "dependencies": {
27
- "@smithy/types": "^4.3.0",
27
+ "@smithy/types": "^4.3.1",
28
28
  "tslib": "^2.6.2"
29
29
  },
30
30
  "engines": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/querystring-builder",
3
- "version": "4.0.3",
3
+ "version": "4.0.4",
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 querystring-builder",
@@ -22,7 +22,7 @@
22
22
  },
23
23
  "license": "Apache-2.0",
24
24
  "dependencies": {
25
- "@smithy/types": "^4.3.0",
25
+ "@smithy/types": "^4.3.1",
26
26
  "@smithy/util-uri-escape": "^4.0.0",
27
27
  "tslib": "^2.6.2"
28
28
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/querystring-parser",
3
- "version": "4.0.3",
3
+ "version": "4.0.4",
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 querystring-parser",
@@ -23,7 +23,7 @@
23
23
  },
24
24
  "license": "Apache-2.0",
25
25
  "dependencies": {
26
- "@smithy/types": "^4.3.0",
26
+ "@smithy/types": "^4.3.1",
27
27
  "tslib": "^2.6.2"
28
28
  },
29
29
  "engines": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/service-error-classification",
3
- "version": "4.0.4",
3
+ "version": "4.0.5",
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 service-error-classification",
@@ -54,6 +54,6 @@
54
54
  "directory": ".release/package"
55
55
  },
56
56
  "dependencies": {
57
- "@smithy/types": "^4.3.0"
57
+ "@smithy/types": "^4.3.1"
58
58
  }
59
59
  }
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@smithy/shared-ini-file-loader",
3
- "version": "4.0.3",
3
+ "version": "4.0.4",
4
4
  "dependencies": {
5
- "@smithy/types": "^4.3.0",
5
+ "@smithy/types": "^4.3.1",
6
6
  "tslib": "^2.6.2"
7
7
  },
8
8
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/signature-v4",
3
- "version": "5.1.1",
3
+ "version": "5.1.2",
4
4
  "description": "A standalone implementation of the AWS Signature V4 request signing algorithm",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -26,10 +26,10 @@
26
26
  "license": "Apache-2.0",
27
27
  "dependencies": {
28
28
  "@smithy/is-array-buffer": "^4.0.0",
29
- "@smithy/protocol-http": "^5.1.1",
30
- "@smithy/types": "^4.3.0",
29
+ "@smithy/protocol-http": "^5.1.2",
30
+ "@smithy/types": "^4.3.1",
31
31
  "@smithy/util-hex-encoding": "^4.0.0",
32
- "@smithy/util-middleware": "^4.0.3",
32
+ "@smithy/util-middleware": "^4.0.4",
33
33
  "@smithy/util-uri-escape": "^4.0.0",
34
34
  "@smithy/util-utf8": "^4.0.0",
35
35
  "tslib": "^2.6.2"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/smithy-client",
3
- "version": "4.4.0",
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,12 +24,12 @@
24
24
  },
25
25
  "license": "Apache-2.0",
26
26
  "dependencies": {
27
- "@smithy/core": "^3.5.0",
28
- "@smithy/middleware-endpoint": "^4.1.8",
29
- "@smithy/middleware-stack": "^4.0.3",
30
- "@smithy/protocol-http": "^5.1.1",
31
- "@smithy/types": "^4.3.0",
32
- "@smithy/util-stream": "^4.2.1",
27
+ "@smithy/core": "^3.5.3",
28
+ "@smithy/middleware-endpoint": "^4.1.11",
29
+ "@smithy/middleware-stack": "^4.0.4",
30
+ "@smithy/protocol-http": "^5.1.2",
31
+ "@smithy/types": "^4.3.1",
32
+ "@smithy/util-stream": "^4.2.2",
33
33
  "tslib": "^2.6.2"
34
34
  },
35
35
  "engines": {
@@ -1,13 +1,16 @@
1
1
  import { Handler, MiddlewareStack } from "./middleware";
2
2
  import { MetadataBearer } from "./response";
3
- import { OperationSchema } from "./schema/schema";
4
3
  /**
5
4
  * @public
6
5
  */
7
6
  export interface Command<ClientInput extends object, InputType extends ClientInput, ClientOutput extends MetadataBearer, OutputType extends ClientOutput, ResolvedConfiguration> extends CommandIO<InputType, OutputType> {
8
7
  readonly input: InputType;
9
8
  readonly middlewareStack: MiddlewareStack<InputType, OutputType>;
10
- readonly schema?: OperationSchema;
9
+ /**
10
+ * This should be OperationSchema from @smithy/types, but would
11
+ * create problems with the client transform type adaptors.
12
+ */
13
+ readonly schema?: any;
11
14
  resolveMiddleware(stack: MiddlewareStack<ClientInput, ClientOutput>, configuration: ResolvedConfiguration, options: any): Handler<InputType, OutputType>;
12
15
  }
13
16
  /**
@@ -141,11 +141,9 @@ export interface OperationSchema extends TraitsSchema {
141
141
  }
142
142
  /**
143
143
  * Normalization wrapper for various schema data objects.
144
- * @internal
144
+ * @public
145
145
  */
146
- export interface NormalizedSchema extends TraitsSchema {
147
- name: string;
148
- traits: SchemaTraits;
146
+ export interface NormalizedSchema {
149
147
  getSchema(): Schema;
150
148
  getName(): string | undefined;
151
149
  isMemberSchema(): boolean;
@@ -1,13 +1,16 @@
1
1
  import { Handler, MiddlewareStack } from "./middleware";
2
2
  import { MetadataBearer } from "./response";
3
- import { OperationSchema } from "./schema/schema";
4
3
  /**
5
4
  * @public
6
5
  */
7
6
  export interface Command<ClientInput extends object, InputType extends ClientInput, ClientOutput extends MetadataBearer, OutputType extends ClientOutput, ResolvedConfiguration> extends CommandIO<InputType, OutputType> {
8
7
  readonly input: InputType;
9
8
  readonly middlewareStack: MiddlewareStack<InputType, OutputType>;
10
- readonly schema?: OperationSchema;
9
+ /**
10
+ * This should be OperationSchema from @smithy/types, but would
11
+ * create problems with the client transform type adaptors.
12
+ */
13
+ readonly schema?: any;
11
14
  resolveMiddleware(stack: MiddlewareStack<ClientInput, ClientOutput>, configuration: ResolvedConfiguration, options: any): Handler<InputType, OutputType>;
12
15
  }
13
16
  /**
@@ -156,11 +156,9 @@ export interface OperationSchema extends TraitsSchema {
156
156
  }
157
157
  /**
158
158
  * Normalization wrapper for various schema data objects.
159
- * @internal
159
+ * @public
160
160
  */
161
- export interface NormalizedSchema extends TraitsSchema {
162
- name: string;
163
- traits: SchemaTraits;
161
+ export interface NormalizedSchema {
164
162
  getSchema(): Schema;
165
163
  getName(): string | undefined;
166
164
  isMemberSchema(): boolean;
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/types",
3
- "version": "4.3.0",
3
+ "version": "4.3.1",
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 types",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/url-parser",
3
- "version": "4.0.3",
3
+ "version": "4.0.4",
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 url-parser",
@@ -23,8 +23,8 @@
23
23
  },
24
24
  "license": "Apache-2.0",
25
25
  "dependencies": {
26
- "@smithy/querystring-parser": "^4.0.3",
27
- "@smithy/types": "^4.3.0",
26
+ "@smithy/querystring-parser": "^4.0.4",
27
+ "@smithy/types": "^4.3.1",
28
28
  "tslib": "^2.6.2"
29
29
  },
30
30
  "typesVersions": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/util-defaults-mode-browser",
3
- "version": "4.0.16",
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",
@@ -23,9 +23,9 @@
23
23
  },
24
24
  "license": "Apache-2.0",
25
25
  "dependencies": {
26
- "@smithy/property-provider": "^4.0.3",
27
- "@smithy/smithy-client": "^4.4.0",
28
- "@smithy/types": "^4.3.0",
26
+ "@smithy/property-provider": "^4.0.4",
27
+ "@smithy/smithy-client": "^4.4.3",
28
+ "@smithy/types": "^4.3.1",
29
29
  "bowser": "^2.11.0",
30
30
  "tslib": "^2.6.2"
31
31
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/util-defaults-mode-node",
3
- "version": "4.0.16",
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",
@@ -23,12 +23,12 @@
23
23
  },
24
24
  "license": "Apache-2.0",
25
25
  "dependencies": {
26
- "@smithy/config-resolver": "^4.1.3",
27
- "@smithy/credential-provider-imds": "^4.0.5",
28
- "@smithy/node-config-provider": "^4.1.2",
29
- "@smithy/property-provider": "^4.0.3",
30
- "@smithy/smithy-client": "^4.4.0",
31
- "@smithy/types": "^4.3.0",
26
+ "@smithy/config-resolver": "^4.1.4",
27
+ "@smithy/credential-provider-imds": "^4.0.6",
28
+ "@smithy/node-config-provider": "^4.1.3",
29
+ "@smithy/property-provider": "^4.0.4",
30
+ "@smithy/smithy-client": "^4.4.3",
31
+ "@smithy/types": "^4.3.1",
32
32
  "tslib": "^2.6.2"
33
33
  },
34
34
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/util-endpoints",
3
- "version": "3.0.5",
3
+ "version": "3.0.6",
4
4
  "description": "Utilities to help with endpoint resolution.",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -28,8 +28,8 @@
28
28
  },
29
29
  "license": "Apache-2.0",
30
30
  "dependencies": {
31
- "@smithy/node-config-provider": "^4.1.2",
32
- "@smithy/types": "^4.3.0",
31
+ "@smithy/node-config-provider": "^4.1.3",
32
+ "@smithy/types": "^4.3.1",
33
33
  "tslib": "^2.6.2"
34
34
  },
35
35
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/util-middleware",
3
- "version": "4.0.3",
3
+ "version": "4.0.4",
4
4
  "description": "Shared utilities for to be used in middleware packages.",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -27,7 +27,7 @@
27
27
  },
28
28
  "license": "Apache-2.0",
29
29
  "dependencies": {
30
- "@smithy/types": "^4.3.0",
30
+ "@smithy/types": "^4.3.1",
31
31
  "tslib": "^2.6.2"
32
32
  },
33
33
  "devDependencies": {