@aws-sdk/client-data-pipeline 3.533.0 → 3.540.0

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 (49) hide show
  1. package/dist-cjs/endpoint/endpointResolver.js +4 -2
  2. package/dist-cjs/index.js +0 -3
  3. package/dist-es/endpoint/endpointResolver.js +3 -1
  4. package/dist-es/index.js +0 -1
  5. package/dist-types/DataPipeline.d.ts +2 -1
  6. package/dist-types/DataPipelineClient.d.ts +1 -1
  7. package/dist-types/commands/ActivatePipelineCommand.d.ts +2 -1
  8. package/dist-types/commands/AddTagsCommand.d.ts +2 -1
  9. package/dist-types/commands/CreatePipelineCommand.d.ts +2 -1
  10. package/dist-types/commands/DeactivatePipelineCommand.d.ts +2 -1
  11. package/dist-types/commands/DeletePipelineCommand.d.ts +2 -1
  12. package/dist-types/commands/DescribeObjectsCommand.d.ts +2 -1
  13. package/dist-types/commands/DescribePipelinesCommand.d.ts +2 -1
  14. package/dist-types/commands/EvaluateExpressionCommand.d.ts +2 -1
  15. package/dist-types/commands/GetPipelineDefinitionCommand.d.ts +2 -1
  16. package/dist-types/commands/ListPipelinesCommand.d.ts +2 -1
  17. package/dist-types/commands/PollForTaskCommand.d.ts +2 -1
  18. package/dist-types/commands/PutPipelineDefinitionCommand.d.ts +2 -1
  19. package/dist-types/commands/QueryObjectsCommand.d.ts +2 -1
  20. package/dist-types/commands/RemoveTagsCommand.d.ts +2 -1
  21. package/dist-types/commands/ReportTaskProgressCommand.d.ts +2 -1
  22. package/dist-types/commands/ReportTaskRunnerHeartbeatCommand.d.ts +2 -1
  23. package/dist-types/commands/SetStatusCommand.d.ts +2 -1
  24. package/dist-types/commands/SetTaskStatusCommand.d.ts +2 -1
  25. package/dist-types/commands/ValidatePipelineDefinitionCommand.d.ts +2 -1
  26. package/dist-types/index.d.ts +0 -1
  27. package/dist-types/models/models_0.d.ts +170 -170
  28. package/dist-types/ts3.4/DataPipeline.d.ts +1 -0
  29. package/dist-types/ts3.4/commands/ActivatePipelineCommand.d.ts +9 -0
  30. package/dist-types/ts3.4/commands/AddTagsCommand.d.ts +7 -0
  31. package/dist-types/ts3.4/commands/CreatePipelineCommand.d.ts +9 -0
  32. package/dist-types/ts3.4/commands/DeactivatePipelineCommand.d.ts +9 -0
  33. package/dist-types/ts3.4/commands/DeletePipelineCommand.d.ts +9 -0
  34. package/dist-types/ts3.4/commands/DescribeObjectsCommand.d.ts +9 -0
  35. package/dist-types/ts3.4/commands/DescribePipelinesCommand.d.ts +9 -0
  36. package/dist-types/ts3.4/commands/EvaluateExpressionCommand.d.ts +9 -0
  37. package/dist-types/ts3.4/commands/GetPipelineDefinitionCommand.d.ts +9 -0
  38. package/dist-types/ts3.4/commands/ListPipelinesCommand.d.ts +9 -0
  39. package/dist-types/ts3.4/commands/PollForTaskCommand.d.ts +9 -0
  40. package/dist-types/ts3.4/commands/PutPipelineDefinitionCommand.d.ts +9 -0
  41. package/dist-types/ts3.4/commands/QueryObjectsCommand.d.ts +9 -0
  42. package/dist-types/ts3.4/commands/RemoveTagsCommand.d.ts +9 -0
  43. package/dist-types/ts3.4/commands/ReportTaskProgressCommand.d.ts +9 -0
  44. package/dist-types/ts3.4/commands/ReportTaskRunnerHeartbeatCommand.d.ts +9 -0
  45. package/dist-types/ts3.4/commands/SetStatusCommand.d.ts +9 -0
  46. package/dist-types/ts3.4/commands/SetTaskStatusCommand.d.ts +9 -0
  47. package/dist-types/ts3.4/commands/ValidatePipelineDefinitionCommand.d.ts +9 -0
  48. package/dist-types/ts3.4/index.d.ts +0 -1
  49. package/package.json +40 -40
@@ -194,6 +194,7 @@ export interface DataPipeline {
194
194
  options: __HttpHandlerOptions,
195
195
  cb: (err: any, data?: GetPipelineDefinitionCommandOutput) => void
196
196
  ): void;
197
+ listPipelines(): Promise<ListPipelinesCommandOutput>;
197
198
  listPipelines(
198
199
  args: ListPipelinesCommandInput,
199
200
  options?: __HttpHandlerOptions
@@ -24,6 +24,15 @@ declare const ActivatePipelineCommand_base: {
24
24
  ServiceInputTypes,
25
25
  ServiceOutputTypes
26
26
  >;
27
+ new (
28
+ __0_0: ActivatePipelineCommandInput
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ ActivatePipelineCommandInput,
31
+ ActivatePipelineCommandOutput,
32
+ DataPipelineClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
27
36
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
37
  };
29
38
  export declare class ActivatePipelineCommand extends ActivatePipelineCommand_base {}
@@ -17,6 +17,13 @@ declare const AddTagsCommand_base: {
17
17
  ServiceInputTypes,
18
18
  ServiceOutputTypes
19
19
  >;
20
+ new (__0_0: AddTagsCommandInput): import("@smithy/smithy-client").CommandImpl<
21
+ AddTagsCommandInput,
22
+ AddTagsCommandOutput,
23
+ DataPipelineClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
20
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
21
28
  };
22
29
  export declare class AddTagsCommand extends AddTagsCommand_base {}
@@ -21,6 +21,15 @@ declare const CreatePipelineCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ __0_0: CreatePipelineCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ CreatePipelineCommandInput,
28
+ CreatePipelineCommandOutput,
29
+ DataPipelineClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class CreatePipelineCommand extends CreatePipelineCommand_base {}
@@ -25,6 +25,15 @@ declare const DeactivatePipelineCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: DeactivatePipelineCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DeactivatePipelineCommandInput,
32
+ DeactivatePipelineCommandOutput,
33
+ DataPipelineClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class DeactivatePipelineCommand extends DeactivatePipelineCommand_base {}
@@ -19,6 +19,15 @@ declare const DeletePipelineCommand_base: {
19
19
  ServiceInputTypes,
20
20
  ServiceOutputTypes
21
21
  >;
22
+ new (
23
+ __0_0: DeletePipelineCommandInput
24
+ ): import("@smithy/smithy-client").CommandImpl<
25
+ DeletePipelineCommandInput,
26
+ DeletePipelineCommandOutput,
27
+ DataPipelineClientResolvedConfig,
28
+ ServiceInputTypes,
29
+ ServiceOutputTypes
30
+ >;
22
31
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
23
32
  };
24
33
  export declare class DeletePipelineCommand extends DeletePipelineCommand_base {}
@@ -24,6 +24,15 @@ declare const DescribeObjectsCommand_base: {
24
24
  ServiceInputTypes,
25
25
  ServiceOutputTypes
26
26
  >;
27
+ new (
28
+ __0_0: DescribeObjectsCommandInput
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ DescribeObjectsCommandInput,
31
+ DescribeObjectsCommandOutput,
32
+ DataPipelineClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
27
36
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
37
  };
29
38
  export declare class DescribeObjectsCommand extends DescribeObjectsCommand_base {}
@@ -24,6 +24,15 @@ declare const DescribePipelinesCommand_base: {
24
24
  ServiceInputTypes,
25
25
  ServiceOutputTypes
26
26
  >;
27
+ new (
28
+ __0_0: DescribePipelinesCommandInput
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ DescribePipelinesCommandInput,
31
+ DescribePipelinesCommandOutput,
32
+ DataPipelineClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
27
36
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
37
  };
29
38
  export declare class DescribePipelinesCommand extends DescribePipelinesCommand_base {}
@@ -25,6 +25,15 @@ declare const EvaluateExpressionCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: EvaluateExpressionCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ EvaluateExpressionCommandInput,
32
+ EvaluateExpressionCommandOutput,
33
+ DataPipelineClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class EvaluateExpressionCommand extends EvaluateExpressionCommand_base {}
@@ -25,6 +25,15 @@ declare const GetPipelineDefinitionCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: GetPipelineDefinitionCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ GetPipelineDefinitionCommandInput,
32
+ GetPipelineDefinitionCommandOutput,
33
+ DataPipelineClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class GetPipelineDefinitionCommand extends GetPipelineDefinitionCommand_base {}
@@ -21,6 +21,15 @@ declare const ListPipelinesCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ ...[input]: [] | [ListPipelinesCommandInput]
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ ListPipelinesCommandInput,
28
+ ListPipelinesCommandOutput,
29
+ DataPipelineClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class ListPipelinesCommand extends ListPipelinesCommand_base {}
@@ -21,6 +21,15 @@ declare const PollForTaskCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ __0_0: PollForTaskCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ PollForTaskCommandInput,
28
+ PollForTaskCommandOutput,
29
+ DataPipelineClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class PollForTaskCommand extends PollForTaskCommand_base {}
@@ -25,6 +25,15 @@ declare const PutPipelineDefinitionCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: PutPipelineDefinitionCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ PutPipelineDefinitionCommandInput,
32
+ PutPipelineDefinitionCommandOutput,
33
+ DataPipelineClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class PutPipelineDefinitionCommand extends PutPipelineDefinitionCommand_base {}
@@ -21,6 +21,15 @@ declare const QueryObjectsCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ __0_0: QueryObjectsCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ QueryObjectsCommandInput,
28
+ QueryObjectsCommandOutput,
29
+ DataPipelineClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class QueryObjectsCommand extends QueryObjectsCommand_base {}
@@ -21,6 +21,15 @@ declare const RemoveTagsCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ __0_0: RemoveTagsCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ RemoveTagsCommandInput,
28
+ RemoveTagsCommandOutput,
29
+ DataPipelineClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class RemoveTagsCommand extends RemoveTagsCommand_base {}
@@ -25,6 +25,15 @@ declare const ReportTaskProgressCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: ReportTaskProgressCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ReportTaskProgressCommandInput,
32
+ ReportTaskProgressCommandOutput,
33
+ DataPipelineClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class ReportTaskProgressCommand extends ReportTaskProgressCommand_base {}
@@ -25,6 +25,15 @@ declare const ReportTaskRunnerHeartbeatCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: ReportTaskRunnerHeartbeatCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ReportTaskRunnerHeartbeatCommandInput,
32
+ ReportTaskRunnerHeartbeatCommandOutput,
33
+ DataPipelineClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class ReportTaskRunnerHeartbeatCommand extends ReportTaskRunnerHeartbeatCommand_base {}
@@ -19,6 +19,15 @@ declare const SetStatusCommand_base: {
19
19
  ServiceInputTypes,
20
20
  ServiceOutputTypes
21
21
  >;
22
+ new (
23
+ __0_0: SetStatusCommandInput
24
+ ): import("@smithy/smithy-client").CommandImpl<
25
+ SetStatusCommandInput,
26
+ SetStatusCommandOutput,
27
+ DataPipelineClientResolvedConfig,
28
+ ServiceInputTypes,
29
+ ServiceOutputTypes
30
+ >;
22
31
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
23
32
  };
24
33
  export declare class SetStatusCommand extends SetStatusCommand_base {}
@@ -21,6 +21,15 @@ declare const SetTaskStatusCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ __0_0: SetTaskStatusCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ SetTaskStatusCommandInput,
28
+ SetTaskStatusCommandOutput,
29
+ DataPipelineClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class SetTaskStatusCommand extends SetTaskStatusCommand_base {}
@@ -25,6 +25,15 @@ declare const ValidatePipelineDefinitionCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: ValidatePipelineDefinitionCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ValidatePipelineDefinitionCommandInput,
32
+ ValidatePipelineDefinitionCommandOutput,
33
+ DataPipelineClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class ValidatePipelineDefinitionCommand extends ValidatePipelineDefinitionCommand_base {}
@@ -6,5 +6,4 @@ export { DataPipelineExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
8
  export * from "./models";
9
- import "@aws-sdk/util-endpoints";
10
9
  export { DataPipelineServiceException } from "./models/DataPipelineServiceException";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-data-pipeline",
3
3
  "description": "AWS SDK for JavaScript Data Pipeline Client for Node.js, Browser and React Native",
4
- "version": "3.533.0",
4
+ "version": "3.540.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-data-pipeline",
@@ -20,47 +20,47 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.533.0",
24
- "@aws-sdk/core": "3.533.0",
25
- "@aws-sdk/credential-provider-node": "3.533.0",
26
- "@aws-sdk/middleware-host-header": "3.533.0",
27
- "@aws-sdk/middleware-logger": "3.533.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.533.0",
29
- "@aws-sdk/middleware-user-agent": "3.533.0",
30
- "@aws-sdk/region-config-resolver": "3.533.0",
31
- "@aws-sdk/types": "3.533.0",
32
- "@aws-sdk/util-endpoints": "3.533.0",
33
- "@aws-sdk/util-user-agent-browser": "3.533.0",
34
- "@aws-sdk/util-user-agent-node": "3.533.0",
35
- "@smithy/config-resolver": "^2.1.5",
36
- "@smithy/core": "^1.3.8",
37
- "@smithy/fetch-http-handler": "^2.4.5",
38
- "@smithy/hash-node": "^2.1.4",
39
- "@smithy/invalid-dependency": "^2.1.4",
40
- "@smithy/middleware-content-length": "^2.1.4",
41
- "@smithy/middleware-endpoint": "^2.4.6",
42
- "@smithy/middleware-retry": "^2.1.7",
43
- "@smithy/middleware-serde": "^2.2.1",
44
- "@smithy/middleware-stack": "^2.1.4",
45
- "@smithy/node-config-provider": "^2.2.5",
46
- "@smithy/node-http-handler": "^2.4.3",
47
- "@smithy/protocol-http": "^3.2.2",
48
- "@smithy/smithy-client": "^2.4.5",
49
- "@smithy/types": "^2.11.0",
50
- "@smithy/url-parser": "^2.1.4",
51
- "@smithy/util-base64": "^2.2.1",
52
- "@smithy/util-body-length-browser": "^2.1.1",
53
- "@smithy/util-body-length-node": "^2.2.2",
54
- "@smithy/util-defaults-mode-browser": "^2.1.7",
55
- "@smithy/util-defaults-mode-node": "^2.2.7",
56
- "@smithy/util-endpoints": "^1.1.5",
57
- "@smithy/util-middleware": "^2.1.4",
58
- "@smithy/util-retry": "^2.1.4",
59
- "@smithy/util-utf8": "^2.2.0",
60
- "tslib": "^2.5.0"
23
+ "@aws-sdk/client-sts": "3.540.0",
24
+ "@aws-sdk/core": "3.535.0",
25
+ "@aws-sdk/credential-provider-node": "3.540.0",
26
+ "@aws-sdk/middleware-host-header": "3.535.0",
27
+ "@aws-sdk/middleware-logger": "3.535.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.535.0",
29
+ "@aws-sdk/middleware-user-agent": "3.540.0",
30
+ "@aws-sdk/region-config-resolver": "3.535.0",
31
+ "@aws-sdk/types": "3.535.0",
32
+ "@aws-sdk/util-endpoints": "3.540.0",
33
+ "@aws-sdk/util-user-agent-browser": "3.535.0",
34
+ "@aws-sdk/util-user-agent-node": "3.535.0",
35
+ "@smithy/config-resolver": "^2.2.0",
36
+ "@smithy/core": "^1.4.0",
37
+ "@smithy/fetch-http-handler": "^2.5.0",
38
+ "@smithy/hash-node": "^2.2.0",
39
+ "@smithy/invalid-dependency": "^2.2.0",
40
+ "@smithy/middleware-content-length": "^2.2.0",
41
+ "@smithy/middleware-endpoint": "^2.5.0",
42
+ "@smithy/middleware-retry": "^2.2.0",
43
+ "@smithy/middleware-serde": "^2.3.0",
44
+ "@smithy/middleware-stack": "^2.2.0",
45
+ "@smithy/node-config-provider": "^2.3.0",
46
+ "@smithy/node-http-handler": "^2.5.0",
47
+ "@smithy/protocol-http": "^3.3.0",
48
+ "@smithy/smithy-client": "^2.5.0",
49
+ "@smithy/types": "^2.12.0",
50
+ "@smithy/url-parser": "^2.2.0",
51
+ "@smithy/util-base64": "^2.3.0",
52
+ "@smithy/util-body-length-browser": "^2.2.0",
53
+ "@smithy/util-body-length-node": "^2.3.0",
54
+ "@smithy/util-defaults-mode-browser": "^2.2.0",
55
+ "@smithy/util-defaults-mode-node": "^2.3.0",
56
+ "@smithy/util-endpoints": "^1.2.0",
57
+ "@smithy/util-middleware": "^2.2.0",
58
+ "@smithy/util-retry": "^2.2.0",
59
+ "@smithy/util-utf8": "^2.3.0",
60
+ "tslib": "^2.6.2"
61
61
  },
62
62
  "devDependencies": {
63
- "@smithy/service-client-documentation-generator": "^2.1.1",
63
+ "@smithy/service-client-documentation-generator": "^2.2.0",
64
64
  "@tsconfig/node14": "1.0.3",
65
65
  "@types/node": "^14.14.31",
66
66
  "concurrently": "7.0.0",