@aws-sdk/client-finspace-data 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 +91 -105
- package/dist-es/models/models_0.js +91 -105
- package/dist-types/commands/AssociateUserToPermissionGroupCommand.d.ts +1 -1
- package/dist-types/commands/CreateChangesetCommand.d.ts +3 -3
- package/dist-types/commands/CreateDataViewCommand.d.ts +5 -5
- package/dist-types/commands/CreateDatasetCommand.d.ts +10 -10
- package/dist-types/commands/CreatePermissionGroupCommand.d.ts +2 -2
- package/dist-types/commands/CreateUserCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDatasetCommand.d.ts +1 -1
- package/dist-types/commands/DeletePermissionGroupCommand.d.ts +1 -1
- package/dist-types/commands/DisableUserCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateUserFromPermissionGroupCommand.d.ts +1 -1
- package/dist-types/commands/EnableUserCommand.d.ts +1 -1
- package/dist-types/commands/GetChangesetCommand.d.ts +1 -1
- package/dist-types/commands/GetDataViewCommand.d.ts +1 -1
- package/dist-types/commands/GetDatasetCommand.d.ts +1 -1
- package/dist-types/commands/GetExternalDataViewAccessDetailsCommand.d.ts +1 -1
- package/dist-types/commands/GetPermissionGroupCommand.d.ts +1 -1
- package/dist-types/commands/GetProgrammaticAccessCredentialsCommand.d.ts +1 -1
- package/dist-types/commands/GetUserCommand.d.ts +1 -1
- package/dist-types/commands/GetWorkingLocationCommand.d.ts +1 -1
- package/dist-types/commands/ListChangesetsCommand.d.ts +1 -1
- package/dist-types/commands/ListDataViewsCommand.d.ts +1 -1
- package/dist-types/commands/ListDatasetsCommand.d.ts +1 -1
- package/dist-types/commands/ListPermissionGroupsByUserCommand.d.ts +1 -1
- package/dist-types/commands/ListPermissionGroupsCommand.d.ts +1 -1
- package/dist-types/commands/ListUsersByPermissionGroupCommand.d.ts +1 -1
- package/dist-types/commands/ListUsersCommand.d.ts +1 -1
- package/dist-types/commands/ResetUserPasswordCommand.d.ts +1 -1
- package/dist-types/commands/UpdateChangesetCommand.d.ts +3 -3
- package/dist-types/commands/UpdateDatasetCommand.d.ts +6 -6
- package/dist-types/commands/UpdatePermissionGroupCommand.d.ts +2 -2
- package/dist-types/commands/UpdateUserCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +161 -91
- package/dist-types/ts3.4/models/models_0.d.ts +111 -91
- package/package.json +34 -34
|
@@ -7,19 +7,22 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
7
7
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
8
|
);
|
|
9
9
|
}
|
|
10
|
-
export declare
|
|
11
|
-
DISABLED
|
|
12
|
-
ENABLED
|
|
13
|
-
}
|
|
14
|
-
export
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
10
|
+
export declare const ApiAccess: {
|
|
11
|
+
readonly DISABLED: "DISABLED";
|
|
12
|
+
readonly ENABLED: "ENABLED";
|
|
13
|
+
};
|
|
14
|
+
export type ApiAccess = (typeof ApiAccess)[keyof typeof ApiAccess];
|
|
15
|
+
export declare const ApplicationPermission: {
|
|
16
|
+
readonly AccessNotebooks: "AccessNotebooks";
|
|
17
|
+
readonly CreateDataset: "CreateDataset";
|
|
18
|
+
readonly GetTemporaryCredentials: "GetTemporaryCredentials";
|
|
19
|
+
readonly ManageAttributeSets: "ManageAttributeSets";
|
|
20
|
+
readonly ManageClusters: "ManageClusters";
|
|
21
|
+
readonly ManageUsersAndGroups: "ManageUsersAndGroups";
|
|
22
|
+
readonly ViewAuditData: "ViewAuditData";
|
|
23
|
+
};
|
|
24
|
+
export type ApplicationPermission =
|
|
25
|
+
(typeof ApplicationPermission)[keyof typeof ApplicationPermission];
|
|
23
26
|
export interface AssociateUserToPermissionGroupRequest {
|
|
24
27
|
permissionGroupId: string | undefined;
|
|
25
28
|
userId: string | undefined;
|
|
@@ -70,11 +73,12 @@ export interface AwsCredentials {
|
|
|
70
73
|
sessionToken?: string;
|
|
71
74
|
expiration?: number;
|
|
72
75
|
}
|
|
73
|
-
export declare
|
|
74
|
-
APPEND
|
|
75
|
-
MODIFY
|
|
76
|
-
REPLACE
|
|
77
|
-
}
|
|
76
|
+
export declare const ChangeType: {
|
|
77
|
+
readonly APPEND: "APPEND";
|
|
78
|
+
readonly MODIFY: "MODIFY";
|
|
79
|
+
readonly REPLACE: "REPLACE";
|
|
80
|
+
};
|
|
81
|
+
export type ChangeType = (typeof ChangeType)[keyof typeof ChangeType];
|
|
78
82
|
export interface CreateChangesetRequest {
|
|
79
83
|
clientToken?: string;
|
|
80
84
|
datasetId: string | undefined;
|
|
@@ -93,10 +97,11 @@ export declare class LimitExceededException extends __BaseException {
|
|
|
93
97
|
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
94
98
|
);
|
|
95
99
|
}
|
|
96
|
-
export declare
|
|
97
|
-
NON_TABULAR
|
|
98
|
-
TABULAR
|
|
99
|
-
}
|
|
100
|
+
export declare const DatasetKind: {
|
|
101
|
+
readonly NON_TABULAR: "NON_TABULAR";
|
|
102
|
+
readonly TABULAR: "TABULAR";
|
|
103
|
+
};
|
|
104
|
+
export type DatasetKind = (typeof DatasetKind)[keyof typeof DatasetKind];
|
|
100
105
|
export interface DatasetOwnerInfo {
|
|
101
106
|
name?: string;
|
|
102
107
|
phoneNumber?: string;
|
|
@@ -109,20 +114,22 @@ export interface PermissionGroupParams {
|
|
|
109
114
|
permissionGroupId?: string;
|
|
110
115
|
datasetPermissions?: ResourcePermission[];
|
|
111
116
|
}
|
|
112
|
-
export declare
|
|
113
|
-
BIGINT
|
|
114
|
-
BINARY
|
|
115
|
-
BOOLEAN
|
|
116
|
-
CHAR
|
|
117
|
-
DATE
|
|
118
|
-
DATETIME
|
|
119
|
-
DOUBLE
|
|
120
|
-
FLOAT
|
|
121
|
-
INTEGER
|
|
122
|
-
SMALLINT
|
|
123
|
-
STRING
|
|
124
|
-
TINYINT
|
|
125
|
-
}
|
|
117
|
+
export declare const ColumnDataType: {
|
|
118
|
+
readonly BIGINT: "BIGINT";
|
|
119
|
+
readonly BINARY: "BINARY";
|
|
120
|
+
readonly BOOLEAN: "BOOLEAN";
|
|
121
|
+
readonly CHAR: "CHAR";
|
|
122
|
+
readonly DATE: "DATE";
|
|
123
|
+
readonly DATETIME: "DATETIME";
|
|
124
|
+
readonly DOUBLE: "DOUBLE";
|
|
125
|
+
readonly FLOAT: "FLOAT";
|
|
126
|
+
readonly INTEGER: "INTEGER";
|
|
127
|
+
readonly SMALLINT: "SMALLINT";
|
|
128
|
+
readonly STRING: "STRING";
|
|
129
|
+
readonly TINYINT: "TINYINT";
|
|
130
|
+
};
|
|
131
|
+
export type ColumnDataType =
|
|
132
|
+
(typeof ColumnDataType)[keyof typeof ColumnDataType];
|
|
126
133
|
export interface ColumnDefinition {
|
|
127
134
|
dataType?: ColumnDataType | string;
|
|
128
135
|
columnName?: string;
|
|
@@ -148,10 +155,12 @@ export interface CreateDatasetRequest {
|
|
|
148
155
|
export interface CreateDatasetResponse {
|
|
149
156
|
datasetId?: string;
|
|
150
157
|
}
|
|
151
|
-
export declare
|
|
152
|
-
DELIMITED_TEXT
|
|
153
|
-
PARQUET
|
|
154
|
-
}
|
|
158
|
+
export declare const ExportFileFormat: {
|
|
159
|
+
readonly DELIMITED_TEXT: "DELIMITED_TEXT";
|
|
160
|
+
readonly PARQUET: "PARQUET";
|
|
161
|
+
};
|
|
162
|
+
export type ExportFileFormat =
|
|
163
|
+
(typeof ExportFileFormat)[keyof typeof ExportFileFormat];
|
|
155
164
|
export interface DataViewDestinationTypeParams {
|
|
156
165
|
destinationType: string | undefined;
|
|
157
166
|
s3DestinationExportFileFormat?: ExportFileFormat | string;
|
|
@@ -179,10 +188,11 @@ export interface CreatePermissionGroupRequest {
|
|
|
179
188
|
export interface CreatePermissionGroupResponse {
|
|
180
189
|
permissionGroupId?: string;
|
|
181
190
|
}
|
|
182
|
-
export declare
|
|
183
|
-
APP_USER
|
|
184
|
-
SUPER_USER
|
|
185
|
-
}
|
|
191
|
+
export declare const UserType: {
|
|
192
|
+
readonly APP_USER: "APP_USER";
|
|
193
|
+
readonly SUPER_USER: "SUPER_USER";
|
|
194
|
+
};
|
|
195
|
+
export type UserType = (typeof UserType)[keyof typeof UserType];
|
|
186
196
|
export interface CreateUserRequest {
|
|
187
197
|
emailAddress: string | undefined;
|
|
188
198
|
type: UserType | string | undefined;
|
|
@@ -235,27 +245,30 @@ export interface GetChangesetRequest {
|
|
|
235
245
|
datasetId: string | undefined;
|
|
236
246
|
changesetId: string | undefined;
|
|
237
247
|
}
|
|
238
|
-
export declare
|
|
239
|
-
ACCESS_DENIED
|
|
240
|
-
CANCELLED
|
|
241
|
-
INTERNAL_SERVICE_EXCEPTION
|
|
242
|
-
RESOURCE_NOT_FOUND
|
|
243
|
-
SERVICE_QUOTA_EXCEEDED
|
|
244
|
-
THROTTLING
|
|
245
|
-
USER_RECOVERABLE
|
|
246
|
-
VALIDATION
|
|
247
|
-
}
|
|
248
|
+
export declare const ErrorCategory: {
|
|
249
|
+
readonly ACCESS_DENIED: "ACCESS_DENIED";
|
|
250
|
+
readonly CANCELLED: "CANCELLED";
|
|
251
|
+
readonly INTERNAL_SERVICE_EXCEPTION: "INTERNAL_SERVICE_EXCEPTION";
|
|
252
|
+
readonly RESOURCE_NOT_FOUND: "RESOURCE_NOT_FOUND";
|
|
253
|
+
readonly SERVICE_QUOTA_EXCEEDED: "SERVICE_QUOTA_EXCEEDED";
|
|
254
|
+
readonly THROTTLING: "THROTTLING";
|
|
255
|
+
readonly USER_RECOVERABLE: "USER_RECOVERABLE";
|
|
256
|
+
readonly VALIDATION: "VALIDATION";
|
|
257
|
+
};
|
|
258
|
+
export type ErrorCategory = (typeof ErrorCategory)[keyof typeof ErrorCategory];
|
|
248
259
|
export interface ChangesetErrorInfo {
|
|
249
260
|
errorMessage?: string;
|
|
250
261
|
errorCategory?: ErrorCategory | string;
|
|
251
262
|
}
|
|
252
|
-
export declare
|
|
253
|
-
FAILED
|
|
254
|
-
PENDING
|
|
255
|
-
RUNNING
|
|
256
|
-
STOP_REQUESTED
|
|
257
|
-
SUCCESS
|
|
258
|
-
}
|
|
263
|
+
export declare const IngestionStatus: {
|
|
264
|
+
readonly FAILED: "FAILED";
|
|
265
|
+
readonly PENDING: "PENDING";
|
|
266
|
+
readonly RUNNING: "RUNNING";
|
|
267
|
+
readonly STOP_REQUESTED: "STOP_REQUESTED";
|
|
268
|
+
readonly SUCCESS: "SUCCESS";
|
|
269
|
+
};
|
|
270
|
+
export type IngestionStatus =
|
|
271
|
+
(typeof IngestionStatus)[keyof typeof IngestionStatus];
|
|
259
272
|
export interface GetChangesetResponse {
|
|
260
273
|
changesetId?: string;
|
|
261
274
|
changesetArn?: string;
|
|
@@ -274,12 +287,13 @@ export interface GetChangesetResponse {
|
|
|
274
287
|
export interface GetDatasetRequest {
|
|
275
288
|
datasetId: string | undefined;
|
|
276
289
|
}
|
|
277
|
-
export declare
|
|
278
|
-
FAILED
|
|
279
|
-
PENDING
|
|
280
|
-
RUNNING
|
|
281
|
-
SUCCESS
|
|
282
|
-
}
|
|
290
|
+
export declare const DatasetStatus: {
|
|
291
|
+
readonly FAILED: "FAILED";
|
|
292
|
+
readonly PENDING: "PENDING";
|
|
293
|
+
readonly RUNNING: "RUNNING";
|
|
294
|
+
readonly SUCCESS: "SUCCESS";
|
|
295
|
+
};
|
|
296
|
+
export type DatasetStatus = (typeof DatasetStatus)[keyof typeof DatasetStatus];
|
|
283
297
|
export interface GetDatasetResponse {
|
|
284
298
|
datasetId?: string;
|
|
285
299
|
datasetArn?: string;
|
|
@@ -300,16 +314,18 @@ export interface DataViewErrorInfo {
|
|
|
300
314
|
errorMessage?: string;
|
|
301
315
|
errorCategory?: ErrorCategory | string;
|
|
302
316
|
}
|
|
303
|
-
export declare
|
|
304
|
-
CANCELLED
|
|
305
|
-
FAILED
|
|
306
|
-
FAILED_CLEANUP_FAILED
|
|
307
|
-
PENDING
|
|
308
|
-
RUNNING
|
|
309
|
-
STARTING
|
|
310
|
-
SUCCESS
|
|
311
|
-
TIMEOUT
|
|
312
|
-
}
|
|
317
|
+
export declare const DataViewStatus: {
|
|
318
|
+
readonly CANCELLED: "CANCELLED";
|
|
319
|
+
readonly FAILED: "FAILED";
|
|
320
|
+
readonly FAILED_CLEANUP_FAILED: "FAILED_CLEANUP_FAILED";
|
|
321
|
+
readonly PENDING: "PENDING";
|
|
322
|
+
readonly RUNNING: "RUNNING";
|
|
323
|
+
readonly STARTING: "STARTING";
|
|
324
|
+
readonly SUCCESS: "SUCCESS";
|
|
325
|
+
readonly TIMEOUT: "TIMEOUT";
|
|
326
|
+
};
|
|
327
|
+
export type DataViewStatus =
|
|
328
|
+
(typeof DataViewStatus)[keyof typeof DataViewStatus];
|
|
313
329
|
export interface GetDataViewResponse {
|
|
314
330
|
autoUpdate?: boolean;
|
|
315
331
|
partitionColumns?: string[];
|
|
@@ -339,11 +355,13 @@ export interface GetExternalDataViewAccessDetailsResponse {
|
|
|
339
355
|
export interface GetPermissionGroupRequest {
|
|
340
356
|
permissionGroupId: string | undefined;
|
|
341
357
|
}
|
|
342
|
-
export declare
|
|
343
|
-
ADDITION_IN_PROGRESS
|
|
344
|
-
ADDITION_SUCCESS
|
|
345
|
-
REMOVAL_IN_PROGRESS
|
|
346
|
-
}
|
|
358
|
+
export declare const PermissionGroupMembershipStatus: {
|
|
359
|
+
readonly ADDITION_IN_PROGRESS: "ADDITION_IN_PROGRESS";
|
|
360
|
+
readonly ADDITION_SUCCESS: "ADDITION_SUCCESS";
|
|
361
|
+
readonly REMOVAL_IN_PROGRESS: "REMOVAL_IN_PROGRESS";
|
|
362
|
+
};
|
|
363
|
+
export type PermissionGroupMembershipStatus =
|
|
364
|
+
(typeof PermissionGroupMembershipStatus)[keyof typeof PermissionGroupMembershipStatus];
|
|
347
365
|
export interface PermissionGroup {
|
|
348
366
|
permissionGroupId?: string;
|
|
349
367
|
name?: string;
|
|
@@ -372,11 +390,12 @@ export interface GetProgrammaticAccessCredentialsResponse {
|
|
|
372
390
|
export interface GetUserRequest {
|
|
373
391
|
userId: string | undefined;
|
|
374
392
|
}
|
|
375
|
-
export declare
|
|
376
|
-
CREATING
|
|
377
|
-
DISABLED
|
|
378
|
-
ENABLED
|
|
379
|
-
}
|
|
393
|
+
export declare const UserStatus: {
|
|
394
|
+
readonly CREATING: "CREATING";
|
|
395
|
+
readonly DISABLED: "DISABLED";
|
|
396
|
+
readonly ENABLED: "ENABLED";
|
|
397
|
+
};
|
|
398
|
+
export type UserStatus = (typeof UserStatus)[keyof typeof UserStatus];
|
|
380
399
|
export interface GetUserResponse {
|
|
381
400
|
userId?: string;
|
|
382
401
|
status?: UserStatus | string;
|
|
@@ -392,10 +411,11 @@ export interface GetUserResponse {
|
|
|
392
411
|
lastModifiedTime?: number;
|
|
393
412
|
lastLoginTime?: number;
|
|
394
413
|
}
|
|
395
|
-
export declare
|
|
396
|
-
INGESTION
|
|
397
|
-
SAGEMAKER
|
|
398
|
-
}
|
|
414
|
+
export declare const LocationType: {
|
|
415
|
+
readonly INGESTION: "INGESTION";
|
|
416
|
+
readonly SAGEMAKER: "SAGEMAKER";
|
|
417
|
+
};
|
|
418
|
+
export type LocationType = (typeof LocationType)[keyof typeof LocationType];
|
|
399
419
|
export interface GetWorkingLocationRequest {
|
|
400
420
|
locationType?: LocationType | string;
|
|
401
421
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-finspace-data",
|
|
3
3
|
"description": "AWS SDK for JavaScript Finspace Data 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,43 +21,43 @@
|
|
|
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
|
"uuid": "^8.3.2"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
60
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
61
61
|
"@tsconfig/node14": "1.0.3",
|
|
62
62
|
"@types/node": "^14.14.31",
|
|
63
63
|
"@types/uuid": "^8.3.0",
|