@aws-sdk/client-transcribe 3.741.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 CHANGED
@@ -69,6 +69,7 @@ __export(src_exports, {
69
69
  MedicalContentIdentificationType: () => MedicalContentIdentificationType,
70
70
  MedicalScribeJobStatus: () => MedicalScribeJobStatus,
71
71
  MedicalScribeLanguageCode: () => MedicalScribeLanguageCode,
72
+ MedicalScribeNoteTemplate: () => MedicalScribeNoteTemplate,
72
73
  MedicalScribeParticipantRole: () => MedicalScribeParticipantRole,
73
74
  ModelStatus: () => ModelStatus,
74
75
  NotFoundException: () => NotFoundException,
@@ -493,6 +494,10 @@ var Rule;
493
494
  return visitor._(value.$unknown[0], value.$unknown[1]);
494
495
  }, "visit");
495
496
  })(Rule || (Rule = {}));
497
+ var MedicalScribeNoteTemplate = {
498
+ GIRPP: "GIRPP",
499
+ HISTORY_AND_PHYSICAL: "HISTORY_AND_PHYSICAL"
500
+ };
496
501
  var CLMLanguageCode = {
497
502
  DE_DE: "de-DE",
498
503
  EN_AU: "en-AU",
@@ -2782,6 +2787,7 @@ var paginateListVocabularyFilters = (0, import_core.createPaginator)(TranscribeC
2782
2787
  SentimentValue,
2783
2788
  TranscriptFilterType,
2784
2789
  Rule,
2790
+ MedicalScribeNoteTemplate,
2785
2791
  CLMLanguageCode,
2786
2792
  ConflictException,
2787
2793
  InternalFailureException,
@@ -202,6 +202,10 @@ export var Rule;
202
202
  return visitor._(value.$unknown[0], value.$unknown[1]);
203
203
  };
204
204
  })(Rule || (Rule = {}));
205
+ export const MedicalScribeNoteTemplate = {
206
+ GIRPP: "GIRPP",
207
+ HISTORY_AND_PHYSICAL: "HISTORY_AND_PHYSICAL",
208
+ };
205
209
  export const CLMLanguageCode = {
206
210
  DE_DE: "de-DE",
207
211
  EN_AU: "en-AU",
@@ -70,6 +70,9 @@ declare const GetMedicalScribeJobCommand_base: {
70
70
  * // VocabularyName: "STRING_VALUE",
71
71
  * // VocabularyFilterName: "STRING_VALUE",
72
72
  * // VocabularyFilterMethod: "remove" || "mask" || "tag",
73
+ * // ClinicalNoteGenerationSettings: { // ClinicalNoteGenerationSettings
74
+ * // NoteTemplate: "HISTORY_AND_PHYSICAL" || "GIRPP",
75
+ * // },
73
76
  * // },
74
77
  * // DataAccessRoleArn: "STRING_VALUE",
75
78
  * // ChannelDefinitions: [ // MedicalScribeChannelDefinitions
@@ -98,6 +98,9 @@ declare const StartMedicalScribeJobCommand_base: {
98
98
  * VocabularyName: "STRING_VALUE",
99
99
  * VocabularyFilterName: "STRING_VALUE",
100
100
  * VocabularyFilterMethod: "remove" || "mask" || "tag",
101
+ * ClinicalNoteGenerationSettings: { // ClinicalNoteGenerationSettings
102
+ * NoteTemplate: "HISTORY_AND_PHYSICAL" || "GIRPP",
103
+ * },
101
104
  * },
102
105
  * ChannelDefinitions: [ // MedicalScribeChannelDefinitions
103
106
  * { // MedicalScribeChannelDefinition
@@ -138,6 +141,9 @@ declare const StartMedicalScribeJobCommand_base: {
138
141
  * // VocabularyName: "STRING_VALUE",
139
142
  * // VocabularyFilterName: "STRING_VALUE",
140
143
  * // VocabularyFilterMethod: "remove" || "mask" || "tag",
144
+ * // ClinicalNoteGenerationSettings: { // ClinicalNoteGenerationSettings
145
+ * // NoteTemplate: "HISTORY_AND_PHYSICAL" || "GIRPP",
146
+ * // },
141
147
  * // },
142
148
  * // DataAccessRoleArn: "STRING_VALUE",
143
149
  * // ChannelDefinitions: [ // MedicalScribeChannelDefinitions
@@ -598,7 +598,7 @@ export interface CallAnalyticsJobSettings {
598
598
  * <p>Including language options can improve the accuracy of language identification.</p>
599
599
  * <p>For a list of languages supported with Call Analytics, refer to the <a href="https://docs.aws.amazon.com/transcribe/latest/dg/supported-languages.html">Supported
600
600
  * languages</a> table.</p>
601
- * <p>To transcribe speech in Modern Standard Arabic (<code>ar-SA</code>), your media file
601
+ * <p>To transcribe speech in Modern Standard Arabic (<code>ar-SA</code>) in Amazon Web Services GovCloud (US) (US-West, us-gov-west-1), Amazon Web Services GovCloud (US) (US-East, us-gov-east-1), Canada (Calgary) ca-west-1 and Africa (Cape Town) af-south-1, your media file
602
602
  * must be encoded at a sample rate of 16,000 Hz or higher.</p>
603
603
  * @public
604
604
  */
@@ -1383,6 +1383,38 @@ export interface CategoryProperties {
1383
1383
  */
1384
1384
  InputType?: InputType | undefined;
1385
1385
  }
1386
+ /**
1387
+ * @public
1388
+ * @enum
1389
+ */
1390
+ export declare const MedicalScribeNoteTemplate: {
1391
+ readonly GIRPP: "GIRPP";
1392
+ readonly HISTORY_AND_PHYSICAL: "HISTORY_AND_PHYSICAL";
1393
+ };
1394
+ /**
1395
+ * @public
1396
+ */
1397
+ export type MedicalScribeNoteTemplate = (typeof MedicalScribeNoteTemplate)[keyof typeof MedicalScribeNoteTemplate];
1398
+ /**
1399
+ * <p>The output configuration for clinical note generation.</p>
1400
+ * @public
1401
+ */
1402
+ export interface ClinicalNoteGenerationSettings {
1403
+ /**
1404
+ * <p>Specify one of the following templates to use for the clinical note summary. The default is <code>HISTORY_AND_PHYSICAL</code>.</p>
1405
+ * <ul>
1406
+ * <li>
1407
+ * <p>HISTORY_AND_PHYSICAL: Provides summaries for key sections of the clinical documentation. Sections include Chief Complaint,
1408
+ * History of Present Illness, Review of Systems, Past Medical History, Assessment, and Plan.</p>
1409
+ * </li>
1410
+ * <li>
1411
+ * <p>GIRPP: Provides summaries based on the patients progress toward goals. Sections include Goal, Intervention, Response, Progress, and Plan.</p>
1412
+ * </li>
1413
+ * </ul>
1414
+ * @public
1415
+ */
1416
+ NoteTemplate?: MedicalScribeNoteTemplate | undefined;
1417
+ }
1386
1418
  /**
1387
1419
  * @public
1388
1420
  * @enum
@@ -2387,6 +2419,11 @@ export interface MedicalScribeSettings {
2387
2419
  * @public
2388
2420
  */
2389
2421
  VocabularyFilterMethod?: VocabularyFilterMethod | undefined;
2422
+ /**
2423
+ * <p>Specify settings for the clinical note generation.</p>
2424
+ * @public
2425
+ */
2426
+ ClinicalNoteGenerationSettings?: ClinicalNoteGenerationSettings | undefined;
2390
2427
  }
2391
2428
  /**
2392
2429
  * <p>Provides detailed information about a Medical Scribe job.</p>
@@ -4891,7 +4928,7 @@ export interface StartTranscriptionJobRequest {
4891
4928
  * <p>For a list of supported languages and their associated language codes, refer to the
4892
4929
  * <a href="https://docs.aws.amazon.com/transcribe/latest/dg/supported-languages.html">Supported languages</a> table.</p>
4893
4930
  * <note>
4894
- * <p>To transcribe speech in Modern Standard Arabic (<code>ar-SA</code>), your media
4931
+ * <p>To transcribe speech in Modern Standard Arabic (<code>ar-SA</code>) in Amazon Web Services GovCloud (US) (US-West, us-gov-west-1), Amazon Web Services GovCloud (US) (US-East, us-gov-east-1), Canada (Calgary, ca-west-1) and Africa (Cape Town, af-south-1), your media
4895
4932
  * file must be encoded at a sample rate of 16,000 Hz or higher.</p>
4896
4933
  * </note>
4897
4934
  * @public
@@ -5122,7 +5159,7 @@ export interface StartTranscriptionJobRequest {
5122
5159
  * <code>IdentifyLanguage</code>.</p>
5123
5160
  * <p>For more information, refer to <a href="https://docs.aws.amazon.com/transcribe/latest/dg/supported-languages.html">Supported
5124
5161
  * languages</a>.</p>
5125
- * <p>To transcribe speech in Modern Standard Arabic (<code>ar-SA</code>), your media file
5162
+ * <p>To transcribe speech in Modern Standard Arabic (<code>ar-SA</code>)in Amazon Web Services GovCloud (US) (US-West, us-gov-west-1), Amazon Web Services GovCloud (US) (US-East, us-gov-east-1), in Canada (Calgary) ca-west-1 and Africa (Cape Town) af-south-1, your media file
5126
5163
  * must be encoded at a sample rate of 16,000 Hz or higher.</p>
5127
5164
  * @public
5128
5165
  */
@@ -382,6 +382,15 @@ export interface CategoryProperties {
382
382
  Tags?: Tag[] | undefined;
383
383
  InputType?: InputType | undefined;
384
384
  }
385
+ export declare const MedicalScribeNoteTemplate: {
386
+ readonly GIRPP: "GIRPP";
387
+ readonly HISTORY_AND_PHYSICAL: "HISTORY_AND_PHYSICAL";
388
+ };
389
+ export type MedicalScribeNoteTemplate =
390
+ (typeof MedicalScribeNoteTemplate)[keyof typeof MedicalScribeNoteTemplate];
391
+ export interface ClinicalNoteGenerationSettings {
392
+ NoteTemplate?: MedicalScribeNoteTemplate | undefined;
393
+ }
385
394
  export declare const CLMLanguageCode: {
386
395
  readonly DE_DE: "de-DE";
387
396
  readonly EN_AU: "en-AU";
@@ -598,6 +607,7 @@ export interface MedicalScribeSettings {
598
607
  VocabularyName?: string | undefined;
599
608
  VocabularyFilterName?: string | undefined;
600
609
  VocabularyFilterMethod?: VocabularyFilterMethod | undefined;
610
+ ClinicalNoteGenerationSettings?: ClinicalNoteGenerationSettings | undefined;
601
611
  }
602
612
  export interface MedicalScribeJob {
603
613
  MedicalScribeJobName?: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-transcribe",
3
3
  "description": "AWS SDK for JavaScript Transcribe Client for Node.js, Browser and React Native",
4
- "version": "3.741.0",
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",
@@ -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.734.0",
24
- "@aws-sdk/credential-provider-node": "3.741.0",
23
+ "@aws-sdk/core": "3.744.0",
24
+ "@aws-sdk/credential-provider-node": "3.744.0",
25
25
  "@aws-sdk/middleware-host-header": "3.734.0",
26
26
  "@aws-sdk/middleware-logger": "3.734.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.734.0",
28
- "@aws-sdk/middleware-user-agent": "3.734.0",
28
+ "@aws-sdk/middleware-user-agent": "3.744.0",
29
29
  "@aws-sdk/region-config-resolver": "3.734.0",
30
30
  "@aws-sdk/types": "3.734.0",
31
- "@aws-sdk/util-endpoints": "3.734.0",
31
+ "@aws-sdk/util-endpoints": "3.743.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.734.0",
33
- "@aws-sdk/util-user-agent-node": "3.734.0",
33
+ "@aws-sdk/util-user-agent-node": "3.744.0",
34
34
  "@smithy/config-resolver": "^4.0.1",
35
- "@smithy/core": "^3.1.1",
35
+ "@smithy/core": "^3.1.2",
36
36
  "@smithy/fetch-http-handler": "^5.0.1",
37
37
  "@smithy/hash-node": "^4.0.1",
38
38
  "@smithy/invalid-dependency": "^4.0.1",
39
39
  "@smithy/middleware-content-length": "^4.0.1",
40
- "@smithy/middleware-endpoint": "^4.0.2",
41
- "@smithy/middleware-retry": "^4.0.3",
42
- "@smithy/middleware-serde": "^4.0.1",
40
+ "@smithy/middleware-endpoint": "^4.0.3",
41
+ "@smithy/middleware-retry": "^4.0.4",
42
+ "@smithy/middleware-serde": "^4.0.2",
43
43
  "@smithy/middleware-stack": "^4.0.1",
44
44
  "@smithy/node-config-provider": "^4.0.1",
45
45
  "@smithy/node-http-handler": "^4.0.2",
46
46
  "@smithy/protocol-http": "^5.0.1",
47
- "@smithy/smithy-client": "^4.1.2",
47
+ "@smithy/smithy-client": "^4.1.3",
48
48
  "@smithy/types": "^4.1.0",
49
49
  "@smithy/url-parser": "^4.0.1",
50
50
  "@smithy/util-base64": "^4.0.0",
51
51
  "@smithy/util-body-length-browser": "^4.0.0",
52
52
  "@smithy/util-body-length-node": "^4.0.0",
53
- "@smithy/util-defaults-mode-browser": "^4.0.3",
54
- "@smithy/util-defaults-mode-node": "^4.0.3",
53
+ "@smithy/util-defaults-mode-browser": "^4.0.4",
54
+ "@smithy/util-defaults-mode-node": "^4.0.4",
55
55
  "@smithy/util-endpoints": "^3.0.1",
56
56
  "@smithy/util-middleware": "^4.0.1",
57
57
  "@smithy/util-retry": "^4.0.1",