@aws-sdk/client-comprehendmedical 3.934.0 → 3.936.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 +193 -192
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +192 -0
- package/dist-es/models/errors.js +113 -0
- package/dist-es/models/models_0.js +1 -305
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +352 -0
- package/dist-types/models/errors.d.ts +114 -0
- package/dist-types/models/models_0.d.ts +1 -466
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +227 -0
- package/dist-types/ts3.4/models/errors.d.ts +66 -0
- package/dist-types/ts3.4/models/models_0.d.ts +22 -293
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,105 +1,29 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
readonly FREQUENCY: "FREQUENCY";
|
|
24
|
-
readonly NEGATIVE: "NEGATIVE";
|
|
25
|
-
readonly OVERLAP: "OVERLAP";
|
|
26
|
-
readonly QUALITY: "QUALITY";
|
|
27
|
-
readonly RATE: "RATE";
|
|
28
|
-
readonly ROUTE_OR_MODE: "ROUTE_OR_MODE";
|
|
29
|
-
readonly STRENGTH: "STRENGTH";
|
|
30
|
-
readonly SYSTEM_ORGAN_SITE: "SYSTEM_ORGAN_SITE";
|
|
31
|
-
readonly TEST_UNIT: "TEST_UNIT";
|
|
32
|
-
readonly TEST_UNITS: "TEST_UNITS";
|
|
33
|
-
readonly TEST_VALUE: "TEST_VALUE";
|
|
34
|
-
readonly USAGE: "USAGE";
|
|
35
|
-
readonly WITH_DOSAGE: "WITH_DOSAGE";
|
|
36
|
-
};
|
|
37
|
-
export type RelationshipType =
|
|
38
|
-
(typeof RelationshipType)[keyof typeof RelationshipType];
|
|
39
|
-
export declare const AttributeName: {
|
|
40
|
-
readonly DIAGNOSIS: "DIAGNOSIS";
|
|
41
|
-
readonly FUTURE: "FUTURE";
|
|
42
|
-
readonly HYPOTHETICAL: "HYPOTHETICAL";
|
|
43
|
-
readonly LOW_CONFIDENCE: "LOW_CONFIDENCE";
|
|
44
|
-
readonly NEGATION: "NEGATION";
|
|
45
|
-
readonly PAST_HISTORY: "PAST_HISTORY";
|
|
46
|
-
readonly PERTAINS_TO_FAMILY: "PERTAINS_TO_FAMILY";
|
|
47
|
-
readonly SIGN: "SIGN";
|
|
48
|
-
readonly SYMPTOM: "SYMPTOM";
|
|
49
|
-
};
|
|
50
|
-
export type AttributeName = (typeof AttributeName)[keyof typeof AttributeName];
|
|
1
|
+
import {
|
|
2
|
+
AttributeName,
|
|
3
|
+
EntitySubType,
|
|
4
|
+
EntityType,
|
|
5
|
+
ICD10CMAttributeType,
|
|
6
|
+
ICD10CMEntityCategory,
|
|
7
|
+
ICD10CMEntityType,
|
|
8
|
+
ICD10CMRelationshipType,
|
|
9
|
+
ICD10CMTraitName,
|
|
10
|
+
JobStatus,
|
|
11
|
+
LanguageCode,
|
|
12
|
+
RelationshipType,
|
|
13
|
+
RxNormAttributeType,
|
|
14
|
+
RxNormEntityCategory,
|
|
15
|
+
RxNormEntityType,
|
|
16
|
+
RxNormTraitName,
|
|
17
|
+
SNOMEDCTAttributeType,
|
|
18
|
+
SNOMEDCTEntityCategory,
|
|
19
|
+
SNOMEDCTEntityType,
|
|
20
|
+
SNOMEDCTRelationshipType,
|
|
21
|
+
SNOMEDCTTraitName,
|
|
22
|
+
} from "./enums";
|
|
51
23
|
export interface Trait {
|
|
52
24
|
Name?: AttributeName | undefined;
|
|
53
25
|
Score?: number | undefined;
|
|
54
26
|
}
|
|
55
|
-
export declare const EntitySubType: {
|
|
56
|
-
readonly ACUITY: "ACUITY";
|
|
57
|
-
readonly ADDRESS: "ADDRESS";
|
|
58
|
-
readonly AGE: "AGE";
|
|
59
|
-
readonly ALCOHOL_CONSUMPTION: "ALCOHOL_CONSUMPTION";
|
|
60
|
-
readonly ALLERGIES: "ALLERGIES";
|
|
61
|
-
readonly AMOUNT: "AMOUNT";
|
|
62
|
-
readonly BRAND_NAME: "BRAND_NAME";
|
|
63
|
-
readonly CONTACT_POINT: "CONTACT_POINT";
|
|
64
|
-
readonly DATE: "DATE";
|
|
65
|
-
readonly DIRECTION: "DIRECTION";
|
|
66
|
-
readonly DOSAGE: "DOSAGE";
|
|
67
|
-
readonly DURATION: "DURATION";
|
|
68
|
-
readonly DX_NAME: "DX_NAME";
|
|
69
|
-
readonly EMAIL: "EMAIL";
|
|
70
|
-
readonly FORM: "FORM";
|
|
71
|
-
readonly FREQUENCY: "FREQUENCY";
|
|
72
|
-
readonly GENDER: "GENDER";
|
|
73
|
-
readonly GENERIC_NAME: "GENERIC_NAME";
|
|
74
|
-
readonly ID: "ID";
|
|
75
|
-
readonly IDENTIFIER: "IDENTIFIER";
|
|
76
|
-
readonly NAME: "NAME";
|
|
77
|
-
readonly PHONE_OR_FAX: "PHONE_OR_FAX";
|
|
78
|
-
readonly PROCEDURE_NAME: "PROCEDURE_NAME";
|
|
79
|
-
readonly PROFESSION: "PROFESSION";
|
|
80
|
-
readonly QUALITY: "QUALITY";
|
|
81
|
-
readonly QUANTITY: "QUANTITY";
|
|
82
|
-
readonly RACE_ETHNICITY: "RACE_ETHNICITY";
|
|
83
|
-
readonly RATE: "RATE";
|
|
84
|
-
readonly REC_DRUG_USE: "REC_DRUG_USE";
|
|
85
|
-
readonly ROUTE_OR_MODE: "ROUTE_OR_MODE";
|
|
86
|
-
readonly STRENGTH: "STRENGTH";
|
|
87
|
-
readonly SYSTEM_ORGAN_SITE: "SYSTEM_ORGAN_SITE";
|
|
88
|
-
readonly TEST_NAME: "TEST_NAME";
|
|
89
|
-
readonly TEST_UNIT: "TEST_UNIT";
|
|
90
|
-
readonly TEST_UNITS: "TEST_UNITS";
|
|
91
|
-
readonly TEST_VALUE: "TEST_VALUE";
|
|
92
|
-
readonly TIME_EXPRESSION: "TIME_EXPRESSION";
|
|
93
|
-
readonly TIME_TO_DX_NAME: "TIME_TO_DX_NAME";
|
|
94
|
-
readonly TIME_TO_MEDICATION_NAME: "TIME_TO_MEDICATION_NAME";
|
|
95
|
-
readonly TIME_TO_PROCEDURE_NAME: "TIME_TO_PROCEDURE_NAME";
|
|
96
|
-
readonly TIME_TO_TEST_NAME: "TIME_TO_TEST_NAME";
|
|
97
|
-
readonly TIME_TO_TREATMENT_NAME: "TIME_TO_TREATMENT_NAME";
|
|
98
|
-
readonly TOBACCO_USE: "TOBACCO_USE";
|
|
99
|
-
readonly TREATMENT_NAME: "TREATMENT_NAME";
|
|
100
|
-
readonly URL: "URL";
|
|
101
|
-
};
|
|
102
|
-
export type EntitySubType = (typeof EntitySubType)[keyof typeof EntitySubType];
|
|
103
27
|
export interface Attribute {
|
|
104
28
|
Type?: EntitySubType | undefined;
|
|
105
29
|
Score?: number | undefined;
|
|
@@ -122,20 +46,6 @@ export interface InputDataConfig {
|
|
|
122
46
|
S3Bucket: string | undefined;
|
|
123
47
|
S3Key?: string | undefined;
|
|
124
48
|
}
|
|
125
|
-
export declare const JobStatus: {
|
|
126
|
-
readonly COMPLETED: "COMPLETED";
|
|
127
|
-
readonly FAILED: "FAILED";
|
|
128
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
129
|
-
readonly PARTIAL_SUCCESS: "PARTIAL_SUCCESS";
|
|
130
|
-
readonly STOPPED: "STOPPED";
|
|
131
|
-
readonly STOP_REQUESTED: "STOP_REQUESTED";
|
|
132
|
-
readonly SUBMITTED: "SUBMITTED";
|
|
133
|
-
};
|
|
134
|
-
export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
|
|
135
|
-
export declare const LanguageCode: {
|
|
136
|
-
readonly EN: "en";
|
|
137
|
-
};
|
|
138
|
-
export type LanguageCode = (typeof LanguageCode)[keyof typeof LanguageCode];
|
|
139
49
|
export interface OutputDataConfig {
|
|
140
50
|
S3Bucket: string | undefined;
|
|
141
51
|
S3Key?: string | undefined;
|
|
@@ -161,38 +71,6 @@ export interface DescribeEntitiesDetectionV2JobResponse {
|
|
|
161
71
|
| ComprehendMedicalAsyncJobProperties
|
|
162
72
|
| undefined;
|
|
163
73
|
}
|
|
164
|
-
export declare class InternalServerException extends __BaseException {
|
|
165
|
-
readonly name: "InternalServerException";
|
|
166
|
-
readonly $fault: "server";
|
|
167
|
-
Message?: string | undefined;
|
|
168
|
-
constructor(
|
|
169
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
170
|
-
);
|
|
171
|
-
}
|
|
172
|
-
export declare class InvalidRequestException extends __BaseException {
|
|
173
|
-
readonly name: "InvalidRequestException";
|
|
174
|
-
readonly $fault: "client";
|
|
175
|
-
Message?: string | undefined;
|
|
176
|
-
constructor(
|
|
177
|
-
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
178
|
-
);
|
|
179
|
-
}
|
|
180
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
181
|
-
readonly name: "ResourceNotFoundException";
|
|
182
|
-
readonly $fault: "client";
|
|
183
|
-
Message?: string | undefined;
|
|
184
|
-
constructor(
|
|
185
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
186
|
-
);
|
|
187
|
-
}
|
|
188
|
-
export declare class TooManyRequestsException extends __BaseException {
|
|
189
|
-
readonly name: "TooManyRequestsException";
|
|
190
|
-
readonly $fault: "client";
|
|
191
|
-
Message?: string | undefined;
|
|
192
|
-
constructor(
|
|
193
|
-
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
194
|
-
);
|
|
195
|
-
}
|
|
196
74
|
export interface DescribeICD10CMInferenceJobRequest {
|
|
197
75
|
JobId: string | undefined;
|
|
198
76
|
}
|
|
@@ -249,30 +127,6 @@ export interface DetectEntitiesResponse {
|
|
|
249
127
|
PaginationToken?: string | undefined;
|
|
250
128
|
ModelVersion: string | undefined;
|
|
251
129
|
}
|
|
252
|
-
export declare class InvalidEncodingException extends __BaseException {
|
|
253
|
-
readonly name: "InvalidEncodingException";
|
|
254
|
-
readonly $fault: "client";
|
|
255
|
-
Message?: string | undefined;
|
|
256
|
-
constructor(
|
|
257
|
-
opts: __ExceptionOptionType<InvalidEncodingException, __BaseException>
|
|
258
|
-
);
|
|
259
|
-
}
|
|
260
|
-
export declare class ServiceUnavailableException extends __BaseException {
|
|
261
|
-
readonly name: "ServiceUnavailableException";
|
|
262
|
-
readonly $fault: "server";
|
|
263
|
-
Message?: string | undefined;
|
|
264
|
-
constructor(
|
|
265
|
-
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
266
|
-
);
|
|
267
|
-
}
|
|
268
|
-
export declare class TextSizeLimitExceededException extends __BaseException {
|
|
269
|
-
readonly name: "TextSizeLimitExceededException";
|
|
270
|
-
readonly $fault: "client";
|
|
271
|
-
Message?: string | undefined;
|
|
272
|
-
constructor(
|
|
273
|
-
opts: __ExceptionOptionType<TextSizeLimitExceededException, __BaseException>
|
|
274
|
-
);
|
|
275
|
-
}
|
|
276
130
|
export interface DetectEntitiesV2Request {
|
|
277
131
|
Text: string | undefined;
|
|
278
132
|
}
|
|
@@ -293,45 +147,10 @@ export interface DetectPHIResponse {
|
|
|
293
147
|
export interface InferICD10CMRequest {
|
|
294
148
|
Text: string | undefined;
|
|
295
149
|
}
|
|
296
|
-
export declare const ICD10CMEntityType: {
|
|
297
|
-
readonly DX_NAME: "DX_NAME";
|
|
298
|
-
readonly TIME_EXPRESSION: "TIME_EXPRESSION";
|
|
299
|
-
};
|
|
300
|
-
export type ICD10CMEntityType =
|
|
301
|
-
(typeof ICD10CMEntityType)[keyof typeof ICD10CMEntityType];
|
|
302
|
-
export declare const ICD10CMRelationshipType: {
|
|
303
|
-
readonly OVERLAP: "OVERLAP";
|
|
304
|
-
readonly QUALITY: "QUALITY";
|
|
305
|
-
readonly SYSTEM_ORGAN_SITE: "SYSTEM_ORGAN_SITE";
|
|
306
|
-
};
|
|
307
|
-
export type ICD10CMRelationshipType =
|
|
308
|
-
(typeof ICD10CMRelationshipType)[keyof typeof ICD10CMRelationshipType];
|
|
309
|
-
export declare const ICD10CMTraitName: {
|
|
310
|
-
readonly DIAGNOSIS: "DIAGNOSIS";
|
|
311
|
-
readonly HYPOTHETICAL: "HYPOTHETICAL";
|
|
312
|
-
readonly LOW_CONFIDENCE: "LOW_CONFIDENCE";
|
|
313
|
-
readonly NEGATION: "NEGATION";
|
|
314
|
-
readonly PERTAINS_TO_FAMILY: "PERTAINS_TO_FAMILY";
|
|
315
|
-
readonly SIGN: "SIGN";
|
|
316
|
-
readonly SYMPTOM: "SYMPTOM";
|
|
317
|
-
};
|
|
318
|
-
export type ICD10CMTraitName =
|
|
319
|
-
(typeof ICD10CMTraitName)[keyof typeof ICD10CMTraitName];
|
|
320
150
|
export interface ICD10CMTrait {
|
|
321
151
|
Name?: ICD10CMTraitName | undefined;
|
|
322
152
|
Score?: number | undefined;
|
|
323
153
|
}
|
|
324
|
-
export declare const ICD10CMAttributeType: {
|
|
325
|
-
readonly ACUITY: "ACUITY";
|
|
326
|
-
readonly DIRECTION: "DIRECTION";
|
|
327
|
-
readonly QUALITY: "QUALITY";
|
|
328
|
-
readonly QUANTITY: "QUANTITY";
|
|
329
|
-
readonly SYSTEM_ORGAN_SITE: "SYSTEM_ORGAN_SITE";
|
|
330
|
-
readonly TIME_EXPRESSION: "TIME_EXPRESSION";
|
|
331
|
-
readonly TIME_TO_DX_NAME: "TIME_TO_DX_NAME";
|
|
332
|
-
};
|
|
333
|
-
export type ICD10CMAttributeType =
|
|
334
|
-
(typeof ICD10CMAttributeType)[keyof typeof ICD10CMAttributeType];
|
|
335
154
|
export interface ICD10CMAttribute {
|
|
336
155
|
Type?: ICD10CMAttributeType | undefined;
|
|
337
156
|
Score?: number | undefined;
|
|
@@ -344,11 +163,6 @@ export interface ICD10CMAttribute {
|
|
|
344
163
|
Category?: ICD10CMEntityType | undefined;
|
|
345
164
|
RelationshipType?: ICD10CMRelationshipType | undefined;
|
|
346
165
|
}
|
|
347
|
-
export declare const ICD10CMEntityCategory: {
|
|
348
|
-
readonly MEDICAL_CONDITION: "MEDICAL_CONDITION";
|
|
349
|
-
};
|
|
350
|
-
export type ICD10CMEntityCategory =
|
|
351
|
-
(typeof ICD10CMEntityCategory)[keyof typeof ICD10CMEntityCategory];
|
|
352
166
|
export interface ICD10CMConcept {
|
|
353
167
|
Description?: string | undefined;
|
|
354
168
|
Code?: string | undefined;
|
|
@@ -374,27 +188,10 @@ export interface InferICD10CMResponse {
|
|
|
374
188
|
export interface InferRxNormRequest {
|
|
375
189
|
Text: string | undefined;
|
|
376
190
|
}
|
|
377
|
-
export declare const RxNormTraitName: {
|
|
378
|
-
readonly NEGATION: "NEGATION";
|
|
379
|
-
readonly PAST_HISTORY: "PAST_HISTORY";
|
|
380
|
-
};
|
|
381
|
-
export type RxNormTraitName =
|
|
382
|
-
(typeof RxNormTraitName)[keyof typeof RxNormTraitName];
|
|
383
191
|
export interface RxNormTrait {
|
|
384
192
|
Name?: RxNormTraitName | undefined;
|
|
385
193
|
Score?: number | undefined;
|
|
386
194
|
}
|
|
387
|
-
export declare const RxNormAttributeType: {
|
|
388
|
-
readonly DOSAGE: "DOSAGE";
|
|
389
|
-
readonly DURATION: "DURATION";
|
|
390
|
-
readonly FORM: "FORM";
|
|
391
|
-
readonly FREQUENCY: "FREQUENCY";
|
|
392
|
-
readonly RATE: "RATE";
|
|
393
|
-
readonly ROUTE_OR_MODE: "ROUTE_OR_MODE";
|
|
394
|
-
readonly STRENGTH: "STRENGTH";
|
|
395
|
-
};
|
|
396
|
-
export type RxNormAttributeType =
|
|
397
|
-
(typeof RxNormAttributeType)[keyof typeof RxNormAttributeType];
|
|
398
195
|
export interface RxNormAttribute {
|
|
399
196
|
Type?: RxNormAttributeType | undefined;
|
|
400
197
|
Score?: number | undefined;
|
|
@@ -405,22 +202,11 @@ export interface RxNormAttribute {
|
|
|
405
202
|
Text?: string | undefined;
|
|
406
203
|
Traits?: RxNormTrait[] | undefined;
|
|
407
204
|
}
|
|
408
|
-
export declare const RxNormEntityCategory: {
|
|
409
|
-
readonly MEDICATION: "MEDICATION";
|
|
410
|
-
};
|
|
411
|
-
export type RxNormEntityCategory =
|
|
412
|
-
(typeof RxNormEntityCategory)[keyof typeof RxNormEntityCategory];
|
|
413
205
|
export interface RxNormConcept {
|
|
414
206
|
Description?: string | undefined;
|
|
415
207
|
Code?: string | undefined;
|
|
416
208
|
Score?: number | undefined;
|
|
417
209
|
}
|
|
418
|
-
export declare const RxNormEntityType: {
|
|
419
|
-
readonly BRAND_NAME: "BRAND_NAME";
|
|
420
|
-
readonly GENERIC_NAME: "GENERIC_NAME";
|
|
421
|
-
};
|
|
422
|
-
export type RxNormEntityType =
|
|
423
|
-
(typeof RxNormEntityType)[keyof typeof RxNormEntityType];
|
|
424
210
|
export interface RxNormEntity {
|
|
425
211
|
Id?: number | undefined;
|
|
426
212
|
Text?: string | undefined;
|
|
@@ -441,56 +227,15 @@ export interface InferRxNormResponse {
|
|
|
441
227
|
export interface InferSNOMEDCTRequest {
|
|
442
228
|
Text: string | undefined;
|
|
443
229
|
}
|
|
444
|
-
export declare const SNOMEDCTEntityCategory: {
|
|
445
|
-
readonly ANATOMY: "ANATOMY";
|
|
446
|
-
readonly MEDICAL_CONDITION: "MEDICAL_CONDITION";
|
|
447
|
-
readonly TEST_TREATMENT_PROCEDURE: "TEST_TREATMENT_PROCEDURE";
|
|
448
|
-
};
|
|
449
|
-
export type SNOMEDCTEntityCategory =
|
|
450
|
-
(typeof SNOMEDCTEntityCategory)[keyof typeof SNOMEDCTEntityCategory];
|
|
451
|
-
export declare const SNOMEDCTRelationshipType: {
|
|
452
|
-
readonly ACUITY: "ACUITY";
|
|
453
|
-
readonly DIRECTION: "DIRECTION";
|
|
454
|
-
readonly QUALITY: "QUALITY";
|
|
455
|
-
readonly SYSTEM_ORGAN_SITE: "SYSTEM_ORGAN_SITE";
|
|
456
|
-
readonly TEST_UNIT: "TEST_UNIT";
|
|
457
|
-
readonly TEST_UNITS: "TEST_UNITS";
|
|
458
|
-
readonly TEST_VALUE: "TEST_VALUE";
|
|
459
|
-
};
|
|
460
|
-
export type SNOMEDCTRelationshipType =
|
|
461
|
-
(typeof SNOMEDCTRelationshipType)[keyof typeof SNOMEDCTRelationshipType];
|
|
462
230
|
export interface SNOMEDCTConcept {
|
|
463
231
|
Description?: string | undefined;
|
|
464
232
|
Code?: string | undefined;
|
|
465
233
|
Score?: number | undefined;
|
|
466
234
|
}
|
|
467
|
-
export declare const SNOMEDCTTraitName: {
|
|
468
|
-
readonly DIAGNOSIS: "DIAGNOSIS";
|
|
469
|
-
readonly FUTURE: "FUTURE";
|
|
470
|
-
readonly HYPOTHETICAL: "HYPOTHETICAL";
|
|
471
|
-
readonly LOW_CONFIDENCE: "LOW_CONFIDENCE";
|
|
472
|
-
readonly NEGATION: "NEGATION";
|
|
473
|
-
readonly PAST_HISTORY: "PAST_HISTORY";
|
|
474
|
-
readonly PERTAINS_TO_FAMILY: "PERTAINS_TO_FAMILY";
|
|
475
|
-
readonly SIGN: "SIGN";
|
|
476
|
-
readonly SYMPTOM: "SYMPTOM";
|
|
477
|
-
};
|
|
478
|
-
export type SNOMEDCTTraitName =
|
|
479
|
-
(typeof SNOMEDCTTraitName)[keyof typeof SNOMEDCTTraitName];
|
|
480
235
|
export interface SNOMEDCTTrait {
|
|
481
236
|
Name?: SNOMEDCTTraitName | undefined;
|
|
482
237
|
Score?: number | undefined;
|
|
483
238
|
}
|
|
484
|
-
export declare const SNOMEDCTAttributeType: {
|
|
485
|
-
readonly ACUITY: "ACUITY";
|
|
486
|
-
readonly DIRECTION: "DIRECTION";
|
|
487
|
-
readonly QUALITY: "QUALITY";
|
|
488
|
-
readonly SYSTEM_ORGAN_SITE: "SYSTEM_ORGAN_SITE";
|
|
489
|
-
readonly TEST_UNIT: "TEST_UNIT";
|
|
490
|
-
readonly TEST_VALUE: "TEST_VALUE";
|
|
491
|
-
};
|
|
492
|
-
export type SNOMEDCTAttributeType =
|
|
493
|
-
(typeof SNOMEDCTAttributeType)[keyof typeof SNOMEDCTAttributeType];
|
|
494
239
|
export interface SNOMEDCTAttribute {
|
|
495
240
|
Category?: SNOMEDCTEntityCategory | undefined;
|
|
496
241
|
Type?: SNOMEDCTAttributeType | undefined;
|
|
@@ -504,14 +249,6 @@ export interface SNOMEDCTAttribute {
|
|
|
504
249
|
Traits?: SNOMEDCTTrait[] | undefined;
|
|
505
250
|
SNOMEDCTConcepts?: SNOMEDCTConcept[] | undefined;
|
|
506
251
|
}
|
|
507
|
-
export declare const SNOMEDCTEntityType: {
|
|
508
|
-
readonly DX_NAME: "DX_NAME";
|
|
509
|
-
readonly PROCEDURE_NAME: "PROCEDURE_NAME";
|
|
510
|
-
readonly TEST_NAME: "TEST_NAME";
|
|
511
|
-
readonly TREATMENT_NAME: "TREATMENT_NAME";
|
|
512
|
-
};
|
|
513
|
-
export type SNOMEDCTEntityType =
|
|
514
|
-
(typeof SNOMEDCTEntityType)[keyof typeof SNOMEDCTEntityType];
|
|
515
252
|
export interface SNOMEDCTEntity {
|
|
516
253
|
Id?: number | undefined;
|
|
517
254
|
Text?: string | undefined;
|
|
@@ -553,14 +290,6 @@ export interface ListEntitiesDetectionV2JobsResponse {
|
|
|
553
290
|
| undefined;
|
|
554
291
|
NextToken?: string | undefined;
|
|
555
292
|
}
|
|
556
|
-
export declare class ValidationException extends __BaseException {
|
|
557
|
-
readonly name: "ValidationException";
|
|
558
|
-
readonly $fault: "client";
|
|
559
|
-
Message?: string | undefined;
|
|
560
|
-
constructor(
|
|
561
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
562
|
-
);
|
|
563
|
-
}
|
|
564
293
|
export interface ListICD10CMInferenceJobsRequest {
|
|
565
294
|
Filter?: ComprehendMedicalAsyncJobFilter | undefined;
|
|
566
295
|
NextToken?: string | undefined;
|
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.936.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,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.936.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.936.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.936.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
30
|
+
"@aws-sdk/types": "3.936.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.936.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.936.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|