@aws-sdk/client-dataexchange 3.216.0 → 3.221.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 +15 -3
- package/dist-cjs/endpoint/ruleset.js +1 -1
- package/dist-cjs/models/models_0.js +98 -3
- package/dist-cjs/protocols/Aws_restJson1.js +272 -1
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/models/models_0.js +80 -0
- package/dist-es/protocols/Aws_restJson1.js +272 -1
- package/dist-types/DataExchange.d.ts +15 -3
- package/dist-types/DataExchangeClient.d.ts +15 -3
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +424 -28
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +158 -0
- package/package.json +3 -3
|
@@ -27,7 +27,7 @@ export declare const resolveClientEndpointParameters: <T>(
|
|
|
27
27
|
defaultSigningName: string;
|
|
28
28
|
};
|
|
29
29
|
export interface EndpointParameters extends __EndpointParameters {
|
|
30
|
-
Region
|
|
30
|
+
Region: string;
|
|
31
31
|
UseDualStack?: boolean;
|
|
32
32
|
UseFIPS?: boolean;
|
|
33
33
|
Endpoint?: string;
|
|
@@ -46,9 +46,60 @@ export interface AssetDestinationEntry {
|
|
|
46
46
|
Bucket: string | undefined;
|
|
47
47
|
Key?: string;
|
|
48
48
|
}
|
|
49
|
+
export interface LFTag {
|
|
50
|
+
TagKey: string | undefined;
|
|
51
|
+
TagValues: string[] | undefined;
|
|
52
|
+
}
|
|
53
|
+
export interface DatabaseLFTagPolicy {
|
|
54
|
+
Expression: LFTag[] | undefined;
|
|
55
|
+
}
|
|
56
|
+
export interface TableLFTagPolicy {
|
|
57
|
+
Expression: LFTag[] | undefined;
|
|
58
|
+
}
|
|
59
|
+
export interface LFResourceDetails {
|
|
60
|
+
Database?: DatabaseLFTagPolicy;
|
|
61
|
+
Table?: TableLFTagPolicy;
|
|
62
|
+
}
|
|
63
|
+
export declare enum LFResourceType {
|
|
64
|
+
DATABASE = "DATABASE",
|
|
65
|
+
TABLE = "TABLE",
|
|
66
|
+
}
|
|
67
|
+
export interface LFTagPolicyDetails {
|
|
68
|
+
CatalogId: string | undefined;
|
|
69
|
+
ResourceType: LFResourceType | string | undefined;
|
|
70
|
+
ResourceDetails: LFResourceDetails | undefined;
|
|
71
|
+
}
|
|
72
|
+
export interface LakeFormationDataPermissionDetails {
|
|
73
|
+
LFTagPolicy?: LFTagPolicyDetails;
|
|
74
|
+
}
|
|
75
|
+
export declare enum LakeFormationDataPermissionType {
|
|
76
|
+
LFTagPolicy = "LFTagPolicy",
|
|
77
|
+
}
|
|
78
|
+
export declare enum LFPermission {
|
|
79
|
+
DESCRIBE = "DESCRIBE",
|
|
80
|
+
SELECT = "SELECT",
|
|
81
|
+
}
|
|
82
|
+
export interface LakeFormationDataPermissionAsset {
|
|
83
|
+
LakeFormationDataPermissionDetails:
|
|
84
|
+
| LakeFormationDataPermissionDetails
|
|
85
|
+
| undefined;
|
|
86
|
+
LakeFormationDataPermissionType:
|
|
87
|
+
| LakeFormationDataPermissionType
|
|
88
|
+
| string
|
|
89
|
+
| undefined;
|
|
90
|
+
Permissions: (LFPermission | string)[] | undefined;
|
|
91
|
+
RoleArn?: string;
|
|
92
|
+
}
|
|
49
93
|
export interface RedshiftDataShareAsset {
|
|
50
94
|
Arn: string | undefined;
|
|
51
95
|
}
|
|
96
|
+
export interface S3DataAccessAsset {
|
|
97
|
+
Bucket: string | undefined;
|
|
98
|
+
KeyPrefixes?: string[];
|
|
99
|
+
Keys?: string[];
|
|
100
|
+
S3AccessPointAlias?: string;
|
|
101
|
+
S3AccessPointArn?: string;
|
|
102
|
+
}
|
|
52
103
|
export interface S3SnapshotAsset {
|
|
53
104
|
Size: number | undefined;
|
|
54
105
|
}
|
|
@@ -56,10 +107,14 @@ export interface AssetDetails {
|
|
|
56
107
|
S3SnapshotAsset?: S3SnapshotAsset;
|
|
57
108
|
RedshiftDataShareAsset?: RedshiftDataShareAsset;
|
|
58
109
|
ApiGatewayApiAsset?: ApiGatewayApiAsset;
|
|
110
|
+
S3DataAccessAsset?: S3DataAccessAsset;
|
|
111
|
+
LakeFormationDataPermissionAsset?: LakeFormationDataPermissionAsset;
|
|
59
112
|
}
|
|
60
113
|
export declare enum AssetType {
|
|
61
114
|
API_GATEWAY_API = "API_GATEWAY_API",
|
|
115
|
+
LAKE_FORMATION_DATA_PERMISSION = "LAKE_FORMATION_DATA_PERMISSION",
|
|
62
116
|
REDSHIFT_DATA_SHARE = "REDSHIFT_DATA_SHARE",
|
|
117
|
+
S3_DATA_ACCESS = "S3_DATA_ACCESS",
|
|
63
118
|
S3_SNAPSHOT = "S3_SNAPSHOT",
|
|
64
119
|
}
|
|
65
120
|
export interface AssetEntry {
|
|
@@ -171,14 +226,17 @@ export interface CreateDataSetResponse {
|
|
|
171
226
|
UpdatedAt?: Date;
|
|
172
227
|
}
|
|
173
228
|
export declare enum LimitName {
|
|
229
|
+
AWS_Lake_Formation_data_permission_assets_per_revision = "AWS Lake Formation data permission assets per revision",
|
|
174
230
|
Amazon_API_Gateway_API_assets_per_revision = "Amazon API Gateway API assets per revision",
|
|
175
231
|
Amazon_Redshift_datashare_assets_per_import_job_from_Redshift = "Amazon Redshift datashare assets per import job from Redshift",
|
|
176
232
|
Amazon_Redshift_datashare_assets_per_revision = "Amazon Redshift datashare assets per revision",
|
|
233
|
+
Amazon_S3_data_access_assets_per_revision = "Amazon S3 data access assets per revision",
|
|
177
234
|
Asset_per_export_job_from_Amazon_S3 = "Asset per export job from Amazon S3",
|
|
178
235
|
Asset_size_in_GB = "Asset size in GB",
|
|
179
236
|
Assets_per_import_job_from_Amazon_S3 = "Assets per import job from Amazon S3",
|
|
180
237
|
Assets_per_revision = "Assets per revision",
|
|
181
238
|
Auto_export_event_actions_per_data_set = "Auto export event actions per data set",
|
|
239
|
+
Concurrent_in_progress_jobs_to_create_Amazon_S3_data_access_assets_from_S3_buckets = "Concurrent in progress jobs to create Amazon S3 data access assets from S3 buckets",
|
|
182
240
|
Concurrent_in_progress_jobs_to_export_assets_to_Amazon_S3 = "Concurrent in progress jobs to export assets to Amazon S3",
|
|
183
241
|
Concurrent_in_progress_jobs_to_export_assets_to_a_signed_URL = "Concurrent in progress jobs to export assets to a signed URL",
|
|
184
242
|
Concurrent_in_progress_jobs_to_export_revisions_to_Amazon_S3 = "Concurrent in progress jobs to export revisions to Amazon S3",
|
|
@@ -186,12 +244,15 @@ export declare enum LimitName {
|
|
|
186
244
|
Concurrent_in_progress_jobs_to_import_assets_from_Amazon_S3 = "Concurrent in progress jobs to import assets from Amazon S3",
|
|
187
245
|
Concurrent_in_progress_jobs_to_import_assets_from_a_signed_URL = "Concurrent in progress jobs to import assets from a signed URL",
|
|
188
246
|
Concurrent_in_progress_jobs_to_import_assets_from_an_API_Gateway_API = "Concurrent in progress jobs to import assets from an API Gateway API",
|
|
247
|
+
Concurrent_in_progress_jobs_to_import_assets_from_an_AWS_Lake_Formation_tag_policy = "Concurrent in progress jobs to import assets from an AWS Lake Formation tag policy",
|
|
189
248
|
Data_sets_per_account = "Data sets per account",
|
|
190
249
|
Data_sets_per_product = "Data sets per product",
|
|
191
250
|
Event_actions_per_account = "Event actions per account",
|
|
192
251
|
Products_per_account = "Products per account",
|
|
252
|
+
Revisions_per_AWS_Lake_Formation_data_permission_data_set = "Revisions per AWS Lake Formation data permission data set",
|
|
193
253
|
Revisions_per_Amazon_API_Gateway_API_data_set = "Revisions per Amazon API Gateway API data set",
|
|
194
254
|
Revisions_per_Amazon_Redshift_datashare_data_set = "Revisions per Amazon Redshift datashare data set",
|
|
255
|
+
Revisions_per_Amazon_S3_data_access_data_set = "Revisions per Amazon S3 data access data set",
|
|
195
256
|
Revisions_per_data_set = "Revisions per data set",
|
|
196
257
|
}
|
|
197
258
|
export declare class ServiceLimitExceededException extends __BaseException {
|
|
@@ -222,6 +283,16 @@ export interface CreateEventActionResponse {
|
|
|
222
283
|
Id?: string;
|
|
223
284
|
UpdatedAt?: Date;
|
|
224
285
|
}
|
|
286
|
+
export interface S3DataAccessAssetSourceEntry {
|
|
287
|
+
Bucket: string | undefined;
|
|
288
|
+
KeyPrefixes?: string[];
|
|
289
|
+
Keys?: string[];
|
|
290
|
+
}
|
|
291
|
+
export interface CreateS3DataAccessFromS3BucketRequestDetails {
|
|
292
|
+
AssetSource: S3DataAccessAssetSourceEntry | undefined;
|
|
293
|
+
DataSetId: string | undefined;
|
|
294
|
+
RevisionId: string | undefined;
|
|
295
|
+
}
|
|
225
296
|
export interface ExportAssetsToS3RequestDetails {
|
|
226
297
|
AssetDestinations: AssetDestinationEntry[] | undefined;
|
|
227
298
|
DataSetId: string | undefined;
|
|
@@ -260,6 +331,29 @@ export interface ImportAssetFromSignedUrlRequestDetails {
|
|
|
260
331
|
Md5Hash: string | undefined;
|
|
261
332
|
RevisionId: string | undefined;
|
|
262
333
|
}
|
|
334
|
+
export declare enum DatabaseLFTagPolicyPermission {
|
|
335
|
+
DESCRIBE = "DESCRIBE",
|
|
336
|
+
}
|
|
337
|
+
export interface DatabaseLFTagPolicyAndPermissions {
|
|
338
|
+
Expression: LFTag[] | undefined;
|
|
339
|
+
Permissions: (DatabaseLFTagPolicyPermission | string)[] | undefined;
|
|
340
|
+
}
|
|
341
|
+
export declare enum TableTagPolicyLFPermission {
|
|
342
|
+
DESCRIBE = "DESCRIBE",
|
|
343
|
+
SELECT = "SELECT",
|
|
344
|
+
}
|
|
345
|
+
export interface TableLFTagPolicyAndPermissions {
|
|
346
|
+
Expression: LFTag[] | undefined;
|
|
347
|
+
Permissions: (TableTagPolicyLFPermission | string)[] | undefined;
|
|
348
|
+
}
|
|
349
|
+
export interface ImportAssetsFromLakeFormationTagPolicyRequestDetails {
|
|
350
|
+
CatalogId: string | undefined;
|
|
351
|
+
Database?: DatabaseLFTagPolicyAndPermissions;
|
|
352
|
+
Table?: TableLFTagPolicyAndPermissions;
|
|
353
|
+
RoleArn: string | undefined;
|
|
354
|
+
DataSetId: string | undefined;
|
|
355
|
+
RevisionId: string | undefined;
|
|
356
|
+
}
|
|
263
357
|
export interface RedshiftDataShareAssetSourceEntry {
|
|
264
358
|
DataShareArn: string | undefined;
|
|
265
359
|
}
|
|
@@ -281,11 +375,15 @@ export interface RequestDetails {
|
|
|
281
375
|
ImportAssetsFromS3?: ImportAssetsFromS3RequestDetails;
|
|
282
376
|
ImportAssetsFromRedshiftDataShares?: ImportAssetsFromRedshiftDataSharesRequestDetails;
|
|
283
377
|
ImportAssetFromApiGatewayApi?: ImportAssetFromApiGatewayApiRequestDetails;
|
|
378
|
+
CreateS3DataAccessFromS3Bucket?: CreateS3DataAccessFromS3BucketRequestDetails;
|
|
379
|
+
ImportAssetsFromLakeFormationTagPolicy?: ImportAssetsFromLakeFormationTagPolicyRequestDetails;
|
|
284
380
|
}
|
|
285
381
|
export declare enum Type {
|
|
382
|
+
CREATE_S3_DATA_ACCESS_FROM_S3_BUCKET = "CREATE_S3_DATA_ACCESS_FROM_S3_BUCKET",
|
|
286
383
|
EXPORT_ASSETS_TO_S3 = "EXPORT_ASSETS_TO_S3",
|
|
287
384
|
EXPORT_ASSET_TO_SIGNED_URL = "EXPORT_ASSET_TO_SIGNED_URL",
|
|
288
385
|
EXPORT_REVISIONS_TO_S3 = "EXPORT_REVISIONS_TO_S3",
|
|
386
|
+
IMPORT_ASSETS_FROM_LAKE_FORMATION_TAG_POLICY = "IMPORT_ASSETS_FROM_LAKE_FORMATION_TAG_POLICY",
|
|
289
387
|
IMPORT_ASSETS_FROM_REDSHIFT_DATA_SHARES = "IMPORT_ASSETS_FROM_REDSHIFT_DATA_SHARES",
|
|
290
388
|
IMPORT_ASSETS_FROM_S3 = "IMPORT_ASSETS_FROM_S3",
|
|
291
389
|
IMPORT_ASSET_FROM_API_GATEWAY_API = "IMPORT_ASSET_FROM_API_GATEWAY_API",
|
|
@@ -295,6 +393,11 @@ export interface CreateJobRequest {
|
|
|
295
393
|
Details: RequestDetails | undefined;
|
|
296
394
|
Type: Type | string | undefined;
|
|
297
395
|
}
|
|
396
|
+
export interface CreateS3DataAccessFromS3BucketResponseDetails {
|
|
397
|
+
AssetSource: S3DataAccessAssetSourceEntry | undefined;
|
|
398
|
+
DataSetId: string | undefined;
|
|
399
|
+
RevisionId: string | undefined;
|
|
400
|
+
}
|
|
298
401
|
export interface ExportAssetsToS3ResponseDetails {
|
|
299
402
|
AssetDestinations: AssetDestinationEntry[] | undefined;
|
|
300
403
|
DataSetId: string | undefined;
|
|
@@ -335,6 +438,14 @@ export interface ImportAssetFromSignedUrlResponseDetails {
|
|
|
335
438
|
SignedUrl?: string;
|
|
336
439
|
SignedUrlExpiresAt?: Date;
|
|
337
440
|
}
|
|
441
|
+
export interface ImportAssetsFromLakeFormationTagPolicyResponseDetails {
|
|
442
|
+
CatalogId: string | undefined;
|
|
443
|
+
Database?: DatabaseLFTagPolicyAndPermissions;
|
|
444
|
+
Table?: TableLFTagPolicyAndPermissions;
|
|
445
|
+
RoleArn: string | undefined;
|
|
446
|
+
DataSetId: string | undefined;
|
|
447
|
+
RevisionId: string | undefined;
|
|
448
|
+
}
|
|
338
449
|
export interface ImportAssetsFromRedshiftDataSharesResponseDetails {
|
|
339
450
|
AssetSources: RedshiftDataShareAssetSourceEntry[] | undefined;
|
|
340
451
|
DataSetId: string | undefined;
|
|
@@ -353,6 +464,8 @@ export interface ResponseDetails {
|
|
|
353
464
|
ImportAssetsFromS3?: ImportAssetsFromS3ResponseDetails;
|
|
354
465
|
ImportAssetsFromRedshiftDataShares?: ImportAssetsFromRedshiftDataSharesResponseDetails;
|
|
355
466
|
ImportAssetFromApiGatewayApi?: ImportAssetFromApiGatewayApiResponseDetails;
|
|
467
|
+
CreateS3DataAccessFromS3Bucket?: CreateS3DataAccessFromS3BucketResponseDetails;
|
|
468
|
+
ImportAssetsFromLakeFormationTagPolicy?: ImportAssetsFromLakeFormationTagPolicyResponseDetails;
|
|
356
469
|
}
|
|
357
470
|
export interface ImportAssetFromSignedUrlJobErrorDetails {
|
|
358
471
|
AssetName: string | undefined;
|
|
@@ -362,7 +475,9 @@ export interface Details {
|
|
|
362
475
|
ImportAssetsFromS3JobErrorDetails?: AssetSourceEntry[];
|
|
363
476
|
}
|
|
364
477
|
export declare enum JobErrorLimitName {
|
|
478
|
+
AWS_Lake_Formation_data_permission_assets_per_revision = "AWS Lake Formation data permission assets per revision",
|
|
365
479
|
Amazon_Redshift_datashare_assets_per_revision = "Amazon Redshift datashare assets per revision",
|
|
480
|
+
Amazon_S3_data_access_assets_per_revision = "Amazon S3 data access assets per revision",
|
|
366
481
|
Asset_size_in_GB = "Asset size in GB",
|
|
367
482
|
Assets_per_revision = "Assets per revision",
|
|
368
483
|
}
|
|
@@ -729,9 +844,31 @@ export declare const ApiGatewayApiAssetFilterSensitiveLog: (
|
|
|
729
844
|
export declare const AssetDestinationEntryFilterSensitiveLog: (
|
|
730
845
|
obj: AssetDestinationEntry
|
|
731
846
|
) => any;
|
|
847
|
+
export declare const LFTagFilterSensitiveLog: (obj: LFTag) => any;
|
|
848
|
+
export declare const DatabaseLFTagPolicyFilterSensitiveLog: (
|
|
849
|
+
obj: DatabaseLFTagPolicy
|
|
850
|
+
) => any;
|
|
851
|
+
export declare const TableLFTagPolicyFilterSensitiveLog: (
|
|
852
|
+
obj: TableLFTagPolicy
|
|
853
|
+
) => any;
|
|
854
|
+
export declare const LFResourceDetailsFilterSensitiveLog: (
|
|
855
|
+
obj: LFResourceDetails
|
|
856
|
+
) => any;
|
|
857
|
+
export declare const LFTagPolicyDetailsFilterSensitiveLog: (
|
|
858
|
+
obj: LFTagPolicyDetails
|
|
859
|
+
) => any;
|
|
860
|
+
export declare const LakeFormationDataPermissionDetailsFilterSensitiveLog: (
|
|
861
|
+
obj: LakeFormationDataPermissionDetails
|
|
862
|
+
) => any;
|
|
863
|
+
export declare const LakeFormationDataPermissionAssetFilterSensitiveLog: (
|
|
864
|
+
obj: LakeFormationDataPermissionAsset
|
|
865
|
+
) => any;
|
|
732
866
|
export declare const RedshiftDataShareAssetFilterSensitiveLog: (
|
|
733
867
|
obj: RedshiftDataShareAsset
|
|
734
868
|
) => any;
|
|
869
|
+
export declare const S3DataAccessAssetFilterSensitiveLog: (
|
|
870
|
+
obj: S3DataAccessAsset
|
|
871
|
+
) => any;
|
|
735
872
|
export declare const S3SnapshotAssetFilterSensitiveLog: (
|
|
736
873
|
obj: S3SnapshotAsset
|
|
737
874
|
) => any;
|
|
@@ -762,6 +899,12 @@ export declare const CreateEventActionRequestFilterSensitiveLog: (
|
|
|
762
899
|
export declare const CreateEventActionResponseFilterSensitiveLog: (
|
|
763
900
|
obj: CreateEventActionResponse
|
|
764
901
|
) => any;
|
|
902
|
+
export declare const S3DataAccessAssetSourceEntryFilterSensitiveLog: (
|
|
903
|
+
obj: S3DataAccessAssetSourceEntry
|
|
904
|
+
) => any;
|
|
905
|
+
export declare const CreateS3DataAccessFromS3BucketRequestDetailsFilterSensitiveLog: (
|
|
906
|
+
obj: CreateS3DataAccessFromS3BucketRequestDetails
|
|
907
|
+
) => any;
|
|
765
908
|
export declare const ExportAssetsToS3RequestDetailsFilterSensitiveLog: (
|
|
766
909
|
obj: ExportAssetsToS3RequestDetails
|
|
767
910
|
) => any;
|
|
@@ -780,6 +923,15 @@ export declare const ImportAssetFromApiGatewayApiRequestDetailsFilterSensitiveLo
|
|
|
780
923
|
export declare const ImportAssetFromSignedUrlRequestDetailsFilterSensitiveLog: (
|
|
781
924
|
obj: ImportAssetFromSignedUrlRequestDetails
|
|
782
925
|
) => any;
|
|
926
|
+
export declare const DatabaseLFTagPolicyAndPermissionsFilterSensitiveLog: (
|
|
927
|
+
obj: DatabaseLFTagPolicyAndPermissions
|
|
928
|
+
) => any;
|
|
929
|
+
export declare const TableLFTagPolicyAndPermissionsFilterSensitiveLog: (
|
|
930
|
+
obj: TableLFTagPolicyAndPermissions
|
|
931
|
+
) => any;
|
|
932
|
+
export declare const ImportAssetsFromLakeFormationTagPolicyRequestDetailsFilterSensitiveLog: (
|
|
933
|
+
obj: ImportAssetsFromLakeFormationTagPolicyRequestDetails
|
|
934
|
+
) => any;
|
|
783
935
|
export declare const RedshiftDataShareAssetSourceEntryFilterSensitiveLog: (
|
|
784
936
|
obj: RedshiftDataShareAssetSourceEntry
|
|
785
937
|
) => any;
|
|
@@ -795,6 +947,9 @@ export declare const RequestDetailsFilterSensitiveLog: (
|
|
|
795
947
|
export declare const CreateJobRequestFilterSensitiveLog: (
|
|
796
948
|
obj: CreateJobRequest
|
|
797
949
|
) => any;
|
|
950
|
+
export declare const CreateS3DataAccessFromS3BucketResponseDetailsFilterSensitiveLog: (
|
|
951
|
+
obj: CreateS3DataAccessFromS3BucketResponseDetails
|
|
952
|
+
) => any;
|
|
798
953
|
export declare const ExportAssetsToS3ResponseDetailsFilterSensitiveLog: (
|
|
799
954
|
obj: ExportAssetsToS3ResponseDetails
|
|
800
955
|
) => any;
|
|
@@ -810,6 +965,9 @@ export declare const ImportAssetFromApiGatewayApiResponseDetailsFilterSensitiveL
|
|
|
810
965
|
export declare const ImportAssetFromSignedUrlResponseDetailsFilterSensitiveLog: (
|
|
811
966
|
obj: ImportAssetFromSignedUrlResponseDetails
|
|
812
967
|
) => any;
|
|
968
|
+
export declare const ImportAssetsFromLakeFormationTagPolicyResponseDetailsFilterSensitiveLog: (
|
|
969
|
+
obj: ImportAssetsFromLakeFormationTagPolicyResponseDetails
|
|
970
|
+
) => any;
|
|
813
971
|
export declare const ImportAssetsFromRedshiftDataSharesResponseDetailsFilterSensitiveLog: (
|
|
814
972
|
obj: ImportAssetsFromRedshiftDataSharesResponseDetails
|
|
815
973
|
) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-dataexchange",
|
|
3
3
|
"description": "AWS SDK for JavaScript Dataexchange Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.221.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,9 +19,9 @@
|
|
|
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.
|
|
22
|
+
"@aws-sdk/client-sts": "3.218.0",
|
|
23
23
|
"@aws-sdk/config-resolver": "3.215.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.218.0",
|
|
25
25
|
"@aws-sdk/fetch-http-handler": "3.215.0",
|
|
26
26
|
"@aws-sdk/hash-node": "3.215.0",
|
|
27
27
|
"@aws-sdk/invalid-dependency": "3.215.0",
|