@aws-sdk/client-comprehendmedical 3.948.0 → 3.953.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/dist-cjs/index.js +369 -253
  2. package/dist-cjs/runtimeConfig.shared.js +6 -6
  3. package/dist-es/commands/DescribeEntitiesDetectionV2JobCommand.js +2 -2
  4. package/dist-es/commands/DescribeICD10CMInferenceJobCommand.js +2 -2
  5. package/dist-es/commands/DescribePHIDetectionJobCommand.js +2 -2
  6. package/dist-es/commands/DescribeRxNormInferenceJobCommand.js +2 -2
  7. package/dist-es/commands/DescribeSNOMEDCTInferenceJobCommand.js +2 -2
  8. package/dist-es/commands/DetectEntitiesCommand.js +2 -2
  9. package/dist-es/commands/DetectEntitiesV2Command.js +2 -2
  10. package/dist-es/commands/DetectPHICommand.js +2 -2
  11. package/dist-es/commands/InferICD10CMCommand.js +2 -2
  12. package/dist-es/commands/InferRxNormCommand.js +2 -2
  13. package/dist-es/commands/InferSNOMEDCTCommand.js +2 -2
  14. package/dist-es/commands/ListEntitiesDetectionV2JobsCommand.js +2 -2
  15. package/dist-es/commands/ListICD10CMInferenceJobsCommand.js +2 -2
  16. package/dist-es/commands/ListPHIDetectionJobsCommand.js +2 -2
  17. package/dist-es/commands/ListRxNormInferenceJobsCommand.js +2 -2
  18. package/dist-es/commands/ListSNOMEDCTInferenceJobsCommand.js +2 -2
  19. package/dist-es/commands/StartEntitiesDetectionV2JobCommand.js +2 -2
  20. package/dist-es/commands/StartICD10CMInferenceJobCommand.js +2 -2
  21. package/dist-es/commands/StartPHIDetectionJobCommand.js +2 -2
  22. package/dist-es/commands/StartRxNormInferenceJobCommand.js +2 -2
  23. package/dist-es/commands/StartSNOMEDCTInferenceJobCommand.js +2 -2
  24. package/dist-es/commands/StopEntitiesDetectionV2JobCommand.js +2 -2
  25. package/dist-es/commands/StopICD10CMInferenceJobCommand.js +2 -2
  26. package/dist-es/commands/StopPHIDetectionJobCommand.js +2 -2
  27. package/dist-es/commands/StopRxNormInferenceJobCommand.js +2 -2
  28. package/dist-es/commands/StopSNOMEDCTInferenceJobCommand.js +2 -2
  29. package/dist-es/index.js +1 -0
  30. package/dist-es/runtimeConfig.shared.js +6 -6
  31. package/dist-es/schemas/schemas_0.js +212 -205
  32. package/dist-types/ComprehendMedicalClient.d.ts +1 -10
  33. package/dist-types/index.d.ts +1 -0
  34. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  35. package/dist-types/runtimeConfig.d.ts +6 -2
  36. package/dist-types/runtimeConfig.native.d.ts +6 -2
  37. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  38. package/dist-types/schemas/schemas_0.d.ts +110 -127
  39. package/dist-types/ts3.4/ComprehendMedicalClient.d.ts +0 -4
  40. package/dist-types/ts3.4/index.d.ts +1 -0
  41. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  42. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  43. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  44. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  45. package/dist-types/ts3.4/schemas/schemas_0.d.ts +109 -127
  46. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -110,14 +110,14 @@ class ComprehendMedicalClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- let ComprehendMedicalServiceException$1 = class ComprehendMedicalServiceException extends smithyClient.ServiceException {
113
+ class ComprehendMedicalServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, ComprehendMedicalServiceException.prototype);
117
117
  }
118
- };
118
+ }
119
119
 
120
- let InternalServerException$1 = class InternalServerException extends ComprehendMedicalServiceException$1 {
120
+ class InternalServerException extends ComprehendMedicalServiceException {
121
121
  name = "InternalServerException";
122
122
  $fault = "server";
123
123
  Message;
@@ -130,8 +130,8 @@ let InternalServerException$1 = class InternalServerException extends Comprehend
130
130
  Object.setPrototypeOf(this, InternalServerException.prototype);
131
131
  this.Message = opts.Message;
132
132
  }
133
- };
134
- let InvalidRequestException$1 = class InvalidRequestException extends ComprehendMedicalServiceException$1 {
133
+ }
134
+ class InvalidRequestException extends ComprehendMedicalServiceException {
135
135
  name = "InvalidRequestException";
136
136
  $fault = "client";
137
137
  Message;
@@ -144,8 +144,8 @@ let InvalidRequestException$1 = class InvalidRequestException extends Comprehend
144
144
  Object.setPrototypeOf(this, InvalidRequestException.prototype);
145
145
  this.Message = opts.Message;
146
146
  }
147
- };
148
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends ComprehendMedicalServiceException$1 {
147
+ }
148
+ class ResourceNotFoundException extends ComprehendMedicalServiceException {
149
149
  name = "ResourceNotFoundException";
150
150
  $fault = "client";
151
151
  Message;
@@ -158,8 +158,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Compre
158
158
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
159
159
  this.Message = opts.Message;
160
160
  }
161
- };
162
- let TooManyRequestsException$1 = class TooManyRequestsException extends ComprehendMedicalServiceException$1 {
161
+ }
162
+ class TooManyRequestsException extends ComprehendMedicalServiceException {
163
163
  name = "TooManyRequestsException";
164
164
  $fault = "client";
165
165
  Message;
@@ -172,8 +172,8 @@ let TooManyRequestsException$1 = class TooManyRequestsException extends Comprehe
172
172
  Object.setPrototypeOf(this, TooManyRequestsException.prototype);
173
173
  this.Message = opts.Message;
174
174
  }
175
- };
176
- let InvalidEncodingException$1 = class InvalidEncodingException extends ComprehendMedicalServiceException$1 {
175
+ }
176
+ class InvalidEncodingException extends ComprehendMedicalServiceException {
177
177
  name = "InvalidEncodingException";
178
178
  $fault = "client";
179
179
  Message;
@@ -186,8 +186,8 @@ let InvalidEncodingException$1 = class InvalidEncodingException extends Comprehe
186
186
  Object.setPrototypeOf(this, InvalidEncodingException.prototype);
187
187
  this.Message = opts.Message;
188
188
  }
189
- };
190
- let ServiceUnavailableException$1 = class ServiceUnavailableException extends ComprehendMedicalServiceException$1 {
189
+ }
190
+ class ServiceUnavailableException extends ComprehendMedicalServiceException {
191
191
  name = "ServiceUnavailableException";
192
192
  $fault = "server";
193
193
  Message;
@@ -200,8 +200,8 @@ let ServiceUnavailableException$1 = class ServiceUnavailableException extends Co
200
200
  Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
201
201
  this.Message = opts.Message;
202
202
  }
203
- };
204
- let TextSizeLimitExceededException$1 = class TextSizeLimitExceededException extends ComprehendMedicalServiceException$1 {
203
+ }
204
+ class TextSizeLimitExceededException extends ComprehendMedicalServiceException {
205
205
  name = "TextSizeLimitExceededException";
206
206
  $fault = "client";
207
207
  Message;
@@ -214,8 +214,8 @@ let TextSizeLimitExceededException$1 = class TextSizeLimitExceededException exte
214
214
  Object.setPrototypeOf(this, TextSizeLimitExceededException.prototype);
215
215
  this.Message = opts.Message;
216
216
  }
217
- };
218
- let ValidationException$1 = class ValidationException extends ComprehendMedicalServiceException$1 {
217
+ }
218
+ class ValidationException extends ComprehendMedicalServiceException {
219
219
  name = "ValidationException";
220
220
  $fault = "client";
221
221
  Message;
@@ -228,7 +228,7 @@ let ValidationException$1 = class ValidationException extends ComprehendMedicalS
228
228
  Object.setPrototypeOf(this, ValidationException.prototype);
229
229
  this.Message = opts.Message;
230
230
  }
231
- };
231
+ }
232
232
 
233
233
  const _A = "Attribute";
234
234
  const _AL = "AttributeList";
@@ -405,7 +405,7 @@ const _hE = "httpError";
405
405
  const _s = "server";
406
406
  const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.comprehendmedical";
407
407
  const n0 = "com.amazonaws.comprehendmedical";
408
- var Attribute = [
408
+ var Attribute$ = [
409
409
  3,
410
410
  n0,
411
411
  _A,
@@ -413,8 +413,8 @@ var Attribute = [
413
413
  [_T, _S, _RS, _RT, _I, _BO, _EO, _Te, _C, _Tr],
414
414
  [0, 1, 1, 0, 1, 1, 1, 0, 0, () => TraitList],
415
415
  ];
416
- var Characters = [3, n0, _Ch, 0, [_OTC], [1]];
417
- var ComprehendMedicalAsyncJobFilter = [
416
+ var Characters$ = [3, n0, _Ch, 0, [_OTC], [1]];
417
+ var ComprehendMedicalAsyncJobFilter$ = [
418
418
  3,
419
419
  n0,
420
420
  _CMAJF,
@@ -422,61 +422,61 @@ var ComprehendMedicalAsyncJobFilter = [
422
422
  [_JN, _JS, _STB, _STA],
423
423
  [0, 0, 4, 4],
424
424
  ];
425
- var ComprehendMedicalAsyncJobProperties = [
425
+ var ComprehendMedicalAsyncJobProperties$ = [
426
426
  3,
427
427
  n0,
428
428
  _CMAJP,
429
429
  0,
430
430
  [_JI, _JN, _JS, _M, _ST, _ET, _ETx, _IDC, _ODC, _LC, _DARA, _MFP, _KMSK, _MV],
431
- [0, 0, 0, 0, 4, 4, 4, () => InputDataConfig, () => OutputDataConfig, 0, 0, 0, 0, 0],
431
+ [0, 0, 0, 0, 4, 4, 4, () => InputDataConfig$, () => OutputDataConfig$, 0, 0, 0, 0, 0],
432
432
  ];
433
- var DescribeEntitiesDetectionV2JobRequest = [3, n0, _DEDVJR, 0, [_JI], [0]];
434
- var DescribeEntitiesDetectionV2JobResponse = [
433
+ var DescribeEntitiesDetectionV2JobRequest$ = [3, n0, _DEDVJR, 0, [_JI], [0]];
434
+ var DescribeEntitiesDetectionV2JobResponse$ = [
435
435
  3,
436
436
  n0,
437
437
  _DEDVJRe,
438
438
  0,
439
439
  [_CMAJP],
440
- [() => ComprehendMedicalAsyncJobProperties],
440
+ [() => ComprehendMedicalAsyncJobProperties$],
441
441
  ];
442
- var DescribeICD10CMInferenceJobRequest = [3, n0, _DICDCMIJR, 0, [_JI], [0]];
443
- var DescribeICD10CMInferenceJobResponse = [
442
+ var DescribeICD10CMInferenceJobRequest$ = [3, n0, _DICDCMIJR, 0, [_JI], [0]];
443
+ var DescribeICD10CMInferenceJobResponse$ = [
444
444
  3,
445
445
  n0,
446
446
  _DICDCMIJRe,
447
447
  0,
448
448
  [_CMAJP],
449
- [() => ComprehendMedicalAsyncJobProperties],
449
+ [() => ComprehendMedicalAsyncJobProperties$],
450
450
  ];
451
- var DescribePHIDetectionJobRequest = [3, n0, _DPHIDJR, 0, [_JI], [0]];
452
- var DescribePHIDetectionJobResponse = [
451
+ var DescribePHIDetectionJobRequest$ = [3, n0, _DPHIDJR, 0, [_JI], [0]];
452
+ var DescribePHIDetectionJobResponse$ = [
453
453
  3,
454
454
  n0,
455
455
  _DPHIDJRe,
456
456
  0,
457
457
  [_CMAJP],
458
- [() => ComprehendMedicalAsyncJobProperties],
458
+ [() => ComprehendMedicalAsyncJobProperties$],
459
459
  ];
460
- var DescribeRxNormInferenceJobRequest = [3, n0, _DRNIJR, 0, [_JI], [0]];
461
- var DescribeRxNormInferenceJobResponse = [
460
+ var DescribeRxNormInferenceJobRequest$ = [3, n0, _DRNIJR, 0, [_JI], [0]];
461
+ var DescribeRxNormInferenceJobResponse$ = [
462
462
  3,
463
463
  n0,
464
464
  _DRNIJRe,
465
465
  0,
466
466
  [_CMAJP],
467
- [() => ComprehendMedicalAsyncJobProperties],
467
+ [() => ComprehendMedicalAsyncJobProperties$],
468
468
  ];
469
- var DescribeSNOMEDCTInferenceJobRequest = [3, n0, _DSNOMEDCTIJR, 0, [_JI], [0]];
470
- var DescribeSNOMEDCTInferenceJobResponse = [
469
+ var DescribeSNOMEDCTInferenceJobRequest$ = [3, n0, _DSNOMEDCTIJR, 0, [_JI], [0]];
470
+ var DescribeSNOMEDCTInferenceJobResponse$ = [
471
471
  3,
472
472
  n0,
473
473
  _DSNOMEDCTIJRe,
474
474
  0,
475
475
  [_CMAJP],
476
- [() => ComprehendMedicalAsyncJobProperties],
476
+ [() => ComprehendMedicalAsyncJobProperties$],
477
477
  ];
478
- var DetectEntitiesRequest = [3, n0, _DER, 0, [_Te], [0]];
479
- var DetectEntitiesResponse = [
478
+ var DetectEntitiesRequest$ = [3, n0, _DER, 0, [_Te], [0]];
479
+ var DetectEntitiesResponse$ = [
480
480
  3,
481
481
  n0,
482
482
  _DERe,
@@ -484,8 +484,8 @@ var DetectEntitiesResponse = [
484
484
  [_E, _UA, _PT, _MV],
485
485
  [() => EntityList, () => UnmappedAttributeList, 0, 0],
486
486
  ];
487
- var DetectEntitiesV2Request = [3, n0, _DEVR, 0, [_Te], [0]];
488
- var DetectEntitiesV2Response = [
487
+ var DetectEntitiesV2Request$ = [3, n0, _DEVR, 0, [_Te], [0]];
488
+ var DetectEntitiesV2Response$ = [
489
489
  3,
490
490
  n0,
491
491
  _DEVRe,
@@ -493,9 +493,9 @@ var DetectEntitiesV2Response = [
493
493
  [_E, _UA, _PT, _MV],
494
494
  [() => EntityList, () => UnmappedAttributeList, 0, 0],
495
495
  ];
496
- var DetectPHIRequest = [3, n0, _DPHIR, 0, [_Te], [0]];
497
- var DetectPHIResponse = [3, n0, _DPHIRe, 0, [_E, _PT, _MV], [() => EntityList, 0, 0]];
498
- var Entity = [
496
+ var DetectPHIRequest$ = [3, n0, _DPHIR, 0, [_Te], [0]];
497
+ var DetectPHIResponse$ = [3, n0, _DPHIRe, 0, [_E, _PT, _MV], [() => EntityList, 0, 0]];
498
+ var Entity$ = [
499
499
  3,
500
500
  n0,
501
501
  _En,
@@ -503,7 +503,7 @@ var Entity = [
503
503
  [_I, _BO, _EO, _S, _Te, _C, _T, _Tr, _At],
504
504
  [1, 1, 1, 1, 0, 0, 0, () => TraitList, () => AttributeList],
505
505
  ];
506
- var ICD10CMAttribute = [
506
+ var ICD10CMAttribute$ = [
507
507
  3,
508
508
  n0,
509
509
  _ICDCMA,
@@ -511,8 +511,8 @@ var ICD10CMAttribute = [
511
511
  [_T, _S, _RS, _I, _BO, _EO, _Te, _Tr, _C, _RT],
512
512
  [0, 1, 1, 1, 1, 1, 0, () => ICD10CMTraitList, 0, 0],
513
513
  ];
514
- var ICD10CMConcept = [3, n0, _ICDCMC, 0, [_D, _Co, _S], [0, 0, 1]];
515
- var ICD10CMEntity = [
514
+ var ICD10CMConcept$ = [3, n0, _ICDCMC, 0, [_D, _Co, _S], [0, 0, 1]];
515
+ var ICD10CMEntity$ = [
516
516
  3,
517
517
  n0,
518
518
  _ICDCME,
@@ -520,9 +520,9 @@ var ICD10CMEntity = [
520
520
  [_I, _Te, _C, _T, _S, _BO, _EO, _At, _Tr, _ICDCMCo],
521
521
  [1, 0, 0, 0, 1, 1, 1, () => ICD10CMAttributeList, () => ICD10CMTraitList, () => ICD10CMConceptList],
522
522
  ];
523
- var ICD10CMTrait = [3, n0, _ICDCMT, 0, [_N, _S], [0, 1]];
524
- var InferICD10CMRequest = [3, n0, _IICDCMR, 0, [_Te], [0]];
525
- var InferICD10CMResponse = [
523
+ var ICD10CMTrait$ = [3, n0, _ICDCMT, 0, [_N, _S], [0, 1]];
524
+ var InferICD10CMRequest$ = [3, n0, _IICDCMR, 0, [_Te], [0]];
525
+ var InferICD10CMResponse$ = [
526
526
  3,
527
527
  n0,
528
528
  _IICDCMRn,
@@ -530,8 +530,8 @@ var InferICD10CMResponse = [
530
530
  [_E, _PT, _MV],
531
531
  [() => ICD10CMEntityList, 0, 0],
532
532
  ];
533
- var InferRxNormRequest = [3, n0, _IRNR, 0, [_Te], [0]];
534
- var InferRxNormResponse = [
533
+ var InferRxNormRequest$ = [3, n0, _IRNR, 0, [_Te], [0]];
534
+ var InferRxNormResponse$ = [
535
535
  3,
536
536
  n0,
537
537
  _IRNRn,
@@ -539,31 +539,31 @@ var InferRxNormResponse = [
539
539
  [_E, _PT, _MV],
540
540
  [() => RxNormEntityList, 0, 0],
541
541
  ];
542
- var InferSNOMEDCTRequest = [3, n0, _ISNOMEDCTR, 0, [_Te], [0]];
543
- var InferSNOMEDCTResponse = [
542
+ var InferSNOMEDCTRequest$ = [3, n0, _ISNOMEDCTR, 0, [_Te], [0]];
543
+ var InferSNOMEDCTResponse$ = [
544
544
  3,
545
545
  n0,
546
546
  _ISNOMEDCTRn,
547
547
  0,
548
548
  [_E, _PT, _MV, _SNOMEDCTD, _Ch],
549
- [() => SNOMEDCTEntityList, 0, 0, () => SNOMEDCTDetails, () => Characters],
549
+ [() => SNOMEDCTEntityList, 0, 0, () => SNOMEDCTDetails$, () => Characters$],
550
550
  ];
551
- var InputDataConfig = [3, n0, _IDC, 0, [_SB, _SK], [0, 0]];
552
- var InternalServerException = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
553
- schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
554
- var InvalidEncodingException = [-3, n0, _IEE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
555
- schema.TypeRegistry.for(n0).registerError(InvalidEncodingException, InvalidEncodingException$1);
556
- var InvalidRequestException = [-3, n0, _IRE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
557
- schema.TypeRegistry.for(n0).registerError(InvalidRequestException, InvalidRequestException$1);
558
- var ListEntitiesDetectionV2JobsRequest = [
551
+ var InputDataConfig$ = [3, n0, _IDC, 0, [_SB, _SK], [0, 0]];
552
+ var InternalServerException$ = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
553
+ schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
554
+ var InvalidEncodingException$ = [-3, n0, _IEE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
555
+ schema.TypeRegistry.for(n0).registerError(InvalidEncodingException$, InvalidEncodingException);
556
+ var InvalidRequestException$ = [-3, n0, _IRE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
557
+ schema.TypeRegistry.for(n0).registerError(InvalidRequestException$, InvalidRequestException);
558
+ var ListEntitiesDetectionV2JobsRequest$ = [
559
559
  3,
560
560
  n0,
561
561
  _LEDVJR,
562
562
  0,
563
563
  [_F, _NT, _MR],
564
- [() => ComprehendMedicalAsyncJobFilter, 0, 1],
564
+ [() => ComprehendMedicalAsyncJobFilter$, 0, 1],
565
565
  ];
566
- var ListEntitiesDetectionV2JobsResponse = [
566
+ var ListEntitiesDetectionV2JobsResponse$ = [
567
567
  3,
568
568
  n0,
569
569
  _LEDVJRi,
@@ -571,15 +571,15 @@ var ListEntitiesDetectionV2JobsResponse = [
571
571
  [_CMAJPL, _NT],
572
572
  [() => ComprehendMedicalAsyncJobPropertiesList, 0],
573
573
  ];
574
- var ListICD10CMInferenceJobsRequest = [
574
+ var ListICD10CMInferenceJobsRequest$ = [
575
575
  3,
576
576
  n0,
577
577
  _LICDCMIJR,
578
578
  0,
579
579
  [_F, _NT, _MR],
580
- [() => ComprehendMedicalAsyncJobFilter, 0, 1],
580
+ [() => ComprehendMedicalAsyncJobFilter$, 0, 1],
581
581
  ];
582
- var ListICD10CMInferenceJobsResponse = [
582
+ var ListICD10CMInferenceJobsResponse$ = [
583
583
  3,
584
584
  n0,
585
585
  _LICDCMIJRi,
@@ -587,15 +587,15 @@ var ListICD10CMInferenceJobsResponse = [
587
587
  [_CMAJPL, _NT],
588
588
  [() => ComprehendMedicalAsyncJobPropertiesList, 0],
589
589
  ];
590
- var ListPHIDetectionJobsRequest = [
590
+ var ListPHIDetectionJobsRequest$ = [
591
591
  3,
592
592
  n0,
593
593
  _LPHIDJR,
594
594
  0,
595
595
  [_F, _NT, _MR],
596
- [() => ComprehendMedicalAsyncJobFilter, 0, 1],
596
+ [() => ComprehendMedicalAsyncJobFilter$, 0, 1],
597
597
  ];
598
- var ListPHIDetectionJobsResponse = [
598
+ var ListPHIDetectionJobsResponse$ = [
599
599
  3,
600
600
  n0,
601
601
  _LPHIDJRi,
@@ -603,15 +603,15 @@ var ListPHIDetectionJobsResponse = [
603
603
  [_CMAJPL, _NT],
604
604
  [() => ComprehendMedicalAsyncJobPropertiesList, 0],
605
605
  ];
606
- var ListRxNormInferenceJobsRequest = [
606
+ var ListRxNormInferenceJobsRequest$ = [
607
607
  3,
608
608
  n0,
609
609
  _LRNIJR,
610
610
  0,
611
611
  [_F, _NT, _MR],
612
- [() => ComprehendMedicalAsyncJobFilter, 0, 1],
612
+ [() => ComprehendMedicalAsyncJobFilter$, 0, 1],
613
613
  ];
614
- var ListRxNormInferenceJobsResponse = [
614
+ var ListRxNormInferenceJobsResponse$ = [
615
615
  3,
616
616
  n0,
617
617
  _LRNIJRi,
@@ -619,15 +619,15 @@ var ListRxNormInferenceJobsResponse = [
619
619
  [_CMAJPL, _NT],
620
620
  [() => ComprehendMedicalAsyncJobPropertiesList, 0],
621
621
  ];
622
- var ListSNOMEDCTInferenceJobsRequest = [
622
+ var ListSNOMEDCTInferenceJobsRequest$ = [
623
623
  3,
624
624
  n0,
625
625
  _LSNOMEDCTIJR,
626
626
  0,
627
627
  [_F, _NT, _MR],
628
- [() => ComprehendMedicalAsyncJobFilter, 0, 1],
628
+ [() => ComprehendMedicalAsyncJobFilter$, 0, 1],
629
629
  ];
630
- var ListSNOMEDCTInferenceJobsResponse = [
630
+ var ListSNOMEDCTInferenceJobsResponse$ = [
631
631
  3,
632
632
  n0,
633
633
  _LSNOMEDCTIJRi,
@@ -635,10 +635,10 @@ var ListSNOMEDCTInferenceJobsResponse = [
635
635
  [_CMAJPL, _NT],
636
636
  [() => ComprehendMedicalAsyncJobPropertiesList, 0],
637
637
  ];
638
- var OutputDataConfig = [3, n0, _ODC, 0, [_SB, _SK], [0, 0]];
639
- var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_M], [0]];
640
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
641
- var RxNormAttribute = [
638
+ var OutputDataConfig$ = [3, n0, _ODC, 0, [_SB, _SK], [0, 0]];
639
+ var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_M], [0]];
640
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
641
+ var RxNormAttribute$ = [
642
642
  3,
643
643
  n0,
644
644
  _RNA,
@@ -646,8 +646,8 @@ var RxNormAttribute = [
646
646
  [_T, _S, _RS, _I, _BO, _EO, _Te, _Tr],
647
647
  [0, 1, 1, 1, 1, 1, 0, () => RxNormTraitList],
648
648
  ];
649
- var RxNormConcept = [3, n0, _RNC, 0, [_D, _Co, _S], [0, 0, 1]];
650
- var RxNormEntity = [
649
+ var RxNormConcept$ = [3, n0, _RNC, 0, [_D, _Co, _S], [0, 0, 1]];
650
+ var RxNormEntity$ = [
651
651
  3,
652
652
  n0,
653
653
  _RNE,
@@ -655,10 +655,10 @@ var RxNormEntity = [
655
655
  [_I, _Te, _C, _T, _S, _BO, _EO, _At, _Tr, _RNCx],
656
656
  [1, 0, 0, 0, 1, 1, 1, () => RxNormAttributeList, () => RxNormTraitList, () => RxNormConceptList],
657
657
  ];
658
- var RxNormTrait = [3, n0, _RNT, 0, [_N, _S], [0, 1]];
659
- var ServiceUnavailableException = [-3, n0, _SUE, { [_e]: _s, [_hE]: 503 }, [_M], [0]];
660
- schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException, ServiceUnavailableException$1);
661
- var SNOMEDCTAttribute = [
658
+ var RxNormTrait$ = [3, n0, _RNT, 0, [_N, _S], [0, 1]];
659
+ var ServiceUnavailableException$ = [-3, n0, _SUE, { [_e]: _s, [_hE]: 503 }, [_M], [0]];
660
+ schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException$, ServiceUnavailableException);
661
+ var SNOMEDCTAttribute$ = [
662
662
  3,
663
663
  n0,
664
664
  _SNOMEDCTA,
@@ -666,9 +666,9 @@ var SNOMEDCTAttribute = [
666
666
  [_C, _T, _S, _RS, _RT, _I, _BO, _EO, _Te, _Tr, _SNOMEDCTC],
667
667
  [0, 0, 1, 1, 0, 1, 1, 1, 0, () => SNOMEDCTTraitList, () => SNOMEDCTConceptList],
668
668
  ];
669
- var SNOMEDCTConcept = [3, n0, _SNOMEDCTCo, 0, [_D, _Co, _S], [0, 0, 1]];
670
- var SNOMEDCTDetails = [3, n0, _SNOMEDCTD, 0, [_Ed, _L, _VD], [0, 0, 0]];
671
- var SNOMEDCTEntity = [
669
+ var SNOMEDCTConcept$ = [3, n0, _SNOMEDCTCo, 0, [_D, _Co, _S], [0, 0, 1]];
670
+ var SNOMEDCTDetails$ = [3, n0, _SNOMEDCTD, 0, [_Ed, _L, _VD], [0, 0, 0]];
671
+ var SNOMEDCTEntity$ = [
672
672
  3,
673
673
  n0,
674
674
  _SNOMEDCTE,
@@ -676,71 +676,71 @@ var SNOMEDCTEntity = [
676
676
  [_I, _Te, _C, _T, _S, _BO, _EO, _At, _Tr, _SNOMEDCTC],
677
677
  [1, 0, 0, 0, 1, 1, 1, () => SNOMEDCTAttributeList, () => SNOMEDCTTraitList, () => SNOMEDCTConceptList],
678
678
  ];
679
- var SNOMEDCTTrait = [3, n0, _SNOMEDCTT, 0, [_N, _S], [0, 1]];
680
- var StartEntitiesDetectionV2JobRequest = [
679
+ var SNOMEDCTTrait$ = [3, n0, _SNOMEDCTT, 0, [_N, _S], [0, 1]];
680
+ var StartEntitiesDetectionV2JobRequest$ = [
681
681
  3,
682
682
  n0,
683
683
  _SEDVJR,
684
684
  0,
685
685
  [_IDC, _ODC, _DARA, _JN, _CRT, _KMSK, _LC],
686
- [() => InputDataConfig, () => OutputDataConfig, 0, 0, [0, 4], 0, 0],
686
+ [() => InputDataConfig$, () => OutputDataConfig$, 0, 0, [0, 4], 0, 0],
687
687
  ];
688
- var StartEntitiesDetectionV2JobResponse = [3, n0, _SEDVJRt, 0, [_JI], [0]];
689
- var StartICD10CMInferenceJobRequest = [
688
+ var StartEntitiesDetectionV2JobResponse$ = [3, n0, _SEDVJRt, 0, [_JI], [0]];
689
+ var StartICD10CMInferenceJobRequest$ = [
690
690
  3,
691
691
  n0,
692
692
  _SICDCMIJR,
693
693
  0,
694
694
  [_IDC, _ODC, _DARA, _JN, _CRT, _KMSK, _LC],
695
- [() => InputDataConfig, () => OutputDataConfig, 0, 0, [0, 4], 0, 0],
695
+ [() => InputDataConfig$, () => OutputDataConfig$, 0, 0, [0, 4], 0, 0],
696
696
  ];
697
- var StartICD10CMInferenceJobResponse = [3, n0, _SICDCMIJRt, 0, [_JI], [0]];
698
- var StartPHIDetectionJobRequest = [
697
+ var StartICD10CMInferenceJobResponse$ = [3, n0, _SICDCMIJRt, 0, [_JI], [0]];
698
+ var StartPHIDetectionJobRequest$ = [
699
699
  3,
700
700
  n0,
701
701
  _SPHIDJR,
702
702
  0,
703
703
  [_IDC, _ODC, _DARA, _JN, _CRT, _KMSK, _LC],
704
- [() => InputDataConfig, () => OutputDataConfig, 0, 0, [0, 4], 0, 0],
704
+ [() => InputDataConfig$, () => OutputDataConfig$, 0, 0, [0, 4], 0, 0],
705
705
  ];
706
- var StartPHIDetectionJobResponse = [3, n0, _SPHIDJRt, 0, [_JI], [0]];
707
- var StartRxNormInferenceJobRequest = [
706
+ var StartPHIDetectionJobResponse$ = [3, n0, _SPHIDJRt, 0, [_JI], [0]];
707
+ var StartRxNormInferenceJobRequest$ = [
708
708
  3,
709
709
  n0,
710
710
  _SRNIJR,
711
711
  0,
712
712
  [_IDC, _ODC, _DARA, _JN, _CRT, _KMSK, _LC],
713
- [() => InputDataConfig, () => OutputDataConfig, 0, 0, [0, 4], 0, 0],
713
+ [() => InputDataConfig$, () => OutputDataConfig$, 0, 0, [0, 4], 0, 0],
714
714
  ];
715
- var StartRxNormInferenceJobResponse = [3, n0, _SRNIJRt, 0, [_JI], [0]];
716
- var StartSNOMEDCTInferenceJobRequest = [
715
+ var StartRxNormInferenceJobResponse$ = [3, n0, _SRNIJRt, 0, [_JI], [0]];
716
+ var StartSNOMEDCTInferenceJobRequest$ = [
717
717
  3,
718
718
  n0,
719
719
  _SSNOMEDCTIJR,
720
720
  0,
721
721
  [_IDC, _ODC, _DARA, _JN, _CRT, _KMSK, _LC],
722
- [() => InputDataConfig, () => OutputDataConfig, 0, 0, [0, 4], 0, 0],
722
+ [() => InputDataConfig$, () => OutputDataConfig$, 0, 0, [0, 4], 0, 0],
723
723
  ];
724
- var StartSNOMEDCTInferenceJobResponse = [3, n0, _SSNOMEDCTIJRt, 0, [_JI], [0]];
725
- var StopEntitiesDetectionV2JobRequest = [3, n0, _SEDVJRto, 0, [_JI], [0]];
726
- var StopEntitiesDetectionV2JobResponse = [3, n0, _SEDVJRtop, 0, [_JI], [0]];
727
- var StopICD10CMInferenceJobRequest = [3, n0, _SICDCMIJRto, 0, [_JI], [0]];
728
- var StopICD10CMInferenceJobResponse = [3, n0, _SICDCMIJRtop, 0, [_JI], [0]];
729
- var StopPHIDetectionJobRequest = [3, n0, _SPHIDJRto, 0, [_JI], [0]];
730
- var StopPHIDetectionJobResponse = [3, n0, _SPHIDJRtop, 0, [_JI], [0]];
731
- var StopRxNormInferenceJobRequest = [3, n0, _SRNIJRto, 0, [_JI], [0]];
732
- var StopRxNormInferenceJobResponse = [3, n0, _SRNIJRtop, 0, [_JI], [0]];
733
- var StopSNOMEDCTInferenceJobRequest = [3, n0, _SSNOMEDCTIJRto, 0, [_JI], [0]];
734
- var StopSNOMEDCTInferenceJobResponse = [3, n0, _SSNOMEDCTIJRtop, 0, [_JI], [0]];
735
- var TextSizeLimitExceededException = [-3, n0, _TSLEE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
736
- schema.TypeRegistry.for(n0).registerError(TextSizeLimitExceededException, TextSizeLimitExceededException$1);
737
- var TooManyRequestsException = [-3, n0, _TMRE, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
738
- schema.TypeRegistry.for(n0).registerError(TooManyRequestsException, TooManyRequestsException$1);
739
- var Trait = [3, n0, _Tra, 0, [_N, _S], [0, 1]];
740
- var UnmappedAttribute = [3, n0, _UAn, 0, [_T, _A], [0, () => Attribute]];
741
- var ValidationException = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
742
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
743
- var ComprehendMedicalServiceException = [
724
+ var StartSNOMEDCTInferenceJobResponse$ = [3, n0, _SSNOMEDCTIJRt, 0, [_JI], [0]];
725
+ var StopEntitiesDetectionV2JobRequest$ = [3, n0, _SEDVJRto, 0, [_JI], [0]];
726
+ var StopEntitiesDetectionV2JobResponse$ = [3, n0, _SEDVJRtop, 0, [_JI], [0]];
727
+ var StopICD10CMInferenceJobRequest$ = [3, n0, _SICDCMIJRto, 0, [_JI], [0]];
728
+ var StopICD10CMInferenceJobResponse$ = [3, n0, _SICDCMIJRtop, 0, [_JI], [0]];
729
+ var StopPHIDetectionJobRequest$ = [3, n0, _SPHIDJRto, 0, [_JI], [0]];
730
+ var StopPHIDetectionJobResponse$ = [3, n0, _SPHIDJRtop, 0, [_JI], [0]];
731
+ var StopRxNormInferenceJobRequest$ = [3, n0, _SRNIJRto, 0, [_JI], [0]];
732
+ var StopRxNormInferenceJobResponse$ = [3, n0, _SRNIJRtop, 0, [_JI], [0]];
733
+ var StopSNOMEDCTInferenceJobRequest$ = [3, n0, _SSNOMEDCTIJRto, 0, [_JI], [0]];
734
+ var StopSNOMEDCTInferenceJobResponse$ = [3, n0, _SSNOMEDCTIJRtop, 0, [_JI], [0]];
735
+ var TextSizeLimitExceededException$ = [-3, n0, _TSLEE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
736
+ schema.TypeRegistry.for(n0).registerError(TextSizeLimitExceededException$, TextSizeLimitExceededException);
737
+ var TooManyRequestsException$ = [-3, n0, _TMRE, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
738
+ schema.TypeRegistry.for(n0).registerError(TooManyRequestsException$, TooManyRequestsException);
739
+ var Trait$ = [3, n0, _Tra, 0, [_N, _S], [0, 1]];
740
+ var UnmappedAttribute$ = [3, n0, _UAn, 0, [_T, _A], [0, () => Attribute$]];
741
+ var ValidationException$ = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
742
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
743
+ var ComprehendMedicalServiceException$ = [
744
744
  -3,
745
745
  _sm,
746
746
  "ComprehendMedicalServiceException",
@@ -748,223 +748,230 @@ var ComprehendMedicalServiceException = [
748
748
  [],
749
749
  [],
750
750
  ];
751
- schema.TypeRegistry.for(_sm).registerError(ComprehendMedicalServiceException, ComprehendMedicalServiceException$1);
752
- var AttributeList = [1, n0, _AL, 0, () => Attribute];
751
+ schema.TypeRegistry.for(_sm).registerError(ComprehendMedicalServiceException$, ComprehendMedicalServiceException);
752
+ var AttributeList = [1, n0, _AL, 0, () => Attribute$];
753
753
  var ComprehendMedicalAsyncJobPropertiesList = [
754
754
  1,
755
755
  n0,
756
756
  _CMAJPL,
757
757
  0,
758
- () => ComprehendMedicalAsyncJobProperties,
758
+ () => ComprehendMedicalAsyncJobProperties$,
759
759
  ];
760
- var EntityList = [1, n0, _EL, 0, () => Entity];
761
- var ICD10CMAttributeList = [1, n0, _ICDCMAL, 0, () => ICD10CMAttribute];
762
- var ICD10CMConceptList = [1, n0, _ICDCMCL, 0, () => ICD10CMConcept];
763
- var ICD10CMEntityList = [1, n0, _ICDCMEL, 0, () => ICD10CMEntity];
764
- var ICD10CMTraitList = [1, n0, _ICDCMTL, 0, () => ICD10CMTrait];
765
- var RxNormAttributeList = [1, n0, _RNAL, 0, () => RxNormAttribute];
766
- var RxNormConceptList = [1, n0, _RNCL, 0, () => RxNormConcept];
767
- var RxNormEntityList = [1, n0, _RNEL, 0, () => RxNormEntity];
768
- var RxNormTraitList = [1, n0, _RNTL, 0, () => RxNormTrait];
769
- var SNOMEDCTAttributeList = [1, n0, _SNOMEDCTAL, 0, () => SNOMEDCTAttribute];
770
- var SNOMEDCTConceptList = [1, n0, _SNOMEDCTCL, 0, () => SNOMEDCTConcept];
771
- var SNOMEDCTEntityList = [1, n0, _SNOMEDCTEL, 0, () => SNOMEDCTEntity];
772
- var SNOMEDCTTraitList = [1, n0, _SNOMEDCTTL, 0, () => SNOMEDCTTrait];
773
- var TraitList = [1, n0, _TL, 0, () => Trait];
774
- var UnmappedAttributeList = [1, n0, _UAL, 0, () => UnmappedAttribute];
775
- var DescribeEntitiesDetectionV2Job = [
760
+ var EntityList = [1, n0, _EL, 0, () => Entity$];
761
+ var ICD10CMAttributeList = [1, n0, _ICDCMAL, 0, () => ICD10CMAttribute$];
762
+ var ICD10CMConceptList = [1, n0, _ICDCMCL, 0, () => ICD10CMConcept$];
763
+ var ICD10CMEntityList = [1, n0, _ICDCMEL, 0, () => ICD10CMEntity$];
764
+ var ICD10CMTraitList = [1, n0, _ICDCMTL, 0, () => ICD10CMTrait$];
765
+ var RxNormAttributeList = [1, n0, _RNAL, 0, () => RxNormAttribute$];
766
+ var RxNormConceptList = [1, n0, _RNCL, 0, () => RxNormConcept$];
767
+ var RxNormEntityList = [1, n0, _RNEL, 0, () => RxNormEntity$];
768
+ var RxNormTraitList = [1, n0, _RNTL, 0, () => RxNormTrait$];
769
+ var SNOMEDCTAttributeList = [1, n0, _SNOMEDCTAL, 0, () => SNOMEDCTAttribute$];
770
+ var SNOMEDCTConceptList = [1, n0, _SNOMEDCTCL, 0, () => SNOMEDCTConcept$];
771
+ var SNOMEDCTEntityList = [1, n0, _SNOMEDCTEL, 0, () => SNOMEDCTEntity$];
772
+ var SNOMEDCTTraitList = [1, n0, _SNOMEDCTTL, 0, () => SNOMEDCTTrait$];
773
+ var TraitList = [1, n0, _TL, 0, () => Trait$];
774
+ var UnmappedAttributeList = [1, n0, _UAL, 0, () => UnmappedAttribute$];
775
+ var DescribeEntitiesDetectionV2Job$ = [
776
776
  9,
777
777
  n0,
778
778
  _DEDVJ,
779
779
  0,
780
- () => DescribeEntitiesDetectionV2JobRequest,
781
- () => DescribeEntitiesDetectionV2JobResponse,
780
+ () => DescribeEntitiesDetectionV2JobRequest$,
781
+ () => DescribeEntitiesDetectionV2JobResponse$,
782
782
  ];
783
- var DescribeICD10CMInferenceJob = [
783
+ var DescribeICD10CMInferenceJob$ = [
784
784
  9,
785
785
  n0,
786
786
  _DICDCMIJ,
787
787
  0,
788
- () => DescribeICD10CMInferenceJobRequest,
789
- () => DescribeICD10CMInferenceJobResponse,
788
+ () => DescribeICD10CMInferenceJobRequest$,
789
+ () => DescribeICD10CMInferenceJobResponse$,
790
790
  ];
791
- var DescribePHIDetectionJob = [
791
+ var DescribePHIDetectionJob$ = [
792
792
  9,
793
793
  n0,
794
794
  _DPHIDJ,
795
795
  0,
796
- () => DescribePHIDetectionJobRequest,
797
- () => DescribePHIDetectionJobResponse,
796
+ () => DescribePHIDetectionJobRequest$,
797
+ () => DescribePHIDetectionJobResponse$,
798
798
  ];
799
- var DescribeRxNormInferenceJob = [
799
+ var DescribeRxNormInferenceJob$ = [
800
800
  9,
801
801
  n0,
802
802
  _DRNIJ,
803
803
  0,
804
- () => DescribeRxNormInferenceJobRequest,
805
- () => DescribeRxNormInferenceJobResponse,
804
+ () => DescribeRxNormInferenceJobRequest$,
805
+ () => DescribeRxNormInferenceJobResponse$,
806
806
  ];
807
- var DescribeSNOMEDCTInferenceJob = [
807
+ var DescribeSNOMEDCTInferenceJob$ = [
808
808
  9,
809
809
  n0,
810
810
  _DSNOMEDCTIJ,
811
811
  0,
812
- () => DescribeSNOMEDCTInferenceJobRequest,
813
- () => DescribeSNOMEDCTInferenceJobResponse,
812
+ () => DescribeSNOMEDCTInferenceJobRequest$,
813
+ () => DescribeSNOMEDCTInferenceJobResponse$,
814
814
  ];
815
- var DetectEntities = [
815
+ var DetectEntities$ = [
816
816
  9,
817
817
  n0,
818
818
  _DE,
819
819
  0,
820
- () => DetectEntitiesRequest,
821
- () => DetectEntitiesResponse,
820
+ () => DetectEntitiesRequest$,
821
+ () => DetectEntitiesResponse$,
822
822
  ];
823
- var DetectEntitiesV2 = [
823
+ var DetectEntitiesV2$ = [
824
824
  9,
825
825
  n0,
826
826
  _DEV,
827
827
  0,
828
- () => DetectEntitiesV2Request,
829
- () => DetectEntitiesV2Response,
828
+ () => DetectEntitiesV2Request$,
829
+ () => DetectEntitiesV2Response$,
830
830
  ];
831
- var DetectPHI = [9, n0, _DPHI, 0, () => DetectPHIRequest, () => DetectPHIResponse];
832
- var InferICD10CM = [
831
+ var DetectPHI$ = [9, n0, _DPHI, 0, () => DetectPHIRequest$, () => DetectPHIResponse$];
832
+ var InferICD10CM$ = [
833
833
  9,
834
834
  n0,
835
835
  _IICDCM,
836
836
  0,
837
- () => InferICD10CMRequest,
838
- () => InferICD10CMResponse,
837
+ () => InferICD10CMRequest$,
838
+ () => InferICD10CMResponse$,
839
+ ];
840
+ var InferRxNorm$ = [
841
+ 9,
842
+ n0,
843
+ _IRN,
844
+ 0,
845
+ () => InferRxNormRequest$,
846
+ () => InferRxNormResponse$,
839
847
  ];
840
- var InferRxNorm = [9, n0, _IRN, 0, () => InferRxNormRequest, () => InferRxNormResponse];
841
- var InferSNOMEDCT = [
848
+ var InferSNOMEDCT$ = [
842
849
  9,
843
850
  n0,
844
851
  _ISNOMEDCT,
845
852
  0,
846
- () => InferSNOMEDCTRequest,
847
- () => InferSNOMEDCTResponse,
853
+ () => InferSNOMEDCTRequest$,
854
+ () => InferSNOMEDCTResponse$,
848
855
  ];
849
- var ListEntitiesDetectionV2Jobs = [
856
+ var ListEntitiesDetectionV2Jobs$ = [
850
857
  9,
851
858
  n0,
852
859
  _LEDVJ,
853
860
  0,
854
- () => ListEntitiesDetectionV2JobsRequest,
855
- () => ListEntitiesDetectionV2JobsResponse,
861
+ () => ListEntitiesDetectionV2JobsRequest$,
862
+ () => ListEntitiesDetectionV2JobsResponse$,
856
863
  ];
857
- var ListICD10CMInferenceJobs = [
864
+ var ListICD10CMInferenceJobs$ = [
858
865
  9,
859
866
  n0,
860
867
  _LICDCMIJ,
861
868
  0,
862
- () => ListICD10CMInferenceJobsRequest,
863
- () => ListICD10CMInferenceJobsResponse,
869
+ () => ListICD10CMInferenceJobsRequest$,
870
+ () => ListICD10CMInferenceJobsResponse$,
864
871
  ];
865
- var ListPHIDetectionJobs = [
872
+ var ListPHIDetectionJobs$ = [
866
873
  9,
867
874
  n0,
868
875
  _LPHIDJ,
869
876
  0,
870
- () => ListPHIDetectionJobsRequest,
871
- () => ListPHIDetectionJobsResponse,
877
+ () => ListPHIDetectionJobsRequest$,
878
+ () => ListPHIDetectionJobsResponse$,
872
879
  ];
873
- var ListRxNormInferenceJobs = [
880
+ var ListRxNormInferenceJobs$ = [
874
881
  9,
875
882
  n0,
876
883
  _LRNIJ,
877
884
  0,
878
- () => ListRxNormInferenceJobsRequest,
879
- () => ListRxNormInferenceJobsResponse,
885
+ () => ListRxNormInferenceJobsRequest$,
886
+ () => ListRxNormInferenceJobsResponse$,
880
887
  ];
881
- var ListSNOMEDCTInferenceJobs = [
888
+ var ListSNOMEDCTInferenceJobs$ = [
882
889
  9,
883
890
  n0,
884
891
  _LSNOMEDCTIJ,
885
892
  0,
886
- () => ListSNOMEDCTInferenceJobsRequest,
887
- () => ListSNOMEDCTInferenceJobsResponse,
893
+ () => ListSNOMEDCTInferenceJobsRequest$,
894
+ () => ListSNOMEDCTInferenceJobsResponse$,
888
895
  ];
889
- var StartEntitiesDetectionV2Job = [
896
+ var StartEntitiesDetectionV2Job$ = [
890
897
  9,
891
898
  n0,
892
899
  _SEDVJ,
893
900
  0,
894
- () => StartEntitiesDetectionV2JobRequest,
895
- () => StartEntitiesDetectionV2JobResponse,
901
+ () => StartEntitiesDetectionV2JobRequest$,
902
+ () => StartEntitiesDetectionV2JobResponse$,
896
903
  ];
897
- var StartICD10CMInferenceJob = [
904
+ var StartICD10CMInferenceJob$ = [
898
905
  9,
899
906
  n0,
900
907
  _SICDCMIJ,
901
908
  0,
902
- () => StartICD10CMInferenceJobRequest,
903
- () => StartICD10CMInferenceJobResponse,
909
+ () => StartICD10CMInferenceJobRequest$,
910
+ () => StartICD10CMInferenceJobResponse$,
904
911
  ];
905
- var StartPHIDetectionJob = [
912
+ var StartPHIDetectionJob$ = [
906
913
  9,
907
914
  n0,
908
915
  _SPHIDJ,
909
916
  0,
910
- () => StartPHIDetectionJobRequest,
911
- () => StartPHIDetectionJobResponse,
917
+ () => StartPHIDetectionJobRequest$,
918
+ () => StartPHIDetectionJobResponse$,
912
919
  ];
913
- var StartRxNormInferenceJob = [
920
+ var StartRxNormInferenceJob$ = [
914
921
  9,
915
922
  n0,
916
923
  _SRNIJ,
917
924
  0,
918
- () => StartRxNormInferenceJobRequest,
919
- () => StartRxNormInferenceJobResponse,
925
+ () => StartRxNormInferenceJobRequest$,
926
+ () => StartRxNormInferenceJobResponse$,
920
927
  ];
921
- var StartSNOMEDCTInferenceJob = [
928
+ var StartSNOMEDCTInferenceJob$ = [
922
929
  9,
923
930
  n0,
924
931
  _SSNOMEDCTIJ,
925
932
  0,
926
- () => StartSNOMEDCTInferenceJobRequest,
927
- () => StartSNOMEDCTInferenceJobResponse,
933
+ () => StartSNOMEDCTInferenceJobRequest$,
934
+ () => StartSNOMEDCTInferenceJobResponse$,
928
935
  ];
929
- var StopEntitiesDetectionV2Job = [
936
+ var StopEntitiesDetectionV2Job$ = [
930
937
  9,
931
938
  n0,
932
939
  _SEDVJt,
933
940
  0,
934
- () => StopEntitiesDetectionV2JobRequest,
935
- () => StopEntitiesDetectionV2JobResponse,
941
+ () => StopEntitiesDetectionV2JobRequest$,
942
+ () => StopEntitiesDetectionV2JobResponse$,
936
943
  ];
937
- var StopICD10CMInferenceJob = [
944
+ var StopICD10CMInferenceJob$ = [
938
945
  9,
939
946
  n0,
940
947
  _SICDCMIJt,
941
948
  0,
942
- () => StopICD10CMInferenceJobRequest,
943
- () => StopICD10CMInferenceJobResponse,
949
+ () => StopICD10CMInferenceJobRequest$,
950
+ () => StopICD10CMInferenceJobResponse$,
944
951
  ];
945
- var StopPHIDetectionJob = [
952
+ var StopPHIDetectionJob$ = [
946
953
  9,
947
954
  n0,
948
955
  _SPHIDJt,
949
956
  0,
950
- () => StopPHIDetectionJobRequest,
951
- () => StopPHIDetectionJobResponse,
957
+ () => StopPHIDetectionJobRequest$,
958
+ () => StopPHIDetectionJobResponse$,
952
959
  ];
953
- var StopRxNormInferenceJob = [
960
+ var StopRxNormInferenceJob$ = [
954
961
  9,
955
962
  n0,
956
963
  _SRNIJt,
957
964
  0,
958
- () => StopRxNormInferenceJobRequest,
959
- () => StopRxNormInferenceJobResponse,
965
+ () => StopRxNormInferenceJobRequest$,
966
+ () => StopRxNormInferenceJobResponse$,
960
967
  ];
961
- var StopSNOMEDCTInferenceJob = [
968
+ var StopSNOMEDCTInferenceJob$ = [
962
969
  9,
963
970
  n0,
964
971
  _SSNOMEDCTIJt,
965
972
  0,
966
- () => StopSNOMEDCTInferenceJobRequest,
967
- () => StopSNOMEDCTInferenceJobResponse,
973
+ () => StopSNOMEDCTInferenceJobRequest$,
974
+ () => StopSNOMEDCTInferenceJobResponse$,
968
975
  ];
969
976
 
970
977
  class DescribeEntitiesDetectionV2JobCommand extends smithyClient.Command
@@ -975,7 +982,7 @@ class DescribeEntitiesDetectionV2JobCommand extends smithyClient.Command
975
982
  })
976
983
  .s("ComprehendMedical_20181030", "DescribeEntitiesDetectionV2Job", {})
977
984
  .n("ComprehendMedicalClient", "DescribeEntitiesDetectionV2JobCommand")
978
- .sc(DescribeEntitiesDetectionV2Job)
985
+ .sc(DescribeEntitiesDetectionV2Job$)
979
986
  .build() {
980
987
  }
981
988
 
@@ -987,7 +994,7 @@ class DescribeICD10CMInferenceJobCommand extends smithyClient.Command
987
994
  })
988
995
  .s("ComprehendMedical_20181030", "DescribeICD10CMInferenceJob", {})
989
996
  .n("ComprehendMedicalClient", "DescribeICD10CMInferenceJobCommand")
990
- .sc(DescribeICD10CMInferenceJob)
997
+ .sc(DescribeICD10CMInferenceJob$)
991
998
  .build() {
992
999
  }
993
1000
 
@@ -999,7 +1006,7 @@ class DescribePHIDetectionJobCommand extends smithyClient.Command
999
1006
  })
1000
1007
  .s("ComprehendMedical_20181030", "DescribePHIDetectionJob", {})
1001
1008
  .n("ComprehendMedicalClient", "DescribePHIDetectionJobCommand")
1002
- .sc(DescribePHIDetectionJob)
1009
+ .sc(DescribePHIDetectionJob$)
1003
1010
  .build() {
1004
1011
  }
1005
1012
 
@@ -1011,7 +1018,7 @@ class DescribeRxNormInferenceJobCommand extends smithyClient.Command
1011
1018
  })
1012
1019
  .s("ComprehendMedical_20181030", "DescribeRxNormInferenceJob", {})
1013
1020
  .n("ComprehendMedicalClient", "DescribeRxNormInferenceJobCommand")
1014
- .sc(DescribeRxNormInferenceJob)
1021
+ .sc(DescribeRxNormInferenceJob$)
1015
1022
  .build() {
1016
1023
  }
1017
1024
 
@@ -1023,7 +1030,7 @@ class DescribeSNOMEDCTInferenceJobCommand extends smithyClient.Command
1023
1030
  })
1024
1031
  .s("ComprehendMedical_20181030", "DescribeSNOMEDCTInferenceJob", {})
1025
1032
  .n("ComprehendMedicalClient", "DescribeSNOMEDCTInferenceJobCommand")
1026
- .sc(DescribeSNOMEDCTInferenceJob)
1033
+ .sc(DescribeSNOMEDCTInferenceJob$)
1027
1034
  .build() {
1028
1035
  }
1029
1036
 
@@ -1035,7 +1042,7 @@ class DetectEntitiesCommand extends smithyClient.Command
1035
1042
  })
1036
1043
  .s("ComprehendMedical_20181030", "DetectEntities", {})
1037
1044
  .n("ComprehendMedicalClient", "DetectEntitiesCommand")
1038
- .sc(DetectEntities)
1045
+ .sc(DetectEntities$)
1039
1046
  .build() {
1040
1047
  }
1041
1048
 
@@ -1047,7 +1054,7 @@ class DetectEntitiesV2Command extends smithyClient.Command
1047
1054
  })
1048
1055
  .s("ComprehendMedical_20181030", "DetectEntitiesV2", {})
1049
1056
  .n("ComprehendMedicalClient", "DetectEntitiesV2Command")
1050
- .sc(DetectEntitiesV2)
1057
+ .sc(DetectEntitiesV2$)
1051
1058
  .build() {
1052
1059
  }
1053
1060
 
@@ -1059,7 +1066,7 @@ class DetectPHICommand extends smithyClient.Command
1059
1066
  })
1060
1067
  .s("ComprehendMedical_20181030", "DetectPHI", {})
1061
1068
  .n("ComprehendMedicalClient", "DetectPHICommand")
1062
- .sc(DetectPHI)
1069
+ .sc(DetectPHI$)
1063
1070
  .build() {
1064
1071
  }
1065
1072
 
@@ -1071,7 +1078,7 @@ class InferICD10CMCommand extends smithyClient.Command
1071
1078
  })
1072
1079
  .s("ComprehendMedical_20181030", "InferICD10CM", {})
1073
1080
  .n("ComprehendMedicalClient", "InferICD10CMCommand")
1074
- .sc(InferICD10CM)
1081
+ .sc(InferICD10CM$)
1075
1082
  .build() {
1076
1083
  }
1077
1084
 
@@ -1083,7 +1090,7 @@ class InferRxNormCommand extends smithyClient.Command
1083
1090
  })
1084
1091
  .s("ComprehendMedical_20181030", "InferRxNorm", {})
1085
1092
  .n("ComprehendMedicalClient", "InferRxNormCommand")
1086
- .sc(InferRxNorm)
1093
+ .sc(InferRxNorm$)
1087
1094
  .build() {
1088
1095
  }
1089
1096
 
@@ -1095,7 +1102,7 @@ class InferSNOMEDCTCommand extends smithyClient.Command
1095
1102
  })
1096
1103
  .s("ComprehendMedical_20181030", "InferSNOMEDCT", {})
1097
1104
  .n("ComprehendMedicalClient", "InferSNOMEDCTCommand")
1098
- .sc(InferSNOMEDCT)
1105
+ .sc(InferSNOMEDCT$)
1099
1106
  .build() {
1100
1107
  }
1101
1108
 
@@ -1107,7 +1114,7 @@ class ListEntitiesDetectionV2JobsCommand extends smithyClient.Command
1107
1114
  })
1108
1115
  .s("ComprehendMedical_20181030", "ListEntitiesDetectionV2Jobs", {})
1109
1116
  .n("ComprehendMedicalClient", "ListEntitiesDetectionV2JobsCommand")
1110
- .sc(ListEntitiesDetectionV2Jobs)
1117
+ .sc(ListEntitiesDetectionV2Jobs$)
1111
1118
  .build() {
1112
1119
  }
1113
1120
 
@@ -1119,7 +1126,7 @@ class ListICD10CMInferenceJobsCommand extends smithyClient.Command
1119
1126
  })
1120
1127
  .s("ComprehendMedical_20181030", "ListICD10CMInferenceJobs", {})
1121
1128
  .n("ComprehendMedicalClient", "ListICD10CMInferenceJobsCommand")
1122
- .sc(ListICD10CMInferenceJobs)
1129
+ .sc(ListICD10CMInferenceJobs$)
1123
1130
  .build() {
1124
1131
  }
1125
1132
 
@@ -1131,7 +1138,7 @@ class ListPHIDetectionJobsCommand extends smithyClient.Command
1131
1138
  })
1132
1139
  .s("ComprehendMedical_20181030", "ListPHIDetectionJobs", {})
1133
1140
  .n("ComprehendMedicalClient", "ListPHIDetectionJobsCommand")
1134
- .sc(ListPHIDetectionJobs)
1141
+ .sc(ListPHIDetectionJobs$)
1135
1142
  .build() {
1136
1143
  }
1137
1144
 
@@ -1143,7 +1150,7 @@ class ListRxNormInferenceJobsCommand extends smithyClient.Command
1143
1150
  })
1144
1151
  .s("ComprehendMedical_20181030", "ListRxNormInferenceJobs", {})
1145
1152
  .n("ComprehendMedicalClient", "ListRxNormInferenceJobsCommand")
1146
- .sc(ListRxNormInferenceJobs)
1153
+ .sc(ListRxNormInferenceJobs$)
1147
1154
  .build() {
1148
1155
  }
1149
1156
 
@@ -1155,7 +1162,7 @@ class ListSNOMEDCTInferenceJobsCommand extends smithyClient.Command
1155
1162
  })
1156
1163
  .s("ComprehendMedical_20181030", "ListSNOMEDCTInferenceJobs", {})
1157
1164
  .n("ComprehendMedicalClient", "ListSNOMEDCTInferenceJobsCommand")
1158
- .sc(ListSNOMEDCTInferenceJobs)
1165
+ .sc(ListSNOMEDCTInferenceJobs$)
1159
1166
  .build() {
1160
1167
  }
1161
1168
 
@@ -1167,7 +1174,7 @@ class StartEntitiesDetectionV2JobCommand extends smithyClient.Command
1167
1174
  })
1168
1175
  .s("ComprehendMedical_20181030", "StartEntitiesDetectionV2Job", {})
1169
1176
  .n("ComprehendMedicalClient", "StartEntitiesDetectionV2JobCommand")
1170
- .sc(StartEntitiesDetectionV2Job)
1177
+ .sc(StartEntitiesDetectionV2Job$)
1171
1178
  .build() {
1172
1179
  }
1173
1180
 
@@ -1179,7 +1186,7 @@ class StartICD10CMInferenceJobCommand extends smithyClient.Command
1179
1186
  })
1180
1187
  .s("ComprehendMedical_20181030", "StartICD10CMInferenceJob", {})
1181
1188
  .n("ComprehendMedicalClient", "StartICD10CMInferenceJobCommand")
1182
- .sc(StartICD10CMInferenceJob)
1189
+ .sc(StartICD10CMInferenceJob$)
1183
1190
  .build() {
1184
1191
  }
1185
1192
 
@@ -1191,7 +1198,7 @@ class StartPHIDetectionJobCommand extends smithyClient.Command
1191
1198
  })
1192
1199
  .s("ComprehendMedical_20181030", "StartPHIDetectionJob", {})
1193
1200
  .n("ComprehendMedicalClient", "StartPHIDetectionJobCommand")
1194
- .sc(StartPHIDetectionJob)
1201
+ .sc(StartPHIDetectionJob$)
1195
1202
  .build() {
1196
1203
  }
1197
1204
 
@@ -1203,7 +1210,7 @@ class StartRxNormInferenceJobCommand extends smithyClient.Command
1203
1210
  })
1204
1211
  .s("ComprehendMedical_20181030", "StartRxNormInferenceJob", {})
1205
1212
  .n("ComprehendMedicalClient", "StartRxNormInferenceJobCommand")
1206
- .sc(StartRxNormInferenceJob)
1213
+ .sc(StartRxNormInferenceJob$)
1207
1214
  .build() {
1208
1215
  }
1209
1216
 
@@ -1215,7 +1222,7 @@ class StartSNOMEDCTInferenceJobCommand extends smithyClient.Command
1215
1222
  })
1216
1223
  .s("ComprehendMedical_20181030", "StartSNOMEDCTInferenceJob", {})
1217
1224
  .n("ComprehendMedicalClient", "StartSNOMEDCTInferenceJobCommand")
1218
- .sc(StartSNOMEDCTInferenceJob)
1225
+ .sc(StartSNOMEDCTInferenceJob$)
1219
1226
  .build() {
1220
1227
  }
1221
1228
 
@@ -1227,7 +1234,7 @@ class StopEntitiesDetectionV2JobCommand extends smithyClient.Command
1227
1234
  })
1228
1235
  .s("ComprehendMedical_20181030", "StopEntitiesDetectionV2Job", {})
1229
1236
  .n("ComprehendMedicalClient", "StopEntitiesDetectionV2JobCommand")
1230
- .sc(StopEntitiesDetectionV2Job)
1237
+ .sc(StopEntitiesDetectionV2Job$)
1231
1238
  .build() {
1232
1239
  }
1233
1240
 
@@ -1239,7 +1246,7 @@ class StopICD10CMInferenceJobCommand extends smithyClient.Command
1239
1246
  })
1240
1247
  .s("ComprehendMedical_20181030", "StopICD10CMInferenceJob", {})
1241
1248
  .n("ComprehendMedicalClient", "StopICD10CMInferenceJobCommand")
1242
- .sc(StopICD10CMInferenceJob)
1249
+ .sc(StopICD10CMInferenceJob$)
1243
1250
  .build() {
1244
1251
  }
1245
1252
 
@@ -1251,7 +1258,7 @@ class StopPHIDetectionJobCommand extends smithyClient.Command
1251
1258
  })
1252
1259
  .s("ComprehendMedical_20181030", "StopPHIDetectionJob", {})
1253
1260
  .n("ComprehendMedicalClient", "StopPHIDetectionJobCommand")
1254
- .sc(StopPHIDetectionJob)
1261
+ .sc(StopPHIDetectionJob$)
1255
1262
  .build() {
1256
1263
  }
1257
1264
 
@@ -1263,7 +1270,7 @@ class StopRxNormInferenceJobCommand extends smithyClient.Command
1263
1270
  })
1264
1271
  .s("ComprehendMedical_20181030", "StopRxNormInferenceJob", {})
1265
1272
  .n("ComprehendMedicalClient", "StopRxNormInferenceJobCommand")
1266
- .sc(StopRxNormInferenceJob)
1273
+ .sc(StopRxNormInferenceJob$)
1267
1274
  .build() {
1268
1275
  }
1269
1276
 
@@ -1275,7 +1282,7 @@ class StopSNOMEDCTInferenceJobCommand extends smithyClient.Command
1275
1282
  })
1276
1283
  .s("ComprehendMedical_20181030", "StopSNOMEDCTInferenceJob", {})
1277
1284
  .n("ComprehendMedicalClient", "StopSNOMEDCTInferenceJobCommand")
1278
- .sc(StopSNOMEDCTInferenceJob)
1285
+ .sc(StopSNOMEDCTInferenceJob$)
1279
1286
  .build() {
1280
1287
  }
1281
1288
 
@@ -1512,60 +1519,169 @@ Object.defineProperty(exports, "__Client", {
1512
1519
  enumerable: true,
1513
1520
  get: function () { return smithyClient.Client; }
1514
1521
  });
1522
+ exports.Attribute$ = Attribute$;
1515
1523
  exports.AttributeName = AttributeName;
1524
+ exports.Characters$ = Characters$;
1516
1525
  exports.ComprehendMedical = ComprehendMedical;
1526
+ exports.ComprehendMedicalAsyncJobFilter$ = ComprehendMedicalAsyncJobFilter$;
1527
+ exports.ComprehendMedicalAsyncJobProperties$ = ComprehendMedicalAsyncJobProperties$;
1517
1528
  exports.ComprehendMedicalClient = ComprehendMedicalClient;
1518
- exports.ComprehendMedicalServiceException = ComprehendMedicalServiceException$1;
1529
+ exports.ComprehendMedicalServiceException = ComprehendMedicalServiceException;
1530
+ exports.ComprehendMedicalServiceException$ = ComprehendMedicalServiceException$;
1531
+ exports.DescribeEntitiesDetectionV2Job$ = DescribeEntitiesDetectionV2Job$;
1519
1532
  exports.DescribeEntitiesDetectionV2JobCommand = DescribeEntitiesDetectionV2JobCommand;
1533
+ exports.DescribeEntitiesDetectionV2JobRequest$ = DescribeEntitiesDetectionV2JobRequest$;
1534
+ exports.DescribeEntitiesDetectionV2JobResponse$ = DescribeEntitiesDetectionV2JobResponse$;
1535
+ exports.DescribeICD10CMInferenceJob$ = DescribeICD10CMInferenceJob$;
1520
1536
  exports.DescribeICD10CMInferenceJobCommand = DescribeICD10CMInferenceJobCommand;
1537
+ exports.DescribeICD10CMInferenceJobRequest$ = DescribeICD10CMInferenceJobRequest$;
1538
+ exports.DescribeICD10CMInferenceJobResponse$ = DescribeICD10CMInferenceJobResponse$;
1539
+ exports.DescribePHIDetectionJob$ = DescribePHIDetectionJob$;
1521
1540
  exports.DescribePHIDetectionJobCommand = DescribePHIDetectionJobCommand;
1541
+ exports.DescribePHIDetectionJobRequest$ = DescribePHIDetectionJobRequest$;
1542
+ exports.DescribePHIDetectionJobResponse$ = DescribePHIDetectionJobResponse$;
1543
+ exports.DescribeRxNormInferenceJob$ = DescribeRxNormInferenceJob$;
1522
1544
  exports.DescribeRxNormInferenceJobCommand = DescribeRxNormInferenceJobCommand;
1545
+ exports.DescribeRxNormInferenceJobRequest$ = DescribeRxNormInferenceJobRequest$;
1546
+ exports.DescribeRxNormInferenceJobResponse$ = DescribeRxNormInferenceJobResponse$;
1547
+ exports.DescribeSNOMEDCTInferenceJob$ = DescribeSNOMEDCTInferenceJob$;
1523
1548
  exports.DescribeSNOMEDCTInferenceJobCommand = DescribeSNOMEDCTInferenceJobCommand;
1549
+ exports.DescribeSNOMEDCTInferenceJobRequest$ = DescribeSNOMEDCTInferenceJobRequest$;
1550
+ exports.DescribeSNOMEDCTInferenceJobResponse$ = DescribeSNOMEDCTInferenceJobResponse$;
1551
+ exports.DetectEntities$ = DetectEntities$;
1524
1552
  exports.DetectEntitiesCommand = DetectEntitiesCommand;
1553
+ exports.DetectEntitiesRequest$ = DetectEntitiesRequest$;
1554
+ exports.DetectEntitiesResponse$ = DetectEntitiesResponse$;
1555
+ exports.DetectEntitiesV2$ = DetectEntitiesV2$;
1525
1556
  exports.DetectEntitiesV2Command = DetectEntitiesV2Command;
1557
+ exports.DetectEntitiesV2Request$ = DetectEntitiesV2Request$;
1558
+ exports.DetectEntitiesV2Response$ = DetectEntitiesV2Response$;
1559
+ exports.DetectPHI$ = DetectPHI$;
1526
1560
  exports.DetectPHICommand = DetectPHICommand;
1561
+ exports.DetectPHIRequest$ = DetectPHIRequest$;
1562
+ exports.DetectPHIResponse$ = DetectPHIResponse$;
1563
+ exports.Entity$ = Entity$;
1527
1564
  exports.EntitySubType = EntitySubType;
1528
1565
  exports.EntityType = EntityType;
1566
+ exports.ICD10CMAttribute$ = ICD10CMAttribute$;
1529
1567
  exports.ICD10CMAttributeType = ICD10CMAttributeType;
1568
+ exports.ICD10CMConcept$ = ICD10CMConcept$;
1569
+ exports.ICD10CMEntity$ = ICD10CMEntity$;
1530
1570
  exports.ICD10CMEntityCategory = ICD10CMEntityCategory;
1531
1571
  exports.ICD10CMEntityType = ICD10CMEntityType;
1532
1572
  exports.ICD10CMRelationshipType = ICD10CMRelationshipType;
1573
+ exports.ICD10CMTrait$ = ICD10CMTrait$;
1533
1574
  exports.ICD10CMTraitName = ICD10CMTraitName;
1575
+ exports.InferICD10CM$ = InferICD10CM$;
1534
1576
  exports.InferICD10CMCommand = InferICD10CMCommand;
1577
+ exports.InferICD10CMRequest$ = InferICD10CMRequest$;
1578
+ exports.InferICD10CMResponse$ = InferICD10CMResponse$;
1579
+ exports.InferRxNorm$ = InferRxNorm$;
1535
1580
  exports.InferRxNormCommand = InferRxNormCommand;
1581
+ exports.InferRxNormRequest$ = InferRxNormRequest$;
1582
+ exports.InferRxNormResponse$ = InferRxNormResponse$;
1583
+ exports.InferSNOMEDCT$ = InferSNOMEDCT$;
1536
1584
  exports.InferSNOMEDCTCommand = InferSNOMEDCTCommand;
1537
- exports.InternalServerException = InternalServerException$1;
1538
- exports.InvalidEncodingException = InvalidEncodingException$1;
1539
- exports.InvalidRequestException = InvalidRequestException$1;
1585
+ exports.InferSNOMEDCTRequest$ = InferSNOMEDCTRequest$;
1586
+ exports.InferSNOMEDCTResponse$ = InferSNOMEDCTResponse$;
1587
+ exports.InputDataConfig$ = InputDataConfig$;
1588
+ exports.InternalServerException = InternalServerException;
1589
+ exports.InternalServerException$ = InternalServerException$;
1590
+ exports.InvalidEncodingException = InvalidEncodingException;
1591
+ exports.InvalidEncodingException$ = InvalidEncodingException$;
1592
+ exports.InvalidRequestException = InvalidRequestException;
1593
+ exports.InvalidRequestException$ = InvalidRequestException$;
1540
1594
  exports.JobStatus = JobStatus;
1541
1595
  exports.LanguageCode = LanguageCode;
1596
+ exports.ListEntitiesDetectionV2Jobs$ = ListEntitiesDetectionV2Jobs$;
1542
1597
  exports.ListEntitiesDetectionV2JobsCommand = ListEntitiesDetectionV2JobsCommand;
1598
+ exports.ListEntitiesDetectionV2JobsRequest$ = ListEntitiesDetectionV2JobsRequest$;
1599
+ exports.ListEntitiesDetectionV2JobsResponse$ = ListEntitiesDetectionV2JobsResponse$;
1600
+ exports.ListICD10CMInferenceJobs$ = ListICD10CMInferenceJobs$;
1543
1601
  exports.ListICD10CMInferenceJobsCommand = ListICD10CMInferenceJobsCommand;
1602
+ exports.ListICD10CMInferenceJobsRequest$ = ListICD10CMInferenceJobsRequest$;
1603
+ exports.ListICD10CMInferenceJobsResponse$ = ListICD10CMInferenceJobsResponse$;
1604
+ exports.ListPHIDetectionJobs$ = ListPHIDetectionJobs$;
1544
1605
  exports.ListPHIDetectionJobsCommand = ListPHIDetectionJobsCommand;
1606
+ exports.ListPHIDetectionJobsRequest$ = ListPHIDetectionJobsRequest$;
1607
+ exports.ListPHIDetectionJobsResponse$ = ListPHIDetectionJobsResponse$;
1608
+ exports.ListRxNormInferenceJobs$ = ListRxNormInferenceJobs$;
1545
1609
  exports.ListRxNormInferenceJobsCommand = ListRxNormInferenceJobsCommand;
1610
+ exports.ListRxNormInferenceJobsRequest$ = ListRxNormInferenceJobsRequest$;
1611
+ exports.ListRxNormInferenceJobsResponse$ = ListRxNormInferenceJobsResponse$;
1612
+ exports.ListSNOMEDCTInferenceJobs$ = ListSNOMEDCTInferenceJobs$;
1546
1613
  exports.ListSNOMEDCTInferenceJobsCommand = ListSNOMEDCTInferenceJobsCommand;
1614
+ exports.ListSNOMEDCTInferenceJobsRequest$ = ListSNOMEDCTInferenceJobsRequest$;
1615
+ exports.ListSNOMEDCTInferenceJobsResponse$ = ListSNOMEDCTInferenceJobsResponse$;
1616
+ exports.OutputDataConfig$ = OutputDataConfig$;
1547
1617
  exports.RelationshipType = RelationshipType;
1548
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
1618
+ exports.ResourceNotFoundException = ResourceNotFoundException;
1619
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
1620
+ exports.RxNormAttribute$ = RxNormAttribute$;
1549
1621
  exports.RxNormAttributeType = RxNormAttributeType;
1622
+ exports.RxNormConcept$ = RxNormConcept$;
1623
+ exports.RxNormEntity$ = RxNormEntity$;
1550
1624
  exports.RxNormEntityCategory = RxNormEntityCategory;
1551
1625
  exports.RxNormEntityType = RxNormEntityType;
1626
+ exports.RxNormTrait$ = RxNormTrait$;
1552
1627
  exports.RxNormTraitName = RxNormTraitName;
1628
+ exports.SNOMEDCTAttribute$ = SNOMEDCTAttribute$;
1553
1629
  exports.SNOMEDCTAttributeType = SNOMEDCTAttributeType;
1630
+ exports.SNOMEDCTConcept$ = SNOMEDCTConcept$;
1631
+ exports.SNOMEDCTDetails$ = SNOMEDCTDetails$;
1632
+ exports.SNOMEDCTEntity$ = SNOMEDCTEntity$;
1554
1633
  exports.SNOMEDCTEntityCategory = SNOMEDCTEntityCategory;
1555
1634
  exports.SNOMEDCTEntityType = SNOMEDCTEntityType;
1556
1635
  exports.SNOMEDCTRelationshipType = SNOMEDCTRelationshipType;
1636
+ exports.SNOMEDCTTrait$ = SNOMEDCTTrait$;
1557
1637
  exports.SNOMEDCTTraitName = SNOMEDCTTraitName;
1558
- exports.ServiceUnavailableException = ServiceUnavailableException$1;
1638
+ exports.ServiceUnavailableException = ServiceUnavailableException;
1639
+ exports.ServiceUnavailableException$ = ServiceUnavailableException$;
1640
+ exports.StartEntitiesDetectionV2Job$ = StartEntitiesDetectionV2Job$;
1559
1641
  exports.StartEntitiesDetectionV2JobCommand = StartEntitiesDetectionV2JobCommand;
1642
+ exports.StartEntitiesDetectionV2JobRequest$ = StartEntitiesDetectionV2JobRequest$;
1643
+ exports.StartEntitiesDetectionV2JobResponse$ = StartEntitiesDetectionV2JobResponse$;
1644
+ exports.StartICD10CMInferenceJob$ = StartICD10CMInferenceJob$;
1560
1645
  exports.StartICD10CMInferenceJobCommand = StartICD10CMInferenceJobCommand;
1646
+ exports.StartICD10CMInferenceJobRequest$ = StartICD10CMInferenceJobRequest$;
1647
+ exports.StartICD10CMInferenceJobResponse$ = StartICD10CMInferenceJobResponse$;
1648
+ exports.StartPHIDetectionJob$ = StartPHIDetectionJob$;
1561
1649
  exports.StartPHIDetectionJobCommand = StartPHIDetectionJobCommand;
1650
+ exports.StartPHIDetectionJobRequest$ = StartPHIDetectionJobRequest$;
1651
+ exports.StartPHIDetectionJobResponse$ = StartPHIDetectionJobResponse$;
1652
+ exports.StartRxNormInferenceJob$ = StartRxNormInferenceJob$;
1562
1653
  exports.StartRxNormInferenceJobCommand = StartRxNormInferenceJobCommand;
1654
+ exports.StartRxNormInferenceJobRequest$ = StartRxNormInferenceJobRequest$;
1655
+ exports.StartRxNormInferenceJobResponse$ = StartRxNormInferenceJobResponse$;
1656
+ exports.StartSNOMEDCTInferenceJob$ = StartSNOMEDCTInferenceJob$;
1563
1657
  exports.StartSNOMEDCTInferenceJobCommand = StartSNOMEDCTInferenceJobCommand;
1658
+ exports.StartSNOMEDCTInferenceJobRequest$ = StartSNOMEDCTInferenceJobRequest$;
1659
+ exports.StartSNOMEDCTInferenceJobResponse$ = StartSNOMEDCTInferenceJobResponse$;
1660
+ exports.StopEntitiesDetectionV2Job$ = StopEntitiesDetectionV2Job$;
1564
1661
  exports.StopEntitiesDetectionV2JobCommand = StopEntitiesDetectionV2JobCommand;
1662
+ exports.StopEntitiesDetectionV2JobRequest$ = StopEntitiesDetectionV2JobRequest$;
1663
+ exports.StopEntitiesDetectionV2JobResponse$ = StopEntitiesDetectionV2JobResponse$;
1664
+ exports.StopICD10CMInferenceJob$ = StopICD10CMInferenceJob$;
1565
1665
  exports.StopICD10CMInferenceJobCommand = StopICD10CMInferenceJobCommand;
1666
+ exports.StopICD10CMInferenceJobRequest$ = StopICD10CMInferenceJobRequest$;
1667
+ exports.StopICD10CMInferenceJobResponse$ = StopICD10CMInferenceJobResponse$;
1668
+ exports.StopPHIDetectionJob$ = StopPHIDetectionJob$;
1566
1669
  exports.StopPHIDetectionJobCommand = StopPHIDetectionJobCommand;
1670
+ exports.StopPHIDetectionJobRequest$ = StopPHIDetectionJobRequest$;
1671
+ exports.StopPHIDetectionJobResponse$ = StopPHIDetectionJobResponse$;
1672
+ exports.StopRxNormInferenceJob$ = StopRxNormInferenceJob$;
1567
1673
  exports.StopRxNormInferenceJobCommand = StopRxNormInferenceJobCommand;
1674
+ exports.StopRxNormInferenceJobRequest$ = StopRxNormInferenceJobRequest$;
1675
+ exports.StopRxNormInferenceJobResponse$ = StopRxNormInferenceJobResponse$;
1676
+ exports.StopSNOMEDCTInferenceJob$ = StopSNOMEDCTInferenceJob$;
1568
1677
  exports.StopSNOMEDCTInferenceJobCommand = StopSNOMEDCTInferenceJobCommand;
1569
- exports.TextSizeLimitExceededException = TextSizeLimitExceededException$1;
1570
- exports.TooManyRequestsException = TooManyRequestsException$1;
1571
- exports.ValidationException = ValidationException$1;
1678
+ exports.StopSNOMEDCTInferenceJobRequest$ = StopSNOMEDCTInferenceJobRequest$;
1679
+ exports.StopSNOMEDCTInferenceJobResponse$ = StopSNOMEDCTInferenceJobResponse$;
1680
+ exports.TextSizeLimitExceededException = TextSizeLimitExceededException;
1681
+ exports.TextSizeLimitExceededException$ = TextSizeLimitExceededException$;
1682
+ exports.TooManyRequestsException = TooManyRequestsException;
1683
+ exports.TooManyRequestsException$ = TooManyRequestsException$;
1684
+ exports.Trait$ = Trait$;
1685
+ exports.UnmappedAttribute$ = UnmappedAttribute$;
1686
+ exports.ValidationException = ValidationException;
1687
+ exports.ValidationException$ = ValidationException$;