@aws-sdk/client-comprehendmedical 3.716.0 → 3.723.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +177 -128
- package/dist-es/ComprehendMedicalClient.js +1 -0
- package/dist-es/models/models_0.js +24 -16
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -178,7 +178,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
178
178
|
}, "resolveRuntimeExtensions");
|
|
179
179
|
|
|
180
180
|
// src/ComprehendMedicalClient.ts
|
|
181
|
-
var
|
|
181
|
+
var ComprehendMedicalClient = class extends import_smithy_client.Client {
|
|
182
|
+
static {
|
|
183
|
+
__name(this, "ComprehendMedicalClient");
|
|
184
|
+
}
|
|
185
|
+
/**
|
|
186
|
+
* The resolved configuration of ComprehendMedicalClient class. This is resolved and normalized from the {@link ComprehendMedicalClientConfig | constructor configuration interface}.
|
|
187
|
+
*/
|
|
188
|
+
config;
|
|
182
189
|
constructor(...[configuration]) {
|
|
183
190
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
184
191
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -188,7 +195,7 @@ var _ComprehendMedicalClient = class _ComprehendMedicalClient extends import_smi
|
|
|
188
195
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
189
196
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
190
197
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
191
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
198
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
192
199
|
super(_config_8);
|
|
193
200
|
this.config = _config_8;
|
|
194
201
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -216,8 +223,6 @@ var _ComprehendMedicalClient = class _ComprehendMedicalClient extends import_smi
|
|
|
216
223
|
super.destroy();
|
|
217
224
|
}
|
|
218
225
|
};
|
|
219
|
-
__name(_ComprehendMedicalClient, "ComprehendMedicalClient");
|
|
220
|
-
var ComprehendMedicalClient = _ComprehendMedicalClient;
|
|
221
226
|
|
|
222
227
|
// src/ComprehendMedical.ts
|
|
223
228
|
|
|
@@ -235,7 +240,10 @@ var import_uuid = require("uuid");
|
|
|
235
240
|
|
|
236
241
|
// src/models/ComprehendMedicalServiceException.ts
|
|
237
242
|
|
|
238
|
-
var
|
|
243
|
+
var ComprehendMedicalServiceException = class _ComprehendMedicalServiceException extends import_smithy_client.ServiceException {
|
|
244
|
+
static {
|
|
245
|
+
__name(this, "ComprehendMedicalServiceException");
|
|
246
|
+
}
|
|
239
247
|
/**
|
|
240
248
|
* @internal
|
|
241
249
|
*/
|
|
@@ -244,8 +252,6 @@ var _ComprehendMedicalServiceException = class _ComprehendMedicalServiceExceptio
|
|
|
244
252
|
Object.setPrototypeOf(this, _ComprehendMedicalServiceException.prototype);
|
|
245
253
|
}
|
|
246
254
|
};
|
|
247
|
-
__name(_ComprehendMedicalServiceException, "ComprehendMedicalServiceException");
|
|
248
|
-
var ComprehendMedicalServiceException = _ComprehendMedicalServiceException;
|
|
249
255
|
|
|
250
256
|
// src/models/models_0.ts
|
|
251
257
|
var EntityType = {
|
|
@@ -351,7 +357,13 @@ var JobStatus = {
|
|
|
351
357
|
var LanguageCode = {
|
|
352
358
|
EN: "en"
|
|
353
359
|
};
|
|
354
|
-
var
|
|
360
|
+
var InternalServerException = class _InternalServerException extends ComprehendMedicalServiceException {
|
|
361
|
+
static {
|
|
362
|
+
__name(this, "InternalServerException");
|
|
363
|
+
}
|
|
364
|
+
name = "InternalServerException";
|
|
365
|
+
$fault = "server";
|
|
366
|
+
Message;
|
|
355
367
|
/**
|
|
356
368
|
* @internal
|
|
357
369
|
*/
|
|
@@ -361,15 +373,17 @@ var _InternalServerException = class _InternalServerException extends Comprehend
|
|
|
361
373
|
$fault: "server",
|
|
362
374
|
...opts
|
|
363
375
|
});
|
|
364
|
-
this.name = "InternalServerException";
|
|
365
|
-
this.$fault = "server";
|
|
366
376
|
Object.setPrototypeOf(this, _InternalServerException.prototype);
|
|
367
377
|
this.Message = opts.Message;
|
|
368
378
|
}
|
|
369
379
|
};
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
380
|
+
var InvalidRequestException = class _InvalidRequestException extends ComprehendMedicalServiceException {
|
|
381
|
+
static {
|
|
382
|
+
__name(this, "InvalidRequestException");
|
|
383
|
+
}
|
|
384
|
+
name = "InvalidRequestException";
|
|
385
|
+
$fault = "client";
|
|
386
|
+
Message;
|
|
373
387
|
/**
|
|
374
388
|
* @internal
|
|
375
389
|
*/
|
|
@@ -379,15 +393,17 @@ var _InvalidRequestException = class _InvalidRequestException extends Comprehend
|
|
|
379
393
|
$fault: "client",
|
|
380
394
|
...opts
|
|
381
395
|
});
|
|
382
|
-
this.name = "InvalidRequestException";
|
|
383
|
-
this.$fault = "client";
|
|
384
396
|
Object.setPrototypeOf(this, _InvalidRequestException.prototype);
|
|
385
397
|
this.Message = opts.Message;
|
|
386
398
|
}
|
|
387
399
|
};
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
400
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends ComprehendMedicalServiceException {
|
|
401
|
+
static {
|
|
402
|
+
__name(this, "ResourceNotFoundException");
|
|
403
|
+
}
|
|
404
|
+
name = "ResourceNotFoundException";
|
|
405
|
+
$fault = "client";
|
|
406
|
+
Message;
|
|
391
407
|
/**
|
|
392
408
|
* @internal
|
|
393
409
|
*/
|
|
@@ -397,15 +413,17 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Compre
|
|
|
397
413
|
$fault: "client",
|
|
398
414
|
...opts
|
|
399
415
|
});
|
|
400
|
-
this.name = "ResourceNotFoundException";
|
|
401
|
-
this.$fault = "client";
|
|
402
416
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
403
417
|
this.Message = opts.Message;
|
|
404
418
|
}
|
|
405
419
|
};
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
420
|
+
var TooManyRequestsException = class _TooManyRequestsException extends ComprehendMedicalServiceException {
|
|
421
|
+
static {
|
|
422
|
+
__name(this, "TooManyRequestsException");
|
|
423
|
+
}
|
|
424
|
+
name = "TooManyRequestsException";
|
|
425
|
+
$fault = "client";
|
|
426
|
+
Message;
|
|
409
427
|
/**
|
|
410
428
|
* @internal
|
|
411
429
|
*/
|
|
@@ -415,15 +433,17 @@ var _TooManyRequestsException = class _TooManyRequestsException extends Comprehe
|
|
|
415
433
|
$fault: "client",
|
|
416
434
|
...opts
|
|
417
435
|
});
|
|
418
|
-
this.name = "TooManyRequestsException";
|
|
419
|
-
this.$fault = "client";
|
|
420
436
|
Object.setPrototypeOf(this, _TooManyRequestsException.prototype);
|
|
421
437
|
this.Message = opts.Message;
|
|
422
438
|
}
|
|
423
439
|
};
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
440
|
+
var InvalidEncodingException = class _InvalidEncodingException extends ComprehendMedicalServiceException {
|
|
441
|
+
static {
|
|
442
|
+
__name(this, "InvalidEncodingException");
|
|
443
|
+
}
|
|
444
|
+
name = "InvalidEncodingException";
|
|
445
|
+
$fault = "client";
|
|
446
|
+
Message;
|
|
427
447
|
/**
|
|
428
448
|
* @internal
|
|
429
449
|
*/
|
|
@@ -433,15 +453,17 @@ var _InvalidEncodingException = class _InvalidEncodingException extends Comprehe
|
|
|
433
453
|
$fault: "client",
|
|
434
454
|
...opts
|
|
435
455
|
});
|
|
436
|
-
this.name = "InvalidEncodingException";
|
|
437
|
-
this.$fault = "client";
|
|
438
456
|
Object.setPrototypeOf(this, _InvalidEncodingException.prototype);
|
|
439
457
|
this.Message = opts.Message;
|
|
440
458
|
}
|
|
441
459
|
};
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
460
|
+
var ServiceUnavailableException = class _ServiceUnavailableException extends ComprehendMedicalServiceException {
|
|
461
|
+
static {
|
|
462
|
+
__name(this, "ServiceUnavailableException");
|
|
463
|
+
}
|
|
464
|
+
name = "ServiceUnavailableException";
|
|
465
|
+
$fault = "server";
|
|
466
|
+
Message;
|
|
445
467
|
/**
|
|
446
468
|
* @internal
|
|
447
469
|
*/
|
|
@@ -451,15 +473,17 @@ var _ServiceUnavailableException = class _ServiceUnavailableException extends Co
|
|
|
451
473
|
$fault: "server",
|
|
452
474
|
...opts
|
|
453
475
|
});
|
|
454
|
-
this.name = "ServiceUnavailableException";
|
|
455
|
-
this.$fault = "server";
|
|
456
476
|
Object.setPrototypeOf(this, _ServiceUnavailableException.prototype);
|
|
457
477
|
this.Message = opts.Message;
|
|
458
478
|
}
|
|
459
479
|
};
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
480
|
+
var TextSizeLimitExceededException = class _TextSizeLimitExceededException extends ComprehendMedicalServiceException {
|
|
481
|
+
static {
|
|
482
|
+
__name(this, "TextSizeLimitExceededException");
|
|
483
|
+
}
|
|
484
|
+
name = "TextSizeLimitExceededException";
|
|
485
|
+
$fault = "client";
|
|
486
|
+
Message;
|
|
463
487
|
/**
|
|
464
488
|
* @internal
|
|
465
489
|
*/
|
|
@@ -469,14 +493,10 @@ var _TextSizeLimitExceededException = class _TextSizeLimitExceededException exte
|
|
|
469
493
|
$fault: "client",
|
|
470
494
|
...opts
|
|
471
495
|
});
|
|
472
|
-
this.name = "TextSizeLimitExceededException";
|
|
473
|
-
this.$fault = "client";
|
|
474
496
|
Object.setPrototypeOf(this, _TextSizeLimitExceededException.prototype);
|
|
475
497
|
this.Message = opts.Message;
|
|
476
498
|
}
|
|
477
499
|
};
|
|
478
|
-
__name(_TextSizeLimitExceededException, "TextSizeLimitExceededException");
|
|
479
|
-
var TextSizeLimitExceededException = _TextSizeLimitExceededException;
|
|
480
500
|
var ICD10CMEntityType = {
|
|
481
501
|
DX_NAME: "DX_NAME",
|
|
482
502
|
TIME_EXPRESSION: "TIME_EXPRESSION"
|
|
@@ -566,7 +586,13 @@ var SNOMEDCTEntityType = {
|
|
|
566
586
|
TEST_NAME: "TEST_NAME",
|
|
567
587
|
TREATMENT_NAME: "TREATMENT_NAME"
|
|
568
588
|
};
|
|
569
|
-
var
|
|
589
|
+
var ValidationException = class _ValidationException extends ComprehendMedicalServiceException {
|
|
590
|
+
static {
|
|
591
|
+
__name(this, "ValidationException");
|
|
592
|
+
}
|
|
593
|
+
name = "ValidationException";
|
|
594
|
+
$fault = "client";
|
|
595
|
+
Message;
|
|
570
596
|
/**
|
|
571
597
|
* @internal
|
|
572
598
|
*/
|
|
@@ -576,14 +602,10 @@ var _ValidationException = class _ValidationException extends ComprehendMedicalS
|
|
|
576
602
|
$fault: "client",
|
|
577
603
|
...opts
|
|
578
604
|
});
|
|
579
|
-
this.name = "ValidationException";
|
|
580
|
-
this.$fault = "client";
|
|
581
605
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
582
606
|
this.Message = opts.Message;
|
|
583
607
|
}
|
|
584
608
|
};
|
|
585
|
-
__name(_ValidationException, "ValidationException");
|
|
586
|
-
var ValidationException = _ValidationException;
|
|
587
609
|
|
|
588
610
|
// src/protocols/Aws_json1_1.ts
|
|
589
611
|
var se_DescribeEntitiesDetectionV2JobCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
@@ -1706,365 +1728,391 @@ function sharedHeaders(operation) {
|
|
|
1706
1728
|
__name(sharedHeaders, "sharedHeaders");
|
|
1707
1729
|
|
|
1708
1730
|
// src/commands/DescribeEntitiesDetectionV2JobCommand.ts
|
|
1709
|
-
var
|
|
1731
|
+
var DescribeEntitiesDetectionV2JobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1710
1732
|
return [
|
|
1711
1733
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1712
1734
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1713
1735
|
];
|
|
1714
1736
|
}).s("ComprehendMedical_20181030", "DescribeEntitiesDetectionV2Job", {}).n("ComprehendMedicalClient", "DescribeEntitiesDetectionV2JobCommand").f(void 0, void 0).ser(se_DescribeEntitiesDetectionV2JobCommand).de(de_DescribeEntitiesDetectionV2JobCommand).build() {
|
|
1737
|
+
static {
|
|
1738
|
+
__name(this, "DescribeEntitiesDetectionV2JobCommand");
|
|
1739
|
+
}
|
|
1715
1740
|
};
|
|
1716
|
-
__name(_DescribeEntitiesDetectionV2JobCommand, "DescribeEntitiesDetectionV2JobCommand");
|
|
1717
|
-
var DescribeEntitiesDetectionV2JobCommand = _DescribeEntitiesDetectionV2JobCommand;
|
|
1718
1741
|
|
|
1719
1742
|
// src/commands/DescribeICD10CMInferenceJobCommand.ts
|
|
1720
1743
|
|
|
1721
1744
|
|
|
1722
1745
|
|
|
1723
|
-
var
|
|
1746
|
+
var DescribeICD10CMInferenceJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1724
1747
|
return [
|
|
1725
1748
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1726
1749
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1727
1750
|
];
|
|
1728
1751
|
}).s("ComprehendMedical_20181030", "DescribeICD10CMInferenceJob", {}).n("ComprehendMedicalClient", "DescribeICD10CMInferenceJobCommand").f(void 0, void 0).ser(se_DescribeICD10CMInferenceJobCommand).de(de_DescribeICD10CMInferenceJobCommand).build() {
|
|
1752
|
+
static {
|
|
1753
|
+
__name(this, "DescribeICD10CMInferenceJobCommand");
|
|
1754
|
+
}
|
|
1729
1755
|
};
|
|
1730
|
-
__name(_DescribeICD10CMInferenceJobCommand, "DescribeICD10CMInferenceJobCommand");
|
|
1731
|
-
var DescribeICD10CMInferenceJobCommand = _DescribeICD10CMInferenceJobCommand;
|
|
1732
1756
|
|
|
1733
1757
|
// src/commands/DescribePHIDetectionJobCommand.ts
|
|
1734
1758
|
|
|
1735
1759
|
|
|
1736
1760
|
|
|
1737
|
-
var
|
|
1761
|
+
var DescribePHIDetectionJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1738
1762
|
return [
|
|
1739
1763
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1740
1764
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1741
1765
|
];
|
|
1742
1766
|
}).s("ComprehendMedical_20181030", "DescribePHIDetectionJob", {}).n("ComprehendMedicalClient", "DescribePHIDetectionJobCommand").f(void 0, void 0).ser(se_DescribePHIDetectionJobCommand).de(de_DescribePHIDetectionJobCommand).build() {
|
|
1767
|
+
static {
|
|
1768
|
+
__name(this, "DescribePHIDetectionJobCommand");
|
|
1769
|
+
}
|
|
1743
1770
|
};
|
|
1744
|
-
__name(_DescribePHIDetectionJobCommand, "DescribePHIDetectionJobCommand");
|
|
1745
|
-
var DescribePHIDetectionJobCommand = _DescribePHIDetectionJobCommand;
|
|
1746
1771
|
|
|
1747
1772
|
// src/commands/DescribeRxNormInferenceJobCommand.ts
|
|
1748
1773
|
|
|
1749
1774
|
|
|
1750
1775
|
|
|
1751
|
-
var
|
|
1776
|
+
var DescribeRxNormInferenceJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1752
1777
|
return [
|
|
1753
1778
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1754
1779
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1755
1780
|
];
|
|
1756
1781
|
}).s("ComprehendMedical_20181030", "DescribeRxNormInferenceJob", {}).n("ComprehendMedicalClient", "DescribeRxNormInferenceJobCommand").f(void 0, void 0).ser(se_DescribeRxNormInferenceJobCommand).de(de_DescribeRxNormInferenceJobCommand).build() {
|
|
1782
|
+
static {
|
|
1783
|
+
__name(this, "DescribeRxNormInferenceJobCommand");
|
|
1784
|
+
}
|
|
1757
1785
|
};
|
|
1758
|
-
__name(_DescribeRxNormInferenceJobCommand, "DescribeRxNormInferenceJobCommand");
|
|
1759
|
-
var DescribeRxNormInferenceJobCommand = _DescribeRxNormInferenceJobCommand;
|
|
1760
1786
|
|
|
1761
1787
|
// src/commands/DescribeSNOMEDCTInferenceJobCommand.ts
|
|
1762
1788
|
|
|
1763
1789
|
|
|
1764
1790
|
|
|
1765
|
-
var
|
|
1791
|
+
var DescribeSNOMEDCTInferenceJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1766
1792
|
return [
|
|
1767
1793
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1768
1794
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1769
1795
|
];
|
|
1770
1796
|
}).s("ComprehendMedical_20181030", "DescribeSNOMEDCTInferenceJob", {}).n("ComprehendMedicalClient", "DescribeSNOMEDCTInferenceJobCommand").f(void 0, void 0).ser(se_DescribeSNOMEDCTInferenceJobCommand).de(de_DescribeSNOMEDCTInferenceJobCommand).build() {
|
|
1797
|
+
static {
|
|
1798
|
+
__name(this, "DescribeSNOMEDCTInferenceJobCommand");
|
|
1799
|
+
}
|
|
1771
1800
|
};
|
|
1772
|
-
__name(_DescribeSNOMEDCTInferenceJobCommand, "DescribeSNOMEDCTInferenceJobCommand");
|
|
1773
|
-
var DescribeSNOMEDCTInferenceJobCommand = _DescribeSNOMEDCTInferenceJobCommand;
|
|
1774
1801
|
|
|
1775
1802
|
// src/commands/DetectEntitiesCommand.ts
|
|
1776
1803
|
|
|
1777
1804
|
|
|
1778
1805
|
|
|
1779
|
-
var
|
|
1806
|
+
var DetectEntitiesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1780
1807
|
return [
|
|
1781
1808
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1782
1809
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1783
1810
|
];
|
|
1784
1811
|
}).s("ComprehendMedical_20181030", "DetectEntities", {}).n("ComprehendMedicalClient", "DetectEntitiesCommand").f(void 0, void 0).ser(se_DetectEntitiesCommand).de(de_DetectEntitiesCommand).build() {
|
|
1812
|
+
static {
|
|
1813
|
+
__name(this, "DetectEntitiesCommand");
|
|
1814
|
+
}
|
|
1785
1815
|
};
|
|
1786
|
-
__name(_DetectEntitiesCommand, "DetectEntitiesCommand");
|
|
1787
|
-
var DetectEntitiesCommand = _DetectEntitiesCommand;
|
|
1788
1816
|
|
|
1789
1817
|
// src/commands/DetectEntitiesV2Command.ts
|
|
1790
1818
|
|
|
1791
1819
|
|
|
1792
1820
|
|
|
1793
|
-
var
|
|
1821
|
+
var DetectEntitiesV2Command = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1794
1822
|
return [
|
|
1795
1823
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1796
1824
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1797
1825
|
];
|
|
1798
1826
|
}).s("ComprehendMedical_20181030", "DetectEntitiesV2", {}).n("ComprehendMedicalClient", "DetectEntitiesV2Command").f(void 0, void 0).ser(se_DetectEntitiesV2Command).de(de_DetectEntitiesV2Command).build() {
|
|
1827
|
+
static {
|
|
1828
|
+
__name(this, "DetectEntitiesV2Command");
|
|
1829
|
+
}
|
|
1799
1830
|
};
|
|
1800
|
-
__name(_DetectEntitiesV2Command, "DetectEntitiesV2Command");
|
|
1801
|
-
var DetectEntitiesV2Command = _DetectEntitiesV2Command;
|
|
1802
1831
|
|
|
1803
1832
|
// src/commands/DetectPHICommand.ts
|
|
1804
1833
|
|
|
1805
1834
|
|
|
1806
1835
|
|
|
1807
|
-
var
|
|
1836
|
+
var DetectPHICommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1808
1837
|
return [
|
|
1809
1838
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1810
1839
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1811
1840
|
];
|
|
1812
1841
|
}).s("ComprehendMedical_20181030", "DetectPHI", {}).n("ComprehendMedicalClient", "DetectPHICommand").f(void 0, void 0).ser(se_DetectPHICommand).de(de_DetectPHICommand).build() {
|
|
1842
|
+
static {
|
|
1843
|
+
__name(this, "DetectPHICommand");
|
|
1844
|
+
}
|
|
1813
1845
|
};
|
|
1814
|
-
__name(_DetectPHICommand, "DetectPHICommand");
|
|
1815
|
-
var DetectPHICommand = _DetectPHICommand;
|
|
1816
1846
|
|
|
1817
1847
|
// src/commands/InferICD10CMCommand.ts
|
|
1818
1848
|
|
|
1819
1849
|
|
|
1820
1850
|
|
|
1821
|
-
var
|
|
1851
|
+
var InferICD10CMCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1822
1852
|
return [
|
|
1823
1853
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1824
1854
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1825
1855
|
];
|
|
1826
1856
|
}).s("ComprehendMedical_20181030", "InferICD10CM", {}).n("ComprehendMedicalClient", "InferICD10CMCommand").f(void 0, void 0).ser(se_InferICD10CMCommand).de(de_InferICD10CMCommand).build() {
|
|
1857
|
+
static {
|
|
1858
|
+
__name(this, "InferICD10CMCommand");
|
|
1859
|
+
}
|
|
1827
1860
|
};
|
|
1828
|
-
__name(_InferICD10CMCommand, "InferICD10CMCommand");
|
|
1829
|
-
var InferICD10CMCommand = _InferICD10CMCommand;
|
|
1830
1861
|
|
|
1831
1862
|
// src/commands/InferRxNormCommand.ts
|
|
1832
1863
|
|
|
1833
1864
|
|
|
1834
1865
|
|
|
1835
|
-
var
|
|
1866
|
+
var InferRxNormCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1836
1867
|
return [
|
|
1837
1868
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1838
1869
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1839
1870
|
];
|
|
1840
1871
|
}).s("ComprehendMedical_20181030", "InferRxNorm", {}).n("ComprehendMedicalClient", "InferRxNormCommand").f(void 0, void 0).ser(se_InferRxNormCommand).de(de_InferRxNormCommand).build() {
|
|
1872
|
+
static {
|
|
1873
|
+
__name(this, "InferRxNormCommand");
|
|
1874
|
+
}
|
|
1841
1875
|
};
|
|
1842
|
-
__name(_InferRxNormCommand, "InferRxNormCommand");
|
|
1843
|
-
var InferRxNormCommand = _InferRxNormCommand;
|
|
1844
1876
|
|
|
1845
1877
|
// src/commands/InferSNOMEDCTCommand.ts
|
|
1846
1878
|
|
|
1847
1879
|
|
|
1848
1880
|
|
|
1849
|
-
var
|
|
1881
|
+
var InferSNOMEDCTCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1850
1882
|
return [
|
|
1851
1883
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1852
1884
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1853
1885
|
];
|
|
1854
1886
|
}).s("ComprehendMedical_20181030", "InferSNOMEDCT", {}).n("ComprehendMedicalClient", "InferSNOMEDCTCommand").f(void 0, void 0).ser(se_InferSNOMEDCTCommand).de(de_InferSNOMEDCTCommand).build() {
|
|
1887
|
+
static {
|
|
1888
|
+
__name(this, "InferSNOMEDCTCommand");
|
|
1889
|
+
}
|
|
1855
1890
|
};
|
|
1856
|
-
__name(_InferSNOMEDCTCommand, "InferSNOMEDCTCommand");
|
|
1857
|
-
var InferSNOMEDCTCommand = _InferSNOMEDCTCommand;
|
|
1858
1891
|
|
|
1859
1892
|
// src/commands/ListEntitiesDetectionV2JobsCommand.ts
|
|
1860
1893
|
|
|
1861
1894
|
|
|
1862
1895
|
|
|
1863
|
-
var
|
|
1896
|
+
var ListEntitiesDetectionV2JobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1864
1897
|
return [
|
|
1865
1898
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1866
1899
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1867
1900
|
];
|
|
1868
1901
|
}).s("ComprehendMedical_20181030", "ListEntitiesDetectionV2Jobs", {}).n("ComprehendMedicalClient", "ListEntitiesDetectionV2JobsCommand").f(void 0, void 0).ser(se_ListEntitiesDetectionV2JobsCommand).de(de_ListEntitiesDetectionV2JobsCommand).build() {
|
|
1902
|
+
static {
|
|
1903
|
+
__name(this, "ListEntitiesDetectionV2JobsCommand");
|
|
1904
|
+
}
|
|
1869
1905
|
};
|
|
1870
|
-
__name(_ListEntitiesDetectionV2JobsCommand, "ListEntitiesDetectionV2JobsCommand");
|
|
1871
|
-
var ListEntitiesDetectionV2JobsCommand = _ListEntitiesDetectionV2JobsCommand;
|
|
1872
1906
|
|
|
1873
1907
|
// src/commands/ListICD10CMInferenceJobsCommand.ts
|
|
1874
1908
|
|
|
1875
1909
|
|
|
1876
1910
|
|
|
1877
|
-
var
|
|
1911
|
+
var ListICD10CMInferenceJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1878
1912
|
return [
|
|
1879
1913
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1880
1914
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1881
1915
|
];
|
|
1882
1916
|
}).s("ComprehendMedical_20181030", "ListICD10CMInferenceJobs", {}).n("ComprehendMedicalClient", "ListICD10CMInferenceJobsCommand").f(void 0, void 0).ser(se_ListICD10CMInferenceJobsCommand).de(de_ListICD10CMInferenceJobsCommand).build() {
|
|
1917
|
+
static {
|
|
1918
|
+
__name(this, "ListICD10CMInferenceJobsCommand");
|
|
1919
|
+
}
|
|
1883
1920
|
};
|
|
1884
|
-
__name(_ListICD10CMInferenceJobsCommand, "ListICD10CMInferenceJobsCommand");
|
|
1885
|
-
var ListICD10CMInferenceJobsCommand = _ListICD10CMInferenceJobsCommand;
|
|
1886
1921
|
|
|
1887
1922
|
// src/commands/ListPHIDetectionJobsCommand.ts
|
|
1888
1923
|
|
|
1889
1924
|
|
|
1890
1925
|
|
|
1891
|
-
var
|
|
1926
|
+
var ListPHIDetectionJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1892
1927
|
return [
|
|
1893
1928
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1894
1929
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1895
1930
|
];
|
|
1896
1931
|
}).s("ComprehendMedical_20181030", "ListPHIDetectionJobs", {}).n("ComprehendMedicalClient", "ListPHIDetectionJobsCommand").f(void 0, void 0).ser(se_ListPHIDetectionJobsCommand).de(de_ListPHIDetectionJobsCommand).build() {
|
|
1932
|
+
static {
|
|
1933
|
+
__name(this, "ListPHIDetectionJobsCommand");
|
|
1934
|
+
}
|
|
1897
1935
|
};
|
|
1898
|
-
__name(_ListPHIDetectionJobsCommand, "ListPHIDetectionJobsCommand");
|
|
1899
|
-
var ListPHIDetectionJobsCommand = _ListPHIDetectionJobsCommand;
|
|
1900
1936
|
|
|
1901
1937
|
// src/commands/ListRxNormInferenceJobsCommand.ts
|
|
1902
1938
|
|
|
1903
1939
|
|
|
1904
1940
|
|
|
1905
|
-
var
|
|
1941
|
+
var ListRxNormInferenceJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1906
1942
|
return [
|
|
1907
1943
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1908
1944
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1909
1945
|
];
|
|
1910
1946
|
}).s("ComprehendMedical_20181030", "ListRxNormInferenceJobs", {}).n("ComprehendMedicalClient", "ListRxNormInferenceJobsCommand").f(void 0, void 0).ser(se_ListRxNormInferenceJobsCommand).de(de_ListRxNormInferenceJobsCommand).build() {
|
|
1947
|
+
static {
|
|
1948
|
+
__name(this, "ListRxNormInferenceJobsCommand");
|
|
1949
|
+
}
|
|
1911
1950
|
};
|
|
1912
|
-
__name(_ListRxNormInferenceJobsCommand, "ListRxNormInferenceJobsCommand");
|
|
1913
|
-
var ListRxNormInferenceJobsCommand = _ListRxNormInferenceJobsCommand;
|
|
1914
1951
|
|
|
1915
1952
|
// src/commands/ListSNOMEDCTInferenceJobsCommand.ts
|
|
1916
1953
|
|
|
1917
1954
|
|
|
1918
1955
|
|
|
1919
|
-
var
|
|
1956
|
+
var ListSNOMEDCTInferenceJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1920
1957
|
return [
|
|
1921
1958
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1922
1959
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1923
1960
|
];
|
|
1924
1961
|
}).s("ComprehendMedical_20181030", "ListSNOMEDCTInferenceJobs", {}).n("ComprehendMedicalClient", "ListSNOMEDCTInferenceJobsCommand").f(void 0, void 0).ser(se_ListSNOMEDCTInferenceJobsCommand).de(de_ListSNOMEDCTInferenceJobsCommand).build() {
|
|
1962
|
+
static {
|
|
1963
|
+
__name(this, "ListSNOMEDCTInferenceJobsCommand");
|
|
1964
|
+
}
|
|
1925
1965
|
};
|
|
1926
|
-
__name(_ListSNOMEDCTInferenceJobsCommand, "ListSNOMEDCTInferenceJobsCommand");
|
|
1927
|
-
var ListSNOMEDCTInferenceJobsCommand = _ListSNOMEDCTInferenceJobsCommand;
|
|
1928
1966
|
|
|
1929
1967
|
// src/commands/StartEntitiesDetectionV2JobCommand.ts
|
|
1930
1968
|
|
|
1931
1969
|
|
|
1932
1970
|
|
|
1933
|
-
var
|
|
1971
|
+
var StartEntitiesDetectionV2JobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1934
1972
|
return [
|
|
1935
1973
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1936
1974
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1937
1975
|
];
|
|
1938
1976
|
}).s("ComprehendMedical_20181030", "StartEntitiesDetectionV2Job", {}).n("ComprehendMedicalClient", "StartEntitiesDetectionV2JobCommand").f(void 0, void 0).ser(se_StartEntitiesDetectionV2JobCommand).de(de_StartEntitiesDetectionV2JobCommand).build() {
|
|
1977
|
+
static {
|
|
1978
|
+
__name(this, "StartEntitiesDetectionV2JobCommand");
|
|
1979
|
+
}
|
|
1939
1980
|
};
|
|
1940
|
-
__name(_StartEntitiesDetectionV2JobCommand, "StartEntitiesDetectionV2JobCommand");
|
|
1941
|
-
var StartEntitiesDetectionV2JobCommand = _StartEntitiesDetectionV2JobCommand;
|
|
1942
1981
|
|
|
1943
1982
|
// src/commands/StartICD10CMInferenceJobCommand.ts
|
|
1944
1983
|
|
|
1945
1984
|
|
|
1946
1985
|
|
|
1947
|
-
var
|
|
1986
|
+
var StartICD10CMInferenceJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1948
1987
|
return [
|
|
1949
1988
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1950
1989
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1951
1990
|
];
|
|
1952
1991
|
}).s("ComprehendMedical_20181030", "StartICD10CMInferenceJob", {}).n("ComprehendMedicalClient", "StartICD10CMInferenceJobCommand").f(void 0, void 0).ser(se_StartICD10CMInferenceJobCommand).de(de_StartICD10CMInferenceJobCommand).build() {
|
|
1992
|
+
static {
|
|
1993
|
+
__name(this, "StartICD10CMInferenceJobCommand");
|
|
1994
|
+
}
|
|
1953
1995
|
};
|
|
1954
|
-
__name(_StartICD10CMInferenceJobCommand, "StartICD10CMInferenceJobCommand");
|
|
1955
|
-
var StartICD10CMInferenceJobCommand = _StartICD10CMInferenceJobCommand;
|
|
1956
1996
|
|
|
1957
1997
|
// src/commands/StartPHIDetectionJobCommand.ts
|
|
1958
1998
|
|
|
1959
1999
|
|
|
1960
2000
|
|
|
1961
|
-
var
|
|
2001
|
+
var StartPHIDetectionJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1962
2002
|
return [
|
|
1963
2003
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1964
2004
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1965
2005
|
];
|
|
1966
2006
|
}).s("ComprehendMedical_20181030", "StartPHIDetectionJob", {}).n("ComprehendMedicalClient", "StartPHIDetectionJobCommand").f(void 0, void 0).ser(se_StartPHIDetectionJobCommand).de(de_StartPHIDetectionJobCommand).build() {
|
|
2007
|
+
static {
|
|
2008
|
+
__name(this, "StartPHIDetectionJobCommand");
|
|
2009
|
+
}
|
|
1967
2010
|
};
|
|
1968
|
-
__name(_StartPHIDetectionJobCommand, "StartPHIDetectionJobCommand");
|
|
1969
|
-
var StartPHIDetectionJobCommand = _StartPHIDetectionJobCommand;
|
|
1970
2011
|
|
|
1971
2012
|
// src/commands/StartRxNormInferenceJobCommand.ts
|
|
1972
2013
|
|
|
1973
2014
|
|
|
1974
2015
|
|
|
1975
|
-
var
|
|
2016
|
+
var StartRxNormInferenceJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1976
2017
|
return [
|
|
1977
2018
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1978
2019
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1979
2020
|
];
|
|
1980
2021
|
}).s("ComprehendMedical_20181030", "StartRxNormInferenceJob", {}).n("ComprehendMedicalClient", "StartRxNormInferenceJobCommand").f(void 0, void 0).ser(se_StartRxNormInferenceJobCommand).de(de_StartRxNormInferenceJobCommand).build() {
|
|
2022
|
+
static {
|
|
2023
|
+
__name(this, "StartRxNormInferenceJobCommand");
|
|
2024
|
+
}
|
|
1981
2025
|
};
|
|
1982
|
-
__name(_StartRxNormInferenceJobCommand, "StartRxNormInferenceJobCommand");
|
|
1983
|
-
var StartRxNormInferenceJobCommand = _StartRxNormInferenceJobCommand;
|
|
1984
2026
|
|
|
1985
2027
|
// src/commands/StartSNOMEDCTInferenceJobCommand.ts
|
|
1986
2028
|
|
|
1987
2029
|
|
|
1988
2030
|
|
|
1989
|
-
var
|
|
2031
|
+
var StartSNOMEDCTInferenceJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1990
2032
|
return [
|
|
1991
2033
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1992
2034
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1993
2035
|
];
|
|
1994
2036
|
}).s("ComprehendMedical_20181030", "StartSNOMEDCTInferenceJob", {}).n("ComprehendMedicalClient", "StartSNOMEDCTInferenceJobCommand").f(void 0, void 0).ser(se_StartSNOMEDCTInferenceJobCommand).de(de_StartSNOMEDCTInferenceJobCommand).build() {
|
|
2037
|
+
static {
|
|
2038
|
+
__name(this, "StartSNOMEDCTInferenceJobCommand");
|
|
2039
|
+
}
|
|
1995
2040
|
};
|
|
1996
|
-
__name(_StartSNOMEDCTInferenceJobCommand, "StartSNOMEDCTInferenceJobCommand");
|
|
1997
|
-
var StartSNOMEDCTInferenceJobCommand = _StartSNOMEDCTInferenceJobCommand;
|
|
1998
2041
|
|
|
1999
2042
|
// src/commands/StopEntitiesDetectionV2JobCommand.ts
|
|
2000
2043
|
|
|
2001
2044
|
|
|
2002
2045
|
|
|
2003
|
-
var
|
|
2046
|
+
var StopEntitiesDetectionV2JobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2004
2047
|
return [
|
|
2005
2048
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2006
2049
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2007
2050
|
];
|
|
2008
2051
|
}).s("ComprehendMedical_20181030", "StopEntitiesDetectionV2Job", {}).n("ComprehendMedicalClient", "StopEntitiesDetectionV2JobCommand").f(void 0, void 0).ser(se_StopEntitiesDetectionV2JobCommand).de(de_StopEntitiesDetectionV2JobCommand).build() {
|
|
2052
|
+
static {
|
|
2053
|
+
__name(this, "StopEntitiesDetectionV2JobCommand");
|
|
2054
|
+
}
|
|
2009
2055
|
};
|
|
2010
|
-
__name(_StopEntitiesDetectionV2JobCommand, "StopEntitiesDetectionV2JobCommand");
|
|
2011
|
-
var StopEntitiesDetectionV2JobCommand = _StopEntitiesDetectionV2JobCommand;
|
|
2012
2056
|
|
|
2013
2057
|
// src/commands/StopICD10CMInferenceJobCommand.ts
|
|
2014
2058
|
|
|
2015
2059
|
|
|
2016
2060
|
|
|
2017
|
-
var
|
|
2061
|
+
var StopICD10CMInferenceJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2018
2062
|
return [
|
|
2019
2063
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2020
2064
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2021
2065
|
];
|
|
2022
2066
|
}).s("ComprehendMedical_20181030", "StopICD10CMInferenceJob", {}).n("ComprehendMedicalClient", "StopICD10CMInferenceJobCommand").f(void 0, void 0).ser(se_StopICD10CMInferenceJobCommand).de(de_StopICD10CMInferenceJobCommand).build() {
|
|
2067
|
+
static {
|
|
2068
|
+
__name(this, "StopICD10CMInferenceJobCommand");
|
|
2069
|
+
}
|
|
2023
2070
|
};
|
|
2024
|
-
__name(_StopICD10CMInferenceJobCommand, "StopICD10CMInferenceJobCommand");
|
|
2025
|
-
var StopICD10CMInferenceJobCommand = _StopICD10CMInferenceJobCommand;
|
|
2026
2071
|
|
|
2027
2072
|
// src/commands/StopPHIDetectionJobCommand.ts
|
|
2028
2073
|
|
|
2029
2074
|
|
|
2030
2075
|
|
|
2031
|
-
var
|
|
2076
|
+
var StopPHIDetectionJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2032
2077
|
return [
|
|
2033
2078
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2034
2079
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2035
2080
|
];
|
|
2036
2081
|
}).s("ComprehendMedical_20181030", "StopPHIDetectionJob", {}).n("ComprehendMedicalClient", "StopPHIDetectionJobCommand").f(void 0, void 0).ser(se_StopPHIDetectionJobCommand).de(de_StopPHIDetectionJobCommand).build() {
|
|
2082
|
+
static {
|
|
2083
|
+
__name(this, "StopPHIDetectionJobCommand");
|
|
2084
|
+
}
|
|
2037
2085
|
};
|
|
2038
|
-
__name(_StopPHIDetectionJobCommand, "StopPHIDetectionJobCommand");
|
|
2039
|
-
var StopPHIDetectionJobCommand = _StopPHIDetectionJobCommand;
|
|
2040
2086
|
|
|
2041
2087
|
// src/commands/StopRxNormInferenceJobCommand.ts
|
|
2042
2088
|
|
|
2043
2089
|
|
|
2044
2090
|
|
|
2045
|
-
var
|
|
2091
|
+
var StopRxNormInferenceJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2046
2092
|
return [
|
|
2047
2093
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2048
2094
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2049
2095
|
];
|
|
2050
2096
|
}).s("ComprehendMedical_20181030", "StopRxNormInferenceJob", {}).n("ComprehendMedicalClient", "StopRxNormInferenceJobCommand").f(void 0, void 0).ser(se_StopRxNormInferenceJobCommand).de(de_StopRxNormInferenceJobCommand).build() {
|
|
2097
|
+
static {
|
|
2098
|
+
__name(this, "StopRxNormInferenceJobCommand");
|
|
2099
|
+
}
|
|
2051
2100
|
};
|
|
2052
|
-
__name(_StopRxNormInferenceJobCommand, "StopRxNormInferenceJobCommand");
|
|
2053
|
-
var StopRxNormInferenceJobCommand = _StopRxNormInferenceJobCommand;
|
|
2054
2101
|
|
|
2055
2102
|
// src/commands/StopSNOMEDCTInferenceJobCommand.ts
|
|
2056
2103
|
|
|
2057
2104
|
|
|
2058
2105
|
|
|
2059
|
-
var
|
|
2106
|
+
var StopSNOMEDCTInferenceJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2060
2107
|
return [
|
|
2061
2108
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2062
2109
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2063
2110
|
];
|
|
2064
2111
|
}).s("ComprehendMedical_20181030", "StopSNOMEDCTInferenceJob", {}).n("ComprehendMedicalClient", "StopSNOMEDCTInferenceJobCommand").f(void 0, void 0).ser(se_StopSNOMEDCTInferenceJobCommand).de(de_StopSNOMEDCTInferenceJobCommand).build() {
|
|
2112
|
+
static {
|
|
2113
|
+
__name(this, "StopSNOMEDCTInferenceJobCommand");
|
|
2114
|
+
}
|
|
2065
2115
|
};
|
|
2066
|
-
__name(_StopSNOMEDCTInferenceJobCommand, "StopSNOMEDCTInferenceJobCommand");
|
|
2067
|
-
var StopSNOMEDCTInferenceJobCommand = _StopSNOMEDCTInferenceJobCommand;
|
|
2068
2116
|
|
|
2069
2117
|
// src/ComprehendMedical.ts
|
|
2070
2118
|
var commands = {
|
|
@@ -2095,10 +2143,11 @@ var commands = {
|
|
|
2095
2143
|
StopRxNormInferenceJobCommand,
|
|
2096
2144
|
StopSNOMEDCTInferenceJobCommand
|
|
2097
2145
|
};
|
|
2098
|
-
var
|
|
2146
|
+
var ComprehendMedical = class extends ComprehendMedicalClient {
|
|
2147
|
+
static {
|
|
2148
|
+
__name(this, "ComprehendMedical");
|
|
2149
|
+
}
|
|
2099
2150
|
};
|
|
2100
|
-
__name(_ComprehendMedical, "ComprehendMedical");
|
|
2101
|
-
var ComprehendMedical = _ComprehendMedical;
|
|
2102
2151
|
(0, import_smithy_client.createAggregatedClient)(commands, ComprehendMedical);
|
|
2103
2152
|
// Annotate the CommonJS export names for ESM import in node:
|
|
2104
2153
|
|
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class ComprehendMedicalClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -103,92 +103,99 @@ export const LanguageCode = {
|
|
|
103
103
|
EN: "en",
|
|
104
104
|
};
|
|
105
105
|
export class InternalServerException extends __BaseException {
|
|
106
|
+
name = "InternalServerException";
|
|
107
|
+
$fault = "server";
|
|
108
|
+
Message;
|
|
106
109
|
constructor(opts) {
|
|
107
110
|
super({
|
|
108
111
|
name: "InternalServerException",
|
|
109
112
|
$fault: "server",
|
|
110
113
|
...opts,
|
|
111
114
|
});
|
|
112
|
-
this.name = "InternalServerException";
|
|
113
|
-
this.$fault = "server";
|
|
114
115
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
115
116
|
this.Message = opts.Message;
|
|
116
117
|
}
|
|
117
118
|
}
|
|
118
119
|
export class InvalidRequestException extends __BaseException {
|
|
120
|
+
name = "InvalidRequestException";
|
|
121
|
+
$fault = "client";
|
|
122
|
+
Message;
|
|
119
123
|
constructor(opts) {
|
|
120
124
|
super({
|
|
121
125
|
name: "InvalidRequestException",
|
|
122
126
|
$fault: "client",
|
|
123
127
|
...opts,
|
|
124
128
|
});
|
|
125
|
-
this.name = "InvalidRequestException";
|
|
126
|
-
this.$fault = "client";
|
|
127
129
|
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
128
130
|
this.Message = opts.Message;
|
|
129
131
|
}
|
|
130
132
|
}
|
|
131
133
|
export class ResourceNotFoundException extends __BaseException {
|
|
134
|
+
name = "ResourceNotFoundException";
|
|
135
|
+
$fault = "client";
|
|
136
|
+
Message;
|
|
132
137
|
constructor(opts) {
|
|
133
138
|
super({
|
|
134
139
|
name: "ResourceNotFoundException",
|
|
135
140
|
$fault: "client",
|
|
136
141
|
...opts,
|
|
137
142
|
});
|
|
138
|
-
this.name = "ResourceNotFoundException";
|
|
139
|
-
this.$fault = "client";
|
|
140
143
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
141
144
|
this.Message = opts.Message;
|
|
142
145
|
}
|
|
143
146
|
}
|
|
144
147
|
export class TooManyRequestsException extends __BaseException {
|
|
148
|
+
name = "TooManyRequestsException";
|
|
149
|
+
$fault = "client";
|
|
150
|
+
Message;
|
|
145
151
|
constructor(opts) {
|
|
146
152
|
super({
|
|
147
153
|
name: "TooManyRequestsException",
|
|
148
154
|
$fault: "client",
|
|
149
155
|
...opts,
|
|
150
156
|
});
|
|
151
|
-
this.name = "TooManyRequestsException";
|
|
152
|
-
this.$fault = "client";
|
|
153
157
|
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
154
158
|
this.Message = opts.Message;
|
|
155
159
|
}
|
|
156
160
|
}
|
|
157
161
|
export class InvalidEncodingException extends __BaseException {
|
|
162
|
+
name = "InvalidEncodingException";
|
|
163
|
+
$fault = "client";
|
|
164
|
+
Message;
|
|
158
165
|
constructor(opts) {
|
|
159
166
|
super({
|
|
160
167
|
name: "InvalidEncodingException",
|
|
161
168
|
$fault: "client",
|
|
162
169
|
...opts,
|
|
163
170
|
});
|
|
164
|
-
this.name = "InvalidEncodingException";
|
|
165
|
-
this.$fault = "client";
|
|
166
171
|
Object.setPrototypeOf(this, InvalidEncodingException.prototype);
|
|
167
172
|
this.Message = opts.Message;
|
|
168
173
|
}
|
|
169
174
|
}
|
|
170
175
|
export class ServiceUnavailableException extends __BaseException {
|
|
176
|
+
name = "ServiceUnavailableException";
|
|
177
|
+
$fault = "server";
|
|
178
|
+
Message;
|
|
171
179
|
constructor(opts) {
|
|
172
180
|
super({
|
|
173
181
|
name: "ServiceUnavailableException",
|
|
174
182
|
$fault: "server",
|
|
175
183
|
...opts,
|
|
176
184
|
});
|
|
177
|
-
this.name = "ServiceUnavailableException";
|
|
178
|
-
this.$fault = "server";
|
|
179
185
|
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
180
186
|
this.Message = opts.Message;
|
|
181
187
|
}
|
|
182
188
|
}
|
|
183
189
|
export class TextSizeLimitExceededException extends __BaseException {
|
|
190
|
+
name = "TextSizeLimitExceededException";
|
|
191
|
+
$fault = "client";
|
|
192
|
+
Message;
|
|
184
193
|
constructor(opts) {
|
|
185
194
|
super({
|
|
186
195
|
name: "TextSizeLimitExceededException",
|
|
187
196
|
$fault: "client",
|
|
188
197
|
...opts,
|
|
189
198
|
});
|
|
190
|
-
this.name = "TextSizeLimitExceededException";
|
|
191
|
-
this.$fault = "client";
|
|
192
199
|
Object.setPrototypeOf(this, TextSizeLimitExceededException.prototype);
|
|
193
200
|
this.Message = opts.Message;
|
|
194
201
|
}
|
|
@@ -283,14 +290,15 @@ export const SNOMEDCTEntityType = {
|
|
|
283
290
|
TREATMENT_NAME: "TREATMENT_NAME",
|
|
284
291
|
};
|
|
285
292
|
export class ValidationException extends __BaseException {
|
|
293
|
+
name = "ValidationException";
|
|
294
|
+
$fault = "client";
|
|
295
|
+
Message;
|
|
286
296
|
constructor(opts) {
|
|
287
297
|
super({
|
|
288
298
|
name: "ValidationException",
|
|
289
299
|
$fault: "client",
|
|
290
300
|
...opts,
|
|
291
301
|
});
|
|
292
|
-
this.name = "ValidationException";
|
|
293
|
-
this.$fault = "client";
|
|
294
302
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
295
303
|
this.Message = opts.Message;
|
|
296
304
|
}
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: ComprehendMedicalClientConfig) =
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: ComprehendMedicalClientConfig) =
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: ComprehendMedicalClientConfig) =
|
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string | undefined;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: ComprehendMedicalClientConfig) =
|
|
|
31
31
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
32
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
33
33
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
|
-
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
34
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
35
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
37
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -8,9 +8,11 @@ export declare const getRuntimeConfig: (
|
|
|
8
8
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
9
|
>;
|
|
10
10
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
credentialDefaultProvider:
|
|
12
|
-
input: any
|
|
13
|
-
|
|
11
|
+
credentialDefaultProvider:
|
|
12
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
+
| ((
|
|
14
|
+
_: unknown
|
|
15
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
16
|
defaultUserAgentProvider: (
|
|
15
17
|
config?:
|
|
16
18
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -8,13 +8,15 @@ export declare const getRuntimeConfig: (
|
|
|
8
8
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
9
|
>;
|
|
10
10
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
credentialDefaultProvider:
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
11
|
+
credentialDefaultProvider:
|
|
12
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
+
| ((
|
|
14
|
+
init?:
|
|
15
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
16
|
+
| undefined
|
|
17
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
18
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
19
|
+
>);
|
|
18
20
|
defaultUserAgentProvider: (
|
|
19
21
|
config?:
|
|
20
22
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -30,9 +30,11 @@ export declare const getRuntimeConfig: (
|
|
|
30
30
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
31
31
|
| undefined
|
|
32
32
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
33
|
-
credentialDefaultProvider:
|
|
34
|
-
input: any
|
|
35
|
-
|
|
33
|
+
credentialDefaultProvider:
|
|
34
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
35
|
+
| ((
|
|
36
|
+
_: unknown
|
|
37
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
36
38
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
37
39
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
38
40
|
logger: import("@smithy/types").Logger;
|
|
@@ -52,11 +54,21 @@ export declare const getRuntimeConfig: (
|
|
|
52
54
|
| import("@smithy/types").RetryStrategyV2
|
|
53
55
|
| undefined;
|
|
54
56
|
endpoint?:
|
|
55
|
-
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
57
|
+
| ((
|
|
58
|
+
| string
|
|
59
|
+
| import("@smithy/types").Endpoint
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
61
|
+
| import("@smithy/types").EndpointV2
|
|
62
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
63
|
+
) &
|
|
64
|
+
(
|
|
65
|
+
| string
|
|
66
|
+
| import("@smithy/types").Provider<string>
|
|
67
|
+
| import("@smithy/types").Endpoint
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
69
|
+
| import("@smithy/types").EndpointV2
|
|
70
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
71
|
+
))
|
|
60
72
|
| undefined;
|
|
61
73
|
endpointProvider: (
|
|
62
74
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-comprehendmedical",
|
|
3
3
|
"description": "AWS SDK for JavaScript Comprehendmedical Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.723.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-comprehendmedical",
|
|
@@ -20,58 +20,58 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^
|
|
37
|
-
"@smithy/core": "^
|
|
38
|
-
"@smithy/fetch-http-handler": "^
|
|
39
|
-
"@smithy/hash-node": "^
|
|
40
|
-
"@smithy/invalid-dependency": "^
|
|
41
|
-
"@smithy/middleware-content-length": "^
|
|
42
|
-
"@smithy/middleware-endpoint": "^
|
|
43
|
-
"@smithy/middleware-retry": "^
|
|
44
|
-
"@smithy/middleware-serde": "^
|
|
45
|
-
"@smithy/middleware-stack": "^
|
|
46
|
-
"@smithy/node-config-provider": "^
|
|
47
|
-
"@smithy/node-http-handler": "^
|
|
48
|
-
"@smithy/protocol-http": "^
|
|
49
|
-
"@smithy/smithy-client": "^
|
|
50
|
-
"@smithy/types": "^
|
|
51
|
-
"@smithy/url-parser": "^
|
|
52
|
-
"@smithy/util-base64": "^
|
|
53
|
-
"@smithy/util-body-length-browser": "^
|
|
54
|
-
"@smithy/util-body-length-node": "^
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^
|
|
57
|
-
"@smithy/util-endpoints": "^
|
|
58
|
-
"@smithy/util-middleware": "^
|
|
59
|
-
"@smithy/util-retry": "^
|
|
60
|
-
"@smithy/util-utf8": "^
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.723.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.723.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.723.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.723.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.723.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.723.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.723.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.723.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.723.0",
|
|
36
|
+
"@smithy/config-resolver": "^4.0.0",
|
|
37
|
+
"@smithy/core": "^3.0.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^5.0.0",
|
|
39
|
+
"@smithy/hash-node": "^4.0.0",
|
|
40
|
+
"@smithy/invalid-dependency": "^4.0.0",
|
|
41
|
+
"@smithy/middleware-content-length": "^4.0.0",
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.0.0",
|
|
43
|
+
"@smithy/middleware-retry": "^4.0.0",
|
|
44
|
+
"@smithy/middleware-serde": "^4.0.0",
|
|
45
|
+
"@smithy/middleware-stack": "^4.0.0",
|
|
46
|
+
"@smithy/node-config-provider": "^4.0.0",
|
|
47
|
+
"@smithy/node-http-handler": "^4.0.0",
|
|
48
|
+
"@smithy/protocol-http": "^5.0.0",
|
|
49
|
+
"@smithy/smithy-client": "^4.0.0",
|
|
50
|
+
"@smithy/types": "^4.0.0",
|
|
51
|
+
"@smithy/url-parser": "^4.0.0",
|
|
52
|
+
"@smithy/util-base64": "^4.0.0",
|
|
53
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^4.0.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.0.0",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.0.0",
|
|
57
|
+
"@smithy/util-endpoints": "^3.0.0",
|
|
58
|
+
"@smithy/util-middleware": "^4.0.0",
|
|
59
|
+
"@smithy/util-retry": "^4.0.0",
|
|
60
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
61
61
|
"@types/uuid": "^9.0.1",
|
|
62
62
|
"tslib": "^2.6.2",
|
|
63
63
|
"uuid": "^9.0.1"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@tsconfig/
|
|
67
|
-
"@types/node": "^
|
|
66
|
+
"@tsconfig/node18": "18.2.4",
|
|
67
|
+
"@types/node": "^18.19.69",
|
|
68
68
|
"concurrently": "7.0.0",
|
|
69
69
|
"downlevel-dts": "0.10.1",
|
|
70
70
|
"rimraf": "3.0.2",
|
|
71
|
-
"typescript": "~
|
|
71
|
+
"typescript": "~5.2.2"
|
|
72
72
|
},
|
|
73
73
|
"engines": {
|
|
74
|
-
"node": ">=
|
|
74
|
+
"node": ">=18.0.0"
|
|
75
75
|
},
|
|
76
76
|
"typesVersions": {
|
|
77
77
|
"<4.0": {
|