@aws-sdk/client-transcribe-streaming 3.823.0 → 3.824.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 +6 -1
- package/dist-es/models/models_0.js +5 -0
- package/dist-types/commands/GetMedicalScribeStreamCommand.d.ts +1 -1
- package/dist-types/commands/StartMedicalScribeStreamCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +36 -15
- package/dist-types/ts3.4/models/models_0.d.ts +5 -0
- package/package.json +1 -1
package/dist-cjs/index.js
CHANGED
|
@@ -416,8 +416,13 @@ var ClinicalNoteGenerationStatus = {
|
|
|
416
416
|
IN_PROGRESS: "IN_PROGRESS"
|
|
417
417
|
};
|
|
418
418
|
var MedicalScribeNoteTemplate = {
|
|
419
|
+
BEHAVIORAL_SOAP: "BEHAVIORAL_SOAP",
|
|
420
|
+
BIRP: "BIRP",
|
|
421
|
+
DAP: "DAP",
|
|
419
422
|
GIRPP: "GIRPP",
|
|
420
|
-
HISTORY_AND_PHYSICAL: "HISTORY_AND_PHYSICAL"
|
|
423
|
+
HISTORY_AND_PHYSICAL: "HISTORY_AND_PHYSICAL",
|
|
424
|
+
PHYSICAL_SOAP: "PHYSICAL_SOAP",
|
|
425
|
+
SIRP: "SIRP"
|
|
421
426
|
};
|
|
422
427
|
var ContentIdentificationType = {
|
|
423
428
|
PII: "PII"
|
|
@@ -134,8 +134,13 @@ export const ClinicalNoteGenerationStatus = {
|
|
|
134
134
|
IN_PROGRESS: "IN_PROGRESS",
|
|
135
135
|
};
|
|
136
136
|
export const MedicalScribeNoteTemplate = {
|
|
137
|
+
BEHAVIORAL_SOAP: "BEHAVIORAL_SOAP",
|
|
138
|
+
BIRP: "BIRP",
|
|
139
|
+
DAP: "DAP",
|
|
137
140
|
GIRPP: "GIRPP",
|
|
138
141
|
HISTORY_AND_PHYSICAL: "HISTORY_AND_PHYSICAL",
|
|
142
|
+
PHYSICAL_SOAP: "PHYSICAL_SOAP",
|
|
143
|
+
SIRP: "SIRP",
|
|
139
144
|
};
|
|
140
145
|
export const ContentIdentificationType = {
|
|
141
146
|
PII: "PII",
|
|
@@ -70,7 +70,7 @@ declare const GetMedicalScribeStreamCommand_base: {
|
|
|
70
70
|
* // PostStreamAnalyticsSettings: { // MedicalScribePostStreamAnalyticsSettings
|
|
71
71
|
* // ClinicalNoteGenerationSettings: { // ClinicalNoteGenerationSettings
|
|
72
72
|
* // OutputBucketName: "STRING_VALUE", // required
|
|
73
|
-
* // NoteTemplate: "HISTORY_AND_PHYSICAL" || "GIRPP",
|
|
73
|
+
* // NoteTemplate: "HISTORY_AND_PHYSICAL" || "GIRPP" || "DAP" || "SIRP" || "BIRP" || "BEHAVIORAL_SOAP" || "PHYSICAL_SOAP",
|
|
74
74
|
* // },
|
|
75
75
|
* // },
|
|
76
76
|
* // PostStreamAnalyticsResult: { // MedicalScribePostStreamAnalyticsResult
|
|
@@ -105,7 +105,7 @@ declare const StartMedicalScribeStreamCommand_base: {
|
|
|
105
105
|
* PostStreamAnalyticsSettings: { // MedicalScribePostStreamAnalyticsSettings
|
|
106
106
|
* ClinicalNoteGenerationSettings: { // ClinicalNoteGenerationSettings
|
|
107
107
|
* OutputBucketName: "STRING_VALUE", // required
|
|
108
|
-
* NoteTemplate: "HISTORY_AND_PHYSICAL" || "GIRPP",
|
|
108
|
+
* NoteTemplate: "HISTORY_AND_PHYSICAL" || "GIRPP" || "DAP" || "SIRP" || "BIRP" || "BEHAVIORAL_SOAP" || "PHYSICAL_SOAP",
|
|
109
109
|
* },
|
|
110
110
|
* },
|
|
111
111
|
* },
|
|
@@ -8,12 +8,12 @@ import { TranscribeStreamingServiceException as __BaseException } from "./Transc
|
|
|
8
8
|
*/
|
|
9
9
|
export interface Entity {
|
|
10
10
|
/**
|
|
11
|
-
* <p>The start time
|
|
11
|
+
* <p>The start time of the utterance that was identified as PII in seconds, with millisecond precision (e.g., 1.056)</p>
|
|
12
12
|
* @public
|
|
13
13
|
*/
|
|
14
14
|
StartTime?: number | undefined;
|
|
15
15
|
/**
|
|
16
|
-
* <p>The end time
|
|
16
|
+
* <p>The end time of the utterance that was identified as PII in seconds, with millisecond precision (e.g., 1.056)</p>
|
|
17
17
|
* @public
|
|
18
18
|
*/
|
|
19
19
|
EndTime?: number | undefined;
|
|
@@ -61,12 +61,12 @@ export type ItemType = (typeof ItemType)[keyof typeof ItemType];
|
|
|
61
61
|
*/
|
|
62
62
|
export interface Item {
|
|
63
63
|
/**
|
|
64
|
-
* <p>The start time
|
|
64
|
+
* <p>The start time of the transcribed item in seconds, with millisecond precision (e.g., 1.056)</p>
|
|
65
65
|
* @public
|
|
66
66
|
*/
|
|
67
67
|
StartTime?: number | undefined;
|
|
68
68
|
/**
|
|
69
|
-
* <p>The end time
|
|
69
|
+
* <p>The end time of the transcribed item in seconds, with millisecond precision (e.g., 1.056)</p>
|
|
70
70
|
* @public
|
|
71
71
|
*/
|
|
72
72
|
EndTime?: number | undefined;
|
|
@@ -915,8 +915,13 @@ export interface ClinicalNoteGenerationResult {
|
|
|
915
915
|
* @enum
|
|
916
916
|
*/
|
|
917
917
|
export declare const MedicalScribeNoteTemplate: {
|
|
918
|
+
readonly BEHAVIORAL_SOAP: "BEHAVIORAL_SOAP";
|
|
919
|
+
readonly BIRP: "BIRP";
|
|
920
|
+
readonly DAP: "DAP";
|
|
918
921
|
readonly GIRPP: "GIRPP";
|
|
919
922
|
readonly HISTORY_AND_PHYSICAL: "HISTORY_AND_PHYSICAL";
|
|
923
|
+
readonly PHYSICAL_SOAP: "PHYSICAL_SOAP";
|
|
924
|
+
readonly SIRP: "SIRP";
|
|
920
925
|
};
|
|
921
926
|
/**
|
|
922
927
|
* @public
|
|
@@ -943,11 +948,27 @@ export interface ClinicalNoteGenerationSettings {
|
|
|
943
948
|
* <p>Specify one of the following templates to use for the clinical note summary. The default is <code>HISTORY_AND_PHYSICAL</code>.</p>
|
|
944
949
|
* <ul>
|
|
945
950
|
* <li>
|
|
946
|
-
* <p>HISTORY_AND_PHYSICAL: Provides summaries for key sections of the clinical documentation.
|
|
947
|
-
*
|
|
951
|
+
* <p>HISTORY_AND_PHYSICAL: Provides summaries for key sections of the clinical documentation. Examples of sections include Chief Complaint, History of Present Illness, Review of Systems, Past Medical History, Assessment, and Plan.
|
|
952
|
+
* </p>
|
|
953
|
+
* </li>
|
|
954
|
+
* <li>
|
|
955
|
+
* <p>GIRPP: Provides summaries based on the patients progress toward goals. Examples of sections include Goal, Intervention,
|
|
956
|
+
* Response, Progress, and Plan.</p>
|
|
957
|
+
* </li>
|
|
958
|
+
* <li>
|
|
959
|
+
* <p>BIRP: Focuses on the patient's behavioral patterns and responses. Examples of sections include Behavior, Intervention, Response, and Plan.</p>
|
|
948
960
|
* </li>
|
|
949
961
|
* <li>
|
|
950
|
-
* <p>
|
|
962
|
+
* <p>SIRP: Emphasizes the situational context of therapy. Examples of sections include Situation, Intervention, Response, and Plan.</p>
|
|
963
|
+
* </li>
|
|
964
|
+
* <li>
|
|
965
|
+
* <p>DAP: Provides a simplified format for clinical documentation. Examples of sections include Data, Assessment, and Plan.</p>
|
|
966
|
+
* </li>
|
|
967
|
+
* <li>
|
|
968
|
+
* <p>BEHAVIORAL_SOAP: Behavioral health focused documentation format. Examples of sections include Subjective, Objective, Assessment, and Plan.</p>
|
|
969
|
+
* </li>
|
|
970
|
+
* <li>
|
|
971
|
+
* <p>PHYSICAL_SOAP: Physical health focused documentation format. Examples of sections include Subjective, Objective, Assessment, and Plan.</p>
|
|
951
972
|
* </li>
|
|
952
973
|
* </ul>
|
|
953
974
|
* @public
|
|
@@ -1392,12 +1413,12 @@ export type MediaEncoding = (typeof MediaEncoding)[keyof typeof MediaEncoding];
|
|
|
1392
1413
|
*/
|
|
1393
1414
|
export interface MedicalEntity {
|
|
1394
1415
|
/**
|
|
1395
|
-
* <p>The start time, in
|
|
1416
|
+
* <p>The start time, in seconds, of the utterance that was identified as PHI.</p>
|
|
1396
1417
|
* @public
|
|
1397
1418
|
*/
|
|
1398
1419
|
StartTime?: number | undefined;
|
|
1399
1420
|
/**
|
|
1400
|
-
* <p>The end time, in
|
|
1421
|
+
* <p>The end time, in seconds, of the utterance that was identified as PHI.</p>
|
|
1401
1422
|
* @public
|
|
1402
1423
|
*/
|
|
1403
1424
|
EndTime?: number | undefined;
|
|
@@ -1427,12 +1448,12 @@ export interface MedicalEntity {
|
|
|
1427
1448
|
*/
|
|
1428
1449
|
export interface MedicalItem {
|
|
1429
1450
|
/**
|
|
1430
|
-
* <p>The start time, in
|
|
1451
|
+
* <p>The start time, in seconds, of the transcribed item.</p>
|
|
1431
1452
|
* @public
|
|
1432
1453
|
*/
|
|
1433
1454
|
StartTime?: number | undefined;
|
|
1434
1455
|
/**
|
|
1435
|
-
* <p>The end time, in
|
|
1456
|
+
* <p>The end time, in seconds, of the transcribed item.</p>
|
|
1436
1457
|
* @public
|
|
1437
1458
|
*/
|
|
1438
1459
|
EndTime?: number | undefined;
|
|
@@ -1513,12 +1534,12 @@ export interface MedicalResult {
|
|
|
1513
1534
|
*/
|
|
1514
1535
|
ResultId?: string | undefined;
|
|
1515
1536
|
/**
|
|
1516
|
-
* <p>The start time, in
|
|
1537
|
+
* <p>The start time, in seconds, of the <code>Result</code>.</p>
|
|
1517
1538
|
* @public
|
|
1518
1539
|
*/
|
|
1519
1540
|
StartTime?: number | undefined;
|
|
1520
1541
|
/**
|
|
1521
|
-
* <p>The end time, in
|
|
1542
|
+
* <p>The end time, in seconds, of the <code>Result</code>.</p>
|
|
1522
1543
|
* @public
|
|
1523
1544
|
*/
|
|
1524
1545
|
EndTime?: number | undefined;
|
|
@@ -2180,12 +2201,12 @@ export interface Result {
|
|
|
2180
2201
|
*/
|
|
2181
2202
|
ResultId?: string | undefined;
|
|
2182
2203
|
/**
|
|
2183
|
-
* <p>The start time
|
|
2204
|
+
* <p>The start time of the <code>Result</code> in seconds, with millisecond precision (e.g., 1.056).</p>
|
|
2184
2205
|
* @public
|
|
2185
2206
|
*/
|
|
2186
2207
|
StartTime?: number | undefined;
|
|
2187
2208
|
/**
|
|
2188
|
-
* <p>The end time
|
|
2209
|
+
* <p>The end time of the <code>Result</code> in seconds, with millisecond precision (e.g., 1.056).</p>
|
|
2189
2210
|
* @public
|
|
2190
2211
|
*/
|
|
2191
2212
|
EndTime?: number | undefined;
|
|
@@ -308,8 +308,13 @@ export interface ClinicalNoteGenerationResult {
|
|
|
308
308
|
FailureReason?: string | undefined;
|
|
309
309
|
}
|
|
310
310
|
export declare const MedicalScribeNoteTemplate: {
|
|
311
|
+
readonly BEHAVIORAL_SOAP: "BEHAVIORAL_SOAP";
|
|
312
|
+
readonly BIRP: "BIRP";
|
|
313
|
+
readonly DAP: "DAP";
|
|
311
314
|
readonly GIRPP: "GIRPP";
|
|
312
315
|
readonly HISTORY_AND_PHYSICAL: "HISTORY_AND_PHYSICAL";
|
|
316
|
+
readonly PHYSICAL_SOAP: "PHYSICAL_SOAP";
|
|
317
|
+
readonly SIRP: "SIRP";
|
|
313
318
|
};
|
|
314
319
|
export type MedicalScribeNoteTemplate =
|
|
315
320
|
(typeof MedicalScribeNoteTemplate)[keyof typeof MedicalScribeNoteTemplate];
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-transcribe-streaming",
|
|
3
3
|
"description": "AWS SDK for JavaScript Transcribe Streaming Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.824.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-transcribe-streaming",
|