@aws-sdk/client-connectparticipant 3.121.0 → 3.130.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 CHANGED
@@ -3,6 +3,33 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.130.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.129.0...v3.130.0) (2022-07-14)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **codegen:** fix error code parsing when it's a number ([#3371](https://github.com/aws/aws-sdk-js-v3/issues/3371)) ([c2d8522](https://github.com/aws/aws-sdk-js-v3/commit/c2d852279a3d23958521a6ceb4f4c642b0cb1848))
12
+
13
+
14
+
15
+
16
+
17
+ # [3.128.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.127.0...v3.128.0) (2022-07-12)
18
+
19
+ **Note:** Version bump only for package @aws-sdk/client-connectparticipant
20
+
21
+
22
+
23
+
24
+
25
+ # [3.127.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.126.0...v3.127.0) (2022-07-11)
26
+
27
+ **Note:** Version bump only for package @aws-sdk/client-connectparticipant
28
+
29
+
30
+
31
+
32
+
6
33
  # [3.121.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.120.0...v3.121.0) (2022-06-30)
7
34
 
8
35
 
@@ -16,8 +16,7 @@ const serializeAws_restJson1CompleteAttachmentUploadCommand = async (input, cont
16
16
  const resolvedPath = `${(basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || ""}` + "/participant/complete-attachment-upload";
17
17
  let body;
18
18
  body = JSON.stringify({
19
- ...(input.AttachmentIds !== undefined &&
20
- input.AttachmentIds !== null && {
19
+ ...(input.AttachmentIds != null && {
21
20
  AttachmentIds: serializeAws_restJson1AttachmentIdList(input.AttachmentIds, context),
22
21
  }),
23
22
  ClientToken: (_a = input.ClientToken) !== null && _a !== void 0 ? _a : (0, uuid_1.v4)(),
@@ -42,10 +41,8 @@ const serializeAws_restJson1CreateParticipantConnectionCommand = async (input, c
42
41
  const resolvedPath = `${(basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || ""}` + "/participant/connection";
43
42
  let body;
44
43
  body = JSON.stringify({
45
- ...(input.ConnectParticipant !== undefined &&
46
- input.ConnectParticipant !== null && { ConnectParticipant: input.ConnectParticipant }),
47
- ...(input.Type !== undefined &&
48
- input.Type !== null && { Type: serializeAws_restJson1ConnectionTypeList(input.Type, context) }),
44
+ ...(input.ConnectParticipant != null && { ConnectParticipant: input.ConnectParticipant }),
45
+ ...(input.Type != null && { Type: serializeAws_restJson1ConnectionTypeList(input.Type, context) }),
49
46
  });
50
47
  return new protocol_http_1.HttpRequest({
51
48
  protocol,
@@ -90,7 +87,7 @@ const serializeAws_restJson1GetAttachmentCommand = async (input, context) => {
90
87
  const resolvedPath = `${(basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || ""}` + "/participant/attachment";
91
88
  let body;
92
89
  body = JSON.stringify({
93
- ...(input.AttachmentId !== undefined && input.AttachmentId !== null && { AttachmentId: input.AttachmentId }),
90
+ ...(input.AttachmentId != null && { AttachmentId: input.AttachmentId }),
94
91
  });
95
92
  return new protocol_http_1.HttpRequest({
96
93
  protocol,
@@ -112,13 +109,12 @@ const serializeAws_restJson1GetTranscriptCommand = async (input, context) => {
112
109
  const resolvedPath = `${(basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || ""}` + "/participant/transcript";
113
110
  let body;
114
111
  body = JSON.stringify({
115
- ...(input.ContactId !== undefined && input.ContactId !== null && { ContactId: input.ContactId }),
116
- ...(input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults }),
117
- ...(input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken }),
118
- ...(input.ScanDirection !== undefined && input.ScanDirection !== null && { ScanDirection: input.ScanDirection }),
119
- ...(input.SortOrder !== undefined && input.SortOrder !== null && { SortOrder: input.SortOrder }),
120
- ...(input.StartPosition !== undefined &&
121
- input.StartPosition !== null && {
112
+ ...(input.ContactId != null && { ContactId: input.ContactId }),
113
+ ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
114
+ ...(input.NextToken != null && { NextToken: input.NextToken }),
115
+ ...(input.ScanDirection != null && { ScanDirection: input.ScanDirection }),
116
+ ...(input.SortOrder != null && { SortOrder: input.SortOrder }),
117
+ ...(input.StartPosition != null && {
122
118
  StartPosition: serializeAws_restJson1StartPosition(input.StartPosition, context),
123
119
  }),
124
120
  });
@@ -144,8 +140,8 @@ const serializeAws_restJson1SendEventCommand = async (input, context) => {
144
140
  let body;
145
141
  body = JSON.stringify({
146
142
  ClientToken: (_a = input.ClientToken) !== null && _a !== void 0 ? _a : (0, uuid_1.v4)(),
147
- ...(input.Content !== undefined && input.Content !== null && { Content: input.Content }),
148
- ...(input.ContentType !== undefined && input.ContentType !== null && { ContentType: input.ContentType }),
143
+ ...(input.Content != null && { Content: input.Content }),
144
+ ...(input.ContentType != null && { ContentType: input.ContentType }),
149
145
  });
150
146
  return new protocol_http_1.HttpRequest({
151
147
  protocol,
@@ -169,8 +165,8 @@ const serializeAws_restJson1SendMessageCommand = async (input, context) => {
169
165
  let body;
170
166
  body = JSON.stringify({
171
167
  ClientToken: (_a = input.ClientToken) !== null && _a !== void 0 ? _a : (0, uuid_1.v4)(),
172
- ...(input.Content !== undefined && input.Content !== null && { Content: input.Content }),
173
- ...(input.ContentType !== undefined && input.ContentType !== null && { ContentType: input.ContentType }),
168
+ ...(input.Content != null && { Content: input.Content }),
169
+ ...(input.ContentType != null && { ContentType: input.ContentType }),
174
170
  });
175
171
  return new protocol_http_1.HttpRequest({
176
172
  protocol,
@@ -193,12 +189,10 @@ const serializeAws_restJson1StartAttachmentUploadCommand = async (input, context
193
189
  const resolvedPath = `${(basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || ""}` + "/participant/start-attachment-upload";
194
190
  let body;
195
191
  body = JSON.stringify({
196
- ...(input.AttachmentName !== undefined &&
197
- input.AttachmentName !== null && { AttachmentName: input.AttachmentName }),
198
- ...(input.AttachmentSizeInBytes !== undefined &&
199
- input.AttachmentSizeInBytes !== null && { AttachmentSizeInBytes: input.AttachmentSizeInBytes }),
192
+ ...(input.AttachmentName != null && { AttachmentName: input.AttachmentName }),
193
+ ...(input.AttachmentSizeInBytes != null && { AttachmentSizeInBytes: input.AttachmentSizeInBytes }),
200
194
  ClientToken: (_a = input.ClientToken) !== null && _a !== void 0 ? _a : (0, uuid_1.v4)(),
201
- ...(input.ContentType !== undefined && input.ContentType !== null && { ContentType: input.ContentType }),
195
+ ...(input.ContentType != null && { ContentType: input.ContentType }),
202
196
  });
203
197
  return new protocol_http_1.HttpRequest({
204
198
  protocol,
@@ -710,9 +704,9 @@ const serializeAws_restJson1ConnectionTypeList = (input, context) => {
710
704
  };
711
705
  const serializeAws_restJson1StartPosition = (input, context) => {
712
706
  return {
713
- ...(input.AbsoluteTime !== undefined && input.AbsoluteTime !== null && { AbsoluteTime: input.AbsoluteTime }),
714
- ...(input.Id !== undefined && input.Id !== null && { Id: input.Id }),
715
- ...(input.MostRecent !== undefined && input.MostRecent !== null && { MostRecent: input.MostRecent }),
707
+ ...(input.AbsoluteTime != null && { AbsoluteTime: input.AbsoluteTime }),
708
+ ...(input.Id != null && { Id: input.Id }),
709
+ ...(input.MostRecent != null && { MostRecent: input.MostRecent }),
716
710
  };
717
711
  };
718
712
  const deserializeAws_restJson1AttachmentItem = (output, context) => {
@@ -743,9 +737,7 @@ const deserializeAws_restJson1ConnectionCredentials = (output, context) => {
743
737
  const deserializeAws_restJson1Item = (output, context) => {
744
738
  return {
745
739
  AbsoluteTime: (0, smithy_client_1.expectString)(output.AbsoluteTime),
746
- Attachments: output.Attachments !== undefined && output.Attachments !== null
747
- ? deserializeAws_restJson1Attachments(output.Attachments, context)
748
- : undefined,
740
+ Attachments: output.Attachments != null ? deserializeAws_restJson1Attachments(output.Attachments, context) : undefined,
749
741
  Content: (0, smithy_client_1.expectString)(output.Content),
750
742
  ContentType: (0, smithy_client_1.expectString)(output.ContentType),
751
743
  DisplayName: (0, smithy_client_1.expectString)(output.DisplayName),
@@ -768,7 +760,7 @@ const deserializeAws_restJson1Transcript = (output, context) => {
768
760
  };
769
761
  const deserializeAws_restJson1UploadMetadata = (output, context) => {
770
762
  return {
771
- HeadersToInclude: output.HeadersToInclude !== undefined && output.HeadersToInclude !== null
763
+ HeadersToInclude: output.HeadersToInclude != null
772
764
  ? deserializeAws_restJson1UploadMetadataSignedHeaders(output.HeadersToInclude, context)
773
765
  : undefined,
774
766
  Url: (0, smithy_client_1.expectString)(output.Url),
@@ -823,6 +815,9 @@ const loadRestJsonErrorCode = (output, data) => {
823
815
  const findKey = (object, key) => Object.keys(object).find((k) => k.toLowerCase() === key.toLowerCase());
824
816
  const sanitizeErrorCode = (rawValue) => {
825
817
  let cleanValue = rawValue;
818
+ if (typeof cleanValue === "number") {
819
+ cleanValue = cleanValue.toString();
820
+ }
826
821
  if (cleanValue.indexOf(":") >= 0) {
827
822
  cleanValue = cleanValue.split(":")[0];
828
823
  }
@@ -14,8 +14,7 @@ export var serializeAws_restJson1CompleteAttachmentUploadCommand = function (inp
14
14
  _a = _d.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
15
15
  headers = __assign({ "content-type": "application/json" }, (isSerializableHeaderValue(input.ConnectionToken) && { "x-amz-bearer": input.ConnectionToken }));
16
16
  resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/participant/complete-attachment-upload";
17
- body = JSON.stringify(__assign(__assign({}, (input.AttachmentIds !== undefined &&
18
- input.AttachmentIds !== null && {
17
+ body = JSON.stringify(__assign(__assign({}, (input.AttachmentIds != null && {
19
18
  AttachmentIds: serializeAws_restJson1AttachmentIdList(input.AttachmentIds, context),
20
19
  })), { ClientToken: (_c = input.ClientToken) !== null && _c !== void 0 ? _c : generateIdempotencyToken() }));
21
20
  return [2, new __HttpRequest({
@@ -39,9 +38,7 @@ export var serializeAws_restJson1CreateParticipantConnectionCommand = function (
39
38
  _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
40
39
  headers = __assign({ "content-type": "application/json" }, (isSerializableHeaderValue(input.ParticipantToken) && { "x-amz-bearer": input.ParticipantToken }));
41
40
  resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/participant/connection";
42
- body = JSON.stringify(__assign(__assign({}, (input.ConnectParticipant !== undefined &&
43
- input.ConnectParticipant !== null && { ConnectParticipant: input.ConnectParticipant })), (input.Type !== undefined &&
44
- input.Type !== null && { Type: serializeAws_restJson1ConnectionTypeList(input.Type, context) })));
41
+ body = JSON.stringify(__assign(__assign({}, (input.ConnectParticipant != null && { ConnectParticipant: input.ConnectParticipant })), (input.Type != null && { Type: serializeAws_restJson1ConnectionTypeList(input.Type, context) })));
45
42
  return [2, new __HttpRequest({
46
43
  protocol: protocol,
47
44
  hostname: hostname,
@@ -88,7 +85,7 @@ export var serializeAws_restJson1GetAttachmentCommand = function (input, context
88
85
  _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
89
86
  headers = __assign({ "content-type": "application/json" }, (isSerializableHeaderValue(input.ConnectionToken) && { "x-amz-bearer": input.ConnectionToken }));
90
87
  resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/participant/attachment";
91
- body = JSON.stringify(__assign({}, (input.AttachmentId !== undefined && input.AttachmentId !== null && { AttachmentId: input.AttachmentId })));
88
+ body = JSON.stringify(__assign({}, (input.AttachmentId != null && { AttachmentId: input.AttachmentId })));
92
89
  return [2, new __HttpRequest({
93
90
  protocol: protocol,
94
91
  hostname: hostname,
@@ -110,8 +107,7 @@ export var serializeAws_restJson1GetTranscriptCommand = function (input, context
110
107
  _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
111
108
  headers = __assign({ "content-type": "application/json" }, (isSerializableHeaderValue(input.ConnectionToken) && { "x-amz-bearer": input.ConnectionToken }));
112
109
  resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/participant/transcript";
113
- body = JSON.stringify(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.ContactId !== undefined && input.ContactId !== null && { ContactId: input.ContactId })), (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken })), (input.ScanDirection !== undefined && input.ScanDirection !== null && { ScanDirection: input.ScanDirection })), (input.SortOrder !== undefined && input.SortOrder !== null && { SortOrder: input.SortOrder })), (input.StartPosition !== undefined &&
114
- input.StartPosition !== null && {
110
+ body = JSON.stringify(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.ContactId != null && { ContactId: input.ContactId })), (input.MaxResults != null && { MaxResults: input.MaxResults })), (input.NextToken != null && { NextToken: input.NextToken })), (input.ScanDirection != null && { ScanDirection: input.ScanDirection })), (input.SortOrder != null && { SortOrder: input.SortOrder })), (input.StartPosition != null && {
115
111
  StartPosition: serializeAws_restJson1StartPosition(input.StartPosition, context),
116
112
  })));
117
113
  return [2, new __HttpRequest({
@@ -136,7 +132,7 @@ export var serializeAws_restJson1SendEventCommand = function (input, context) {
136
132
  _a = _d.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
137
133
  headers = __assign({ "content-type": "application/json" }, (isSerializableHeaderValue(input.ConnectionToken) && { "x-amz-bearer": input.ConnectionToken }));
138
134
  resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/participant/event";
139
- body = JSON.stringify(__assign(__assign({ ClientToken: (_c = input.ClientToken) !== null && _c !== void 0 ? _c : generateIdempotencyToken() }, (input.Content !== undefined && input.Content !== null && { Content: input.Content })), (input.ContentType !== undefined && input.ContentType !== null && { ContentType: input.ContentType })));
135
+ body = JSON.stringify(__assign(__assign({ ClientToken: (_c = input.ClientToken) !== null && _c !== void 0 ? _c : generateIdempotencyToken() }, (input.Content != null && { Content: input.Content })), (input.ContentType != null && { ContentType: input.ContentType })));
140
136
  return [2, new __HttpRequest({
141
137
  protocol: protocol,
142
138
  hostname: hostname,
@@ -159,7 +155,7 @@ export var serializeAws_restJson1SendMessageCommand = function (input, context)
159
155
  _a = _d.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
160
156
  headers = __assign({ "content-type": "application/json" }, (isSerializableHeaderValue(input.ConnectionToken) && { "x-amz-bearer": input.ConnectionToken }));
161
157
  resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/participant/message";
162
- body = JSON.stringify(__assign(__assign({ ClientToken: (_c = input.ClientToken) !== null && _c !== void 0 ? _c : generateIdempotencyToken() }, (input.Content !== undefined && input.Content !== null && { Content: input.Content })), (input.ContentType !== undefined && input.ContentType !== null && { ContentType: input.ContentType })));
158
+ body = JSON.stringify(__assign(__assign({ ClientToken: (_c = input.ClientToken) !== null && _c !== void 0 ? _c : generateIdempotencyToken() }, (input.Content != null && { Content: input.Content })), (input.ContentType != null && { ContentType: input.ContentType })));
163
159
  return [2, new __HttpRequest({
164
160
  protocol: protocol,
165
161
  hostname: hostname,
@@ -182,9 +178,7 @@ export var serializeAws_restJson1StartAttachmentUploadCommand = function (input,
182
178
  _a = _d.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
183
179
  headers = __assign({ "content-type": "application/json" }, (isSerializableHeaderValue(input.ConnectionToken) && { "x-amz-bearer": input.ConnectionToken }));
184
180
  resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/participant/start-attachment-upload";
185
- body = JSON.stringify(__assign(__assign(__assign(__assign({}, (input.AttachmentName !== undefined &&
186
- input.AttachmentName !== null && { AttachmentName: input.AttachmentName })), (input.AttachmentSizeInBytes !== undefined &&
187
- input.AttachmentSizeInBytes !== null && { AttachmentSizeInBytes: input.AttachmentSizeInBytes })), { ClientToken: (_c = input.ClientToken) !== null && _c !== void 0 ? _c : generateIdempotencyToken() }), (input.ContentType !== undefined && input.ContentType !== null && { ContentType: input.ContentType })));
181
+ body = JSON.stringify(__assign(__assign(__assign(__assign({}, (input.AttachmentName != null && { AttachmentName: input.AttachmentName })), (input.AttachmentSizeInBytes != null && { AttachmentSizeInBytes: input.AttachmentSizeInBytes })), { ClientToken: (_c = input.ClientToken) !== null && _c !== void 0 ? _c : generateIdempotencyToken() }), (input.ContentType != null && { ContentType: input.ContentType })));
188
182
  return [2, new __HttpRequest({
189
183
  protocol: protocol,
190
184
  hostname: hostname,
@@ -870,7 +864,7 @@ var serializeAws_restJson1ConnectionTypeList = function (input, context) {
870
864
  });
871
865
  };
872
866
  var serializeAws_restJson1StartPosition = function (input, context) {
873
- return __assign(__assign(__assign({}, (input.AbsoluteTime !== undefined && input.AbsoluteTime !== null && { AbsoluteTime: input.AbsoluteTime })), (input.Id !== undefined && input.Id !== null && { Id: input.Id })), (input.MostRecent !== undefined && input.MostRecent !== null && { MostRecent: input.MostRecent }));
867
+ return __assign(__assign(__assign({}, (input.AbsoluteTime != null && { AbsoluteTime: input.AbsoluteTime })), (input.Id != null && { Id: input.Id })), (input.MostRecent != null && { MostRecent: input.MostRecent }));
874
868
  };
875
869
  var deserializeAws_restJson1AttachmentItem = function (output, context) {
876
870
  return {
@@ -900,9 +894,7 @@ var deserializeAws_restJson1ConnectionCredentials = function (output, context) {
900
894
  var deserializeAws_restJson1Item = function (output, context) {
901
895
  return {
902
896
  AbsoluteTime: __expectString(output.AbsoluteTime),
903
- Attachments: output.Attachments !== undefined && output.Attachments !== null
904
- ? deserializeAws_restJson1Attachments(output.Attachments, context)
905
- : undefined,
897
+ Attachments: output.Attachments != null ? deserializeAws_restJson1Attachments(output.Attachments, context) : undefined,
906
898
  Content: __expectString(output.Content),
907
899
  ContentType: __expectString(output.ContentType),
908
900
  DisplayName: __expectString(output.DisplayName),
@@ -925,7 +917,7 @@ var deserializeAws_restJson1Transcript = function (output, context) {
925
917
  };
926
918
  var deserializeAws_restJson1UploadMetadata = function (output, context) {
927
919
  return {
928
- HeadersToInclude: output.HeadersToInclude !== undefined && output.HeadersToInclude !== null
920
+ HeadersToInclude: output.HeadersToInclude != null
929
921
  ? deserializeAws_restJson1UploadMetadataSignedHeaders(output.HeadersToInclude, context)
930
922
  : undefined,
931
923
  Url: __expectString(output.Url),
@@ -986,6 +978,9 @@ var loadRestJsonErrorCode = function (output, data) {
986
978
  var findKey = function (object, key) { return Object.keys(object).find(function (k) { return k.toLowerCase() === key.toLowerCase(); }); };
987
979
  var sanitizeErrorCode = function (rawValue) {
988
980
  var cleanValue = rawValue;
981
+ if (typeof cleanValue === "number") {
982
+ cleanValue = cleanValue.toString();
983
+ }
989
984
  if (cleanValue.indexOf(":") >= 0) {
990
985
  cleanValue = cleanValue.split(":")[0];
991
986
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-connectparticipant",
3
3
  "description": "AWS SDK for JavaScript Connectparticipant Client for Node.js, Browser and React Native",
4
- "version": "3.121.0",
4
+ "version": "3.130.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,35 +18,35 @@
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.121.0",
22
- "@aws-sdk/config-resolver": "3.110.0",
23
- "@aws-sdk/credential-provider-node": "3.121.0",
24
- "@aws-sdk/fetch-http-handler": "3.110.0",
25
- "@aws-sdk/hash-node": "3.110.0",
26
- "@aws-sdk/invalid-dependency": "3.110.0",
27
- "@aws-sdk/middleware-content-length": "3.110.0",
28
- "@aws-sdk/middleware-host-header": "3.110.0",
29
- "@aws-sdk/middleware-logger": "3.110.0",
30
- "@aws-sdk/middleware-recursion-detection": "3.110.0",
31
- "@aws-sdk/middleware-retry": "3.118.1",
32
- "@aws-sdk/middleware-serde": "3.110.0",
33
- "@aws-sdk/middleware-signing": "3.110.0",
34
- "@aws-sdk/middleware-stack": "3.110.0",
35
- "@aws-sdk/middleware-user-agent": "3.110.0",
36
- "@aws-sdk/node-config-provider": "3.110.0",
37
- "@aws-sdk/node-http-handler": "3.118.1",
38
- "@aws-sdk/protocol-http": "3.110.0",
39
- "@aws-sdk/smithy-client": "3.110.0",
40
- "@aws-sdk/types": "3.110.0",
41
- "@aws-sdk/url-parser": "3.110.0",
21
+ "@aws-sdk/client-sts": "3.130.0",
22
+ "@aws-sdk/config-resolver": "3.130.0",
23
+ "@aws-sdk/credential-provider-node": "3.130.0",
24
+ "@aws-sdk/fetch-http-handler": "3.127.0",
25
+ "@aws-sdk/hash-node": "3.127.0",
26
+ "@aws-sdk/invalid-dependency": "3.127.0",
27
+ "@aws-sdk/middleware-content-length": "3.127.0",
28
+ "@aws-sdk/middleware-host-header": "3.127.0",
29
+ "@aws-sdk/middleware-logger": "3.127.0",
30
+ "@aws-sdk/middleware-recursion-detection": "3.127.0",
31
+ "@aws-sdk/middleware-retry": "3.127.0",
32
+ "@aws-sdk/middleware-serde": "3.127.0",
33
+ "@aws-sdk/middleware-signing": "3.130.0",
34
+ "@aws-sdk/middleware-stack": "3.127.0",
35
+ "@aws-sdk/middleware-user-agent": "3.127.0",
36
+ "@aws-sdk/node-config-provider": "3.127.0",
37
+ "@aws-sdk/node-http-handler": "3.127.0",
38
+ "@aws-sdk/protocol-http": "3.127.0",
39
+ "@aws-sdk/smithy-client": "3.127.0",
40
+ "@aws-sdk/types": "3.127.0",
41
+ "@aws-sdk/url-parser": "3.127.0",
42
42
  "@aws-sdk/util-base64-browser": "3.109.0",
43
43
  "@aws-sdk/util-base64-node": "3.55.0",
44
44
  "@aws-sdk/util-body-length-browser": "3.55.0",
45
45
  "@aws-sdk/util-body-length-node": "3.55.0",
46
- "@aws-sdk/util-defaults-mode-browser": "3.110.0",
47
- "@aws-sdk/util-defaults-mode-node": "3.110.0",
48
- "@aws-sdk/util-user-agent-browser": "3.110.0",
49
- "@aws-sdk/util-user-agent-node": "3.118.0",
46
+ "@aws-sdk/util-defaults-mode-browser": "3.127.0",
47
+ "@aws-sdk/util-defaults-mode-node": "3.130.0",
48
+ "@aws-sdk/util-user-agent-browser": "3.127.0",
49
+ "@aws-sdk/util-user-agent-node": "3.127.0",
50
50
  "@aws-sdk/util-utf8-browser": "3.109.0",
51
51
  "@aws-sdk/util-utf8-node": "3.109.0",
52
52
  "tslib": "^2.3.1",