@aws-sdk/client-chime-sdk-meetings 3.428.0 → 3.430.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.
@@ -43,17 +43,17 @@ export interface AttendeeCapabilities {
43
43
  * @public
44
44
  * <p>The audio capability assigned to an attendee.</p>
45
45
  */
46
- Audio: MediaCapabilities | string | undefined;
46
+ Audio: MediaCapabilities | undefined;
47
47
  /**
48
48
  * @public
49
49
  * <p>The video capability assigned to an attendee.</p>
50
50
  */
51
- Video: MediaCapabilities | string | undefined;
51
+ Video: MediaCapabilities | undefined;
52
52
  /**
53
53
  * @public
54
54
  * <p>The content capability assigned to an attendee.</p>
55
55
  */
56
- Content: MediaCapabilities | string | undefined;
56
+ Content: MediaCapabilities | undefined;
57
57
  }
58
58
  /**
59
59
  * @public
@@ -148,7 +148,7 @@ export interface AudioFeatures {
148
148
  * @public
149
149
  * <p>Makes echo reduction available to clients who connect to the meeting.</p>
150
150
  */
151
- EchoReduction?: MeetingFeatureStatus | string;
151
+ EchoReduction?: MeetingFeatureStatus;
152
152
  }
153
153
  /**
154
154
  * @public
@@ -1101,17 +1101,17 @@ export interface EngineTranscribeMedicalSettings {
1101
1101
  * @public
1102
1102
  * <p>The language code specified for the Amazon Transcribe Medical engine.</p>
1103
1103
  */
1104
- LanguageCode: TranscribeMedicalLanguageCode | string | undefined;
1104
+ LanguageCode: TranscribeMedicalLanguageCode | undefined;
1105
1105
  /**
1106
1106
  * @public
1107
1107
  * <p>The specialty specified for the Amazon Transcribe Medical engine.</p>
1108
1108
  */
1109
- Specialty: TranscribeMedicalSpecialty | string | undefined;
1109
+ Specialty: TranscribeMedicalSpecialty | undefined;
1110
1110
  /**
1111
1111
  * @public
1112
1112
  * <p>The type of transcription.</p>
1113
1113
  */
1114
- Type: TranscribeMedicalType | string | undefined;
1114
+ Type: TranscribeMedicalType | undefined;
1115
1115
  /**
1116
1116
  * @public
1117
1117
  * <p>The name of the vocabulary passed to Amazon Transcribe Medical.</p>
@@ -1121,12 +1121,12 @@ export interface EngineTranscribeMedicalSettings {
1121
1121
  * @public
1122
1122
  * <p>The AWS Region passed to Amazon Transcribe Medical. If you don't specify a Region, Amazon Chime uses the meeting's Region. </p>
1123
1123
  */
1124
- Region?: TranscribeMedicalRegion | string;
1124
+ Region?: TranscribeMedicalRegion;
1125
1125
  /**
1126
1126
  * @public
1127
1127
  * <p>Set this field to <code>PHI</code> to identify personal health information in the transcription output.</p>
1128
1128
  */
1129
- ContentIdentificationType?: TranscribeMedicalContentIdentificationType | string;
1129
+ ContentIdentificationType?: TranscribeMedicalContentIdentificationType;
1130
1130
  }
1131
1131
  /**
1132
1132
  * @public
@@ -1237,7 +1237,7 @@ export interface EngineTranscribeSettings {
1237
1237
  * <p>Specify the language code that represents the language spoken.</p>
1238
1238
  * <p>If you're unsure of the language spoken in your audio, consider using <code>IdentifyLanguage</code> to enable automatic language identification.</p>
1239
1239
  */
1240
- LanguageCode?: TranscribeLanguageCode | string;
1240
+ LanguageCode?: TranscribeLanguageCode;
1241
1241
  /**
1242
1242
  * @public
1243
1243
  * <p>Specify how you want your vocabulary filter applied to your transcript.</p>
@@ -1245,7 +1245,7 @@ export interface EngineTranscribeSettings {
1245
1245
  * <p>To delete words, choose <code>remove</code>.</p>
1246
1246
  * <p>To flag words without changing them, choose <code>tag</code>.</p>
1247
1247
  */
1248
- VocabularyFilterMethod?: TranscribeVocabularyFilterMethod | string;
1248
+ VocabularyFilterMethod?: TranscribeVocabularyFilterMethod;
1249
1249
  /**
1250
1250
  * @public
1251
1251
  * <p>Specify the name of the custom vocabulary filter that you want to use when processing your transcription. Note that vocabulary filter names are case sensitive. </p>
@@ -1270,7 +1270,7 @@ export interface EngineTranscribeSettings {
1270
1270
  * <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/transcription-options.html#choose-region">Choosing a transcription Region</a> in the
1271
1271
  * <i>Amazon Chime SDK Developer Guide</i>.</p>
1272
1272
  */
1273
- Region?: TranscribeRegion | string;
1273
+ Region?: TranscribeRegion;
1274
1274
  /**
1275
1275
  * @public
1276
1276
  * <p>Enables partial result stabilization for your transcription. Partial result stabilization can reduce latency in your output, but may impact accuracy.</p>
@@ -1281,7 +1281,7 @@ export interface EngineTranscribeSettings {
1281
1281
  * <p>Specify the level of stability to use when you enable partial results stabilization (<code>EnablePartialResultsStabilization</code>).</p>
1282
1282
  * <p>Low stability provides the highest accuracy. High stability transcribes faster, but with slightly lower accuracy.</p>
1283
1283
  */
1284
- PartialResultsStability?: TranscribePartialResultsStability | string;
1284
+ PartialResultsStability?: TranscribePartialResultsStability;
1285
1285
  /**
1286
1286
  * @public
1287
1287
  * <p>Labels all personally identifiable information (PII) identified in your transcript. If you don't include <code>PiiEntityTypes</code>, all PII is identified.</p>
@@ -1289,7 +1289,7 @@ export interface EngineTranscribeSettings {
1289
1289
  * <p>You can’t set <code>ContentIdentificationType</code> and <code>ContentRedactionType</code>.</p>
1290
1290
  * </note>
1291
1291
  */
1292
- ContentIdentificationType?: TranscribeContentIdentificationType | string;
1292
+ ContentIdentificationType?: TranscribeContentIdentificationType;
1293
1293
  /**
1294
1294
  * @public
1295
1295
  * <p>Content redaction is performed at the segment level. If you don't include <code>PiiEntityTypes</code>, all PII is redacted.</p>
@@ -1297,7 +1297,7 @@ export interface EngineTranscribeSettings {
1297
1297
  * <p>You can’t set <code>ContentRedactionType</code> and <code>ContentIdentificationType</code>.</p>
1298
1298
  * </note>
1299
1299
  */
1300
- ContentRedactionType?: TranscribeContentRedactionType | string;
1300
+ ContentRedactionType?: TranscribeContentRedactionType;
1301
1301
  /**
1302
1302
  * @public
1303
1303
  * <p>Specify which types of personally identifiable information (PII) you want to redact in your transcript. You can include as many types as you'd like, or you can select <code>ALL</code>.</p>
@@ -1342,7 +1342,7 @@ export interface EngineTranscribeSettings {
1342
1342
  * <p>Specify a preferred language from the subset of languages codes you specified in <code>LanguageOptions</code>.</p>
1343
1343
  * <p>You can only use this parameter if you include <code>IdentifyLanguage</code> and <code>LanguageOptions</code>.</p>
1344
1344
  */
1345
- PreferredLanguage?: TranscribeLanguageCode | string;
1345
+ PreferredLanguage?: TranscribeLanguageCode;
1346
1346
  /**
1347
1347
  * @public
1348
1348
  * <p>Specify the names of the custom vocabularies that you want to use when processing your transcription. Note that vocabulary names are case sensitive.</p>
@@ -9,9 +9,9 @@ export declare const MediaCapabilities: {
9
9
  export type MediaCapabilities =
10
10
  (typeof MediaCapabilities)[keyof typeof MediaCapabilities];
11
11
  export interface AttendeeCapabilities {
12
- Audio: MediaCapabilities | string | undefined;
13
- Video: MediaCapabilities | string | undefined;
14
- Content: MediaCapabilities | string | undefined;
12
+ Audio: MediaCapabilities | undefined;
13
+ Video: MediaCapabilities | undefined;
14
+ Content: MediaCapabilities | undefined;
15
15
  }
16
16
  export interface Attendee {
17
17
  ExternalUserId?: string;
@@ -29,7 +29,7 @@ export declare const MeetingFeatureStatus: {
29
29
  export type MeetingFeatureStatus =
30
30
  (typeof MeetingFeatureStatus)[keyof typeof MeetingFeatureStatus];
31
31
  export interface AudioFeatures {
32
- EchoReduction?: MeetingFeatureStatus | string;
32
+ EchoReduction?: MeetingFeatureStatus;
33
33
  }
34
34
  export declare class BadRequestException extends __BaseException {
35
35
  readonly name: "BadRequestException";
@@ -304,14 +304,12 @@ export declare const TranscribeMedicalType: {
304
304
  export type TranscribeMedicalType =
305
305
  (typeof TranscribeMedicalType)[keyof typeof TranscribeMedicalType];
306
306
  export interface EngineTranscribeMedicalSettings {
307
- LanguageCode: TranscribeMedicalLanguageCode | string | undefined;
308
- Specialty: TranscribeMedicalSpecialty | string | undefined;
309
- Type: TranscribeMedicalType | string | undefined;
307
+ LanguageCode: TranscribeMedicalLanguageCode | undefined;
308
+ Specialty: TranscribeMedicalSpecialty | undefined;
309
+ Type: TranscribeMedicalType | undefined;
310
310
  VocabularyName?: string;
311
- Region?: TranscribeMedicalRegion | string;
312
- ContentIdentificationType?:
313
- | TranscribeMedicalContentIdentificationType
314
- | string;
311
+ Region?: TranscribeMedicalRegion;
312
+ ContentIdentificationType?: TranscribeMedicalContentIdentificationType;
315
313
  }
316
314
  export declare const TranscribeContentIdentificationType: {
317
315
  readonly PII: "PII";
@@ -373,20 +371,20 @@ export declare const TranscribeVocabularyFilterMethod: {
373
371
  export type TranscribeVocabularyFilterMethod =
374
372
  (typeof TranscribeVocabularyFilterMethod)[keyof typeof TranscribeVocabularyFilterMethod];
375
373
  export interface EngineTranscribeSettings {
376
- LanguageCode?: TranscribeLanguageCode | string;
377
- VocabularyFilterMethod?: TranscribeVocabularyFilterMethod | string;
374
+ LanguageCode?: TranscribeLanguageCode;
375
+ VocabularyFilterMethod?: TranscribeVocabularyFilterMethod;
378
376
  VocabularyFilterName?: string;
379
377
  VocabularyName?: string;
380
- Region?: TranscribeRegion | string;
378
+ Region?: TranscribeRegion;
381
379
  EnablePartialResultsStabilization?: boolean;
382
- PartialResultsStability?: TranscribePartialResultsStability | string;
383
- ContentIdentificationType?: TranscribeContentIdentificationType | string;
384
- ContentRedactionType?: TranscribeContentRedactionType | string;
380
+ PartialResultsStability?: TranscribePartialResultsStability;
381
+ ContentIdentificationType?: TranscribeContentIdentificationType;
382
+ ContentRedactionType?: TranscribeContentRedactionType;
385
383
  PiiEntityTypes?: string;
386
384
  LanguageModelName?: string;
387
385
  IdentifyLanguage?: boolean;
388
386
  LanguageOptions?: string;
389
- PreferredLanguage?: TranscribeLanguageCode | string;
387
+ PreferredLanguage?: TranscribeLanguageCode;
390
388
  VocabularyNames?: string;
391
389
  VocabularyFilterNames?: string;
392
390
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-chime-sdk-meetings",
3
3
  "description": "AWS SDK for JavaScript Chime Sdk Meetings Client for Node.js, Browser and React Native",
4
- "version": "3.428.0",
4
+ "version": "3.430.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,28 +21,28 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.428.0",
25
- "@aws-sdk/credential-provider-node": "3.428.0",
26
- "@aws-sdk/middleware-host-header": "3.428.0",
24
+ "@aws-sdk/client-sts": "3.430.0",
25
+ "@aws-sdk/credential-provider-node": "3.430.0",
26
+ "@aws-sdk/middleware-host-header": "3.429.0",
27
27
  "@aws-sdk/middleware-logger": "3.428.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
29
  "@aws-sdk/middleware-signing": "3.428.0",
30
30
  "@aws-sdk/middleware-user-agent": "3.428.0",
31
- "@aws-sdk/region-config-resolver": "3.428.0",
31
+ "@aws-sdk/region-config-resolver": "3.430.0",
32
32
  "@aws-sdk/types": "3.428.0",
33
33
  "@aws-sdk/util-endpoints": "3.428.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.428.0",
35
- "@aws-sdk/util-user-agent-node": "3.428.0",
36
- "@smithy/config-resolver": "^2.0.14",
35
+ "@aws-sdk/util-user-agent-node": "3.430.0",
36
+ "@smithy/config-resolver": "^2.0.15",
37
37
  "@smithy/fetch-http-handler": "^2.2.3",
38
38
  "@smithy/hash-node": "^2.0.11",
39
39
  "@smithy/invalid-dependency": "^2.0.11",
40
40
  "@smithy/middleware-content-length": "^2.0.13",
41
- "@smithy/middleware-endpoint": "^2.1.0",
42
- "@smithy/middleware-retry": "^2.0.16",
41
+ "@smithy/middleware-endpoint": "^2.1.2",
42
+ "@smithy/middleware-retry": "^2.0.17",
43
43
  "@smithy/middleware-serde": "^2.0.11",
44
44
  "@smithy/middleware-stack": "^2.0.5",
45
- "@smithy/node-config-provider": "^2.1.1",
45
+ "@smithy/node-config-provider": "^2.1.2",
46
46
  "@smithy/node-http-handler": "^2.1.7",
47
47
  "@smithy/protocol-http": "^3.0.7",
48
48
  "@smithy/smithy-client": "^2.1.11",
@@ -52,7 +52,7 @@
52
52
  "@smithy/util-body-length-browser": "^2.0.0",
53
53
  "@smithy/util-body-length-node": "^2.1.0",
54
54
  "@smithy/util-defaults-mode-browser": "^2.0.15",
55
- "@smithy/util-defaults-mode-node": "^2.0.19",
55
+ "@smithy/util-defaults-mode-node": "^2.0.20",
56
56
  "@smithy/util-retry": "^2.0.4",
57
57
  "@smithy/util-utf8": "^2.0.0",
58
58
  "tslib": "^2.5.0",