@aws-sdk/client-kinesis-video-signaling 3.137.0 → 3.145.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,36 @@
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.145.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.144.0...v3.145.0) (2022-08-08)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-kinesis-video-signaling
9
+
10
+
11
+
12
+
13
+
14
+ # [3.142.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.141.0...v3.142.0) (2022-08-02)
15
+
16
+
17
+ ### Features
18
+
19
+ * **codegen:** general data mapping function ([#3830](https://github.com/aws/aws-sdk-js-v3/issues/3830)) ([9417eae](https://github.com/aws/aws-sdk-js-v3/commit/9417eae722806799fb4c15c07921574268c1165c))
20
+
21
+
22
+
23
+
24
+
25
+ # [3.141.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.140.0...v3.141.0) (2022-08-01)
26
+
27
+
28
+ ### Features
29
+
30
+ * **clients:** update client endpoints as of 2022-08-01 ([aaf49f2](https://github.com/aws/aws-sdk-js-v3/commit/aaf49f21b371412e6ea7e00890b71a7b31991b66))
31
+
32
+
33
+
34
+
35
+
6
36
  # [3.137.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.136.1...v3.137.0) (2022-07-26)
7
37
 
8
38
 
package/README.md CHANGED
@@ -167,7 +167,7 @@ try {
167
167
  const data = await client.send(command);
168
168
  // process data.
169
169
  } catch (error) {
170
- const { requestId, cfId, extendedRequestId } = error.$metadata;
170
+ const { requestId, cfId, extendedRequestId } = error.$$metadata;
171
171
  console.log({ requestId, cfId, extendedRequestId });
172
172
  /**
173
173
  * The keys within exceptions are also parsed.
@@ -56,15 +56,14 @@ const deserializeAws_restJson1GetIceServerConfigCommand = async (output, context
56
56
  if (output.statusCode !== 200 && output.statusCode >= 300) {
57
57
  return deserializeAws_restJson1GetIceServerConfigCommandError(output, context);
58
58
  }
59
- const contents = {
59
+ const contents = map({
60
60
  $metadata: deserializeMetadata(output),
61
- IceServerList: undefined,
62
- };
61
+ });
63
62
  const data = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await parseBody(output.body, context)), "body");
64
- if (data.IceServerList !== undefined && data.IceServerList !== null) {
63
+ if (data.IceServerList != null) {
65
64
  contents.IceServerList = deserializeAws_restJson1IceServerList(data.IceServerList, context);
66
65
  }
67
- return Promise.resolve(contents);
66
+ return contents;
68
67
  };
69
68
  exports.deserializeAws_restJson1GetIceServerConfigCommand = deserializeAws_restJson1GetIceServerConfigCommand;
70
69
  const deserializeAws_restJson1GetIceServerConfigCommandError = async (output, context) => {
@@ -72,7 +71,6 @@ const deserializeAws_restJson1GetIceServerConfigCommandError = async (output, co
72
71
  ...output,
73
72
  body: await parseBody(output.body, context),
74
73
  };
75
- let response;
76
74
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
77
75
  switch (errorCode) {
78
76
  case "ClientLimitExceededException":
@@ -95,29 +93,26 @@ const deserializeAws_restJson1GetIceServerConfigCommandError = async (output, co
95
93
  throw await deserializeAws_restJson1SessionExpiredExceptionResponse(parsedOutput, context);
96
94
  default:
97
95
  const parsedBody = parsedOutput.body;
98
- const $metadata = deserializeMetadata(output);
99
- const statusCode = $metadata.httpStatusCode ? $metadata.httpStatusCode + "" : undefined;
100
- response = new KinesisVideoSignalingServiceException_1.KinesisVideoSignalingServiceException({
101
- name: parsedBody.code || parsedBody.Code || errorCode || statusCode || "UnknowError",
102
- $fault: "client",
103
- $metadata,
96
+ (0, smithy_client_1.throwDefaultError)({
97
+ output,
98
+ parsedBody,
99
+ exceptionCtor: KinesisVideoSignalingServiceException_1.KinesisVideoSignalingServiceException,
100
+ errorCode,
104
101
  });
105
- throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
106
102
  }
107
103
  };
108
104
  const deserializeAws_restJson1SendAlexaOfferToMasterCommand = async (output, context) => {
109
105
  if (output.statusCode !== 200 && output.statusCode >= 300) {
110
106
  return deserializeAws_restJson1SendAlexaOfferToMasterCommandError(output, context);
111
107
  }
112
- const contents = {
108
+ const contents = map({
113
109
  $metadata: deserializeMetadata(output),
114
- Answer: undefined,
115
- };
110
+ });
116
111
  const data = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await parseBody(output.body, context)), "body");
117
- if (data.Answer !== undefined && data.Answer !== null) {
112
+ if (data.Answer != null) {
118
113
  contents.Answer = (0, smithy_client_1.expectString)(data.Answer);
119
114
  }
120
- return Promise.resolve(contents);
115
+ return contents;
121
116
  };
122
117
  exports.deserializeAws_restJson1SendAlexaOfferToMasterCommand = deserializeAws_restJson1SendAlexaOfferToMasterCommand;
123
118
  const deserializeAws_restJson1SendAlexaOfferToMasterCommandError = async (output, context) => {
@@ -125,7 +120,6 @@ const deserializeAws_restJson1SendAlexaOfferToMasterCommandError = async (output
125
120
  ...output,
126
121
  body: await parseBody(output.body, context),
127
122
  };
128
- let response;
129
123
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
130
124
  switch (errorCode) {
131
125
  case "ClientLimitExceededException":
@@ -142,20 +136,19 @@ const deserializeAws_restJson1SendAlexaOfferToMasterCommandError = async (output
142
136
  throw await deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context);
143
137
  default:
144
138
  const parsedBody = parsedOutput.body;
145
- const $metadata = deserializeMetadata(output);
146
- const statusCode = $metadata.httpStatusCode ? $metadata.httpStatusCode + "" : undefined;
147
- response = new KinesisVideoSignalingServiceException_1.KinesisVideoSignalingServiceException({
148
- name: parsedBody.code || parsedBody.Code || errorCode || statusCode || "UnknowError",
149
- $fault: "client",
150
- $metadata,
139
+ (0, smithy_client_1.throwDefaultError)({
140
+ output,
141
+ parsedBody,
142
+ exceptionCtor: KinesisVideoSignalingServiceException_1.KinesisVideoSignalingServiceException,
143
+ errorCode,
151
144
  });
152
- throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
153
145
  }
154
146
  };
147
+ const map = smithy_client_1.map;
155
148
  const deserializeAws_restJson1ClientLimitExceededExceptionResponse = async (parsedOutput, context) => {
156
- const contents = {};
149
+ const contents = map({});
157
150
  const data = parsedOutput.body;
158
- if (data.Message !== undefined && data.Message !== null) {
151
+ if (data.Message != null) {
159
152
  contents.Message = (0, smithy_client_1.expectString)(data.Message);
160
153
  }
161
154
  const exception = new models_0_1.ClientLimitExceededException({
@@ -165,9 +158,9 @@ const deserializeAws_restJson1ClientLimitExceededExceptionResponse = async (pars
165
158
  return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body);
166
159
  };
167
160
  const deserializeAws_restJson1InvalidArgumentExceptionResponse = async (parsedOutput, context) => {
168
- const contents = {};
161
+ const contents = map({});
169
162
  const data = parsedOutput.body;
170
- if (data.Message !== undefined && data.Message !== null) {
163
+ if (data.Message != null) {
171
164
  contents.Message = (0, smithy_client_1.expectString)(data.Message);
172
165
  }
173
166
  const exception = new models_0_1.InvalidArgumentException({
@@ -177,9 +170,9 @@ const deserializeAws_restJson1InvalidArgumentExceptionResponse = async (parsedOu
177
170
  return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body);
178
171
  };
179
172
  const deserializeAws_restJson1InvalidClientExceptionResponse = async (parsedOutput, context) => {
180
- const contents = {};
173
+ const contents = map({});
181
174
  const data = parsedOutput.body;
182
- if (data.message !== undefined && data.message !== null) {
175
+ if (data.message != null) {
183
176
  contents.message = (0, smithy_client_1.expectString)(data.message);
184
177
  }
185
178
  const exception = new models_0_1.InvalidClientException({
@@ -189,9 +182,9 @@ const deserializeAws_restJson1InvalidClientExceptionResponse = async (parsedOutp
189
182
  return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body);
190
183
  };
191
184
  const deserializeAws_restJson1NotAuthorizedExceptionResponse = async (parsedOutput, context) => {
192
- const contents = {};
185
+ const contents = map({});
193
186
  const data = parsedOutput.body;
194
- if (data.Message !== undefined && data.Message !== null) {
187
+ if (data.Message != null) {
195
188
  contents.Message = (0, smithy_client_1.expectString)(data.Message);
196
189
  }
197
190
  const exception = new models_0_1.NotAuthorizedException({
@@ -201,9 +194,9 @@ const deserializeAws_restJson1NotAuthorizedExceptionResponse = async (parsedOutp
201
194
  return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body);
202
195
  };
203
196
  const deserializeAws_restJson1ResourceNotFoundExceptionResponse = async (parsedOutput, context) => {
204
- const contents = {};
197
+ const contents = map({});
205
198
  const data = parsedOutput.body;
206
- if (data.Message !== undefined && data.Message !== null) {
199
+ if (data.Message != null) {
207
200
  contents.Message = (0, smithy_client_1.expectString)(data.Message);
208
201
  }
209
202
  const exception = new models_0_1.ResourceNotFoundException({
@@ -213,9 +206,9 @@ const deserializeAws_restJson1ResourceNotFoundExceptionResponse = async (parsedO
213
206
  return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body);
214
207
  };
215
208
  const deserializeAws_restJson1SessionExpiredExceptionResponse = async (parsedOutput, context) => {
216
- const contents = {};
209
+ const contents = map({});
217
210
  const data = parsedOutput.body;
218
- if (data.message !== undefined && data.message !== null) {
211
+ if (data.message != null) {
219
212
  contents.message = (0, smithy_client_1.expectString)(data.message);
220
213
  }
221
214
  const exception = new models_0_1.SessionExpiredException({
@@ -1,6 +1,6 @@
1
1
  import { __assign, __awaiter, __generator } from "tslib";
2
2
  import { HttpRequest as __HttpRequest } from "@aws-sdk/protocol-http";
3
- import { decorateServiceException as __decorateServiceException, expectInt32 as __expectInt32, expectNonNull as __expectNonNull, expectObject as __expectObject, expectString as __expectString, } from "@aws-sdk/smithy-client";
3
+ import { decorateServiceException as __decorateServiceException, expectInt32 as __expectInt32, expectNonNull as __expectNonNull, expectObject as __expectObject, expectString as __expectString, map as __map, throwDefaultError, } from "@aws-sdk/smithy-client";
4
4
  import { KinesisVideoSignalingServiceException as __BaseException } from "../models/KinesisVideoSignalingServiceException";
5
5
  import { ClientLimitExceededException, InvalidArgumentException, InvalidClientException, NotAuthorizedException, ResourceNotFoundException, SessionExpiredException, } from "../models/models_0";
6
6
  export var serializeAws_restJson1GetIceServerConfigCommand = function (input, context) { return __awaiter(void 0, void 0, void 0, function () {
@@ -59,24 +59,23 @@ export var deserializeAws_restJson1GetIceServerConfigCommand = function (output,
59
59
  if (output.statusCode !== 200 && output.statusCode >= 300) {
60
60
  return [2, deserializeAws_restJson1GetIceServerConfigCommandError(output, context)];
61
61
  }
62
- contents = {
62
+ contents = map({
63
63
  $metadata: deserializeMetadata(output),
64
- IceServerList: undefined,
65
- };
64
+ });
66
65
  _a = __expectNonNull;
67
66
  _b = __expectObject;
68
67
  return [4, parseBody(output.body, context)];
69
68
  case 1:
70
69
  data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), "body"]);
71
- if (data.IceServerList !== undefined && data.IceServerList !== null) {
70
+ if (data.IceServerList != null) {
72
71
  contents.IceServerList = deserializeAws_restJson1IceServerList(data.IceServerList, context);
73
72
  }
74
- return [2, Promise.resolve(contents)];
73
+ return [2, contents];
75
74
  }
76
75
  });
77
76
  }); };
78
77
  var deserializeAws_restJson1GetIceServerConfigCommandError = function (output, context) { return __awaiter(void 0, void 0, void 0, function () {
79
- var parsedOutput, _a, response, errorCode, _b, parsedBody, $metadata, statusCode;
78
+ var parsedOutput, _a, errorCode, _b, parsedBody;
80
79
  var _c;
81
80
  return __generator(this, function (_d) {
82
81
  switch (_d.label) {
@@ -117,14 +116,14 @@ var deserializeAws_restJson1GetIceServerConfigCommandError = function (output, c
117
116
  case 13: throw _d.sent();
118
117
  case 14:
119
118
  parsedBody = parsedOutput.body;
120
- $metadata = deserializeMetadata(output);
121
- statusCode = $metadata.httpStatusCode ? $metadata.httpStatusCode + "" : undefined;
122
- response = new __BaseException({
123
- name: parsedBody.code || parsedBody.Code || errorCode || statusCode || "UnknowError",
124
- $fault: "client",
125
- $metadata: $metadata,
119
+ throwDefaultError({
120
+ output: output,
121
+ parsedBody: parsedBody,
122
+ exceptionCtor: __BaseException,
123
+ errorCode: errorCode,
126
124
  });
127
- throw __decorateServiceException(response, parsedBody);
125
+ _d.label = 15;
126
+ case 15: return [2];
128
127
  }
129
128
  });
130
129
  }); };
@@ -136,24 +135,23 @@ export var deserializeAws_restJson1SendAlexaOfferToMasterCommand = function (out
136
135
  if (output.statusCode !== 200 && output.statusCode >= 300) {
137
136
  return [2, deserializeAws_restJson1SendAlexaOfferToMasterCommandError(output, context)];
138
137
  }
139
- contents = {
138
+ contents = map({
140
139
  $metadata: deserializeMetadata(output),
141
- Answer: undefined,
142
- };
140
+ });
143
141
  _a = __expectNonNull;
144
142
  _b = __expectObject;
145
143
  return [4, parseBody(output.body, context)];
146
144
  case 1:
147
145
  data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), "body"]);
148
- if (data.Answer !== undefined && data.Answer !== null) {
146
+ if (data.Answer != null) {
149
147
  contents.Answer = __expectString(data.Answer);
150
148
  }
151
- return [2, Promise.resolve(contents)];
149
+ return [2, contents];
152
150
  }
153
151
  });
154
152
  }); };
155
153
  var deserializeAws_restJson1SendAlexaOfferToMasterCommandError = function (output, context) { return __awaiter(void 0, void 0, void 0, function () {
156
- var parsedOutput, _a, response, errorCode, _b, parsedBody, $metadata, statusCode;
154
+ var parsedOutput, _a, errorCode, _b, parsedBody;
157
155
  var _c;
158
156
  return __generator(this, function (_d) {
159
157
  switch (_d.label) {
@@ -186,23 +184,24 @@ var deserializeAws_restJson1SendAlexaOfferToMasterCommandError = function (outpu
186
184
  case 9: throw _d.sent();
187
185
  case 10:
188
186
  parsedBody = parsedOutput.body;
189
- $metadata = deserializeMetadata(output);
190
- statusCode = $metadata.httpStatusCode ? $metadata.httpStatusCode + "" : undefined;
191
- response = new __BaseException({
192
- name: parsedBody.code || parsedBody.Code || errorCode || statusCode || "UnknowError",
193
- $fault: "client",
194
- $metadata: $metadata,
187
+ throwDefaultError({
188
+ output: output,
189
+ parsedBody: parsedBody,
190
+ exceptionCtor: __BaseException,
191
+ errorCode: errorCode,
195
192
  });
196
- throw __decorateServiceException(response, parsedBody);
193
+ _d.label = 11;
194
+ case 11: return [2];
197
195
  }
198
196
  });
199
197
  }); };
198
+ var map = __map;
200
199
  var deserializeAws_restJson1ClientLimitExceededExceptionResponse = function (parsedOutput, context) { return __awaiter(void 0, void 0, void 0, function () {
201
200
  var contents, data, exception;
202
201
  return __generator(this, function (_a) {
203
- contents = {};
202
+ contents = map({});
204
203
  data = parsedOutput.body;
205
- if (data.Message !== undefined && data.Message !== null) {
204
+ if (data.Message != null) {
206
205
  contents.Message = __expectString(data.Message);
207
206
  }
208
207
  exception = new ClientLimitExceededException(__assign({ $metadata: deserializeMetadata(parsedOutput) }, contents));
@@ -212,9 +211,9 @@ var deserializeAws_restJson1ClientLimitExceededExceptionResponse = function (par
212
211
  var deserializeAws_restJson1InvalidArgumentExceptionResponse = function (parsedOutput, context) { return __awaiter(void 0, void 0, void 0, function () {
213
212
  var contents, data, exception;
214
213
  return __generator(this, function (_a) {
215
- contents = {};
214
+ contents = map({});
216
215
  data = parsedOutput.body;
217
- if (data.Message !== undefined && data.Message !== null) {
216
+ if (data.Message != null) {
218
217
  contents.Message = __expectString(data.Message);
219
218
  }
220
219
  exception = new InvalidArgumentException(__assign({ $metadata: deserializeMetadata(parsedOutput) }, contents));
@@ -224,9 +223,9 @@ var deserializeAws_restJson1InvalidArgumentExceptionResponse = function (parsedO
224
223
  var deserializeAws_restJson1InvalidClientExceptionResponse = function (parsedOutput, context) { return __awaiter(void 0, void 0, void 0, function () {
225
224
  var contents, data, exception;
226
225
  return __generator(this, function (_a) {
227
- contents = {};
226
+ contents = map({});
228
227
  data = parsedOutput.body;
229
- if (data.message !== undefined && data.message !== null) {
228
+ if (data.message != null) {
230
229
  contents.message = __expectString(data.message);
231
230
  }
232
231
  exception = new InvalidClientException(__assign({ $metadata: deserializeMetadata(parsedOutput) }, contents));
@@ -236,9 +235,9 @@ var deserializeAws_restJson1InvalidClientExceptionResponse = function (parsedOut
236
235
  var deserializeAws_restJson1NotAuthorizedExceptionResponse = function (parsedOutput, context) { return __awaiter(void 0, void 0, void 0, function () {
237
236
  var contents, data, exception;
238
237
  return __generator(this, function (_a) {
239
- contents = {};
238
+ contents = map({});
240
239
  data = parsedOutput.body;
241
- if (data.Message !== undefined && data.Message !== null) {
240
+ if (data.Message != null) {
242
241
  contents.Message = __expectString(data.Message);
243
242
  }
244
243
  exception = new NotAuthorizedException(__assign({ $metadata: deserializeMetadata(parsedOutput) }, contents));
@@ -248,9 +247,9 @@ var deserializeAws_restJson1NotAuthorizedExceptionResponse = function (parsedOut
248
247
  var deserializeAws_restJson1ResourceNotFoundExceptionResponse = function (parsedOutput, context) { return __awaiter(void 0, void 0, void 0, function () {
249
248
  var contents, data, exception;
250
249
  return __generator(this, function (_a) {
251
- contents = {};
250
+ contents = map({});
252
251
  data = parsedOutput.body;
253
- if (data.Message !== undefined && data.Message !== null) {
252
+ if (data.Message != null) {
254
253
  contents.Message = __expectString(data.Message);
255
254
  }
256
255
  exception = new ResourceNotFoundException(__assign({ $metadata: deserializeMetadata(parsedOutput) }, contents));
@@ -260,9 +259,9 @@ var deserializeAws_restJson1ResourceNotFoundExceptionResponse = function (parsed
260
259
  var deserializeAws_restJson1SessionExpiredExceptionResponse = function (parsedOutput, context) { return __awaiter(void 0, void 0, void 0, function () {
261
260
  var contents, data, exception;
262
261
  return __generator(this, function (_a) {
263
- contents = {};
262
+ contents = map({});
264
263
  data = parsedOutput.body;
265
- if (data.message !== undefined && data.message !== null) {
264
+ if (data.message != null) {
266
265
  contents.message = __expectString(data.message);
267
266
  }
268
267
  exception = new SessionExpiredException(__assign({ $metadata: deserializeMetadata(parsedOutput) }, contents));
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-kinesis-video-signaling",
3
3
  "description": "AWS SDK for JavaScript Kinesis Video Signaling Client for Node.js, Browser and React Native",
4
- "version": "3.137.0",
4
+ "version": "3.145.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,9 +18,9 @@
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.137.0",
21
+ "@aws-sdk/client-sts": "3.145.0",
22
22
  "@aws-sdk/config-resolver": "3.130.0",
23
- "@aws-sdk/credential-provider-node": "3.137.0",
23
+ "@aws-sdk/credential-provider-node": "3.145.0",
24
24
  "@aws-sdk/fetch-http-handler": "3.131.0",
25
25
  "@aws-sdk/hash-node": "3.127.0",
26
26
  "@aws-sdk/invalid-dependency": "3.127.0",
@@ -36,15 +36,15 @@
36
36
  "@aws-sdk/node-config-provider": "3.127.0",
37
37
  "@aws-sdk/node-http-handler": "3.127.0",
38
38
  "@aws-sdk/protocol-http": "3.127.0",
39
- "@aws-sdk/smithy-client": "3.137.0",
39
+ "@aws-sdk/smithy-client": "3.142.0",
40
40
  "@aws-sdk/types": "3.127.0",
41
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.137.0",
47
- "@aws-sdk/util-defaults-mode-node": "3.137.0",
46
+ "@aws-sdk/util-defaults-mode-browser": "3.142.0",
47
+ "@aws-sdk/util-defaults-mode-node": "3.142.0",
48
48
  "@aws-sdk/util-user-agent-browser": "3.127.0",
49
49
  "@aws-sdk/util-user-agent-node": "3.127.0",
50
50
  "@aws-sdk/util-utf8-browser": "3.109.0",
@@ -61,6 +61,11 @@
61
61
  "typedoc": "0.19.2",
62
62
  "typescript": "~4.6.2"
63
63
  },
64
+ "overrides": {
65
+ "typedoc": {
66
+ "typescript": "~4.6.2"
67
+ }
68
+ },
64
69
  "engines": {
65
70
  "node": ">=12.0.0"
66
71
  },