@aws-sdk/client-omics 3.1013.0 → 3.1015.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.
- package/README.md +56 -7
- package/dist-cjs/index.js +141 -14
- package/dist-cjs/schemas/schemas_0.js +230 -32
- package/dist-es/Omics.js +18 -0
- package/dist-es/commands/CancelRunBatchCommand.js +16 -0
- package/dist-es/commands/DeleteBatchCommand.js +16 -0
- package/dist-es/commands/DeleteRunBatchCommand.js +16 -0
- package/dist-es/commands/GetBatchCommand.js +16 -0
- package/dist-es/commands/ListBatchCommand.js +16 -0
- package/dist-es/commands/ListRunsInBatchCommand.js +16 -0
- package/dist-es/commands/StartRunBatchCommand.js +16 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/models/enums.js +33 -14
- package/dist-es/pagination/ListBatchPaginator.js +4 -0
- package/dist-es/pagination/ListRunsInBatchPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/schemas/schemas_0.js +222 -24
- package/dist-types/Omics.d.ts +64 -0
- package/dist-types/OmicsClient.d.ts +9 -2
- package/dist-types/commands/CancelAnnotationImportJobCommand.d.ts +1 -1
- package/dist-types/commands/CancelRunBatchCommand.d.ts +96 -0
- package/dist-types/commands/CancelVariantImportJobCommand.d.ts +1 -1
- package/dist-types/commands/CreateAnnotationStoreCommand.d.ts +1 -1
- package/dist-types/commands/CreateVariantStoreCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAnnotationStoreCommand.d.ts +1 -1
- package/dist-types/commands/DeleteBatchCommand.d.ts +96 -0
- package/dist-types/commands/DeleteRunBatchCommand.d.ts +96 -0
- package/dist-types/commands/DeleteVariantStoreCommand.d.ts +1 -1
- package/dist-types/commands/GetAnnotationImportJobCommand.d.ts +1 -1
- package/dist-types/commands/GetAnnotationStoreCommand.d.ts +1 -1
- package/dist-types/commands/GetBatchCommand.d.ts +146 -0
- package/dist-types/commands/GetRunCommand.d.ts +1 -0
- package/dist-types/commands/GetVariantImportJobCommand.d.ts +1 -1
- package/dist-types/commands/GetVariantStoreCommand.d.ts +1 -1
- package/dist-types/commands/ListAnnotationImportJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListAnnotationStoresCommand.d.ts +1 -1
- package/dist-types/commands/ListBatchCommand.d.ts +103 -0
- package/dist-types/commands/ListRunsCommand.d.ts +2 -0
- package/dist-types/commands/ListRunsInBatchCommand.d.ts +114 -0
- package/dist-types/commands/ListVariantImportJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListVariantStoresCommand.d.ts +1 -1
- package/dist-types/commands/StartAnnotationImportJobCommand.d.ts +1 -1
- package/dist-types/commands/StartRunBatchCommand.d.ts +144 -0
- package/dist-types/commands/StartVariantImportJobCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAnnotationStoreCommand.d.ts +1 -1
- package/dist-types/commands/UpdateVariantStoreCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/models/enums.d.ts +73 -38
- package/dist-types/models/models_0.d.ts +648 -2
- package/dist-types/pagination/ListBatchPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRunsInBatchPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/schemas/schemas_0.d.ts +27 -0
- package/dist-types/ts3.4/Omics.d.ts +134 -0
- package/dist-types/ts3.4/OmicsClient.d.ts +42 -0
- package/dist-types/ts3.4/commands/CancelRunBatchCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteBatchCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/DeleteRunBatchCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetBatchCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListBatchCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListRunsInBatchCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/StartRunBatchCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/models/enums.d.ts +40 -18
- package/dist-types/ts3.4/models/models_0.d.ts +164 -0
- package/dist-types/ts3.4/pagination/ListBatchPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRunsInBatchPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +27 -0
- package/package.json +12 -12
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListBatchCommandInput,
|
|
4
|
+
ListBatchCommandOutput,
|
|
5
|
+
} from "../commands/ListBatchCommand";
|
|
6
|
+
import { OmicsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListBatch: (
|
|
8
|
+
config: OmicsPaginationConfiguration,
|
|
9
|
+
input: ListBatchCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListBatchCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListRunsInBatchCommandInput,
|
|
4
|
+
ListRunsInBatchCommandOutput,
|
|
5
|
+
} from "../commands/ListRunsInBatchCommand";
|
|
6
|
+
import { OmicsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListRunsInBatch: (
|
|
8
|
+
config: OmicsPaginationConfiguration,
|
|
9
|
+
input: ListRunsInBatchCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListRunsInBatchCommandOutput>;
|
|
@@ -2,6 +2,7 @@ export * from "./Interfaces";
|
|
|
2
2
|
export * from "./ListAnnotationImportJobsPaginator";
|
|
3
3
|
export * from "./ListAnnotationStoresPaginator";
|
|
4
4
|
export * from "./ListAnnotationStoreVersionsPaginator";
|
|
5
|
+
export * from "./ListBatchPaginator";
|
|
5
6
|
export * from "./ListMultipartReadSetUploadsPaginator";
|
|
6
7
|
export * from "./ListReadSetActivationJobsPaginator";
|
|
7
8
|
export * from "./ListReadSetExportJobsPaginator";
|
|
@@ -14,6 +15,7 @@ export * from "./ListReferenceStoresPaginator";
|
|
|
14
15
|
export * from "./ListRunCachesPaginator";
|
|
15
16
|
export * from "./ListRunGroupsPaginator";
|
|
16
17
|
export * from "./ListRunsPaginator";
|
|
18
|
+
export * from "./ListRunsInBatchPaginator";
|
|
17
19
|
export * from "./ListRunTasksPaginator";
|
|
18
20
|
export * from "./ListSequenceStoresPaginator";
|
|
19
21
|
export * from "./ListSharesPaginator";
|
|
@@ -31,8 +31,11 @@ export declare var AnnotationStoreItem$: StaticStructureSchema;
|
|
|
31
31
|
export declare var AnnotationStoreVersionItem$: StaticStructureSchema;
|
|
32
32
|
export declare var BatchDeleteReadSetRequest$: StaticStructureSchema;
|
|
33
33
|
export declare var BatchDeleteReadSetResponse$: StaticStructureSchema;
|
|
34
|
+
export declare var BatchListItem$: StaticStructureSchema;
|
|
34
35
|
export declare var CancelAnnotationImportRequest$: StaticStructureSchema;
|
|
35
36
|
export declare var CancelAnnotationImportResponse$: StaticStructureSchema;
|
|
37
|
+
export declare var CancelRunBatchRequest$: StaticStructureSchema;
|
|
38
|
+
export declare var CancelRunBatchResponse$: StaticStructureSchema;
|
|
36
39
|
export declare var CancelRunRequest$: StaticStructureSchema;
|
|
37
40
|
export declare var CancelVariantImportRequest$: StaticStructureSchema;
|
|
38
41
|
export declare var CancelVariantImportResponse$: StaticStructureSchema;
|
|
@@ -62,16 +65,20 @@ export declare var CreateWorkflowRequest$: StaticStructureSchema;
|
|
|
62
65
|
export declare var CreateWorkflowResponse$: StaticStructureSchema;
|
|
63
66
|
export declare var CreateWorkflowVersionRequest$: StaticStructureSchema;
|
|
64
67
|
export declare var CreateWorkflowVersionResponse$: StaticStructureSchema;
|
|
68
|
+
export declare var DefaultRunSetting$: StaticStructureSchema;
|
|
65
69
|
export declare var DefinitionRepository$: StaticStructureSchema;
|
|
66
70
|
export declare var DefinitionRepositoryDetails$: StaticStructureSchema;
|
|
67
71
|
export declare var DeleteAnnotationStoreRequest$: StaticStructureSchema;
|
|
68
72
|
export declare var DeleteAnnotationStoreResponse$: StaticStructureSchema;
|
|
69
73
|
export declare var DeleteAnnotationStoreVersionsRequest$: StaticStructureSchema;
|
|
70
74
|
export declare var DeleteAnnotationStoreVersionsResponse$: StaticStructureSchema;
|
|
75
|
+
export declare var DeleteBatchRequest$: StaticStructureSchema;
|
|
71
76
|
export declare var DeleteReferenceRequest$: StaticStructureSchema;
|
|
72
77
|
export declare var DeleteReferenceResponse$: StaticStructureSchema;
|
|
73
78
|
export declare var DeleteReferenceStoreRequest$: StaticStructureSchema;
|
|
74
79
|
export declare var DeleteReferenceStoreResponse$: StaticStructureSchema;
|
|
80
|
+
export declare var DeleteRunBatchRequest$: StaticStructureSchema;
|
|
81
|
+
export declare var DeleteRunBatchResponse$: StaticStructureSchema;
|
|
75
82
|
export declare var DeleteRunCacheRequest$: StaticStructureSchema;
|
|
76
83
|
export declare var DeleteRunGroupRequest$: StaticStructureSchema;
|
|
77
84
|
export declare var DeleteRunRequest$: StaticStructureSchema;
|
|
@@ -98,6 +105,8 @@ export declare var GetAnnotationStoreRequest$: StaticStructureSchema;
|
|
|
98
105
|
export declare var GetAnnotationStoreResponse$: StaticStructureSchema;
|
|
99
106
|
export declare var GetAnnotationStoreVersionRequest$: StaticStructureSchema;
|
|
100
107
|
export declare var GetAnnotationStoreVersionResponse$: StaticStructureSchema;
|
|
108
|
+
export declare var GetBatchRequest$: StaticStructureSchema;
|
|
109
|
+
export declare var GetBatchResponse$: StaticStructureSchema;
|
|
101
110
|
export declare var GetReadSetActivationJobRequest$: StaticStructureSchema;
|
|
102
111
|
export declare var GetReadSetActivationJobResponse$: StaticStructureSchema;
|
|
103
112
|
export declare var GetReadSetExportJobRequest$: StaticStructureSchema;
|
|
@@ -146,6 +155,7 @@ export declare var ImportReadSetSourceItem$: StaticStructureSchema;
|
|
|
146
155
|
export declare var ImportReferenceFilter$: StaticStructureSchema;
|
|
147
156
|
export declare var ImportReferenceJobItem$: StaticStructureSchema;
|
|
148
157
|
export declare var ImportReferenceSourceItem$: StaticStructureSchema;
|
|
158
|
+
export declare var InlineSetting$: StaticStructureSchema;
|
|
149
159
|
export declare var ListAnnotationImportJobsFilter$: StaticStructureSchema;
|
|
150
160
|
export declare var ListAnnotationImportJobsRequest$: StaticStructureSchema;
|
|
151
161
|
export declare var ListAnnotationImportJobsResponse$: StaticStructureSchema;
|
|
@@ -155,6 +165,8 @@ export declare var ListAnnotationStoresResponse$: StaticStructureSchema;
|
|
|
155
165
|
export declare var ListAnnotationStoreVersionsFilter$: StaticStructureSchema;
|
|
156
166
|
export declare var ListAnnotationStoreVersionsRequest$: StaticStructureSchema;
|
|
157
167
|
export declare var ListAnnotationStoreVersionsResponse$: StaticStructureSchema;
|
|
168
|
+
export declare var ListBatchRequest$: StaticStructureSchema;
|
|
169
|
+
export declare var ListBatchResponse$: StaticStructureSchema;
|
|
158
170
|
export declare var ListMultipartReadSetUploadsRequest$: StaticStructureSchema;
|
|
159
171
|
export declare var ListMultipartReadSetUploadsResponse$: StaticStructureSchema;
|
|
160
172
|
export declare var ListReadSetActivationJobsRequest$: StaticStructureSchema;
|
|
@@ -177,6 +189,8 @@ export declare var ListRunCachesRequest$: StaticStructureSchema;
|
|
|
177
189
|
export declare var ListRunCachesResponse$: StaticStructureSchema;
|
|
178
190
|
export declare var ListRunGroupsRequest$: StaticStructureSchema;
|
|
179
191
|
export declare var ListRunGroupsResponse$: StaticStructureSchema;
|
|
192
|
+
export declare var ListRunsInBatchRequest$: StaticStructureSchema;
|
|
193
|
+
export declare var ListRunsInBatchResponse$: StaticStructureSchema;
|
|
180
194
|
export declare var ListRunsRequest$: StaticStructureSchema;
|
|
181
195
|
export declare var ListRunsResponse$: StaticStructureSchema;
|
|
182
196
|
export declare var ListRunTasksRequest$: StaticStructureSchema;
|
|
@@ -214,10 +228,12 @@ export declare var ReferenceListItem$: StaticStructureSchema;
|
|
|
214
228
|
export declare var ReferenceStoreDetail$: StaticStructureSchema;
|
|
215
229
|
export declare var ReferenceStoreFilter$: StaticStructureSchema;
|
|
216
230
|
export declare var RegistryMapping$: StaticStructureSchema;
|
|
231
|
+
export declare var RunBatchListItem$: StaticStructureSchema;
|
|
217
232
|
export declare var RunCacheListItem$: StaticStructureSchema;
|
|
218
233
|
export declare var RunGroupListItem$: StaticStructureSchema;
|
|
219
234
|
export declare var RunListItem$: StaticStructureSchema;
|
|
220
235
|
export declare var RunLogLocation$: StaticStructureSchema;
|
|
236
|
+
export declare var RunSummary$: StaticStructureSchema;
|
|
221
237
|
export declare var S3AccessConfig$: StaticStructureSchema;
|
|
222
238
|
export declare var SequenceInformation$: StaticStructureSchema;
|
|
223
239
|
export declare var SequenceStoreDetail$: StaticStructureSchema;
|
|
@@ -240,10 +256,13 @@ export declare var StartReadSetImportJobSourceItem$: StaticStructureSchema;
|
|
|
240
256
|
export declare var StartReferenceImportJobRequest$: StaticStructureSchema;
|
|
241
257
|
export declare var StartReferenceImportJobResponse$: StaticStructureSchema;
|
|
242
258
|
export declare var StartReferenceImportJobSourceItem$: StaticStructureSchema;
|
|
259
|
+
export declare var StartRunBatchRequest$: StaticStructureSchema;
|
|
260
|
+
export declare var StartRunBatchResponse$: StaticStructureSchema;
|
|
243
261
|
export declare var StartRunRequest$: StaticStructureSchema;
|
|
244
262
|
export declare var StartRunResponse$: StaticStructureSchema;
|
|
245
263
|
export declare var StartVariantImportRequest$: StaticStructureSchema;
|
|
246
264
|
export declare var StartVariantImportResponse$: StaticStructureSchema;
|
|
265
|
+
export declare var SubmissionSummary$: StaticStructureSchema;
|
|
247
266
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
248
267
|
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
249
268
|
export declare var TaskListItem$: StaticStructureSchema;
|
|
@@ -275,6 +294,7 @@ export declare var VersionDeleteError$: StaticStructureSchema;
|
|
|
275
294
|
export declare var WorkflowListItem$: StaticStructureSchema;
|
|
276
295
|
export declare var WorkflowParameter$: StaticStructureSchema;
|
|
277
296
|
export declare var WorkflowVersionListItem$: StaticStructureSchema;
|
|
297
|
+
export declare var BatchRunSettings$: StaticUnionSchema;
|
|
278
298
|
export declare var FormatOptions$: StaticUnionSchema;
|
|
279
299
|
export declare var ReferenceItem$: StaticUnionSchema;
|
|
280
300
|
export declare var StoreOptions$: StaticUnionSchema;
|
|
@@ -284,6 +304,7 @@ export declare var AcceptShare$: StaticOperationSchema;
|
|
|
284
304
|
export declare var BatchDeleteReadSet$: StaticOperationSchema;
|
|
285
305
|
export declare var CancelAnnotationImportJob$: StaticOperationSchema;
|
|
286
306
|
export declare var CancelRun$: StaticOperationSchema;
|
|
307
|
+
export declare var CancelRunBatch$: StaticOperationSchema;
|
|
287
308
|
export declare var CancelVariantImportJob$: StaticOperationSchema;
|
|
288
309
|
export declare var CompleteMultipartReadSetUpload$: StaticOperationSchema;
|
|
289
310
|
export declare var CreateAnnotationStore$: StaticOperationSchema;
|
|
@@ -299,9 +320,11 @@ export declare var CreateWorkflow$: StaticOperationSchema;
|
|
|
299
320
|
export declare var CreateWorkflowVersion$: StaticOperationSchema;
|
|
300
321
|
export declare var DeleteAnnotationStore$: StaticOperationSchema;
|
|
301
322
|
export declare var DeleteAnnotationStoreVersions$: StaticOperationSchema;
|
|
323
|
+
export declare var DeleteBatch$: StaticOperationSchema;
|
|
302
324
|
export declare var DeleteReference$: StaticOperationSchema;
|
|
303
325
|
export declare var DeleteReferenceStore$: StaticOperationSchema;
|
|
304
326
|
export declare var DeleteRun$: StaticOperationSchema;
|
|
327
|
+
export declare var DeleteRunBatch$: StaticOperationSchema;
|
|
305
328
|
export declare var DeleteRunCache$: StaticOperationSchema;
|
|
306
329
|
export declare var DeleteRunGroup$: StaticOperationSchema;
|
|
307
330
|
export declare var DeleteS3AccessPolicy$: StaticOperationSchema;
|
|
@@ -313,6 +336,7 @@ export declare var DeleteWorkflowVersion$: StaticOperationSchema;
|
|
|
313
336
|
export declare var GetAnnotationImportJob$: StaticOperationSchema;
|
|
314
337
|
export declare var GetAnnotationStore$: StaticOperationSchema;
|
|
315
338
|
export declare var GetAnnotationStoreVersion$: StaticOperationSchema;
|
|
339
|
+
export declare var GetBatch$: StaticOperationSchema;
|
|
316
340
|
export declare var GetReadSet$: StaticOperationSchema;
|
|
317
341
|
export declare var GetReadSetActivationJob$: StaticOperationSchema;
|
|
318
342
|
export declare var GetReadSetExportJob$: StaticOperationSchema;
|
|
@@ -336,6 +360,7 @@ export declare var GetWorkflowVersion$: StaticOperationSchema;
|
|
|
336
360
|
export declare var ListAnnotationImportJobs$: StaticOperationSchema;
|
|
337
361
|
export declare var ListAnnotationStores$: StaticOperationSchema;
|
|
338
362
|
export declare var ListAnnotationStoreVersions$: StaticOperationSchema;
|
|
363
|
+
export declare var ListBatch$: StaticOperationSchema;
|
|
339
364
|
export declare var ListMultipartReadSetUploads$: StaticOperationSchema;
|
|
340
365
|
export declare var ListReadSetActivationJobs$: StaticOperationSchema;
|
|
341
366
|
export declare var ListReadSetExportJobs$: StaticOperationSchema;
|
|
@@ -348,6 +373,7 @@ export declare var ListReferenceStores$: StaticOperationSchema;
|
|
|
348
373
|
export declare var ListRunCaches$: StaticOperationSchema;
|
|
349
374
|
export declare var ListRunGroups$: StaticOperationSchema;
|
|
350
375
|
export declare var ListRuns$: StaticOperationSchema;
|
|
376
|
+
export declare var ListRunsInBatch$: StaticOperationSchema;
|
|
351
377
|
export declare var ListRunTasks$: StaticOperationSchema;
|
|
352
378
|
export declare var ListSequenceStores$: StaticOperationSchema;
|
|
353
379
|
export declare var ListShares$: StaticOperationSchema;
|
|
@@ -363,6 +389,7 @@ export declare var StartReadSetExportJob$: StaticOperationSchema;
|
|
|
363
389
|
export declare var StartReadSetImportJob$: StaticOperationSchema;
|
|
364
390
|
export declare var StartReferenceImportJob$: StaticOperationSchema;
|
|
365
391
|
export declare var StartRun$: StaticOperationSchema;
|
|
392
|
+
export declare var StartRunBatch$: StaticOperationSchema;
|
|
366
393
|
export declare var StartVariantImportJob$: StaticOperationSchema;
|
|
367
394
|
export declare var TagResource$: StaticOperationSchema;
|
|
368
395
|
export declare var UntagResource$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-omics",
|
|
3
3
|
"description": "AWS SDK for JavaScript Omics Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1015.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-omics",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.24",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.25",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.8",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.25",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.9",
|
|
31
31
|
"@aws-sdk/types": "^3.973.6",
|
|
32
32
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
35
|
-
"@smithy/config-resolver": "^4.4.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.973.11",
|
|
35
|
+
"@smithy/config-resolver": "^4.4.13",
|
|
36
36
|
"@smithy/core": "^3.23.12",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.15",
|
|
38
38
|
"@smithy/hash-node": "^4.2.12",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.12",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.12",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.27",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.44",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.15",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.12",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.12",
|
|
46
46
|
"@smithy/node-http-handler": "^4.5.0",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.12",
|
|
48
|
-
"@smithy/smithy-client": "^4.12.
|
|
48
|
+
"@smithy/smithy-client": "^4.12.7",
|
|
49
49
|
"@smithy/types": "^4.13.1",
|
|
50
50
|
"@smithy/url-parser": "^4.2.12",
|
|
51
51
|
"@smithy/util-base64": "^4.3.2",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.43",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.47",
|
|
56
56
|
"@smithy/util-endpoints": "^3.3.3",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.12",
|
|
58
58
|
"@smithy/util-retry": "^4.2.12",
|