@aws-sdk/client-amplifyuibuilder 3.170.0 → 3.171.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 (83) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/AmplifyUIBuilder.js +120 -0
  3. package/dist-cjs/commands/CreateFormCommand.js +36 -0
  4. package/dist-cjs/commands/DeleteFormCommand.js +36 -0
  5. package/dist-cjs/commands/ExportFormsCommand.js +36 -0
  6. package/dist-cjs/commands/GetFormCommand.js +36 -0
  7. package/dist-cjs/commands/GetMetadataCommand.js +36 -0
  8. package/dist-cjs/commands/ListFormsCommand.js +36 -0
  9. package/dist-cjs/commands/PutMetadataFlagCommand.js +36 -0
  10. package/dist-cjs/commands/UpdateFormCommand.js +36 -0
  11. package/dist-cjs/commands/index.js +8 -0
  12. package/dist-cjs/models/models_0.js +254 -2
  13. package/dist-cjs/pagination/ExportFormsPaginator.js +35 -0
  14. package/dist-cjs/pagination/ListFormsPaginator.js +36 -0
  15. package/dist-cjs/pagination/index.js +2 -0
  16. package/dist-cjs/protocols/Aws_restJson1.js +979 -11
  17. package/dist-es/AmplifyUIBuilder.js +120 -0
  18. package/dist-es/commands/CreateFormCommand.js +39 -0
  19. package/dist-es/commands/DeleteFormCommand.js +39 -0
  20. package/dist-es/commands/ExportFormsCommand.js +39 -0
  21. package/dist-es/commands/GetFormCommand.js +39 -0
  22. package/dist-es/commands/GetMetadataCommand.js +39 -0
  23. package/dist-es/commands/ListFormsCommand.js +39 -0
  24. package/dist-es/commands/PutMetadataFlagCommand.js +39 -0
  25. package/dist-es/commands/UpdateFormCommand.js +39 -0
  26. package/dist-es/commands/index.js +8 -0
  27. package/dist-es/models/models_0.js +141 -1
  28. package/dist-es/pagination/ExportFormsPaginator.js +74 -0
  29. package/dist-es/pagination/ListFormsPaginator.js +75 -0
  30. package/dist-es/pagination/index.js +2 -0
  31. package/dist-es/protocols/Aws_restJson1.js +1142 -34
  32. package/dist-types/AmplifyUIBuilder.d.ts +56 -0
  33. package/dist-types/AmplifyUIBuilderClient.d.ts +10 -2
  34. package/dist-types/commands/CreateFormCommand.d.ts +35 -0
  35. package/dist-types/commands/DeleteFormCommand.d.ts +35 -0
  36. package/dist-types/commands/ExportFormsCommand.d.ts +35 -0
  37. package/dist-types/commands/GetFormCommand.d.ts +35 -0
  38. package/dist-types/commands/GetMetadataCommand.d.ts +35 -0
  39. package/dist-types/commands/ListFormsCommand.d.ts +35 -0
  40. package/dist-types/commands/PutMetadataFlagCommand.d.ts +35 -0
  41. package/dist-types/commands/UpdateFormCommand.d.ts +35 -0
  42. package/dist-types/commands/index.d.ts +8 -0
  43. package/dist-types/models/models_0.d.ts +854 -24
  44. package/dist-types/pagination/ExportFormsPaginator.d.ts +4 -0
  45. package/dist-types/pagination/ListFormsPaginator.d.ts +4 -0
  46. package/dist-types/pagination/index.d.ts +2 -0
  47. package/dist-types/protocols/Aws_restJson1.d.ts +24 -0
  48. package/dist-types/ts3.4/AmplifyUIBuilder.d.ts +136 -14
  49. package/dist-types/ts3.4/AmplifyUIBuilderClient.d.ts +48 -25
  50. package/dist-types/ts3.4/commands/CreateComponentCommand.d.ts +0 -2
  51. package/dist-types/ts3.4/commands/CreateFormCommand.d.ts +32 -0
  52. package/dist-types/ts3.4/commands/CreateThemeCommand.d.ts +0 -2
  53. package/dist-types/ts3.4/commands/DeleteComponentCommand.d.ts +0 -2
  54. package/dist-types/ts3.4/commands/DeleteFormCommand.d.ts +30 -0
  55. package/dist-types/ts3.4/commands/DeleteThemeCommand.d.ts +0 -2
  56. package/dist-types/ts3.4/commands/ExchangeCodeForTokenCommand.d.ts +0 -2
  57. package/dist-types/ts3.4/commands/ExportComponentsCommand.d.ts +0 -2
  58. package/dist-types/ts3.4/commands/ExportFormsCommand.d.ts +32 -0
  59. package/dist-types/ts3.4/commands/ExportThemesCommand.d.ts +0 -2
  60. package/dist-types/ts3.4/commands/GetComponentCommand.d.ts +0 -2
  61. package/dist-types/ts3.4/commands/GetFormCommand.d.ts +32 -0
  62. package/dist-types/ts3.4/commands/GetMetadataCommand.d.ts +32 -0
  63. package/dist-types/ts3.4/commands/GetThemeCommand.d.ts +0 -2
  64. package/dist-types/ts3.4/commands/ListComponentsCommand.d.ts +0 -2
  65. package/dist-types/ts3.4/commands/ListFormsCommand.d.ts +32 -0
  66. package/dist-types/ts3.4/commands/ListThemesCommand.d.ts +0 -2
  67. package/dist-types/ts3.4/commands/PutMetadataFlagCommand.d.ts +30 -0
  68. package/dist-types/ts3.4/commands/RefreshTokenCommand.d.ts +0 -2
  69. package/dist-types/ts3.4/commands/UpdateComponentCommand.d.ts +0 -2
  70. package/dist-types/ts3.4/commands/UpdateFormCommand.d.ts +32 -0
  71. package/dist-types/ts3.4/commands/UpdateThemeCommand.d.ts +0 -2
  72. package/dist-types/ts3.4/commands/index.d.ts +8 -0
  73. package/dist-types/ts3.4/models/AmplifyUIBuilderServiceException.d.ts +0 -1
  74. package/dist-types/ts3.4/models/models_0.d.ts +347 -247
  75. package/dist-types/ts3.4/pagination/ExportFormsPaginator.d.ts +11 -0
  76. package/dist-types/ts3.4/pagination/ListFormsPaginator.d.ts +11 -0
  77. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  78. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +96 -0
  79. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -1
  80. package/dist-types/ts3.4/runtimeConfig.d.ts +0 -1
  81. package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -1
  82. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
  83. package/package.json +26 -26
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ExportFormsCommandInput,
4
+ ExportFormsCommandOutput,
5
+ } from "../commands/ExportFormsCommand";
6
+ import { AmplifyUIBuilderPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateExportForms(
8
+ config: AmplifyUIBuilderPaginationConfiguration,
9
+ input: ExportFormsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ExportFormsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListFormsCommandInput,
4
+ ListFormsCommandOutput,
5
+ } from "../commands/ListFormsCommand";
6
+ import { AmplifyUIBuilderPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListForms(
8
+ config: AmplifyUIBuilderPaginationConfiguration,
9
+ input: ListFormsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListFormsCommandOutput>;
@@ -1,5 +1,7 @@
1
1
  export * from "./ExportComponentsPaginator";
2
+ export * from "./ExportFormsPaginator";
2
3
  export * from "./ExportThemesPaginator";
3
4
  export * from "./Interfaces";
4
5
  export * from "./ListComponentsPaginator";
6
+ export * from "./ListFormsPaginator";
5
7
  export * from "./ListThemesPaginator";
@@ -7,6 +7,10 @@ import {
7
7
  CreateComponentCommandInput,
8
8
  CreateComponentCommandOutput,
9
9
  } from "../commands/CreateComponentCommand";
10
+ import {
11
+ CreateFormCommandInput,
12
+ CreateFormCommandOutput,
13
+ } from "../commands/CreateFormCommand";
10
14
  import {
11
15
  CreateThemeCommandInput,
12
16
  CreateThemeCommandOutput,
@@ -15,6 +19,10 @@ import {
15
19
  DeleteComponentCommandInput,
16
20
  DeleteComponentCommandOutput,
17
21
  } from "../commands/DeleteComponentCommand";
22
+ import {
23
+ DeleteFormCommandInput,
24
+ DeleteFormCommandOutput,
25
+ } from "../commands/DeleteFormCommand";
18
26
  import {
19
27
  DeleteThemeCommandInput,
20
28
  DeleteThemeCommandOutput,
@@ -27,6 +35,10 @@ import {
27
35
  ExportComponentsCommandInput,
28
36
  ExportComponentsCommandOutput,
29
37
  } from "../commands/ExportComponentsCommand";
38
+ import {
39
+ ExportFormsCommandInput,
40
+ ExportFormsCommandOutput,
41
+ } from "../commands/ExportFormsCommand";
30
42
  import {
31
43
  ExportThemesCommandInput,
32
44
  ExportThemesCommandOutput,
@@ -35,6 +47,14 @@ import {
35
47
  GetComponentCommandInput,
36
48
  GetComponentCommandOutput,
37
49
  } from "../commands/GetComponentCommand";
50
+ import {
51
+ GetFormCommandInput,
52
+ GetFormCommandOutput,
53
+ } from "../commands/GetFormCommand";
54
+ import {
55
+ GetMetadataCommandInput,
56
+ GetMetadataCommandOutput,
57
+ } from "../commands/GetMetadataCommand";
38
58
  import {
39
59
  GetThemeCommandInput,
40
60
  GetThemeCommandOutput,
@@ -43,10 +63,18 @@ import {
43
63
  ListComponentsCommandInput,
44
64
  ListComponentsCommandOutput,
45
65
  } from "../commands/ListComponentsCommand";
66
+ import {
67
+ ListFormsCommandInput,
68
+ ListFormsCommandOutput,
69
+ } from "../commands/ListFormsCommand";
46
70
  import {
47
71
  ListThemesCommandInput,
48
72
  ListThemesCommandOutput,
49
73
  } from "../commands/ListThemesCommand";
74
+ import {
75
+ PutMetadataFlagCommandInput,
76
+ PutMetadataFlagCommandOutput,
77
+ } from "../commands/PutMetadataFlagCommand";
50
78
  import {
51
79
  RefreshTokenCommandInput,
52
80
  RefreshTokenCommandOutput,
@@ -55,6 +83,10 @@ import {
55
83
  UpdateComponentCommandInput,
56
84
  UpdateComponentCommandOutput,
57
85
  } from "../commands/UpdateComponentCommand";
86
+ import {
87
+ UpdateFormCommandInput,
88
+ UpdateFormCommandOutput,
89
+ } from "../commands/UpdateFormCommand";
58
90
  import {
59
91
  UpdateThemeCommandInput,
60
92
  UpdateThemeCommandOutput,
@@ -63,6 +95,10 @@ export declare const serializeAws_restJson1CreateComponentCommand: (
63
95
  input: CreateComponentCommandInput,
64
96
  context: __SerdeContext
65
97
  ) => Promise<__HttpRequest>;
98
+ export declare const serializeAws_restJson1CreateFormCommand: (
99
+ input: CreateFormCommandInput,
100
+ context: __SerdeContext
101
+ ) => Promise<__HttpRequest>;
66
102
  export declare const serializeAws_restJson1CreateThemeCommand: (
67
103
  input: CreateThemeCommandInput,
68
104
  context: __SerdeContext
@@ -71,6 +107,10 @@ export declare const serializeAws_restJson1DeleteComponentCommand: (
71
107
  input: DeleteComponentCommandInput,
72
108
  context: __SerdeContext
73
109
  ) => Promise<__HttpRequest>;
110
+ export declare const serializeAws_restJson1DeleteFormCommand: (
111
+ input: DeleteFormCommandInput,
112
+ context: __SerdeContext
113
+ ) => Promise<__HttpRequest>;
74
114
  export declare const serializeAws_restJson1DeleteThemeCommand: (
75
115
  input: DeleteThemeCommandInput,
76
116
  context: __SerdeContext
@@ -83,6 +123,10 @@ export declare const serializeAws_restJson1ExportComponentsCommand: (
83
123
  input: ExportComponentsCommandInput,
84
124
  context: __SerdeContext
85
125
  ) => Promise<__HttpRequest>;
126
+ export declare const serializeAws_restJson1ExportFormsCommand: (
127
+ input: ExportFormsCommandInput,
128
+ context: __SerdeContext
129
+ ) => Promise<__HttpRequest>;
86
130
  export declare const serializeAws_restJson1ExportThemesCommand: (
87
131
  input: ExportThemesCommandInput,
88
132
  context: __SerdeContext
@@ -91,6 +135,14 @@ export declare const serializeAws_restJson1GetComponentCommand: (
91
135
  input: GetComponentCommandInput,
92
136
  context: __SerdeContext
93
137
  ) => Promise<__HttpRequest>;
138
+ export declare const serializeAws_restJson1GetFormCommand: (
139
+ input: GetFormCommandInput,
140
+ context: __SerdeContext
141
+ ) => Promise<__HttpRequest>;
142
+ export declare const serializeAws_restJson1GetMetadataCommand: (
143
+ input: GetMetadataCommandInput,
144
+ context: __SerdeContext
145
+ ) => Promise<__HttpRequest>;
94
146
  export declare const serializeAws_restJson1GetThemeCommand: (
95
147
  input: GetThemeCommandInput,
96
148
  context: __SerdeContext
@@ -99,10 +151,18 @@ export declare const serializeAws_restJson1ListComponentsCommand: (
99
151
  input: ListComponentsCommandInput,
100
152
  context: __SerdeContext
101
153
  ) => Promise<__HttpRequest>;
154
+ export declare const serializeAws_restJson1ListFormsCommand: (
155
+ input: ListFormsCommandInput,
156
+ context: __SerdeContext
157
+ ) => Promise<__HttpRequest>;
102
158
  export declare const serializeAws_restJson1ListThemesCommand: (
103
159
  input: ListThemesCommandInput,
104
160
  context: __SerdeContext
105
161
  ) => Promise<__HttpRequest>;
162
+ export declare const serializeAws_restJson1PutMetadataFlagCommand: (
163
+ input: PutMetadataFlagCommandInput,
164
+ context: __SerdeContext
165
+ ) => Promise<__HttpRequest>;
106
166
  export declare const serializeAws_restJson1RefreshTokenCommand: (
107
167
  input: RefreshTokenCommandInput,
108
168
  context: __SerdeContext
@@ -111,6 +171,10 @@ export declare const serializeAws_restJson1UpdateComponentCommand: (
111
171
  input: UpdateComponentCommandInput,
112
172
  context: __SerdeContext
113
173
  ) => Promise<__HttpRequest>;
174
+ export declare const serializeAws_restJson1UpdateFormCommand: (
175
+ input: UpdateFormCommandInput,
176
+ context: __SerdeContext
177
+ ) => Promise<__HttpRequest>;
114
178
  export declare const serializeAws_restJson1UpdateThemeCommand: (
115
179
  input: UpdateThemeCommandInput,
116
180
  context: __SerdeContext
@@ -119,6 +183,10 @@ export declare const deserializeAws_restJson1CreateComponentCommand: (
119
183
  output: __HttpResponse,
120
184
  context: __SerdeContext
121
185
  ) => Promise<CreateComponentCommandOutput>;
186
+ export declare const deserializeAws_restJson1CreateFormCommand: (
187
+ output: __HttpResponse,
188
+ context: __SerdeContext
189
+ ) => Promise<CreateFormCommandOutput>;
122
190
  export declare const deserializeAws_restJson1CreateThemeCommand: (
123
191
  output: __HttpResponse,
124
192
  context: __SerdeContext
@@ -127,6 +195,10 @@ export declare const deserializeAws_restJson1DeleteComponentCommand: (
127
195
  output: __HttpResponse,
128
196
  context: __SerdeContext
129
197
  ) => Promise<DeleteComponentCommandOutput>;
198
+ export declare const deserializeAws_restJson1DeleteFormCommand: (
199
+ output: __HttpResponse,
200
+ context: __SerdeContext
201
+ ) => Promise<DeleteFormCommandOutput>;
130
202
  export declare const deserializeAws_restJson1DeleteThemeCommand: (
131
203
  output: __HttpResponse,
132
204
  context: __SerdeContext
@@ -139,6 +211,10 @@ export declare const deserializeAws_restJson1ExportComponentsCommand: (
139
211
  output: __HttpResponse,
140
212
  context: __SerdeContext
141
213
  ) => Promise<ExportComponentsCommandOutput>;
214
+ export declare const deserializeAws_restJson1ExportFormsCommand: (
215
+ output: __HttpResponse,
216
+ context: __SerdeContext
217
+ ) => Promise<ExportFormsCommandOutput>;
142
218
  export declare const deserializeAws_restJson1ExportThemesCommand: (
143
219
  output: __HttpResponse,
144
220
  context: __SerdeContext
@@ -147,6 +223,14 @@ export declare const deserializeAws_restJson1GetComponentCommand: (
147
223
  output: __HttpResponse,
148
224
  context: __SerdeContext
149
225
  ) => Promise<GetComponentCommandOutput>;
226
+ export declare const deserializeAws_restJson1GetFormCommand: (
227
+ output: __HttpResponse,
228
+ context: __SerdeContext
229
+ ) => Promise<GetFormCommandOutput>;
230
+ export declare const deserializeAws_restJson1GetMetadataCommand: (
231
+ output: __HttpResponse,
232
+ context: __SerdeContext
233
+ ) => Promise<GetMetadataCommandOutput>;
150
234
  export declare const deserializeAws_restJson1GetThemeCommand: (
151
235
  output: __HttpResponse,
152
236
  context: __SerdeContext
@@ -155,10 +239,18 @@ export declare const deserializeAws_restJson1ListComponentsCommand: (
155
239
  output: __HttpResponse,
156
240
  context: __SerdeContext
157
241
  ) => Promise<ListComponentsCommandOutput>;
242
+ export declare const deserializeAws_restJson1ListFormsCommand: (
243
+ output: __HttpResponse,
244
+ context: __SerdeContext
245
+ ) => Promise<ListFormsCommandOutput>;
158
246
  export declare const deserializeAws_restJson1ListThemesCommand: (
159
247
  output: __HttpResponse,
160
248
  context: __SerdeContext
161
249
  ) => Promise<ListThemesCommandOutput>;
250
+ export declare const deserializeAws_restJson1PutMetadataFlagCommand: (
251
+ output: __HttpResponse,
252
+ context: __SerdeContext
253
+ ) => Promise<PutMetadataFlagCommandOutput>;
162
254
  export declare const deserializeAws_restJson1RefreshTokenCommand: (
163
255
  output: __HttpResponse,
164
256
  context: __SerdeContext
@@ -167,6 +259,10 @@ export declare const deserializeAws_restJson1UpdateComponentCommand: (
167
259
  output: __HttpResponse,
168
260
  context: __SerdeContext
169
261
  ) => Promise<UpdateComponentCommandOutput>;
262
+ export declare const deserializeAws_restJson1UpdateFormCommand: (
263
+ output: __HttpResponse,
264
+ context: __SerdeContext
265
+ ) => Promise<UpdateFormCommandOutput>;
170
266
  export declare const deserializeAws_restJson1UpdateThemeCommand: (
171
267
  output: __HttpResponse,
172
268
  context: __SerdeContext
@@ -1,6 +1,5 @@
1
1
  import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
2
  import { AmplifyUIBuilderClientConfig } from "./AmplifyUIBuilderClient";
3
-
4
3
  export declare const getRuntimeConfig: (
5
4
  config: AmplifyUIBuilderClientConfig
6
5
  ) => {
@@ -1,6 +1,5 @@
1
1
  import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
2
  import { AmplifyUIBuilderClientConfig } from "./AmplifyUIBuilderClient";
3
-
4
3
  export declare const getRuntimeConfig: (
5
4
  config: AmplifyUIBuilderClientConfig
6
5
  ) => {
@@ -1,5 +1,4 @@
1
1
  import { AmplifyUIBuilderClientConfig } from "./AmplifyUIBuilderClient";
2
-
3
2
  export declare const getRuntimeConfig: (
4
3
  config: AmplifyUIBuilderClientConfig
5
4
  ) => {
@@ -1,6 +1,5 @@
1
1
  import { Logger as __Logger } from "@aws-sdk/types";
2
2
  import { AmplifyUIBuilderClientConfig } from "./AmplifyUIBuilderClient";
3
-
4
3
  export declare const getRuntimeConfig: (
5
4
  config: AmplifyUIBuilderClientConfig
6
5
  ) => {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-amplifyuibuilder",
3
3
  "description": "AWS SDK for JavaScript Amplifyuibuilder Client for Node.js, Browser and React Native",
4
- "version": "3.170.0",
4
+ "version": "3.171.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -19,35 +19,35 @@
19
19
  "dependencies": {
20
20
  "@aws-crypto/sha256-browser": "2.0.0",
21
21
  "@aws-crypto/sha256-js": "2.0.0",
22
- "@aws-sdk/client-sts": "3.170.0",
23
- "@aws-sdk/config-resolver": "3.170.0",
24
- "@aws-sdk/credential-provider-node": "3.170.0",
25
- "@aws-sdk/fetch-http-handler": "3.170.0",
26
- "@aws-sdk/hash-node": "3.170.0",
27
- "@aws-sdk/invalid-dependency": "3.170.0",
28
- "@aws-sdk/middleware-content-length": "3.170.0",
29
- "@aws-sdk/middleware-host-header": "3.170.0",
30
- "@aws-sdk/middleware-logger": "3.170.0",
31
- "@aws-sdk/middleware-recursion-detection": "3.170.0",
32
- "@aws-sdk/middleware-retry": "3.170.0",
33
- "@aws-sdk/middleware-serde": "3.170.0",
34
- "@aws-sdk/middleware-signing": "3.170.0",
35
- "@aws-sdk/middleware-stack": "3.170.0",
36
- "@aws-sdk/middleware-user-agent": "3.170.0",
37
- "@aws-sdk/node-config-provider": "3.170.0",
38
- "@aws-sdk/node-http-handler": "3.170.0",
39
- "@aws-sdk/protocol-http": "3.170.0",
40
- "@aws-sdk/smithy-client": "3.170.0",
41
- "@aws-sdk/types": "3.170.0",
42
- "@aws-sdk/url-parser": "3.170.0",
22
+ "@aws-sdk/client-sts": "3.171.0",
23
+ "@aws-sdk/config-resolver": "3.171.0",
24
+ "@aws-sdk/credential-provider-node": "3.171.0",
25
+ "@aws-sdk/fetch-http-handler": "3.171.0",
26
+ "@aws-sdk/hash-node": "3.171.0",
27
+ "@aws-sdk/invalid-dependency": "3.171.0",
28
+ "@aws-sdk/middleware-content-length": "3.171.0",
29
+ "@aws-sdk/middleware-host-header": "3.171.0",
30
+ "@aws-sdk/middleware-logger": "3.171.0",
31
+ "@aws-sdk/middleware-recursion-detection": "3.171.0",
32
+ "@aws-sdk/middleware-retry": "3.171.0",
33
+ "@aws-sdk/middleware-serde": "3.171.0",
34
+ "@aws-sdk/middleware-signing": "3.171.0",
35
+ "@aws-sdk/middleware-stack": "3.171.0",
36
+ "@aws-sdk/middleware-user-agent": "3.171.0",
37
+ "@aws-sdk/node-config-provider": "3.171.0",
38
+ "@aws-sdk/node-http-handler": "3.171.0",
39
+ "@aws-sdk/protocol-http": "3.171.0",
40
+ "@aws-sdk/smithy-client": "3.171.0",
41
+ "@aws-sdk/types": "3.171.0",
42
+ "@aws-sdk/url-parser": "3.171.0",
43
43
  "@aws-sdk/util-base64-browser": "3.170.0",
44
44
  "@aws-sdk/util-base64-node": "3.170.0",
45
45
  "@aws-sdk/util-body-length-browser": "3.170.0",
46
46
  "@aws-sdk/util-body-length-node": "3.170.0",
47
- "@aws-sdk/util-defaults-mode-browser": "3.170.0",
48
- "@aws-sdk/util-defaults-mode-node": "3.170.0",
49
- "@aws-sdk/util-user-agent-browser": "3.170.0",
50
- "@aws-sdk/util-user-agent-node": "3.170.0",
47
+ "@aws-sdk/util-defaults-mode-browser": "3.171.0",
48
+ "@aws-sdk/util-defaults-mode-node": "3.171.0",
49
+ "@aws-sdk/util-user-agent-browser": "3.171.0",
50
+ "@aws-sdk/util-user-agent-node": "3.171.0",
51
51
  "@aws-sdk/util-utf8-browser": "3.170.0",
52
52
  "@aws-sdk/util-utf8-node": "3.170.0",
53
53
  "tslib": "^2.3.1",