@aws-sdk/client-api-gateway 3.301.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 +129 -148
- package/dist-es/models/models_0.js +129 -148
- package/dist-types/models/models_0.d.ts +224 -129
- package/dist-types/ts3.4/models/models_0.d.ts +162 -129
- package/package.json +35 -35
|
@@ -35,23 +35,28 @@ export interface ApiKeys {
|
|
|
35
35
|
items?: ApiKey[];
|
|
36
36
|
position?: string;
|
|
37
37
|
}
|
|
38
|
-
export declare
|
|
39
|
-
csv
|
|
40
|
-
}
|
|
41
|
-
export
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
38
|
+
export declare const ApiKeysFormat: {
|
|
39
|
+
readonly csv: "csv";
|
|
40
|
+
};
|
|
41
|
+
export type ApiKeysFormat = (typeof ApiKeysFormat)[keyof typeof ApiKeysFormat];
|
|
42
|
+
export declare const ApiKeySourceType: {
|
|
43
|
+
readonly AUTHORIZER: "AUTHORIZER";
|
|
44
|
+
readonly HEADER: "HEADER";
|
|
45
|
+
};
|
|
46
|
+
export type ApiKeySourceType =
|
|
47
|
+
(typeof ApiKeySourceType)[keyof typeof ApiKeySourceType];
|
|
45
48
|
export interface ApiStage {
|
|
46
49
|
apiId?: string;
|
|
47
50
|
stage?: string;
|
|
48
51
|
throttle?: Record<string, ThrottleSettings>;
|
|
49
52
|
}
|
|
50
|
-
export declare
|
|
51
|
-
COGNITO_USER_POOLS
|
|
52
|
-
REQUEST
|
|
53
|
-
TOKEN
|
|
54
|
-
}
|
|
53
|
+
export declare const AuthorizerType: {
|
|
54
|
+
readonly COGNITO_USER_POOLS: "COGNITO_USER_POOLS";
|
|
55
|
+
readonly REQUEST: "REQUEST";
|
|
56
|
+
readonly TOKEN: "TOKEN";
|
|
57
|
+
};
|
|
58
|
+
export type AuthorizerType =
|
|
59
|
+
(typeof AuthorizerType)[keyof typeof AuthorizerType];
|
|
55
60
|
export interface Authorizer {
|
|
56
61
|
id?: string;
|
|
57
62
|
name?: string;
|
|
@@ -145,16 +150,18 @@ export interface CreateBasePathMappingRequest {
|
|
|
145
150
|
restApiId: string | undefined;
|
|
146
151
|
stage?: string;
|
|
147
152
|
}
|
|
148
|
-
export declare
|
|
149
|
-
SIZE_0_POINT_5_GB
|
|
150
|
-
SIZE_118_GB
|
|
151
|
-
SIZE_13_POINT_5_GB
|
|
152
|
-
SIZE_1_POINT_6_GB
|
|
153
|
-
SIZE_237_GB
|
|
154
|
-
SIZE_28_POINT_4_GB
|
|
155
|
-
SIZE_58_POINT_2_GB
|
|
156
|
-
SIZE_6_POINT_1_GB
|
|
157
|
-
}
|
|
153
|
+
export declare const CacheClusterSize: {
|
|
154
|
+
readonly SIZE_0_POINT_5_GB: "0.5";
|
|
155
|
+
readonly SIZE_118_GB: "118";
|
|
156
|
+
readonly SIZE_13_POINT_5_GB: "13.5";
|
|
157
|
+
readonly SIZE_1_POINT_6_GB: "1.6";
|
|
158
|
+
readonly SIZE_237_GB: "237";
|
|
159
|
+
readonly SIZE_28_POINT_4_GB: "28.4";
|
|
160
|
+
readonly SIZE_58_POINT_2_GB: "58.2";
|
|
161
|
+
readonly SIZE_6_POINT_1_GB: "6.1";
|
|
162
|
+
};
|
|
163
|
+
export type CacheClusterSize =
|
|
164
|
+
(typeof CacheClusterSize)[keyof typeof CacheClusterSize];
|
|
158
165
|
export interface DeploymentCanarySettings {
|
|
159
166
|
percentTraffic?: number;
|
|
160
167
|
stageVariableOverrides?: Record<string, string>;
|
|
@@ -189,20 +196,22 @@ export declare class ServiceUnavailableException extends __BaseException {
|
|
|
189
196
|
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
190
197
|
);
|
|
191
198
|
}
|
|
192
|
-
export declare
|
|
193
|
-
API
|
|
194
|
-
AUTHORIZER
|
|
195
|
-
METHOD
|
|
196
|
-
MODEL
|
|
197
|
-
PATH_PARAMETER
|
|
198
|
-
QUERY_PARAMETER
|
|
199
|
-
REQUEST_BODY
|
|
200
|
-
REQUEST_HEADER
|
|
201
|
-
RESOURCE
|
|
202
|
-
RESPONSE
|
|
203
|
-
RESPONSE_BODY
|
|
204
|
-
RESPONSE_HEADER
|
|
205
|
-
}
|
|
199
|
+
export declare const DocumentationPartType: {
|
|
200
|
+
readonly API: "API";
|
|
201
|
+
readonly AUTHORIZER: "AUTHORIZER";
|
|
202
|
+
readonly METHOD: "METHOD";
|
|
203
|
+
readonly MODEL: "MODEL";
|
|
204
|
+
readonly PATH_PARAMETER: "PATH_PARAMETER";
|
|
205
|
+
readonly QUERY_PARAMETER: "QUERY_PARAMETER";
|
|
206
|
+
readonly REQUEST_BODY: "REQUEST_BODY";
|
|
207
|
+
readonly REQUEST_HEADER: "REQUEST_HEADER";
|
|
208
|
+
readonly RESOURCE: "RESOURCE";
|
|
209
|
+
readonly RESPONSE: "RESPONSE";
|
|
210
|
+
readonly RESPONSE_BODY: "RESPONSE_BODY";
|
|
211
|
+
readonly RESPONSE_HEADER: "RESPONSE_HEADER";
|
|
212
|
+
};
|
|
213
|
+
export type DocumentationPartType =
|
|
214
|
+
(typeof DocumentationPartType)[keyof typeof DocumentationPartType];
|
|
206
215
|
export interface DocumentationPartLocation {
|
|
207
216
|
type: DocumentationPartType | string | undefined;
|
|
208
217
|
path?: string;
|
|
@@ -231,11 +240,12 @@ export interface DocumentationVersion {
|
|
|
231
240
|
createdDate?: Date;
|
|
232
241
|
description?: string;
|
|
233
242
|
}
|
|
234
|
-
export declare
|
|
235
|
-
EDGE
|
|
236
|
-
PRIVATE
|
|
237
|
-
REGIONAL
|
|
238
|
-
}
|
|
243
|
+
export declare const EndpointType: {
|
|
244
|
+
readonly EDGE: "EDGE";
|
|
245
|
+
readonly PRIVATE: "PRIVATE";
|
|
246
|
+
readonly REGIONAL: "REGIONAL";
|
|
247
|
+
};
|
|
248
|
+
export type EndpointType = (typeof EndpointType)[keyof typeof EndpointType];
|
|
239
249
|
export interface EndpointConfiguration {
|
|
240
250
|
types?: (EndpointType | string)[];
|
|
241
251
|
vpcEndpointIds?: string[];
|
|
@@ -244,10 +254,12 @@ export interface MutualTlsAuthenticationInput {
|
|
|
244
254
|
truststoreUri?: string;
|
|
245
255
|
truststoreVersion?: string;
|
|
246
256
|
}
|
|
247
|
-
export declare
|
|
248
|
-
TLS_1_0
|
|
249
|
-
TLS_1_2
|
|
250
|
-
}
|
|
257
|
+
export declare const SecurityPolicy: {
|
|
258
|
+
readonly TLS_1_0: "TLS_1_0";
|
|
259
|
+
readonly TLS_1_2: "TLS_1_2";
|
|
260
|
+
};
|
|
261
|
+
export type SecurityPolicy =
|
|
262
|
+
(typeof SecurityPolicy)[keyof typeof SecurityPolicy];
|
|
251
263
|
export interface CreateDomainNameRequest {
|
|
252
264
|
domainName: string | undefined;
|
|
253
265
|
certificateName?: string;
|
|
@@ -263,13 +275,15 @@ export interface CreateDomainNameRequest {
|
|
|
263
275
|
mutualTlsAuthentication?: MutualTlsAuthenticationInput;
|
|
264
276
|
ownershipVerificationCertificateArn?: string;
|
|
265
277
|
}
|
|
266
|
-
export declare
|
|
267
|
-
AVAILABLE
|
|
268
|
-
PENDING
|
|
269
|
-
PENDING_CERTIFICATE_REIMPORT
|
|
270
|
-
PENDING_OWNERSHIP_VERIFICATION
|
|
271
|
-
UPDATING
|
|
272
|
-
}
|
|
278
|
+
export declare const DomainNameStatus: {
|
|
279
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
280
|
+
readonly PENDING: "PENDING";
|
|
281
|
+
readonly PENDING_CERTIFICATE_REIMPORT: "PENDING_CERTIFICATE_REIMPORT";
|
|
282
|
+
readonly PENDING_OWNERSHIP_VERIFICATION: "PENDING_OWNERSHIP_VERIFICATION";
|
|
283
|
+
readonly UPDATING: "UPDATING";
|
|
284
|
+
};
|
|
285
|
+
export type DomainNameStatus =
|
|
286
|
+
(typeof DomainNameStatus)[keyof typeof DomainNameStatus];
|
|
273
287
|
export interface MutualTlsAuthentication {
|
|
274
288
|
truststoreUri?: string;
|
|
275
289
|
truststoreVersion?: string;
|
|
@@ -325,14 +339,18 @@ export interface CreateResourceRequest {
|
|
|
325
339
|
parentId: string | undefined;
|
|
326
340
|
pathPart: string | undefined;
|
|
327
341
|
}
|
|
328
|
-
export declare
|
|
329
|
-
INTERNET
|
|
330
|
-
VPC_LINK
|
|
331
|
-
}
|
|
332
|
-
export
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
342
|
+
export declare const ConnectionType: {
|
|
343
|
+
readonly INTERNET: "INTERNET";
|
|
344
|
+
readonly VPC_LINK: "VPC_LINK";
|
|
345
|
+
};
|
|
346
|
+
export type ConnectionType =
|
|
347
|
+
(typeof ConnectionType)[keyof typeof ConnectionType];
|
|
348
|
+
export declare const ContentHandlingStrategy: {
|
|
349
|
+
readonly CONVERT_TO_BINARY: "CONVERT_TO_BINARY";
|
|
350
|
+
readonly CONVERT_TO_TEXT: "CONVERT_TO_TEXT";
|
|
351
|
+
};
|
|
352
|
+
export type ContentHandlingStrategy =
|
|
353
|
+
(typeof ContentHandlingStrategy)[keyof typeof ContentHandlingStrategy];
|
|
336
354
|
export interface IntegrationResponse {
|
|
337
355
|
statusCode?: string;
|
|
338
356
|
selectionPattern?: string;
|
|
@@ -343,13 +361,15 @@ export interface IntegrationResponse {
|
|
|
343
361
|
export interface TlsConfig {
|
|
344
362
|
insecureSkipVerification?: boolean;
|
|
345
363
|
}
|
|
346
|
-
export declare
|
|
347
|
-
AWS
|
|
348
|
-
AWS_PROXY
|
|
349
|
-
HTTP
|
|
350
|
-
HTTP_PROXY
|
|
351
|
-
MOCK
|
|
352
|
-
}
|
|
364
|
+
export declare const IntegrationType: {
|
|
365
|
+
readonly AWS: "AWS";
|
|
366
|
+
readonly AWS_PROXY: "AWS_PROXY";
|
|
367
|
+
readonly HTTP: "HTTP";
|
|
368
|
+
readonly HTTP_PROXY: "HTTP_PROXY";
|
|
369
|
+
readonly MOCK: "MOCK";
|
|
370
|
+
};
|
|
371
|
+
export type IntegrationType =
|
|
372
|
+
(typeof IntegrationType)[keyof typeof IntegrationType];
|
|
353
373
|
export interface Integration {
|
|
354
374
|
type?: IntegrationType | string;
|
|
355
375
|
httpMethod?: string;
|
|
@@ -439,18 +459,22 @@ export interface CreateStageRequest {
|
|
|
439
459
|
tracingEnabled?: boolean;
|
|
440
460
|
tags?: Record<string, string>;
|
|
441
461
|
}
|
|
442
|
-
export declare
|
|
443
|
-
AVAILABLE
|
|
444
|
-
CREATE_IN_PROGRESS
|
|
445
|
-
DELETE_IN_PROGRESS
|
|
446
|
-
FLUSH_IN_PROGRESS
|
|
447
|
-
NOT_AVAILABLE
|
|
448
|
-
}
|
|
449
|
-
export
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
462
|
+
export declare const CacheClusterStatus: {
|
|
463
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
464
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
465
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
466
|
+
readonly FLUSH_IN_PROGRESS: "FLUSH_IN_PROGRESS";
|
|
467
|
+
readonly NOT_AVAILABLE: "NOT_AVAILABLE";
|
|
468
|
+
};
|
|
469
|
+
export type CacheClusterStatus =
|
|
470
|
+
(typeof CacheClusterStatus)[keyof typeof CacheClusterStatus];
|
|
471
|
+
export declare const UnauthorizedCacheControlHeaderStrategy: {
|
|
472
|
+
readonly FAIL_WITH_403: "FAIL_WITH_403";
|
|
473
|
+
readonly SUCCEED_WITHOUT_RESPONSE_HEADER: "SUCCEED_WITHOUT_RESPONSE_HEADER";
|
|
474
|
+
readonly SUCCEED_WITH_RESPONSE_HEADER: "SUCCEED_WITH_RESPONSE_HEADER";
|
|
475
|
+
};
|
|
476
|
+
export type UnauthorizedCacheControlHeaderStrategy =
|
|
477
|
+
(typeof UnauthorizedCacheControlHeaderStrategy)[keyof typeof UnauthorizedCacheControlHeaderStrategy];
|
|
454
478
|
export interface MethodSetting {
|
|
455
479
|
metricsEnabled?: boolean;
|
|
456
480
|
loggingLevel?: string;
|
|
@@ -484,11 +508,13 @@ export interface Stage {
|
|
|
484
508
|
createdDate?: Date;
|
|
485
509
|
lastUpdatedDate?: Date;
|
|
486
510
|
}
|
|
487
|
-
export declare
|
|
488
|
-
DAY
|
|
489
|
-
MONTH
|
|
490
|
-
WEEK
|
|
491
|
-
}
|
|
511
|
+
export declare const QuotaPeriodType: {
|
|
512
|
+
readonly DAY: "DAY";
|
|
513
|
+
readonly MONTH: "MONTH";
|
|
514
|
+
readonly WEEK: "WEEK";
|
|
515
|
+
};
|
|
516
|
+
export type QuotaPeriodType =
|
|
517
|
+
(typeof QuotaPeriodType)[keyof typeof QuotaPeriodType];
|
|
492
518
|
export interface QuotaSettings {
|
|
493
519
|
limit?: number;
|
|
494
520
|
offset?: number;
|
|
@@ -529,12 +555,13 @@ export interface CreateVpcLinkRequest {
|
|
|
529
555
|
targetArns: string[] | undefined;
|
|
530
556
|
tags?: Record<string, string>;
|
|
531
557
|
}
|
|
532
|
-
export declare
|
|
533
|
-
AVAILABLE
|
|
534
|
-
DELETING
|
|
535
|
-
FAILED
|
|
536
|
-
PENDING
|
|
537
|
-
}
|
|
558
|
+
export declare const VpcLinkStatus: {
|
|
559
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
560
|
+
readonly DELETING: "DELETING";
|
|
561
|
+
readonly FAILED: "FAILED";
|
|
562
|
+
readonly PENDING: "PENDING";
|
|
563
|
+
};
|
|
564
|
+
export type VpcLinkStatus = (typeof VpcLinkStatus)[keyof typeof VpcLinkStatus];
|
|
538
565
|
export interface VpcLink {
|
|
539
566
|
id?: string;
|
|
540
567
|
name?: string;
|
|
@@ -573,29 +600,31 @@ export interface DeleteDocumentationVersionRequest {
|
|
|
573
600
|
export interface DeleteDomainNameRequest {
|
|
574
601
|
domainName: string | undefined;
|
|
575
602
|
}
|
|
576
|
-
export declare
|
|
577
|
-
ACCESS_DENIED
|
|
578
|
-
API_CONFIGURATION_ERROR
|
|
579
|
-
AUTHORIZER_CONFIGURATION_ERROR
|
|
580
|
-
AUTHORIZER_FAILURE
|
|
581
|
-
BAD_REQUEST_BODY
|
|
582
|
-
BAD_REQUEST_PARAMETERS
|
|
583
|
-
DEFAULT_4XX
|
|
584
|
-
DEFAULT_5XX
|
|
585
|
-
EXPIRED_TOKEN
|
|
586
|
-
INTEGRATION_FAILURE
|
|
587
|
-
INTEGRATION_TIMEOUT
|
|
588
|
-
INVALID_API_KEY
|
|
589
|
-
INVALID_SIGNATURE
|
|
590
|
-
MISSING_AUTHENTICATION_TOKEN
|
|
591
|
-
QUOTA_EXCEEDED
|
|
592
|
-
REQUEST_TOO_LARGE
|
|
593
|
-
RESOURCE_NOT_FOUND
|
|
594
|
-
THROTTLED
|
|
595
|
-
UNAUTHORIZED
|
|
596
|
-
UNSUPPORTED_MEDIA_TYPE
|
|
597
|
-
WAF_FILTERED
|
|
598
|
-
}
|
|
603
|
+
export declare const GatewayResponseType: {
|
|
604
|
+
readonly ACCESS_DENIED: "ACCESS_DENIED";
|
|
605
|
+
readonly API_CONFIGURATION_ERROR: "API_CONFIGURATION_ERROR";
|
|
606
|
+
readonly AUTHORIZER_CONFIGURATION_ERROR: "AUTHORIZER_CONFIGURATION_ERROR";
|
|
607
|
+
readonly AUTHORIZER_FAILURE: "AUTHORIZER_FAILURE";
|
|
608
|
+
readonly BAD_REQUEST_BODY: "BAD_REQUEST_BODY";
|
|
609
|
+
readonly BAD_REQUEST_PARAMETERS: "BAD_REQUEST_PARAMETERS";
|
|
610
|
+
readonly DEFAULT_4XX: "DEFAULT_4XX";
|
|
611
|
+
readonly DEFAULT_5XX: "DEFAULT_5XX";
|
|
612
|
+
readonly EXPIRED_TOKEN: "EXPIRED_TOKEN";
|
|
613
|
+
readonly INTEGRATION_FAILURE: "INTEGRATION_FAILURE";
|
|
614
|
+
readonly INTEGRATION_TIMEOUT: "INTEGRATION_TIMEOUT";
|
|
615
|
+
readonly INVALID_API_KEY: "INVALID_API_KEY";
|
|
616
|
+
readonly INVALID_SIGNATURE: "INVALID_SIGNATURE";
|
|
617
|
+
readonly MISSING_AUTHENTICATION_TOKEN: "MISSING_AUTHENTICATION_TOKEN";
|
|
618
|
+
readonly QUOTA_EXCEEDED: "QUOTA_EXCEEDED";
|
|
619
|
+
readonly REQUEST_TOO_LARGE: "REQUEST_TOO_LARGE";
|
|
620
|
+
readonly RESOURCE_NOT_FOUND: "RESOURCE_NOT_FOUND";
|
|
621
|
+
readonly THROTTLED: "THROTTLED";
|
|
622
|
+
readonly UNAUTHORIZED: "UNAUTHORIZED";
|
|
623
|
+
readonly UNSUPPORTED_MEDIA_TYPE: "UNSUPPORTED_MEDIA_TYPE";
|
|
624
|
+
readonly WAF_FILTERED: "WAF_FILTERED";
|
|
625
|
+
};
|
|
626
|
+
export type GatewayResponseType =
|
|
627
|
+
(typeof GatewayResponseType)[keyof typeof GatewayResponseType];
|
|
599
628
|
export interface DeleteGatewayResponseRequest {
|
|
600
629
|
restApiId: string | undefined;
|
|
601
630
|
responseType: GatewayResponseType | string | undefined;
|
|
@@ -738,10 +767,12 @@ export interface DocumentationParts {
|
|
|
738
767
|
items?: DocumentationPart[];
|
|
739
768
|
position?: string;
|
|
740
769
|
}
|
|
741
|
-
export declare
|
|
742
|
-
DOCUMENTED
|
|
743
|
-
UNDOCUMENTED
|
|
744
|
-
}
|
|
770
|
+
export declare const LocationStatusType: {
|
|
771
|
+
readonly DOCUMENTED: "DOCUMENTED";
|
|
772
|
+
readonly UNDOCUMENTED: "UNDOCUMENTED";
|
|
773
|
+
};
|
|
774
|
+
export type LocationStatusType =
|
|
775
|
+
(typeof LocationStatusType)[keyof typeof LocationStatusType];
|
|
745
776
|
export interface GetDocumentationPartsRequest {
|
|
746
777
|
restApiId: string | undefined;
|
|
747
778
|
type?: DocumentationPartType | string;
|
|
@@ -1003,10 +1034,11 @@ export interface DocumentationPartIds {
|
|
|
1003
1034
|
ids?: string[];
|
|
1004
1035
|
warnings?: string[];
|
|
1005
1036
|
}
|
|
1006
|
-
export declare
|
|
1007
|
-
Merge
|
|
1008
|
-
Overwrite
|
|
1009
|
-
}
|
|
1037
|
+
export declare const PutMode: {
|
|
1038
|
+
readonly Merge: "merge";
|
|
1039
|
+
readonly Overwrite: "overwrite";
|
|
1040
|
+
};
|
|
1041
|
+
export type PutMode = (typeof PutMode)[keyof typeof PutMode];
|
|
1010
1042
|
export interface ImportDocumentationPartsRequest {
|
|
1011
1043
|
restApiId: string | undefined;
|
|
1012
1044
|
mode?: PutMode | string;
|
|
@@ -1128,14 +1160,15 @@ export interface UntagResourceRequest {
|
|
|
1128
1160
|
resourceArn: string | undefined;
|
|
1129
1161
|
tagKeys: string[] | undefined;
|
|
1130
1162
|
}
|
|
1131
|
-
export declare
|
|
1132
|
-
add
|
|
1133
|
-
copy
|
|
1134
|
-
move
|
|
1135
|
-
remove
|
|
1136
|
-
replace
|
|
1137
|
-
test
|
|
1138
|
-
}
|
|
1163
|
+
export declare const Op: {
|
|
1164
|
+
readonly add: "add";
|
|
1165
|
+
readonly copy: "copy";
|
|
1166
|
+
readonly move: "move";
|
|
1167
|
+
readonly remove: "remove";
|
|
1168
|
+
readonly replace: "replace";
|
|
1169
|
+
readonly test: "test";
|
|
1170
|
+
};
|
|
1171
|
+
export type Op = (typeof Op)[keyof typeof Op];
|
|
1139
1172
|
export interface PatchOperation {
|
|
1140
1173
|
op?: Op | string;
|
|
1141
1174
|
path?: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-api-gateway",
|
|
3
3
|
"description": "AWS SDK for JavaScript Api Gateway 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-sdk-api-gateway": "3.
|
|
37
|
-
"@aws-sdk/middleware-serde": "3.
|
|
38
|
-
"@aws-sdk/middleware-signing": "3.
|
|
39
|
-
"@aws-sdk/middleware-stack": "3.
|
|
40
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
41
|
-
"@aws-sdk/node-config-provider": "3.
|
|
42
|
-
"@aws-sdk/node-http-handler": "3.
|
|
43
|
-
"@aws-sdk/protocol-http": "3.
|
|
44
|
-
"@aws-sdk/smithy-client": "3.
|
|
45
|
-
"@aws-sdk/types": "3.
|
|
46
|
-
"@aws-sdk/url-parser": "3.
|
|
47
|
-
"@aws-sdk/util-base64": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
49
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
51
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
52
|
-
"@aws-sdk/util-endpoints": "3.
|
|
53
|
-
"@aws-sdk/util-retry": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
55
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
56
|
-
"@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-sdk-api-gateway": "3.303.0",
|
|
37
|
+
"@aws-sdk/middleware-serde": "3.303.0",
|
|
38
|
+
"@aws-sdk/middleware-signing": "3.303.0",
|
|
39
|
+
"@aws-sdk/middleware-stack": "3.303.0",
|
|
40
|
+
"@aws-sdk/middleware-user-agent": "3.303.0",
|
|
41
|
+
"@aws-sdk/node-config-provider": "3.303.0",
|
|
42
|
+
"@aws-sdk/node-http-handler": "3.303.0",
|
|
43
|
+
"@aws-sdk/protocol-http": "3.303.0",
|
|
44
|
+
"@aws-sdk/smithy-client": "3.303.0",
|
|
45
|
+
"@aws-sdk/types": "3.303.0",
|
|
46
|
+
"@aws-sdk/url-parser": "3.303.0",
|
|
47
|
+
"@aws-sdk/util-base64": "3.303.0",
|
|
48
|
+
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
49
|
+
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-browser": "3.303.0",
|
|
51
|
+
"@aws-sdk/util-defaults-mode-node": "3.303.0",
|
|
52
|
+
"@aws-sdk/util-endpoints": "3.303.0",
|
|
53
|
+
"@aws-sdk/util-retry": "3.303.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-browser": "3.303.0",
|
|
55
|
+
"@aws-sdk/util-user-agent-node": "3.303.0",
|
|
56
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
57
57
|
"tslib": "^2.5.0"
|
|
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
|
"concurrently": "7.0.0",
|