@aws-sdk/client-transcribe-streaming 3.743.0 → 3.744.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 -0
- package/dist-es/models/models_0.js +4 -0
- package/dist-types/commands/GetMedicalScribeStreamCommand.d.ts +1 -0
- package/dist-types/commands/StartMedicalScribeStreamCommand.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +26 -0
- package/dist-types/ts3.4/models/models_0.d.ts +7 -0
- package/package.json +12 -12
package/dist-cjs/index.js
CHANGED
|
@@ -43,6 +43,7 @@ __export(src_exports, {
|
|
|
43
43
|
MedicalScribeInputStreamFilterSensitiveLog: () => MedicalScribeInputStreamFilterSensitiveLog,
|
|
44
44
|
MedicalScribeLanguageCode: () => MedicalScribeLanguageCode,
|
|
45
45
|
MedicalScribeMediaEncoding: () => MedicalScribeMediaEncoding,
|
|
46
|
+
MedicalScribeNoteTemplate: () => MedicalScribeNoteTemplate,
|
|
46
47
|
MedicalScribeParticipantRole: () => MedicalScribeParticipantRole,
|
|
47
48
|
MedicalScribeResultStream: () => MedicalScribeResultStream,
|
|
48
49
|
MedicalScribeResultStreamFilterSensitiveLog: () => MedicalScribeResultStreamFilterSensitiveLog,
|
|
@@ -422,6 +423,10 @@ var ClinicalNoteGenerationStatus = {
|
|
|
422
423
|
FAILED: "FAILED",
|
|
423
424
|
IN_PROGRESS: "IN_PROGRESS"
|
|
424
425
|
};
|
|
426
|
+
var MedicalScribeNoteTemplate = {
|
|
427
|
+
GIRPP: "GIRPP",
|
|
428
|
+
HISTORY_AND_PHYSICAL: "HISTORY_AND_PHYSICAL"
|
|
429
|
+
};
|
|
425
430
|
var ContentIdentificationType = {
|
|
426
431
|
PII: "PII"
|
|
427
432
|
};
|
|
@@ -1874,6 +1879,7 @@ var TranscribeStreaming = class extends TranscribeStreamingClient {
|
|
|
1874
1879
|
Sentiment,
|
|
1875
1880
|
CallAnalyticsTranscriptResultStream,
|
|
1876
1881
|
ClinicalNoteGenerationStatus,
|
|
1882
|
+
MedicalScribeNoteTemplate,
|
|
1877
1883
|
ContentIdentificationType,
|
|
1878
1884
|
ContentRedactionType,
|
|
1879
1885
|
MedicalScribeParticipantRole,
|
|
@@ -133,6 +133,10 @@ export const ClinicalNoteGenerationStatus = {
|
|
|
133
133
|
FAILED: "FAILED",
|
|
134
134
|
IN_PROGRESS: "IN_PROGRESS",
|
|
135
135
|
};
|
|
136
|
+
export const MedicalScribeNoteTemplate = {
|
|
137
|
+
GIRPP: "GIRPP",
|
|
138
|
+
HISTORY_AND_PHYSICAL: "HISTORY_AND_PHYSICAL",
|
|
139
|
+
};
|
|
136
140
|
export const ContentIdentificationType = {
|
|
137
141
|
PII: "PII",
|
|
138
142
|
};
|
|
@@ -70,6 +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
74
|
* // },
|
|
74
75
|
* // },
|
|
75
76
|
* // PostStreamAnalyticsResult: { // MedicalScribePostStreamAnalyticsResult
|
|
@@ -105,6 +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
109
|
* },
|
|
109
110
|
* },
|
|
110
111
|
* },
|
|
@@ -910,6 +910,18 @@ export interface ClinicalNoteGenerationResult {
|
|
|
910
910
|
*/
|
|
911
911
|
FailureReason?: string | undefined;
|
|
912
912
|
}
|
|
913
|
+
/**
|
|
914
|
+
* @public
|
|
915
|
+
* @enum
|
|
916
|
+
*/
|
|
917
|
+
export declare const MedicalScribeNoteTemplate: {
|
|
918
|
+
readonly GIRPP: "GIRPP";
|
|
919
|
+
readonly HISTORY_AND_PHYSICAL: "HISTORY_AND_PHYSICAL";
|
|
920
|
+
};
|
|
921
|
+
/**
|
|
922
|
+
* @public
|
|
923
|
+
*/
|
|
924
|
+
export type MedicalScribeNoteTemplate = (typeof MedicalScribeNoteTemplate)[keyof typeof MedicalScribeNoteTemplate];
|
|
913
925
|
/**
|
|
914
926
|
* <p>The output configuration for aggregated transcript and clinical note generation.</p>
|
|
915
927
|
* @public
|
|
@@ -927,6 +939,20 @@ export interface ClinicalNoteGenerationSettings {
|
|
|
927
939
|
* @public
|
|
928
940
|
*/
|
|
929
941
|
OutputBucketName: string | undefined;
|
|
942
|
+
/**
|
|
943
|
+
* <p>Specify one of the following templates to use for the clinical note summary. The default is <code>HISTORY_AND_PHYSICAL</code>.</p>
|
|
944
|
+
* <ul>
|
|
945
|
+
* <li>
|
|
946
|
+
* <p>HISTORY_AND_PHYSICAL: Provides summaries for key sections of the clinical documentation. Sections include Chief Complaint,
|
|
947
|
+
* History of Present Illness, Review of Systems, Past Medical History, Assessment, and Plan.</p>
|
|
948
|
+
* </li>
|
|
949
|
+
* <li>
|
|
950
|
+
* <p>GIRPP: Provides summaries based on the patients progress toward goals. Sections include Goal, Intervention, Response, Progress, and Plan.</p>
|
|
951
|
+
* </li>
|
|
952
|
+
* </ul>
|
|
953
|
+
* @public
|
|
954
|
+
*/
|
|
955
|
+
NoteTemplate?: MedicalScribeNoteTemplate | undefined;
|
|
930
956
|
}
|
|
931
957
|
/**
|
|
932
958
|
* @public
|
|
@@ -307,8 +307,15 @@ export interface ClinicalNoteGenerationResult {
|
|
|
307
307
|
Status?: ClinicalNoteGenerationStatus | undefined;
|
|
308
308
|
FailureReason?: string | undefined;
|
|
309
309
|
}
|
|
310
|
+
export declare const MedicalScribeNoteTemplate: {
|
|
311
|
+
readonly GIRPP: "GIRPP";
|
|
312
|
+
readonly HISTORY_AND_PHYSICAL: "HISTORY_AND_PHYSICAL";
|
|
313
|
+
};
|
|
314
|
+
export type MedicalScribeNoteTemplate =
|
|
315
|
+
(typeof MedicalScribeNoteTemplate)[keyof typeof MedicalScribeNoteTemplate];
|
|
310
316
|
export interface ClinicalNoteGenerationSettings {
|
|
311
317
|
OutputBucketName: string | undefined;
|
|
318
|
+
NoteTemplate?: MedicalScribeNoteTemplate | undefined;
|
|
312
319
|
}
|
|
313
320
|
export declare const ContentIdentificationType: {
|
|
314
321
|
readonly PII: "PII";
|
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.744.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",
|
|
@@ -22,23 +22,23 @@
|
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
24
24
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/core": "3.744.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.744.0",
|
|
27
27
|
"@aws-sdk/eventstream-handler-node": "3.734.0",
|
|
28
28
|
"@aws-sdk/middleware-eventstream": "3.734.0",
|
|
29
29
|
"@aws-sdk/middleware-host-header": "3.734.0",
|
|
30
30
|
"@aws-sdk/middleware-logger": "3.734.0",
|
|
31
31
|
"@aws-sdk/middleware-recursion-detection": "3.734.0",
|
|
32
32
|
"@aws-sdk/middleware-sdk-transcribe-streaming": "3.734.0",
|
|
33
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
33
|
+
"@aws-sdk/middleware-user-agent": "3.744.0",
|
|
34
34
|
"@aws-sdk/middleware-websocket": "3.734.0",
|
|
35
35
|
"@aws-sdk/region-config-resolver": "3.734.0",
|
|
36
36
|
"@aws-sdk/types": "3.734.0",
|
|
37
37
|
"@aws-sdk/util-endpoints": "3.743.0",
|
|
38
38
|
"@aws-sdk/util-user-agent-browser": "3.734.0",
|
|
39
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
39
|
+
"@aws-sdk/util-user-agent-node": "3.744.0",
|
|
40
40
|
"@smithy/config-resolver": "^4.0.1",
|
|
41
|
-
"@smithy/core": "^3.1.
|
|
41
|
+
"@smithy/core": "^3.1.2",
|
|
42
42
|
"@smithy/eventstream-serde-browser": "^4.0.1",
|
|
43
43
|
"@smithy/eventstream-serde-config-resolver": "^4.0.1",
|
|
44
44
|
"@smithy/eventstream-serde-node": "^4.0.1",
|
|
@@ -46,21 +46,21 @@
|
|
|
46
46
|
"@smithy/hash-node": "^4.0.1",
|
|
47
47
|
"@smithy/invalid-dependency": "^4.0.1",
|
|
48
48
|
"@smithy/middleware-content-length": "^4.0.1",
|
|
49
|
-
"@smithy/middleware-endpoint": "^4.0.
|
|
50
|
-
"@smithy/middleware-retry": "^4.0.
|
|
51
|
-
"@smithy/middleware-serde": "^4.0.
|
|
49
|
+
"@smithy/middleware-endpoint": "^4.0.3",
|
|
50
|
+
"@smithy/middleware-retry": "^4.0.4",
|
|
51
|
+
"@smithy/middleware-serde": "^4.0.2",
|
|
52
52
|
"@smithy/middleware-stack": "^4.0.1",
|
|
53
53
|
"@smithy/node-config-provider": "^4.0.1",
|
|
54
54
|
"@smithy/node-http-handler": "^4.0.2",
|
|
55
55
|
"@smithy/protocol-http": "^5.0.1",
|
|
56
|
-
"@smithy/smithy-client": "^4.1.
|
|
56
|
+
"@smithy/smithy-client": "^4.1.3",
|
|
57
57
|
"@smithy/types": "^4.1.0",
|
|
58
58
|
"@smithy/url-parser": "^4.0.1",
|
|
59
59
|
"@smithy/util-base64": "^4.0.0",
|
|
60
60
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
61
61
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
62
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
63
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
62
|
+
"@smithy/util-defaults-mode-browser": "^4.0.4",
|
|
63
|
+
"@smithy/util-defaults-mode-node": "^4.0.4",
|
|
64
64
|
"@smithy/util-endpoints": "^3.0.1",
|
|
65
65
|
"@smithy/util-middleware": "^4.0.1",
|
|
66
66
|
"@smithy/util-retry": "^4.0.1",
|