@aws-sdk/client-appsync 3.54.1 → 3.55.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/CHANGELOG.md +8 -0
- package/dist-cjs/AppSyncClient.js +13 -13
- package/dist-cjs/commands/AssociateApiCommand.js +3 -3
- package/dist-cjs/commands/CreateApiCacheCommand.js +3 -3
- package/dist-cjs/commands/CreateApiKeyCommand.js +3 -3
- package/dist-cjs/commands/CreateDataSourceCommand.js +3 -3
- package/dist-cjs/commands/CreateDomainNameCommand.js +3 -3
- package/dist-cjs/commands/CreateFunctionCommand.js +3 -3
- package/dist-cjs/commands/CreateGraphqlApiCommand.js +3 -3
- package/dist-cjs/commands/CreateResolverCommand.js +3 -3
- package/dist-cjs/commands/CreateTypeCommand.js +3 -3
- package/dist-cjs/commands/DeleteApiCacheCommand.js +3 -3
- package/dist-cjs/commands/DeleteApiKeyCommand.js +3 -3
- package/dist-cjs/commands/DeleteDataSourceCommand.js +3 -3
- package/dist-cjs/commands/DeleteDomainNameCommand.js +3 -3
- package/dist-cjs/commands/DeleteFunctionCommand.js +3 -3
- package/dist-cjs/commands/DeleteGraphqlApiCommand.js +3 -3
- package/dist-cjs/commands/DeleteResolverCommand.js +3 -3
- package/dist-cjs/commands/DeleteTypeCommand.js +3 -3
- package/dist-cjs/commands/DisassociateApiCommand.js +3 -3
- package/dist-cjs/commands/FlushApiCacheCommand.js +3 -3
- package/dist-cjs/commands/GetApiAssociationCommand.js +3 -3
- package/dist-cjs/commands/GetApiCacheCommand.js +3 -3
- package/dist-cjs/commands/GetDataSourceCommand.js +3 -3
- package/dist-cjs/commands/GetDomainNameCommand.js +3 -3
- package/dist-cjs/commands/GetFunctionCommand.js +3 -3
- package/dist-cjs/commands/GetGraphqlApiCommand.js +3 -3
- package/dist-cjs/commands/GetIntrospectionSchemaCommand.js +3 -3
- package/dist-cjs/commands/GetResolverCommand.js +3 -3
- package/dist-cjs/commands/GetSchemaCreationStatusCommand.js +3 -3
- package/dist-cjs/commands/GetTypeCommand.js +3 -3
- package/dist-cjs/commands/ListApiKeysCommand.js +3 -3
- package/dist-cjs/commands/ListDataSourcesCommand.js +3 -3
- package/dist-cjs/commands/ListDomainNamesCommand.js +3 -3
- package/dist-cjs/commands/ListFunctionsCommand.js +3 -3
- package/dist-cjs/commands/ListGraphqlApisCommand.js +3 -3
- package/dist-cjs/commands/ListResolversByFunctionCommand.js +3 -3
- package/dist-cjs/commands/ListResolversCommand.js +3 -3
- package/dist-cjs/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-cjs/commands/ListTypesCommand.js +3 -3
- package/dist-cjs/commands/StartSchemaCreationCommand.js +3 -3
- package/dist-cjs/commands/TagResourceCommand.js +3 -3
- package/dist-cjs/commands/UntagResourceCommand.js +3 -3
- package/dist-cjs/commands/UpdateApiCacheCommand.js +3 -3
- package/dist-cjs/commands/UpdateApiKeyCommand.js +3 -3
- package/dist-cjs/commands/UpdateDataSourceCommand.js +3 -3
- package/dist-cjs/commands/UpdateDomainNameCommand.js +3 -3
- package/dist-cjs/commands/UpdateFunctionCommand.js +3 -3
- package/dist-cjs/commands/UpdateGraphqlApiCommand.js +3 -3
- package/dist-cjs/commands/UpdateResolverCommand.js +3 -3
- package/dist-cjs/commands/UpdateTypeCommand.js +3 -3
- package/dist-cjs/endpoints.js +1 -1
- package/dist-cjs/protocols/Aws_restJson1.js +283 -283
- package/dist-cjs/runtimeConfig.browser.js +4 -4
- package/dist-cjs/runtimeConfig.js +9 -9
- package/dist-cjs/runtimeConfig.native.js +1 -1
- package/dist-es/AppSync.js +49 -49
- package/dist-es/protocols/Aws_restJson1.js +49 -49
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
- package/package.json +34 -34
|
@@ -13,7 +13,7 @@ export var serializeAws_restJson1AssociateApiCommand = function (input, context)
|
|
|
13
13
|
headers = {
|
|
14
14
|
"content-type": "application/json",
|
|
15
15
|
};
|
|
16
|
-
resolvedPath = ""
|
|
16
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/domainnames/{domainName}/apiassociation";
|
|
17
17
|
if (input.domainName !== undefined) {
|
|
18
18
|
labelValue = input.domainName;
|
|
19
19
|
if (labelValue.length <= 0) {
|
|
@@ -47,7 +47,7 @@ export var serializeAws_restJson1CreateApiCacheCommand = function (input, contex
|
|
|
47
47
|
headers = {
|
|
48
48
|
"content-type": "application/json",
|
|
49
49
|
};
|
|
50
|
-
resolvedPath = ""
|
|
50
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/v1/apis/{apiId}/ApiCaches";
|
|
51
51
|
if (input.apiId !== undefined) {
|
|
52
52
|
labelValue = input.apiId;
|
|
53
53
|
if (labelValue.length <= 0) {
|
|
@@ -84,7 +84,7 @@ export var serializeAws_restJson1CreateApiKeyCommand = function (input, context)
|
|
|
84
84
|
headers = {
|
|
85
85
|
"content-type": "application/json",
|
|
86
86
|
};
|
|
87
|
-
resolvedPath = ""
|
|
87
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/v1/apis/{apiId}/apikeys";
|
|
88
88
|
if (input.apiId !== undefined) {
|
|
89
89
|
labelValue = input.apiId;
|
|
90
90
|
if (labelValue.length <= 0) {
|
|
@@ -118,7 +118,7 @@ export var serializeAws_restJson1CreateDataSourceCommand = function (input, cont
|
|
|
118
118
|
headers = {
|
|
119
119
|
"content-type": "application/json",
|
|
120
120
|
};
|
|
121
|
-
resolvedPath = ""
|
|
121
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/v1/apis/{apiId}/datasources";
|
|
122
122
|
if (input.apiId !== undefined) {
|
|
123
123
|
labelValue = input.apiId;
|
|
124
124
|
if (labelValue.length <= 0) {
|
|
@@ -171,7 +171,7 @@ export var serializeAws_restJson1CreateDomainNameCommand = function (input, cont
|
|
|
171
171
|
headers = {
|
|
172
172
|
"content-type": "application/json",
|
|
173
173
|
};
|
|
174
|
-
resolvedPath = ""
|
|
174
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/domainnames";
|
|
175
175
|
body = JSON.stringify(__assign(__assign(__assign({}, (input.certificateArn !== undefined &&
|
|
176
176
|
input.certificateArn !== null && { certificateArn: input.certificateArn })), (input.description !== undefined && input.description !== null && { description: input.description })), (input.domainName !== undefined && input.domainName !== null && { domainName: input.domainName })));
|
|
177
177
|
return [2, new __HttpRequest({
|
|
@@ -196,7 +196,7 @@ export var serializeAws_restJson1CreateFunctionCommand = function (input, contex
|
|
|
196
196
|
headers = {
|
|
197
197
|
"content-type": "application/json",
|
|
198
198
|
};
|
|
199
|
-
resolvedPath = ""
|
|
199
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/v1/apis/{apiId}/functions";
|
|
200
200
|
if (input.apiId !== undefined) {
|
|
201
201
|
labelValue = input.apiId;
|
|
202
202
|
if (labelValue.length <= 0) {
|
|
@@ -235,7 +235,7 @@ export var serializeAws_restJson1CreateGraphqlApiCommand = function (input, cont
|
|
|
235
235
|
headers = {
|
|
236
236
|
"content-type": "application/json",
|
|
237
237
|
};
|
|
238
|
-
resolvedPath = ""
|
|
238
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/v1/apis";
|
|
239
239
|
body = JSON.stringify(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.additionalAuthenticationProviders !== undefined &&
|
|
240
240
|
input.additionalAuthenticationProviders !== null && {
|
|
241
241
|
additionalAuthenticationProviders: serializeAws_restJson1AdditionalAuthenticationProviders(input.additionalAuthenticationProviders, context),
|
|
@@ -273,7 +273,7 @@ export var serializeAws_restJson1CreateResolverCommand = function (input, contex
|
|
|
273
273
|
headers = {
|
|
274
274
|
"content-type": "application/json",
|
|
275
275
|
};
|
|
276
|
-
resolvedPath = ""
|
|
276
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
|
|
277
277
|
"/v1/apis/{apiId}/types/{typeName}/resolvers";
|
|
278
278
|
if (input.apiId !== undefined) {
|
|
279
279
|
labelValue = input.apiId;
|
|
@@ -328,7 +328,7 @@ export var serializeAws_restJson1CreateTypeCommand = function (input, context) {
|
|
|
328
328
|
headers = {
|
|
329
329
|
"content-type": "application/json",
|
|
330
330
|
};
|
|
331
|
-
resolvedPath = ""
|
|
331
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/v1/apis/{apiId}/types";
|
|
332
332
|
if (input.apiId !== undefined) {
|
|
333
333
|
labelValue = input.apiId;
|
|
334
334
|
if (labelValue.length <= 0) {
|
|
@@ -360,7 +360,7 @@ export var serializeAws_restJson1DeleteApiCacheCommand = function (input, contex
|
|
|
360
360
|
case 1:
|
|
361
361
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
362
362
|
headers = {};
|
|
363
|
-
resolvedPath = ""
|
|
363
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/v1/apis/{apiId}/ApiCaches";
|
|
364
364
|
if (input.apiId !== undefined) {
|
|
365
365
|
labelValue = input.apiId;
|
|
366
366
|
if (labelValue.length <= 0) {
|
|
@@ -391,7 +391,7 @@ export var serializeAws_restJson1DeleteApiKeyCommand = function (input, context)
|
|
|
391
391
|
case 1:
|
|
392
392
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
393
393
|
headers = {};
|
|
394
|
-
resolvedPath = ""
|
|
394
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/v1/apis/{apiId}/apikeys/{id}";
|
|
395
395
|
if (input.apiId !== undefined) {
|
|
396
396
|
labelValue = input.apiId;
|
|
397
397
|
if (labelValue.length <= 0) {
|
|
@@ -432,7 +432,7 @@ export var serializeAws_restJson1DeleteDataSourceCommand = function (input, cont
|
|
|
432
432
|
case 1:
|
|
433
433
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
434
434
|
headers = {};
|
|
435
|
-
resolvedPath = ""
|
|
435
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/v1/apis/{apiId}/datasources/{name}";
|
|
436
436
|
if (input.apiId !== undefined) {
|
|
437
437
|
labelValue = input.apiId;
|
|
438
438
|
if (labelValue.length <= 0) {
|
|
@@ -473,7 +473,7 @@ export var serializeAws_restJson1DeleteDomainNameCommand = function (input, cont
|
|
|
473
473
|
case 1:
|
|
474
474
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
475
475
|
headers = {};
|
|
476
|
-
resolvedPath = ""
|
|
476
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/domainnames/{domainName}";
|
|
477
477
|
if (input.domainName !== undefined) {
|
|
478
478
|
labelValue = input.domainName;
|
|
479
479
|
if (labelValue.length <= 0) {
|
|
@@ -504,7 +504,7 @@ export var serializeAws_restJson1DeleteFunctionCommand = function (input, contex
|
|
|
504
504
|
case 1:
|
|
505
505
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
506
506
|
headers = {};
|
|
507
|
-
resolvedPath = ""
|
|
507
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/v1/apis/{apiId}/functions/{functionId}";
|
|
508
508
|
if (input.apiId !== undefined) {
|
|
509
509
|
labelValue = input.apiId;
|
|
510
510
|
if (labelValue.length <= 0) {
|
|
@@ -545,7 +545,7 @@ export var serializeAws_restJson1DeleteGraphqlApiCommand = function (input, cont
|
|
|
545
545
|
case 1:
|
|
546
546
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
547
547
|
headers = {};
|
|
548
|
-
resolvedPath = ""
|
|
548
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/v1/apis/{apiId}";
|
|
549
549
|
if (input.apiId !== undefined) {
|
|
550
550
|
labelValue = input.apiId;
|
|
551
551
|
if (labelValue.length <= 0) {
|
|
@@ -576,7 +576,7 @@ export var serializeAws_restJson1DeleteResolverCommand = function (input, contex
|
|
|
576
576
|
case 1:
|
|
577
577
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
578
578
|
headers = {};
|
|
579
|
-
resolvedPath = ""
|
|
579
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
|
|
580
580
|
"/v1/apis/{apiId}/types/{typeName}/resolvers/{fieldName}";
|
|
581
581
|
if (input.apiId !== undefined) {
|
|
582
582
|
labelValue = input.apiId;
|
|
@@ -628,7 +628,7 @@ export var serializeAws_restJson1DeleteTypeCommand = function (input, context) {
|
|
|
628
628
|
case 1:
|
|
629
629
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
630
630
|
headers = {};
|
|
631
|
-
resolvedPath = ""
|
|
631
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/v1/apis/{apiId}/types/{typeName}";
|
|
632
632
|
if (input.apiId !== undefined) {
|
|
633
633
|
labelValue = input.apiId;
|
|
634
634
|
if (labelValue.length <= 0) {
|
|
@@ -669,7 +669,7 @@ export var serializeAws_restJson1DisassociateApiCommand = function (input, conte
|
|
|
669
669
|
case 1:
|
|
670
670
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
671
671
|
headers = {};
|
|
672
|
-
resolvedPath = ""
|
|
672
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/domainnames/{domainName}/apiassociation";
|
|
673
673
|
if (input.domainName !== undefined) {
|
|
674
674
|
labelValue = input.domainName;
|
|
675
675
|
if (labelValue.length <= 0) {
|
|
@@ -700,7 +700,7 @@ export var serializeAws_restJson1FlushApiCacheCommand = function (input, context
|
|
|
700
700
|
case 1:
|
|
701
701
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
702
702
|
headers = {};
|
|
703
|
-
resolvedPath = ""
|
|
703
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/v1/apis/{apiId}/FlushCache";
|
|
704
704
|
if (input.apiId !== undefined) {
|
|
705
705
|
labelValue = input.apiId;
|
|
706
706
|
if (labelValue.length <= 0) {
|
|
@@ -731,7 +731,7 @@ export var serializeAws_restJson1GetApiAssociationCommand = function (input, con
|
|
|
731
731
|
case 1:
|
|
732
732
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
733
733
|
headers = {};
|
|
734
|
-
resolvedPath = ""
|
|
734
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/domainnames/{domainName}/apiassociation";
|
|
735
735
|
if (input.domainName !== undefined) {
|
|
736
736
|
labelValue = input.domainName;
|
|
737
737
|
if (labelValue.length <= 0) {
|
|
@@ -762,7 +762,7 @@ export var serializeAws_restJson1GetApiCacheCommand = function (input, context)
|
|
|
762
762
|
case 1:
|
|
763
763
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
764
764
|
headers = {};
|
|
765
|
-
resolvedPath = ""
|
|
765
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/v1/apis/{apiId}/ApiCaches";
|
|
766
766
|
if (input.apiId !== undefined) {
|
|
767
767
|
labelValue = input.apiId;
|
|
768
768
|
if (labelValue.length <= 0) {
|
|
@@ -793,7 +793,7 @@ export var serializeAws_restJson1GetDataSourceCommand = function (input, context
|
|
|
793
793
|
case 1:
|
|
794
794
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
795
795
|
headers = {};
|
|
796
|
-
resolvedPath = ""
|
|
796
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/v1/apis/{apiId}/datasources/{name}";
|
|
797
797
|
if (input.apiId !== undefined) {
|
|
798
798
|
labelValue = input.apiId;
|
|
799
799
|
if (labelValue.length <= 0) {
|
|
@@ -834,7 +834,7 @@ export var serializeAws_restJson1GetDomainNameCommand = function (input, context
|
|
|
834
834
|
case 1:
|
|
835
835
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
836
836
|
headers = {};
|
|
837
|
-
resolvedPath = ""
|
|
837
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/domainnames/{domainName}";
|
|
838
838
|
if (input.domainName !== undefined) {
|
|
839
839
|
labelValue = input.domainName;
|
|
840
840
|
if (labelValue.length <= 0) {
|
|
@@ -865,7 +865,7 @@ export var serializeAws_restJson1GetFunctionCommand = function (input, context)
|
|
|
865
865
|
case 1:
|
|
866
866
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
867
867
|
headers = {};
|
|
868
|
-
resolvedPath = ""
|
|
868
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/v1/apis/{apiId}/functions/{functionId}";
|
|
869
869
|
if (input.apiId !== undefined) {
|
|
870
870
|
labelValue = input.apiId;
|
|
871
871
|
if (labelValue.length <= 0) {
|
|
@@ -906,7 +906,7 @@ export var serializeAws_restJson1GetGraphqlApiCommand = function (input, context
|
|
|
906
906
|
case 1:
|
|
907
907
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
908
908
|
headers = {};
|
|
909
|
-
resolvedPath = ""
|
|
909
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/v1/apis/{apiId}";
|
|
910
910
|
if (input.apiId !== undefined) {
|
|
911
911
|
labelValue = input.apiId;
|
|
912
912
|
if (labelValue.length <= 0) {
|
|
@@ -937,7 +937,7 @@ export var serializeAws_restJson1GetIntrospectionSchemaCommand = function (input
|
|
|
937
937
|
case 1:
|
|
938
938
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
939
939
|
headers = {};
|
|
940
|
-
resolvedPath = ""
|
|
940
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/v1/apis/{apiId}/schema";
|
|
941
941
|
if (input.apiId !== undefined) {
|
|
942
942
|
labelValue = input.apiId;
|
|
943
943
|
if (labelValue.length <= 0) {
|
|
@@ -970,7 +970,7 @@ export var serializeAws_restJson1GetResolverCommand = function (input, context)
|
|
|
970
970
|
case 1:
|
|
971
971
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
972
972
|
headers = {};
|
|
973
|
-
resolvedPath = ""
|
|
973
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
|
|
974
974
|
"/v1/apis/{apiId}/types/{typeName}/resolvers/{fieldName}";
|
|
975
975
|
if (input.apiId !== undefined) {
|
|
976
976
|
labelValue = input.apiId;
|
|
@@ -1022,7 +1022,7 @@ export var serializeAws_restJson1GetSchemaCreationStatusCommand = function (inpu
|
|
|
1022
1022
|
case 1:
|
|
1023
1023
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
1024
1024
|
headers = {};
|
|
1025
|
-
resolvedPath = ""
|
|
1025
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/v1/apis/{apiId}/schemacreation";
|
|
1026
1026
|
if (input.apiId !== undefined) {
|
|
1027
1027
|
labelValue = input.apiId;
|
|
1028
1028
|
if (labelValue.length <= 0) {
|
|
@@ -1053,7 +1053,7 @@ export var serializeAws_restJson1GetTypeCommand = function (input, context) { re
|
|
|
1053
1053
|
case 1:
|
|
1054
1054
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
1055
1055
|
headers = {};
|
|
1056
|
-
resolvedPath = ""
|
|
1056
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/v1/apis/{apiId}/types/{typeName}";
|
|
1057
1057
|
if (input.apiId !== undefined) {
|
|
1058
1058
|
labelValue = input.apiId;
|
|
1059
1059
|
if (labelValue.length <= 0) {
|
|
@@ -1096,7 +1096,7 @@ export var serializeAws_restJson1ListApiKeysCommand = function (input, context)
|
|
|
1096
1096
|
case 1:
|
|
1097
1097
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
1098
1098
|
headers = {};
|
|
1099
|
-
resolvedPath = ""
|
|
1099
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/v1/apis/{apiId}/apikeys";
|
|
1100
1100
|
if (input.apiId !== undefined) {
|
|
1101
1101
|
labelValue = input.apiId;
|
|
1102
1102
|
if (labelValue.length <= 0) {
|
|
@@ -1129,7 +1129,7 @@ export var serializeAws_restJson1ListDataSourcesCommand = function (input, conte
|
|
|
1129
1129
|
case 1:
|
|
1130
1130
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
1131
1131
|
headers = {};
|
|
1132
|
-
resolvedPath = ""
|
|
1132
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/v1/apis/{apiId}/datasources";
|
|
1133
1133
|
if (input.apiId !== undefined) {
|
|
1134
1134
|
labelValue = input.apiId;
|
|
1135
1135
|
if (labelValue.length <= 0) {
|
|
@@ -1162,7 +1162,7 @@ export var serializeAws_restJson1ListDomainNamesCommand = function (input, conte
|
|
|
1162
1162
|
case 1:
|
|
1163
1163
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
1164
1164
|
headers = {};
|
|
1165
|
-
resolvedPath = ""
|
|
1165
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/domainnames";
|
|
1166
1166
|
query = __assign(__assign({}, (input.nextToken !== undefined && { nextToken: input.nextToken })), (input.maxResults !== undefined && { maxResults: input.maxResults.toString() }));
|
|
1167
1167
|
return [2, new __HttpRequest({
|
|
1168
1168
|
protocol: protocol,
|
|
@@ -1185,7 +1185,7 @@ export var serializeAws_restJson1ListFunctionsCommand = function (input, context
|
|
|
1185
1185
|
case 1:
|
|
1186
1186
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
1187
1187
|
headers = {};
|
|
1188
|
-
resolvedPath = ""
|
|
1188
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/v1/apis/{apiId}/functions";
|
|
1189
1189
|
if (input.apiId !== undefined) {
|
|
1190
1190
|
labelValue = input.apiId;
|
|
1191
1191
|
if (labelValue.length <= 0) {
|
|
@@ -1218,7 +1218,7 @@ export var serializeAws_restJson1ListGraphqlApisCommand = function (input, conte
|
|
|
1218
1218
|
case 1:
|
|
1219
1219
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
1220
1220
|
headers = {};
|
|
1221
|
-
resolvedPath = ""
|
|
1221
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/v1/apis";
|
|
1222
1222
|
query = __assign(__assign({}, (input.nextToken !== undefined && { nextToken: input.nextToken })), (input.maxResults !== undefined && { maxResults: input.maxResults.toString() }));
|
|
1223
1223
|
return [2, new __HttpRequest({
|
|
1224
1224
|
protocol: protocol,
|
|
@@ -1241,7 +1241,7 @@ export var serializeAws_restJson1ListResolversCommand = function (input, context
|
|
|
1241
1241
|
case 1:
|
|
1242
1242
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
1243
1243
|
headers = {};
|
|
1244
|
-
resolvedPath = ""
|
|
1244
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
|
|
1245
1245
|
"/v1/apis/{apiId}/types/{typeName}/resolvers";
|
|
1246
1246
|
if (input.apiId !== undefined) {
|
|
1247
1247
|
labelValue = input.apiId;
|
|
@@ -1285,7 +1285,7 @@ export var serializeAws_restJson1ListResolversByFunctionCommand = function (inpu
|
|
|
1285
1285
|
case 1:
|
|
1286
1286
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
1287
1287
|
headers = {};
|
|
1288
|
-
resolvedPath = ""
|
|
1288
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
|
|
1289
1289
|
"/v1/apis/{apiId}/functions/{functionId}/resolvers";
|
|
1290
1290
|
if (input.apiId !== undefined) {
|
|
1291
1291
|
labelValue = input.apiId;
|
|
@@ -1329,7 +1329,7 @@ export var serializeAws_restJson1ListTagsForResourceCommand = function (input, c
|
|
|
1329
1329
|
case 1:
|
|
1330
1330
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
1331
1331
|
headers = {};
|
|
1332
|
-
resolvedPath = ""
|
|
1332
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/v1/tags/{resourceArn}";
|
|
1333
1333
|
if (input.resourceArn !== undefined) {
|
|
1334
1334
|
labelValue = input.resourceArn;
|
|
1335
1335
|
if (labelValue.length <= 0) {
|
|
@@ -1360,7 +1360,7 @@ export var serializeAws_restJson1ListTypesCommand = function (input, context) {
|
|
|
1360
1360
|
case 1:
|
|
1361
1361
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
1362
1362
|
headers = {};
|
|
1363
|
-
resolvedPath = ""
|
|
1363
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/v1/apis/{apiId}/types";
|
|
1364
1364
|
if (input.apiId !== undefined) {
|
|
1365
1365
|
labelValue = input.apiId;
|
|
1366
1366
|
if (labelValue.length <= 0) {
|
|
@@ -1395,7 +1395,7 @@ export var serializeAws_restJson1StartSchemaCreationCommand = function (input, c
|
|
|
1395
1395
|
headers = {
|
|
1396
1396
|
"content-type": "application/json",
|
|
1397
1397
|
};
|
|
1398
|
-
resolvedPath = ""
|
|
1398
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/v1/apis/{apiId}/schemacreation";
|
|
1399
1399
|
if (input.apiId !== undefined) {
|
|
1400
1400
|
labelValue = input.apiId;
|
|
1401
1401
|
if (labelValue.length <= 0) {
|
|
@@ -1430,7 +1430,7 @@ export var serializeAws_restJson1TagResourceCommand = function (input, context)
|
|
|
1430
1430
|
headers = {
|
|
1431
1431
|
"content-type": "application/json",
|
|
1432
1432
|
};
|
|
1433
|
-
resolvedPath = ""
|
|
1433
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/v1/tags/{resourceArn}";
|
|
1434
1434
|
if (input.resourceArn !== undefined) {
|
|
1435
1435
|
labelValue = input.resourceArn;
|
|
1436
1436
|
if (labelValue.length <= 0) {
|
|
@@ -1462,7 +1462,7 @@ export var serializeAws_restJson1UntagResourceCommand = function (input, context
|
|
|
1462
1462
|
case 1:
|
|
1463
1463
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
1464
1464
|
headers = {};
|
|
1465
|
-
resolvedPath = ""
|
|
1465
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/v1/tags/{resourceArn}";
|
|
1466
1466
|
if (input.resourceArn !== undefined) {
|
|
1467
1467
|
labelValue = input.resourceArn;
|
|
1468
1468
|
if (labelValue.length <= 0) {
|
|
@@ -1497,7 +1497,7 @@ export var serializeAws_restJson1UpdateApiCacheCommand = function (input, contex
|
|
|
1497
1497
|
headers = {
|
|
1498
1498
|
"content-type": "application/json",
|
|
1499
1499
|
};
|
|
1500
|
-
resolvedPath = ""
|
|
1500
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/v1/apis/{apiId}/ApiCaches/update";
|
|
1501
1501
|
if (input.apiId !== undefined) {
|
|
1502
1502
|
labelValue = input.apiId;
|
|
1503
1503
|
if (labelValue.length <= 0) {
|
|
@@ -1532,7 +1532,7 @@ export var serializeAws_restJson1UpdateApiKeyCommand = function (input, context)
|
|
|
1532
1532
|
headers = {
|
|
1533
1533
|
"content-type": "application/json",
|
|
1534
1534
|
};
|
|
1535
|
-
resolvedPath = ""
|
|
1535
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/v1/apis/{apiId}/apikeys/{id}";
|
|
1536
1536
|
if (input.apiId !== undefined) {
|
|
1537
1537
|
labelValue = input.apiId;
|
|
1538
1538
|
if (labelValue.length <= 0) {
|
|
@@ -1576,7 +1576,7 @@ export var serializeAws_restJson1UpdateDataSourceCommand = function (input, cont
|
|
|
1576
1576
|
headers = {
|
|
1577
1577
|
"content-type": "application/json",
|
|
1578
1578
|
};
|
|
1579
|
-
resolvedPath = ""
|
|
1579
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/v1/apis/{apiId}/datasources/{name}";
|
|
1580
1580
|
if (input.apiId !== undefined) {
|
|
1581
1581
|
labelValue = input.apiId;
|
|
1582
1582
|
if (labelValue.length <= 0) {
|
|
@@ -1639,7 +1639,7 @@ export var serializeAws_restJson1UpdateDomainNameCommand = function (input, cont
|
|
|
1639
1639
|
headers = {
|
|
1640
1640
|
"content-type": "application/json",
|
|
1641
1641
|
};
|
|
1642
|
-
resolvedPath = ""
|
|
1642
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/domainnames/{domainName}";
|
|
1643
1643
|
if (input.domainName !== undefined) {
|
|
1644
1644
|
labelValue = input.domainName;
|
|
1645
1645
|
if (labelValue.length <= 0) {
|
|
@@ -1673,7 +1673,7 @@ export var serializeAws_restJson1UpdateFunctionCommand = function (input, contex
|
|
|
1673
1673
|
headers = {
|
|
1674
1674
|
"content-type": "application/json",
|
|
1675
1675
|
};
|
|
1676
|
-
resolvedPath = ""
|
|
1676
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/v1/apis/{apiId}/functions/{functionId}";
|
|
1677
1677
|
if (input.apiId !== undefined) {
|
|
1678
1678
|
labelValue = input.apiId;
|
|
1679
1679
|
if (labelValue.length <= 0) {
|
|
@@ -1722,7 +1722,7 @@ export var serializeAws_restJson1UpdateGraphqlApiCommand = function (input, cont
|
|
|
1722
1722
|
headers = {
|
|
1723
1723
|
"content-type": "application/json",
|
|
1724
1724
|
};
|
|
1725
|
-
resolvedPath = ""
|
|
1725
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/v1/apis/{apiId}";
|
|
1726
1726
|
if (input.apiId !== undefined) {
|
|
1727
1727
|
labelValue = input.apiId;
|
|
1728
1728
|
if (labelValue.length <= 0) {
|
|
@@ -1770,7 +1770,7 @@ export var serializeAws_restJson1UpdateResolverCommand = function (input, contex
|
|
|
1770
1770
|
headers = {
|
|
1771
1771
|
"content-type": "application/json",
|
|
1772
1772
|
};
|
|
1773
|
-
resolvedPath = ""
|
|
1773
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
|
|
1774
1774
|
"/v1/apis/{apiId}/types/{typeName}/resolvers/{fieldName}";
|
|
1775
1775
|
if (input.apiId !== undefined) {
|
|
1776
1776
|
labelValue = input.apiId;
|
|
@@ -1835,7 +1835,7 @@ export var serializeAws_restJson1UpdateTypeCommand = function (input, context) {
|
|
|
1835
1835
|
headers = {
|
|
1836
1836
|
"content-type": "application/json",
|
|
1837
1837
|
};
|
|
1838
|
-
resolvedPath = ""
|
|
1838
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/v1/apis/{apiId}/types/{typeName}";
|
|
1839
1839
|
if (input.apiId !== undefined) {
|
|
1840
1840
|
labelValue = input.apiId;
|
|
1841
1841
|
if (labelValue.length <= 0) {
|
|
@@ -21,11 +21,11 @@ export declare const getRuntimeConfig: (config: AppSyncClientConfig) => {
|
|
|
21
21
|
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
22
22
|
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
23
23
|
serviceId: string;
|
|
24
|
-
region: string | import("@aws-sdk/types").Provider<
|
|
24
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
25
25
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
26
|
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
27
27
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
28
|
-
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode
|
|
28
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
|
|
29
29
|
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
30
30
|
tls?: boolean | undefined;
|
|
31
31
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
@@ -19,11 +19,11 @@ export declare const getRuntimeConfig: (config: AppSyncClientConfig) => {
|
|
|
19
19
|
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
20
|
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
21
21
|
serviceId: string;
|
|
22
|
-
region: string | import("@aws-sdk/types").Provider<
|
|
22
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
23
23
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
24
24
|
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
25
25
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
26
|
-
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode
|
|
26
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
|
|
27
27
|
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
28
28
|
tls?: boolean | undefined;
|
|
29
29
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appsync",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appsync Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.55.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",
|
|
@@ -18,47 +18,47 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
41
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
42
|
-
"@aws-sdk/util-base64-node": "3.
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
51
|
-
"tslib": "^2.3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.55.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.55.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.55.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.55.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.55.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.55.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.55.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.55.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.55.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.55.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.55.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.55.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.55.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.55.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.55.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.55.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.55.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.55.0",
|
|
39
|
+
"@aws-sdk/types": "3.55.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.55.0",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.55.0",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.55.0",
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.55.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.55.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.55.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.55.0",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.55.0",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.55.0",
|
|
51
|
+
"tslib": "^2.3.1"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
54
|
+
"@aws-sdk/service-client-documentation-generator": "3.55.0",
|
|
55
55
|
"@tsconfig/recommended": "1.0.1",
|
|
56
56
|
"@types/node": "^12.7.5",
|
|
57
57
|
"concurrently": "7.0.0",
|
|
58
58
|
"downlevel-dts": "0.7.0",
|
|
59
59
|
"rimraf": "3.0.2",
|
|
60
60
|
"typedoc": "0.19.2",
|
|
61
|
-
"typescript": "~4.
|
|
61
|
+
"typescript": "~4.6.2"
|
|
62
62
|
},
|
|
63
63
|
"engines": {
|
|
64
64
|
"node": ">=12.0.0"
|