@aws-sdk/client-chime-sdk-meetings 3.42.0 → 3.47.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.
@@ -12,6 +12,19 @@ export declare namespace Attendee {
12
12
 
13
13
  const filterSensitiveLog: (obj: Attendee) => any;
14
14
  }
15
+ export declare enum MeetingFeatureStatus {
16
+ AVAILABLE = "AVAILABLE",
17
+ UNAVAILABLE = "UNAVAILABLE"
18
+ }
19
+
20
+ export interface AudioFeatures {
21
+
22
+ EchoReduction?: MeetingFeatureStatus | string;
23
+ }
24
+ export declare namespace AudioFeatures {
25
+
26
+ const filterSensitiveLog: (obj: AudioFeatures) => any;
27
+ }
15
28
 
16
29
  export interface BadRequestException extends __SmithyException, $MetadataBearer {
17
30
  name: "BadRequestException";
@@ -21,10 +34,6 @@ export interface BadRequestException extends __SmithyException, $MetadataBearer
21
34
 
22
35
  RequestId?: string;
23
36
  }
24
- export declare namespace BadRequestException {
25
-
26
- const filterSensitiveLog: (obj: BadRequestException) => any;
27
- }
28
37
 
29
38
  export interface CreateAttendeeRequestItem {
30
39
 
@@ -76,10 +85,6 @@ export interface ForbiddenException extends __SmithyException, $MetadataBearer {
76
85
 
77
86
  RequestId?: string;
78
87
  }
79
- export declare namespace ForbiddenException {
80
-
81
- const filterSensitiveLog: (obj: ForbiddenException) => any;
82
- }
83
88
 
84
89
  export interface LimitExceededException extends __SmithyException, $MetadataBearer {
85
90
  name: "LimitExceededException";
@@ -89,10 +94,6 @@ export interface LimitExceededException extends __SmithyException, $MetadataBear
89
94
 
90
95
  RequestId?: string;
91
96
  }
92
- export declare namespace LimitExceededException {
93
-
94
- const filterSensitiveLog: (obj: LimitExceededException) => any;
95
- }
96
97
 
97
98
  export interface NotFoundException extends __SmithyException, $MetadataBearer {
98
99
  name: "NotFoundException";
@@ -102,10 +103,6 @@ export interface NotFoundException extends __SmithyException, $MetadataBearer {
102
103
 
103
104
  RequestId?: string;
104
105
  }
105
- export declare namespace NotFoundException {
106
-
107
- const filterSensitiveLog: (obj: NotFoundException) => any;
108
- }
109
106
 
110
107
  export interface ServiceUnavailableException extends __SmithyException, $MetadataBearer {
111
108
  name: "ServiceUnavailableException";
@@ -117,10 +114,6 @@ export interface ServiceUnavailableException extends __SmithyException, $Metadat
117
114
 
118
115
  RetryAfterSeconds?: string;
119
116
  }
120
- export declare namespace ServiceUnavailableException {
121
-
122
- const filterSensitiveLog: (obj: ServiceUnavailableException) => any;
123
- }
124
117
 
125
118
  export interface UnauthorizedException extends __SmithyException, $MetadataBearer {
126
119
  name: "UnauthorizedException";
@@ -130,10 +123,6 @@ export interface UnauthorizedException extends __SmithyException, $MetadataBeare
130
123
 
131
124
  RequestId?: string;
132
125
  }
133
- export declare namespace UnauthorizedException {
134
-
135
- const filterSensitiveLog: (obj: UnauthorizedException) => any;
136
- }
137
126
  export interface CreateAttendeeRequest {
138
127
 
139
128
  MeetingId: string | undefined;
@@ -161,9 +150,14 @@ export interface UnprocessableEntityException extends __SmithyException, $Metada
161
150
 
162
151
  RequestId?: string;
163
152
  }
164
- export declare namespace UnprocessableEntityException {
153
+
154
+ export interface MeetingFeaturesConfiguration {
155
+
156
+ Audio?: AudioFeatures;
157
+ }
158
+ export declare namespace MeetingFeaturesConfiguration {
165
159
 
166
- const filterSensitiveLog: (obj: UnprocessableEntityException) => any;
160
+ const filterSensitiveLog: (obj: MeetingFeaturesConfiguration) => any;
167
161
  }
168
162
 
169
163
  export interface NotificationsConfiguration {
@@ -189,6 +183,8 @@ export interface CreateMeetingRequest {
189
183
  ExternalMeetingId: string | undefined;
190
184
 
191
185
  NotificationsConfiguration?: NotificationsConfiguration;
186
+
187
+ MeetingFeatures?: MeetingFeaturesConfiguration;
192
188
  }
193
189
  export declare namespace CreateMeetingRequest {
194
190
 
@@ -229,6 +225,8 @@ export interface Meeting {
229
225
  MediaRegion?: string;
230
226
 
231
227
  MediaPlacement?: MediaPlacement;
228
+
229
+ MeetingFeatures?: MeetingFeaturesConfiguration;
232
230
  }
233
231
  export declare namespace Meeting {
234
232
 
@@ -252,6 +250,8 @@ export interface CreateMeetingWithAttendeesRequest {
252
250
 
253
251
  ExternalMeetingId: string | undefined;
254
252
 
253
+ MeetingFeatures?: MeetingFeaturesConfiguration;
254
+
255
255
  NotificationsConfiguration?: NotificationsConfiguration;
256
256
 
257
257
  Attendees: CreateAttendeeRequestItem[] | undefined;
@@ -346,6 +346,9 @@ export declare namespace ListAttendeesResponse {
346
346
 
347
347
  const filterSensitiveLog: (obj: ListAttendeesResponse) => any;
348
348
  }
349
+ export declare enum TranscribeMedicalContentIdentificationType {
350
+ PHI = "PHI"
351
+ }
349
352
  export declare enum TranscribeMedicalLanguageCode {
350
353
  EN_US = "en-US"
351
354
  }
@@ -382,11 +385,19 @@ export interface EngineTranscribeMedicalSettings {
382
385
  VocabularyName?: string;
383
386
 
384
387
  Region?: TranscribeMedicalRegion | string;
388
+
389
+ ContentIdentificationType?: TranscribeMedicalContentIdentificationType | string;
385
390
  }
386
391
  export declare namespace EngineTranscribeMedicalSettings {
387
392
 
388
393
  const filterSensitiveLog: (obj: EngineTranscribeMedicalSettings) => any;
389
394
  }
395
+ export declare enum TranscribeContentIdentificationType {
396
+ PII = "PII"
397
+ }
398
+ export declare enum TranscribeContentRedactionType {
399
+ PII = "PII"
400
+ }
390
401
  export declare enum TranscribeLanguageCode {
391
402
  DE_DE = "de-DE",
392
403
  EN_AU = "en-AU",
@@ -401,6 +412,11 @@ export declare enum TranscribeLanguageCode {
401
412
  PT_BR = "pt-BR",
402
413
  ZH_CN = "zh-CN"
403
414
  }
415
+ export declare enum TranscribePartialResultsStability {
416
+ HIGH = "high",
417
+ LOW = "low",
418
+ MEDIUM = "medium"
419
+ }
404
420
  export declare enum TranscribeRegion {
405
421
  AP_NORTHEAST_1 = "ap-northeast-1",
406
422
  AP_NORTHEAST_2 = "ap-northeast-2",
@@ -432,6 +448,18 @@ export interface EngineTranscribeSettings {
432
448
  VocabularyName?: string;
433
449
 
434
450
  Region?: TranscribeRegion | string;
451
+
452
+ EnablePartialResultsStabilization?: boolean;
453
+
454
+ PartialResultsStability?: TranscribePartialResultsStability | string;
455
+
456
+ ContentIdentificationType?: TranscribeContentIdentificationType | string;
457
+
458
+ ContentRedactionType?: TranscribeContentRedactionType | string;
459
+
460
+ PiiEntityTypes?: string;
461
+
462
+ LanguageModelName?: string;
435
463
  }
436
464
  export declare namespace EngineTranscribeSettings {
437
465
 
@@ -1,8 +1,9 @@
1
- import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
2
  import { ChimeSDKMeetingsClientConfig } from "./ChimeSDKMeetingsClient";
3
3
 
4
4
  export declare const getRuntimeConfig: (config: ChimeSDKMeetingsClientConfig) => {
5
5
  runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
6
7
  base64Decoder: import("@aws-sdk/types").Decoder;
7
8
  base64Encoder: import("@aws-sdk/types").Encoder;
8
9
  bodyLengthChecker: (body: any) => number | undefined;
@@ -10,7 +11,7 @@ export declare const getRuntimeConfig: (config: ChimeSDKMeetingsClientConfig) =>
10
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
11
12
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
12
13
  region: string | import("@aws-sdk/types").Provider<any>;
13
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | FetchHttpHandler;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
14
15
  retryMode: string | import("@aws-sdk/types").Provider<string>;
15
16
  sha256: import("@aws-sdk/types").HashConstructor;
16
17
  streamCollector: import("@aws-sdk/types").StreamCollector;
@@ -1,16 +1,17 @@
1
- import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
2
  import { ChimeSDKMeetingsClientConfig } from "./ChimeSDKMeetingsClient";
3
3
 
4
4
  export declare const getRuntimeConfig: (config: ChimeSDKMeetingsClientConfig) => {
5
5
  runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
6
7
  base64Decoder: import("@aws-sdk/types").Decoder;
7
8
  base64Encoder: import("@aws-sdk/types").Encoder;
8
9
  bodyLengthChecker: (body: any) => number | undefined;
9
- credentialDefaultProvider: import("@aws-sdk/client-sts/dist-types/defaultStsRoleAssumers").DefaultCredentialProvider;
10
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
10
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
11
12
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
12
13
  region: string | import("@aws-sdk/types").Provider<string>;
13
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | NodeHttpHandler;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
14
15
  retryMode: string | import("@aws-sdk/types").Provider<string>;
15
16
  sha256: import("@aws-sdk/types").HashConstructor;
16
17
  streamCollector: import("@aws-sdk/types").StreamCollector;
@@ -23,6 +23,7 @@ export declare const getRuntimeConfig: (config: ChimeSDKMeetingsClientConfig) =>
23
23
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
24
24
  regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
25
25
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
26
+ defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
26
27
  endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
27
28
  tls?: boolean | undefined;
28
29
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
package/package.json CHANGED
@@ -1,18 +1,15 @@
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.42.0",
4
+ "version": "3.47.0",
5
5
  "scripts": {
6
6
  "build": "yarn build:cjs && yarn build:es && yarn build:types",
7
- "build:cjs": "tsc -p tsconfig.json",
8
- "build:docs": "yarn clean:docs && typedoc ./",
7
+ "build:cjs": "tsc -p tsconfig.cjs.json",
8
+ "build:docs": "typedoc",
9
9
  "build:es": "tsc -p tsconfig.es.json",
10
10
  "build:types": "tsc -p tsconfig.types.json",
11
- "clean": "yarn clean:dist && yarn clean:docs",
12
- "clean:dist": "rimraf ./dist-*",
13
- "clean:docs": "rimraf ./docs",
14
- "downlevel-dts": "downlevel-dts dist-types dist-types/ts3.4",
15
- "test": "jest --coverage --passWithNoTests"
11
+ "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
12
+ "clean": "rimraf ./dist-*"
16
13
  },
17
14
  "main": "./dist-cjs/index.js",
18
15
  "types": "./dist-types/index.d.ts",
@@ -21,50 +18,46 @@
21
18
  "dependencies": {
22
19
  "@aws-crypto/sha256-browser": "2.0.0",
23
20
  "@aws-crypto/sha256-js": "2.0.0",
24
- "@aws-sdk/client-sts": "3.42.0",
25
- "@aws-sdk/config-resolver": "3.40.0",
26
- "@aws-sdk/credential-provider-node": "3.41.0",
27
- "@aws-sdk/fetch-http-handler": "3.40.0",
28
- "@aws-sdk/hash-node": "3.40.0",
29
- "@aws-sdk/invalid-dependency": "3.40.0",
30
- "@aws-sdk/middleware-content-length": "3.40.0",
31
- "@aws-sdk/middleware-host-header": "3.40.0",
32
- "@aws-sdk/middleware-logger": "3.40.0",
33
- "@aws-sdk/middleware-retry": "3.40.0",
34
- "@aws-sdk/middleware-serde": "3.40.0",
35
- "@aws-sdk/middleware-signing": "3.40.0",
36
- "@aws-sdk/middleware-stack": "3.40.0",
37
- "@aws-sdk/middleware-user-agent": "3.40.0",
38
- "@aws-sdk/node-config-provider": "3.40.0",
39
- "@aws-sdk/node-http-handler": "3.40.0",
40
- "@aws-sdk/protocol-http": "3.40.0",
41
- "@aws-sdk/smithy-client": "3.41.0",
42
- "@aws-sdk/types": "3.40.0",
43
- "@aws-sdk/url-parser": "3.40.0",
44
- "@aws-sdk/util-base64-browser": "3.37.0",
45
- "@aws-sdk/util-base64-node": "3.37.0",
46
- "@aws-sdk/util-body-length-browser": "3.37.0",
47
- "@aws-sdk/util-body-length-node": "3.37.0",
48
- "@aws-sdk/util-user-agent-browser": "3.40.0",
49
- "@aws-sdk/util-user-agent-node": "3.40.0",
50
- "@aws-sdk/util-utf8-browser": "3.37.0",
51
- "@aws-sdk/util-utf8-node": "3.37.0",
21
+ "@aws-sdk/client-sts": "3.47.0",
22
+ "@aws-sdk/config-resolver": "3.47.0",
23
+ "@aws-sdk/credential-provider-node": "3.47.0",
24
+ "@aws-sdk/fetch-http-handler": "3.47.0",
25
+ "@aws-sdk/hash-node": "3.47.0",
26
+ "@aws-sdk/invalid-dependency": "3.47.0",
27
+ "@aws-sdk/middleware-content-length": "3.47.0",
28
+ "@aws-sdk/middleware-host-header": "3.47.0",
29
+ "@aws-sdk/middleware-logger": "3.47.0",
30
+ "@aws-sdk/middleware-retry": "3.47.0",
31
+ "@aws-sdk/middleware-serde": "3.47.0",
32
+ "@aws-sdk/middleware-signing": "3.47.0",
33
+ "@aws-sdk/middleware-stack": "3.47.0",
34
+ "@aws-sdk/middleware-user-agent": "3.47.0",
35
+ "@aws-sdk/node-config-provider": "3.47.0",
36
+ "@aws-sdk/node-http-handler": "3.47.0",
37
+ "@aws-sdk/protocol-http": "3.47.0",
38
+ "@aws-sdk/smithy-client": "3.47.0",
39
+ "@aws-sdk/types": "3.47.0",
40
+ "@aws-sdk/url-parser": "3.47.0",
41
+ "@aws-sdk/util-base64-browser": "3.47.0",
42
+ "@aws-sdk/util-base64-node": "3.47.0",
43
+ "@aws-sdk/util-body-length-browser": "3.47.0",
44
+ "@aws-sdk/util-body-length-node": "3.47.0",
45
+ "@aws-sdk/util-defaults-mode-browser": "3.47.0",
46
+ "@aws-sdk/util-defaults-mode-node": "3.47.0",
47
+ "@aws-sdk/util-user-agent-browser": "3.47.0",
48
+ "@aws-sdk/util-user-agent-node": "3.47.0",
49
+ "@aws-sdk/util-utf8-browser": "3.47.0",
50
+ "@aws-sdk/util-utf8-node": "3.47.0",
52
51
  "tslib": "^2.3.0",
53
52
  "uuid": "^8.3.2"
54
53
  },
55
54
  "devDependencies": {
56
- "@aws-sdk/service-client-documentation-generator": "3.38.0",
55
+ "@aws-sdk/service-client-documentation-generator": "3.47.0",
57
56
  "@types/node": "^12.7.5",
58
- "@types/uuid": "^8.3.0",
59
- "downlevel-dts": "0.7.0",
60
- "jest": "^26.1.0",
61
- "rimraf": "^3.0.0",
62
- "ts-jest": "^26.4.1",
63
- "typedoc": "^0.19.2",
64
- "typescript": "~4.3.5"
57
+ "@types/uuid": "^8.3.0"
65
58
  },
66
59
  "engines": {
67
- "node": ">=10.0.0"
60
+ "node": ">=12.0.0"
68
61
  },
69
62
  "typesVersions": {
70
63
  "<4.0": {