@aws-sdk/client-iottwinmaker 3.54.0 → 3.56.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.
Files changed (43) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/dist-cjs/IoTTwinMakerClient.js +13 -13
  3. package/dist-cjs/commands/BatchPutPropertyValuesCommand.js +3 -3
  4. package/dist-cjs/commands/CreateComponentTypeCommand.js +3 -3
  5. package/dist-cjs/commands/CreateEntityCommand.js +3 -3
  6. package/dist-cjs/commands/CreateSceneCommand.js +3 -3
  7. package/dist-cjs/commands/CreateWorkspaceCommand.js +3 -3
  8. package/dist-cjs/commands/DeleteComponentTypeCommand.js +3 -3
  9. package/dist-cjs/commands/DeleteEntityCommand.js +3 -3
  10. package/dist-cjs/commands/DeleteSceneCommand.js +3 -3
  11. package/dist-cjs/commands/DeleteWorkspaceCommand.js +3 -3
  12. package/dist-cjs/commands/GetComponentTypeCommand.js +3 -3
  13. package/dist-cjs/commands/GetEntityCommand.js +3 -3
  14. package/dist-cjs/commands/GetPropertyValueCommand.js +3 -3
  15. package/dist-cjs/commands/GetPropertyValueHistoryCommand.js +3 -3
  16. package/dist-cjs/commands/GetSceneCommand.js +3 -3
  17. package/dist-cjs/commands/GetWorkspaceCommand.js +3 -3
  18. package/dist-cjs/commands/ListComponentTypesCommand.js +3 -3
  19. package/dist-cjs/commands/ListEntitiesCommand.js +3 -3
  20. package/dist-cjs/commands/ListScenesCommand.js +3 -3
  21. package/dist-cjs/commands/ListTagsForResourceCommand.js +3 -3
  22. package/dist-cjs/commands/ListWorkspacesCommand.js +3 -3
  23. package/dist-cjs/commands/TagResourceCommand.js +3 -3
  24. package/dist-cjs/commands/UntagResourceCommand.js +3 -3
  25. package/dist-cjs/commands/UpdateComponentTypeCommand.js +3 -3
  26. package/dist-cjs/commands/UpdateEntityCommand.js +3 -3
  27. package/dist-cjs/commands/UpdateSceneCommand.js +3 -3
  28. package/dist-cjs/commands/UpdateWorkspaceCommand.js +3 -3
  29. package/dist-cjs/endpoints.js +1 -1
  30. package/dist-cjs/protocols/Aws_restJson1.js +254 -254
  31. package/dist-cjs/runtimeConfig.browser.js +4 -4
  32. package/dist-cjs/runtimeConfig.js +9 -9
  33. package/dist-cjs/runtimeConfig.native.js +1 -1
  34. package/dist-es/IoTTwinMaker.js +26 -26
  35. package/dist-es/pagination/GetPropertyValueHistoryPaginator.js +4 -4
  36. package/dist-es/pagination/ListComponentTypesPaginator.js +4 -4
  37. package/dist-es/pagination/ListEntitiesPaginator.js +4 -4
  38. package/dist-es/pagination/ListScenesPaginator.js +4 -4
  39. package/dist-es/pagination/ListWorkspacesPaginator.js +4 -4
  40. package/dist-es/protocols/Aws_restJson1.js +26 -26
  41. package/dist-types/runtimeConfig.native.d.ts +2 -2
  42. package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
  43. package/package.json +34 -34
@@ -13,7 +13,7 @@ export var serializeAws_restJson1BatchPutPropertyValuesCommand = function (input
13
13
  headers = {
14
14
  "content-type": "application/json",
15
15
  };
16
- resolvedPath = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
16
+ resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
17
17
  "/workspaces/{workspaceId}/entity-properties";
18
18
  if (input.workspaceId !== undefined) {
19
19
  labelValue = input.workspaceId;
@@ -58,7 +58,7 @@ export var serializeAws_restJson1CreateComponentTypeCommand = function (input, c
58
58
  headers = {
59
59
  "content-type": "application/json",
60
60
  };
61
- resolvedPath = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
61
+ resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
62
62
  "/workspaces/{workspaceId}/component-types/{componentTypeId}";
63
63
  if (input.workspaceId !== undefined) {
64
64
  labelValue = input.workspaceId;
@@ -117,7 +117,7 @@ export var serializeAws_restJson1CreateEntityCommand = function (input, context)
117
117
  headers = {
118
118
  "content-type": "application/json",
119
119
  };
120
- resolvedPath = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/workspaces/{workspaceId}/entities";
120
+ resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/workspaces/{workspaceId}/entities";
121
121
  if (input.workspaceId !== undefined) {
122
122
  labelValue = input.workspaceId;
123
123
  if (labelValue.length <= 0) {
@@ -164,7 +164,7 @@ export var serializeAws_restJson1CreateSceneCommand = function (input, context)
164
164
  headers = {
165
165
  "content-type": "application/json",
166
166
  };
167
- resolvedPath = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/workspaces/{workspaceId}/scenes";
167
+ resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/workspaces/{workspaceId}/scenes";
168
168
  if (input.workspaceId !== undefined) {
169
169
  labelValue = input.workspaceId;
170
170
  if (labelValue.length <= 0) {
@@ -211,7 +211,7 @@ export var serializeAws_restJson1CreateWorkspaceCommand = function (input, conte
211
211
  headers = {
212
212
  "content-type": "application/json",
213
213
  };
214
- resolvedPath = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/workspaces/{workspaceId}";
214
+ resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/workspaces/{workspaceId}";
215
215
  if (input.workspaceId !== undefined) {
216
216
  labelValue = input.workspaceId;
217
217
  if (labelValue.length <= 0) {
@@ -252,7 +252,7 @@ export var serializeAws_restJson1DeleteComponentTypeCommand = function (input, c
252
252
  case 1:
253
253
  _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
254
254
  headers = {};
255
- resolvedPath = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
255
+ resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
256
256
  "/workspaces/{workspaceId}/component-types/{componentTypeId}";
257
257
  if (input.workspaceId !== undefined) {
258
258
  labelValue = input.workspaceId;
@@ -303,7 +303,7 @@ export var serializeAws_restJson1DeleteEntityCommand = function (input, context)
303
303
  case 1:
304
304
  _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
305
305
  headers = {};
306
- resolvedPath = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
306
+ resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
307
307
  "/workspaces/{workspaceId}/entities/{entityId}";
308
308
  if (input.workspaceId !== undefined) {
309
309
  labelValue = input.workspaceId;
@@ -356,7 +356,7 @@ export var serializeAws_restJson1DeleteSceneCommand = function (input, context)
356
356
  case 1:
357
357
  _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
358
358
  headers = {};
359
- resolvedPath = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
359
+ resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
360
360
  "/workspaces/{workspaceId}/scenes/{sceneId}";
361
361
  if (input.workspaceId !== undefined) {
362
362
  labelValue = input.workspaceId;
@@ -407,7 +407,7 @@ export var serializeAws_restJson1DeleteWorkspaceCommand = function (input, conte
407
407
  case 1:
408
408
  _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
409
409
  headers = {};
410
- resolvedPath = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/workspaces/{workspaceId}";
410
+ resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/workspaces/{workspaceId}";
411
411
  if (input.workspaceId !== undefined) {
412
412
  labelValue = input.workspaceId;
413
413
  if (labelValue.length <= 0) {
@@ -447,7 +447,7 @@ export var serializeAws_restJson1GetComponentTypeCommand = function (input, cont
447
447
  case 1:
448
448
  _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
449
449
  headers = {};
450
- resolvedPath = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
450
+ resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
451
451
  "/workspaces/{workspaceId}/component-types/{componentTypeId}";
452
452
  if (input.workspaceId !== undefined) {
453
453
  labelValue = input.workspaceId;
@@ -498,7 +498,7 @@ export var serializeAws_restJson1GetEntityCommand = function (input, context) {
498
498
  case 1:
499
499
  _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
500
500
  headers = {};
501
- resolvedPath = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
501
+ resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
502
502
  "/workspaces/{workspaceId}/entities/{entityId}";
503
503
  if (input.workspaceId !== undefined) {
504
504
  labelValue = input.workspaceId;
@@ -551,7 +551,7 @@ export var serializeAws_restJson1GetPropertyValueCommand = function (input, cont
551
551
  headers = {
552
552
  "content-type": "application/json",
553
553
  };
554
- resolvedPath = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
554
+ resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
555
555
  "/workspaces/{workspaceId}/entity-properties/value";
556
556
  if (input.workspaceId !== undefined) {
557
557
  labelValue = input.workspaceId;
@@ -599,7 +599,7 @@ export var serializeAws_restJson1GetPropertyValueHistoryCommand = function (inpu
599
599
  headers = {
600
600
  "content-type": "application/json",
601
601
  };
602
- resolvedPath = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
602
+ resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
603
603
  "/workspaces/{workspaceId}/entity-properties/history";
604
604
  if (input.workspaceId !== undefined) {
605
605
  labelValue = input.workspaceId;
@@ -653,7 +653,7 @@ export var serializeAws_restJson1GetSceneCommand = function (input, context) { r
653
653
  case 1:
654
654
  _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
655
655
  headers = {};
656
- resolvedPath = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
656
+ resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
657
657
  "/workspaces/{workspaceId}/scenes/{sceneId}";
658
658
  if (input.workspaceId !== undefined) {
659
659
  labelValue = input.workspaceId;
@@ -704,7 +704,7 @@ export var serializeAws_restJson1GetWorkspaceCommand = function (input, context)
704
704
  case 1:
705
705
  _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
706
706
  headers = {};
707
- resolvedPath = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/workspaces/{workspaceId}";
707
+ resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/workspaces/{workspaceId}";
708
708
  if (input.workspaceId !== undefined) {
709
709
  labelValue = input.workspaceId;
710
710
  if (labelValue.length <= 0) {
@@ -746,7 +746,7 @@ export var serializeAws_restJson1ListComponentTypesCommand = function (input, co
746
746
  headers = {
747
747
  "content-type": "application/json",
748
748
  };
749
- resolvedPath = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
749
+ resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
750
750
  "/workspaces/{workspaceId}/component-types-list";
751
751
  if (input.workspaceId !== undefined) {
752
752
  labelValue = input.workspaceId;
@@ -791,7 +791,7 @@ export var serializeAws_restJson1ListEntitiesCommand = function (input, context)
791
791
  headers = {
792
792
  "content-type": "application/json",
793
793
  };
794
- resolvedPath = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/workspaces/{workspaceId}/entities-list";
794
+ resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/workspaces/{workspaceId}/entities-list";
795
795
  if (input.workspaceId !== undefined) {
796
796
  labelValue = input.workspaceId;
797
797
  if (labelValue.length <= 0) {
@@ -835,7 +835,7 @@ export var serializeAws_restJson1ListScenesCommand = function (input, context) {
835
835
  headers = {
836
836
  "content-type": "application/json",
837
837
  };
838
- resolvedPath = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/workspaces/{workspaceId}/scenes-list";
838
+ resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/workspaces/{workspaceId}/scenes-list";
839
839
  if (input.workspaceId !== undefined) {
840
840
  labelValue = input.workspaceId;
841
841
  if (labelValue.length <= 0) {
@@ -878,7 +878,7 @@ export var serializeAws_restJson1ListTagsForResourceCommand = function (input, c
878
878
  headers = {
879
879
  "content-type": "application/json",
880
880
  };
881
- resolvedPath = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/tags-list";
881
+ resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/tags-list";
882
882
  body = JSON.stringify(__assign(__assign(__assign({}, (input.maxResults !== undefined && input.maxResults !== null && { maxResults: input.maxResults })), (input.nextToken !== undefined && input.nextToken !== null && { nextToken: input.nextToken })), (input.resourceARN !== undefined && input.resourceARN !== null && { resourceARN: input.resourceARN })));
883
883
  return [4, context.endpoint()];
884
884
  case 2:
@@ -911,7 +911,7 @@ export var serializeAws_restJson1ListWorkspacesCommand = function (input, contex
911
911
  headers = {
912
912
  "content-type": "application/json",
913
913
  };
914
- resolvedPath = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/workspaces-list";
914
+ resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/workspaces-list";
915
915
  body = JSON.stringify(__assign(__assign({}, (input.maxResults !== undefined && input.maxResults !== null && { maxResults: input.maxResults })), (input.nextToken !== undefined && input.nextToken !== null && { nextToken: input.nextToken })));
916
916
  return [4, context.endpoint()];
917
917
  case 2:
@@ -944,7 +944,7 @@ export var serializeAws_restJson1TagResourceCommand = function (input, context)
944
944
  headers = {
945
945
  "content-type": "application/json",
946
946
  };
947
- resolvedPath = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/tags";
947
+ resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/tags";
948
948
  body = JSON.stringify(__assign(__assign({}, (input.resourceARN !== undefined && input.resourceARN !== null && { resourceARN: input.resourceARN })), (input.tags !== undefined && input.tags !== null && { tags: serializeAws_restJson1TagMap(input.tags, context) })));
949
949
  return [4, context.endpoint()];
950
950
  case 2:
@@ -975,7 +975,7 @@ export var serializeAws_restJson1UntagResourceCommand = function (input, context
975
975
  case 1:
976
976
  _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
977
977
  headers = {};
978
- resolvedPath = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/tags";
978
+ resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/tags";
979
979
  query = __assign(__assign({}, (input.resourceARN !== undefined && { resourceARN: input.resourceARN })), (input.tagKeys !== undefined && { tagKeys: (input.tagKeys || []).map(function (_entry) { return _entry; }) }));
980
980
  return [4, context.endpoint()];
981
981
  case 2:
@@ -1009,7 +1009,7 @@ export var serializeAws_restJson1UpdateComponentTypeCommand = function (input, c
1009
1009
  headers = {
1010
1010
  "content-type": "application/json",
1011
1011
  };
1012
- resolvedPath = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
1012
+ resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
1013
1013
  "/workspaces/{workspaceId}/component-types/{componentTypeId}";
1014
1014
  if (input.workspaceId !== undefined) {
1015
1015
  labelValue = input.workspaceId;
@@ -1068,7 +1068,7 @@ export var serializeAws_restJson1UpdateEntityCommand = function (input, context)
1068
1068
  headers = {
1069
1069
  "content-type": "application/json",
1070
1070
  };
1071
- resolvedPath = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
1071
+ resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
1072
1072
  "/workspaces/{workspaceId}/entities/{entityId}";
1073
1073
  if (input.workspaceId !== undefined) {
1074
1074
  labelValue = input.workspaceId;
@@ -1128,7 +1128,7 @@ export var serializeAws_restJson1UpdateSceneCommand = function (input, context)
1128
1128
  headers = {
1129
1129
  "content-type": "application/json",
1130
1130
  };
1131
- resolvedPath = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
1131
+ resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
1132
1132
  "/workspaces/{workspaceId}/scenes/{sceneId}";
1133
1133
  if (input.workspaceId !== undefined) {
1134
1134
  labelValue = input.workspaceId;
@@ -1186,7 +1186,7 @@ export var serializeAws_restJson1UpdateWorkspaceCommand = function (input, conte
1186
1186
  headers = {
1187
1187
  "content-type": "application/json",
1188
1188
  };
1189
- resolvedPath = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/workspaces/{workspaceId}";
1189
+ resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/workspaces/{workspaceId}";
1190
1190
  if (input.workspaceId !== undefined) {
1191
1191
  labelValue = input.workspaceId;
1192
1192
  if (labelValue.length <= 0) {
@@ -21,11 +21,11 @@ export declare const getRuntimeConfig: (config: IoTTwinMakerClientConfig) => {
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<string> | import("@aws-sdk/types").Provider<any>;
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> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
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: IoTTwinMakerClientConfig) => {
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<string> | import("@aws-sdk/types").Provider<any>;
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> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
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-iottwinmaker",
3
3
  "description": "AWS SDK for JavaScript Iottwinmaker Client for Node.js, Browser and React Native",
4
- "version": "3.54.0",
4
+ "version": "3.56.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.54.0",
22
- "@aws-sdk/config-resolver": "3.54.0",
23
- "@aws-sdk/credential-provider-node": "3.54.0",
24
- "@aws-sdk/fetch-http-handler": "3.54.0",
25
- "@aws-sdk/hash-node": "3.54.0",
26
- "@aws-sdk/invalid-dependency": "3.54.0",
27
- "@aws-sdk/middleware-content-length": "3.54.0",
28
- "@aws-sdk/middleware-host-header": "3.54.0",
29
- "@aws-sdk/middleware-logger": "3.54.0",
30
- "@aws-sdk/middleware-retry": "3.54.0",
31
- "@aws-sdk/middleware-serde": "3.54.0",
32
- "@aws-sdk/middleware-signing": "3.54.0",
33
- "@aws-sdk/middleware-stack": "3.54.0",
34
- "@aws-sdk/middleware-user-agent": "3.54.0",
35
- "@aws-sdk/node-config-provider": "3.54.0",
36
- "@aws-sdk/node-http-handler": "3.54.0",
37
- "@aws-sdk/protocol-http": "3.54.0",
38
- "@aws-sdk/smithy-client": "3.54.0",
39
- "@aws-sdk/types": "3.54.0",
40
- "@aws-sdk/url-parser": "3.54.0",
41
- "@aws-sdk/util-base64-browser": "3.52.0",
42
- "@aws-sdk/util-base64-node": "3.52.0",
43
- "@aws-sdk/util-body-length-browser": "3.54.0",
44
- "@aws-sdk/util-body-length-node": "3.54.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.54.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.54.0",
47
- "@aws-sdk/util-user-agent-browser": "3.54.0",
48
- "@aws-sdk/util-user-agent-node": "3.54.0",
49
- "@aws-sdk/util-utf8-browser": "3.52.0",
50
- "@aws-sdk/util-utf8-node": "3.52.0",
51
- "tslib": "^2.3.0"
21
+ "@aws-sdk/client-sts": "3.56.0",
22
+ "@aws-sdk/config-resolver": "3.56.0",
23
+ "@aws-sdk/credential-provider-node": "3.56.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.56.0",
31
+ "@aws-sdk/middleware-serde": "3.55.0",
32
+ "@aws-sdk/middleware-signing": "3.56.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.56.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.56.0",
47
+ "@aws-sdk/util-user-agent-browser": "3.55.0",
48
+ "@aws-sdk/util-user-agent-node": "3.56.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.52.0",
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.3.5"
61
+ "typescript": "~4.6.2"
62
62
  },
63
63
  "engines": {
64
64
  "node": ">=12.0.0"