@aws-sdk/client-iotthingsgraph 3.300.0 → 3.303.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/dist-cjs/models/models_0.js +84 -97
- package/dist-es/models/models_0.js +84 -97
- package/dist-types/commands/AssociateEntityToThingCommand.d.ts +1 -1
- package/dist-types/commands/CreateFlowTemplateCommand.d.ts +2 -2
- package/dist-types/commands/CreateSystemInstanceCommand.d.ts +5 -5
- package/dist-types/commands/CreateSystemTemplateCommand.d.ts +2 -2
- package/dist-types/commands/DeleteFlowTemplateCommand.d.ts +1 -1
- package/dist-types/commands/DeleteSystemInstanceCommand.d.ts +1 -1
- package/dist-types/commands/DeleteSystemTemplateCommand.d.ts +1 -1
- package/dist-types/commands/DeploySystemInstanceCommand.d.ts +1 -1
- package/dist-types/commands/DeprecateFlowTemplateCommand.d.ts +1 -1
- package/dist-types/commands/DeprecateSystemTemplateCommand.d.ts +1 -1
- package/dist-types/commands/DescribeNamespaceCommand.d.ts +1 -1
- package/dist-types/commands/DissociateEntityFromThingCommand.d.ts +1 -1
- package/dist-types/commands/GetEntitiesCommand.d.ts +2 -2
- package/dist-types/commands/GetFlowTemplateCommand.d.ts +1 -1
- package/dist-types/commands/GetFlowTemplateRevisionsCommand.d.ts +1 -1
- package/dist-types/commands/GetSystemInstanceCommand.d.ts +1 -1
- package/dist-types/commands/GetSystemTemplateCommand.d.ts +1 -1
- package/dist-types/commands/GetSystemTemplateRevisionsCommand.d.ts +1 -1
- package/dist-types/commands/GetUploadStatusCommand.d.ts +1 -1
- package/dist-types/commands/ListFlowExecutionMessagesCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/SearchEntitiesCommand.d.ts +5 -5
- package/dist-types/commands/SearchFlowExecutionsCommand.d.ts +1 -1
- package/dist-types/commands/SearchFlowTemplatesCommand.d.ts +4 -4
- package/dist-types/commands/SearchSystemInstancesCommand.d.ts +4 -4
- package/dist-types/commands/SearchSystemTemplatesCommand.d.ts +4 -4
- package/dist-types/commands/SearchThingsCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UndeploySystemInstanceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateFlowTemplateCommand.d.ts +2 -2
- package/dist-types/commands/UpdateSystemTemplateCommand.d.ts +2 -2
- package/dist-types/commands/UploadEntityDefinitionsCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +149 -84
- package/dist-types/ts3.4/models/models_0.d.ts +108 -84
- package/package.json +34 -34
|
@@ -34,9 +34,11 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
34
34
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
35
35
|
);
|
|
36
36
|
}
|
|
37
|
-
export declare
|
|
38
|
-
GRAPHQL
|
|
39
|
-
}
|
|
37
|
+
export declare const DefinitionLanguage: {
|
|
38
|
+
readonly GRAPHQL: "GRAPHQL";
|
|
39
|
+
};
|
|
40
|
+
export type DefinitionLanguage =
|
|
41
|
+
(typeof DefinitionLanguage)[keyof typeof DefinitionLanguage];
|
|
40
42
|
export interface DefinitionDocument {
|
|
41
43
|
language: DefinitionLanguage | string | undefined;
|
|
42
44
|
text: string | undefined;
|
|
@@ -76,10 +78,12 @@ export interface Tag {
|
|
|
76
78
|
key: string | undefined;
|
|
77
79
|
value: string | undefined;
|
|
78
80
|
}
|
|
79
|
-
export declare
|
|
80
|
-
CLOUD
|
|
81
|
-
GREENGRASS
|
|
82
|
-
}
|
|
81
|
+
export declare const DeploymentTarget: {
|
|
82
|
+
readonly CLOUD: "CLOUD";
|
|
83
|
+
readonly GREENGRASS: "GREENGRASS";
|
|
84
|
+
};
|
|
85
|
+
export type DeploymentTarget =
|
|
86
|
+
(typeof DeploymentTarget)[keyof typeof DeploymentTarget];
|
|
83
87
|
export interface CreateSystemInstanceRequest {
|
|
84
88
|
tags?: Tag[];
|
|
85
89
|
definition: DefinitionDocument | undefined;
|
|
@@ -89,16 +93,18 @@ export interface CreateSystemInstanceRequest {
|
|
|
89
93
|
metricsConfiguration?: MetricsConfiguration;
|
|
90
94
|
flowActionsRoleArn?: string;
|
|
91
95
|
}
|
|
92
|
-
export declare
|
|
93
|
-
BOOTSTRAP
|
|
94
|
-
DELETED_IN_TARGET
|
|
95
|
-
DEPLOYED_IN_TARGET
|
|
96
|
-
DEPLOY_IN_PROGRESS
|
|
97
|
-
FAILED
|
|
98
|
-
NOT_DEPLOYED
|
|
99
|
-
PENDING_DELETE
|
|
100
|
-
UNDEPLOY_IN_PROGRESS
|
|
101
|
-
}
|
|
96
|
+
export declare const SystemInstanceDeploymentStatus: {
|
|
97
|
+
readonly BOOTSTRAP: "BOOTSTRAP";
|
|
98
|
+
readonly DELETED_IN_TARGET: "DELETED_IN_TARGET";
|
|
99
|
+
readonly DEPLOYED_IN_TARGET: "DEPLOYED_IN_TARGET";
|
|
100
|
+
readonly DEPLOY_IN_PROGRESS: "DEPLOY_IN_PROGRESS";
|
|
101
|
+
readonly FAILED: "FAILED";
|
|
102
|
+
readonly NOT_DEPLOYED: "NOT_DEPLOYED";
|
|
103
|
+
readonly PENDING_DELETE: "PENDING_DELETE";
|
|
104
|
+
readonly UNDEPLOY_IN_PROGRESS: "UNDEPLOY_IN_PROGRESS";
|
|
105
|
+
};
|
|
106
|
+
export type SystemInstanceDeploymentStatus =
|
|
107
|
+
(typeof SystemInstanceDeploymentStatus)[keyof typeof SystemInstanceDeploymentStatus];
|
|
102
108
|
export interface SystemInstanceSummary {
|
|
103
109
|
id?: string;
|
|
104
110
|
arn?: string;
|
|
@@ -179,18 +185,19 @@ export interface DescribeNamespaceResponse {
|
|
|
179
185
|
trackingNamespaceVersion?: number;
|
|
180
186
|
namespaceVersion?: number;
|
|
181
187
|
}
|
|
182
|
-
export declare
|
|
183
|
-
ACTION
|
|
184
|
-
CAPABILITY
|
|
185
|
-
DEVICE
|
|
186
|
-
DEVICE_MODEL
|
|
187
|
-
ENUM
|
|
188
|
-
EVENT
|
|
189
|
-
MAPPING
|
|
190
|
-
PROPERTY
|
|
191
|
-
SERVICE
|
|
192
|
-
STATE
|
|
193
|
-
}
|
|
188
|
+
export declare const EntityType: {
|
|
189
|
+
readonly ACTION: "ACTION";
|
|
190
|
+
readonly CAPABILITY: "CAPABILITY";
|
|
191
|
+
readonly DEVICE: "DEVICE";
|
|
192
|
+
readonly DEVICE_MODEL: "DEVICE_MODEL";
|
|
193
|
+
readonly ENUM: "ENUM";
|
|
194
|
+
readonly EVENT: "EVENT";
|
|
195
|
+
readonly MAPPING: "MAPPING";
|
|
196
|
+
readonly PROPERTY: "PROPERTY";
|
|
197
|
+
readonly SERVICE: "SERVICE";
|
|
198
|
+
readonly STATE: "STATE";
|
|
199
|
+
};
|
|
200
|
+
export type EntityType = (typeof EntityType)[keyof typeof EntityType];
|
|
194
201
|
export interface DissociateEntityFromThingRequest {
|
|
195
202
|
thingName: string | undefined;
|
|
196
203
|
entityType: EntityType | string | undefined;
|
|
@@ -203,47 +210,53 @@ export interface EntityDescription {
|
|
|
203
210
|
createdAt?: Date;
|
|
204
211
|
definition?: DefinitionDocument;
|
|
205
212
|
}
|
|
206
|
-
export declare
|
|
207
|
-
NAME
|
|
208
|
-
NAMESPACE
|
|
209
|
-
REFERENCED_ENTITY_ID
|
|
210
|
-
SEMANTIC_TYPE_PATH
|
|
211
|
-
}
|
|
213
|
+
export declare const EntityFilterName: {
|
|
214
|
+
readonly NAME: "NAME";
|
|
215
|
+
readonly NAMESPACE: "NAMESPACE";
|
|
216
|
+
readonly REFERENCED_ENTITY_ID: "REFERENCED_ENTITY_ID";
|
|
217
|
+
readonly SEMANTIC_TYPE_PATH: "SEMANTIC_TYPE_PATH";
|
|
218
|
+
};
|
|
219
|
+
export type EntityFilterName =
|
|
220
|
+
(typeof EntityFilterName)[keyof typeof EntityFilterName];
|
|
212
221
|
export interface EntityFilter {
|
|
213
222
|
name?: EntityFilterName | string;
|
|
214
223
|
value?: string[];
|
|
215
224
|
}
|
|
216
|
-
export declare
|
|
217
|
-
ACKNOWLEDGE_TASK_MESSAGE
|
|
218
|
-
ACTIVITY_FAILED
|
|
219
|
-
ACTIVITY_SCHEDULED
|
|
220
|
-
ACTIVITY_STARTED
|
|
221
|
-
ACTIVITY_SUCCEEDED
|
|
222
|
-
EXECUTION_ABORTED
|
|
223
|
-
EXECUTION_FAILED
|
|
224
|
-
EXECUTION_STARTED
|
|
225
|
-
EXECUTION_SUCCEEDED
|
|
226
|
-
SCHEDULE_NEXT_READY_STEPS_TASK
|
|
227
|
-
START_FLOW_EXECUTION_TASK
|
|
228
|
-
STEP_FAILED
|
|
229
|
-
STEP_STARTED
|
|
230
|
-
STEP_SUCCEEDED
|
|
231
|
-
THING_ACTION_TASK
|
|
232
|
-
THING_ACTION_TASK_FAILED
|
|
233
|
-
THING_ACTION_TASK_SUCCEEDED
|
|
234
|
-
}
|
|
225
|
+
export declare const FlowExecutionEventType: {
|
|
226
|
+
readonly ACKNOWLEDGE_TASK_MESSAGE: "ACKNOWLEDGE_TASK_MESSAGE";
|
|
227
|
+
readonly ACTIVITY_FAILED: "ACTIVITY_FAILED";
|
|
228
|
+
readonly ACTIVITY_SCHEDULED: "ACTIVITY_SCHEDULED";
|
|
229
|
+
readonly ACTIVITY_STARTED: "ACTIVITY_STARTED";
|
|
230
|
+
readonly ACTIVITY_SUCCEEDED: "ACTIVITY_SUCCEEDED";
|
|
231
|
+
readonly EXECUTION_ABORTED: "EXECUTION_ABORTED";
|
|
232
|
+
readonly EXECUTION_FAILED: "EXECUTION_FAILED";
|
|
233
|
+
readonly EXECUTION_STARTED: "EXECUTION_STARTED";
|
|
234
|
+
readonly EXECUTION_SUCCEEDED: "EXECUTION_SUCCEEDED";
|
|
235
|
+
readonly SCHEDULE_NEXT_READY_STEPS_TASK: "SCHEDULE_NEXT_READY_STEPS_TASK";
|
|
236
|
+
readonly START_FLOW_EXECUTION_TASK: "START_FLOW_EXECUTION_TASK";
|
|
237
|
+
readonly STEP_FAILED: "STEP_FAILED";
|
|
238
|
+
readonly STEP_STARTED: "STEP_STARTED";
|
|
239
|
+
readonly STEP_SUCCEEDED: "STEP_SUCCEEDED";
|
|
240
|
+
readonly THING_ACTION_TASK: "THING_ACTION_TASK";
|
|
241
|
+
readonly THING_ACTION_TASK_FAILED: "THING_ACTION_TASK_FAILED";
|
|
242
|
+
readonly THING_ACTION_TASK_SUCCEEDED: "THING_ACTION_TASK_SUCCEEDED";
|
|
243
|
+
};
|
|
244
|
+
export type FlowExecutionEventType =
|
|
245
|
+
(typeof FlowExecutionEventType)[keyof typeof FlowExecutionEventType];
|
|
235
246
|
export interface FlowExecutionMessage {
|
|
236
247
|
messageId?: string;
|
|
237
248
|
eventType?: FlowExecutionEventType | string;
|
|
238
249
|
timestamp?: Date;
|
|
239
250
|
payload?: string;
|
|
240
251
|
}
|
|
241
|
-
export declare
|
|
242
|
-
ABORTED
|
|
243
|
-
FAILED
|
|
244
|
-
RUNNING
|
|
245
|
-
SUCCEEDED
|
|
246
|
-
}
|
|
252
|
+
export declare const FlowExecutionStatus: {
|
|
253
|
+
readonly ABORTED: "ABORTED";
|
|
254
|
+
readonly FAILED: "FAILED";
|
|
255
|
+
readonly RUNNING: "RUNNING";
|
|
256
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
257
|
+
};
|
|
258
|
+
export type FlowExecutionStatus =
|
|
259
|
+
(typeof FlowExecutionStatus)[keyof typeof FlowExecutionStatus];
|
|
247
260
|
export interface FlowExecutionSummary {
|
|
248
261
|
flowExecutionId?: string;
|
|
249
262
|
status?: FlowExecutionStatus | string;
|
|
@@ -257,9 +270,11 @@ export interface FlowTemplateDescription {
|
|
|
257
270
|
definition?: DefinitionDocument;
|
|
258
271
|
validatedNamespaceVersion?: number;
|
|
259
272
|
}
|
|
260
|
-
export declare
|
|
261
|
-
DEVICE_MODEL_ID
|
|
262
|
-
}
|
|
273
|
+
export declare const FlowTemplateFilterName: {
|
|
274
|
+
readonly DEVICE_MODEL_ID: "DEVICE_MODEL_ID";
|
|
275
|
+
};
|
|
276
|
+
export type FlowTemplateFilterName =
|
|
277
|
+
(typeof FlowTemplateFilterName)[keyof typeof FlowTemplateFilterName];
|
|
263
278
|
export interface FlowTemplateFilter {
|
|
264
279
|
name: FlowTemplateFilterName | string | undefined;
|
|
265
280
|
value: string[] | undefined;
|
|
@@ -288,14 +303,18 @@ export interface GetFlowTemplateRevisionsResponse {
|
|
|
288
303
|
nextToken?: string;
|
|
289
304
|
}
|
|
290
305
|
export interface GetNamespaceDeletionStatusRequest {}
|
|
291
|
-
export declare
|
|
292
|
-
VALIDATION_FAILED
|
|
293
|
-
}
|
|
294
|
-
export
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
306
|
+
export declare const NamespaceDeletionStatusErrorCodes: {
|
|
307
|
+
readonly VALIDATION_FAILED: "VALIDATION_FAILED";
|
|
308
|
+
};
|
|
309
|
+
export type NamespaceDeletionStatusErrorCodes =
|
|
310
|
+
(typeof NamespaceDeletionStatusErrorCodes)[keyof typeof NamespaceDeletionStatusErrorCodes];
|
|
311
|
+
export declare const NamespaceDeletionStatus: {
|
|
312
|
+
readonly FAILED: "FAILED";
|
|
313
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
314
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
315
|
+
};
|
|
316
|
+
export type NamespaceDeletionStatus =
|
|
317
|
+
(typeof NamespaceDeletionStatus)[keyof typeof NamespaceDeletionStatus];
|
|
299
318
|
export interface GetNamespaceDeletionStatusResponse {
|
|
300
319
|
namespaceArn?: string;
|
|
301
320
|
namespaceName?: string;
|
|
@@ -342,11 +361,12 @@ export interface GetSystemTemplateRevisionsResponse {
|
|
|
342
361
|
export interface GetUploadStatusRequest {
|
|
343
362
|
uploadId: string | undefined;
|
|
344
363
|
}
|
|
345
|
-
export declare
|
|
346
|
-
FAILED
|
|
347
|
-
IN_PROGRESS
|
|
348
|
-
SUCCEEDED
|
|
349
|
-
}
|
|
364
|
+
export declare const UploadStatus: {
|
|
365
|
+
readonly FAILED: "FAILED";
|
|
366
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
367
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
368
|
+
};
|
|
369
|
+
export type UploadStatus = (typeof UploadStatus)[keyof typeof UploadStatus];
|
|
350
370
|
export interface GetUploadStatusResponse {
|
|
351
371
|
uploadId: string | undefined;
|
|
352
372
|
uploadStatus: UploadStatus | string | undefined;
|
|
@@ -406,11 +426,13 @@ export interface SearchFlowTemplatesResponse {
|
|
|
406
426
|
summaries?: FlowTemplateSummary[];
|
|
407
427
|
nextToken?: string;
|
|
408
428
|
}
|
|
409
|
-
export declare
|
|
410
|
-
GREENGRASS_GROUP_NAME
|
|
411
|
-
STATUS
|
|
412
|
-
SYSTEM_TEMPLATE_ID
|
|
413
|
-
}
|
|
429
|
+
export declare const SystemInstanceFilterName: {
|
|
430
|
+
readonly GREENGRASS_GROUP_NAME: "GREENGRASS_GROUP_NAME";
|
|
431
|
+
readonly STATUS: "STATUS";
|
|
432
|
+
readonly SYSTEM_TEMPLATE_ID: "SYSTEM_TEMPLATE_ID";
|
|
433
|
+
};
|
|
434
|
+
export type SystemInstanceFilterName =
|
|
435
|
+
(typeof SystemInstanceFilterName)[keyof typeof SystemInstanceFilterName];
|
|
414
436
|
export interface SystemInstanceFilter {
|
|
415
437
|
name?: SystemInstanceFilterName | string;
|
|
416
438
|
value?: string[];
|
|
@@ -424,9 +446,11 @@ export interface SearchSystemInstancesResponse {
|
|
|
424
446
|
summaries?: SystemInstanceSummary[];
|
|
425
447
|
nextToken?: string;
|
|
426
448
|
}
|
|
427
|
-
export declare
|
|
428
|
-
FLOW_TEMPLATE_ID
|
|
429
|
-
}
|
|
449
|
+
export declare const SystemTemplateFilterName: {
|
|
450
|
+
readonly FLOW_TEMPLATE_ID: "FLOW_TEMPLATE_ID";
|
|
451
|
+
};
|
|
452
|
+
export type SystemTemplateFilterName =
|
|
453
|
+
(typeof SystemTemplateFilterName)[keyof typeof SystemTemplateFilterName];
|
|
430
454
|
export interface SystemTemplateFilter {
|
|
431
455
|
name: SystemTemplateFilterName | string | undefined;
|
|
432
456
|
value: string[] | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iotthingsgraph",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iotthingsgraph Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.303.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",
|
|
@@ -21,42 +21,42 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
-
"@aws-sdk/util-utf8": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.303.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.303.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.303.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.303.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.303.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.303.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.303.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.303.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.303.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.303.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.303.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.303.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.303.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.303.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.303.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.303.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.303.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.303.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.303.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.303.0",
|
|
44
|
+
"@aws-sdk/types": "3.303.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.303.0",
|
|
46
|
+
"@aws-sdk/util-base64": "3.303.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.303.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.303.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.303.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.303.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.303.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.303.0",
|
|
55
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
59
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
60
60
|
"@tsconfig/node14": "1.0.3",
|
|
61
61
|
"@types/node": "^14.14.31",
|
|
62
62
|
"concurrently": "7.0.0",
|