@aws-sdk/client-chime-sdk-voice 3.934.0 → 3.935.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 +147 -146
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +146 -0
- package/dist-es/models/errors.js +193 -0
- package/dist-es/models/models_0.js +1 -339
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +338 -0
- package/dist-types/models/errors.d.ts +171 -0
- package/dist-types/models/models_0.d.ts +1 -508
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +188 -0
- package/dist-types/ts3.4/models/errors.d.ts +103 -0
- package/dist-types/ts3.4/models/models_0.d.ts +26 -290
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,33 +1,29 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
constructor(
|
|
28
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
29
|
-
);
|
|
30
|
-
}
|
|
1
|
+
import {
|
|
2
|
+
AlexaSkillStatus,
|
|
3
|
+
CallingNameStatus,
|
|
4
|
+
CallLegType,
|
|
5
|
+
Capability,
|
|
6
|
+
ContactCenterSystemType,
|
|
7
|
+
ErrorCode,
|
|
8
|
+
GeoMatchLevel,
|
|
9
|
+
LanguageCode,
|
|
10
|
+
NetworkType,
|
|
11
|
+
NotificationTarget,
|
|
12
|
+
NumberSelectionBehavior,
|
|
13
|
+
OrderedPhoneNumberStatus,
|
|
14
|
+
OriginationRouteProtocol,
|
|
15
|
+
PhoneNumberAssociationName,
|
|
16
|
+
PhoneNumberOrderStatus,
|
|
17
|
+
PhoneNumberOrderType,
|
|
18
|
+
PhoneNumberProductType,
|
|
19
|
+
PhoneNumberStatus,
|
|
20
|
+
PhoneNumberType,
|
|
21
|
+
ProxySessionStatus,
|
|
22
|
+
SessionBorderControllerType,
|
|
23
|
+
SipRuleTriggerType,
|
|
24
|
+
VoiceConnectorAwsRegion,
|
|
25
|
+
VoiceConnectorIntegrationType,
|
|
26
|
+
} from "./enums";
|
|
31
27
|
export interface Address {
|
|
32
28
|
streetName?: string | undefined;
|
|
33
29
|
streetSuffix?: string | undefined;
|
|
@@ -40,12 +36,6 @@ export interface Address {
|
|
|
40
36
|
postalCodePlus4?: string | undefined;
|
|
41
37
|
country?: string | undefined;
|
|
42
38
|
}
|
|
43
|
-
export declare const AlexaSkillStatus: {
|
|
44
|
-
readonly ACTIVE: "ACTIVE";
|
|
45
|
-
readonly INACTIVE: "INACTIVE";
|
|
46
|
-
};
|
|
47
|
-
export type AlexaSkillStatus =
|
|
48
|
-
(typeof AlexaSkillStatus)[keyof typeof AlexaSkillStatus];
|
|
49
39
|
export interface AssociatePhoneNumbersWithVoiceConnectorRequest {
|
|
50
40
|
VoiceConnectorId: string | undefined;
|
|
51
41
|
E164PhoneNumbers: string[] | undefined;
|
|
@@ -59,65 +49,6 @@ export interface PhoneNumberError {
|
|
|
59
49
|
export interface AssociatePhoneNumbersWithVoiceConnectorResponse {
|
|
60
50
|
PhoneNumberErrors?: PhoneNumberError[] | undefined;
|
|
61
51
|
}
|
|
62
|
-
export declare class BadRequestException extends __BaseException {
|
|
63
|
-
readonly name: "BadRequestException";
|
|
64
|
-
readonly $fault: "client";
|
|
65
|
-
Code?: ErrorCode | undefined;
|
|
66
|
-
Message?: string | undefined;
|
|
67
|
-
constructor(
|
|
68
|
-
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
69
|
-
);
|
|
70
|
-
}
|
|
71
|
-
export declare class ForbiddenException extends __BaseException {
|
|
72
|
-
readonly name: "ForbiddenException";
|
|
73
|
-
readonly $fault: "client";
|
|
74
|
-
Code?: ErrorCode | undefined;
|
|
75
|
-
Message?: string | undefined;
|
|
76
|
-
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
77
|
-
}
|
|
78
|
-
export declare class NotFoundException extends __BaseException {
|
|
79
|
-
readonly name: "NotFoundException";
|
|
80
|
-
readonly $fault: "client";
|
|
81
|
-
Code?: ErrorCode | undefined;
|
|
82
|
-
Message?: string | undefined;
|
|
83
|
-
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
84
|
-
}
|
|
85
|
-
export declare class ServiceFailureException extends __BaseException {
|
|
86
|
-
readonly name: "ServiceFailureException";
|
|
87
|
-
readonly $fault: "server";
|
|
88
|
-
Code?: ErrorCode | undefined;
|
|
89
|
-
Message?: string | undefined;
|
|
90
|
-
constructor(
|
|
91
|
-
opts: __ExceptionOptionType<ServiceFailureException, __BaseException>
|
|
92
|
-
);
|
|
93
|
-
}
|
|
94
|
-
export declare class ServiceUnavailableException extends __BaseException {
|
|
95
|
-
readonly name: "ServiceUnavailableException";
|
|
96
|
-
readonly $fault: "server";
|
|
97
|
-
Code?: ErrorCode | undefined;
|
|
98
|
-
Message?: string | undefined;
|
|
99
|
-
constructor(
|
|
100
|
-
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
101
|
-
);
|
|
102
|
-
}
|
|
103
|
-
export declare class ThrottledClientException extends __BaseException {
|
|
104
|
-
readonly name: "ThrottledClientException";
|
|
105
|
-
readonly $fault: "client";
|
|
106
|
-
Code?: ErrorCode | undefined;
|
|
107
|
-
Message?: string | undefined;
|
|
108
|
-
constructor(
|
|
109
|
-
opts: __ExceptionOptionType<ThrottledClientException, __BaseException>
|
|
110
|
-
);
|
|
111
|
-
}
|
|
112
|
-
export declare class UnauthorizedClientException extends __BaseException {
|
|
113
|
-
readonly name: "UnauthorizedClientException";
|
|
114
|
-
readonly $fault: "client";
|
|
115
|
-
Code?: ErrorCode | undefined;
|
|
116
|
-
Message?: string | undefined;
|
|
117
|
-
constructor(
|
|
118
|
-
opts: __ExceptionOptionType<UnauthorizedClientException, __BaseException>
|
|
119
|
-
);
|
|
120
|
-
}
|
|
121
52
|
export interface AssociatePhoneNumbersWithVoiceConnectorGroupRequest {
|
|
122
53
|
VoiceConnectorGroupId: string | undefined;
|
|
123
54
|
E164PhoneNumbers: string[] | undefined;
|
|
@@ -132,12 +63,6 @@ export interface BatchDeletePhoneNumberRequest {
|
|
|
132
63
|
export interface BatchDeletePhoneNumberResponse {
|
|
133
64
|
PhoneNumberErrors?: PhoneNumberError[] | undefined;
|
|
134
65
|
}
|
|
135
|
-
export declare const PhoneNumberProductType: {
|
|
136
|
-
readonly SipMediaApplicationDialIn: "SipMediaApplicationDialIn";
|
|
137
|
-
readonly VoiceConnector: "VoiceConnector";
|
|
138
|
-
};
|
|
139
|
-
export type PhoneNumberProductType =
|
|
140
|
-
(typeof PhoneNumberProductType)[keyof typeof PhoneNumberProductType];
|
|
141
66
|
export interface UpdatePhoneNumberRequestItem {
|
|
142
67
|
PhoneNumberId: string | undefined;
|
|
143
68
|
ProductType?: PhoneNumberProductType | undefined;
|
|
@@ -155,19 +80,6 @@ export interface CallDetails {
|
|
|
155
80
|
TransactionId?: string | undefined;
|
|
156
81
|
IsCaller?: boolean | undefined;
|
|
157
82
|
}
|
|
158
|
-
export declare const CallingNameStatus: {
|
|
159
|
-
readonly Unassigned: "Unassigned";
|
|
160
|
-
readonly UpdateFailed: "UpdateFailed";
|
|
161
|
-
readonly UpdateInProgress: "UpdateInProgress";
|
|
162
|
-
readonly UpdateSucceeded: "UpdateSucceeded";
|
|
163
|
-
};
|
|
164
|
-
export type CallingNameStatus =
|
|
165
|
-
(typeof CallingNameStatus)[keyof typeof CallingNameStatus];
|
|
166
|
-
export declare const CallLegType: {
|
|
167
|
-
readonly CALLEE: "Callee";
|
|
168
|
-
readonly CALLER: "Caller";
|
|
169
|
-
};
|
|
170
|
-
export type CallLegType = (typeof CallLegType)[keyof typeof CallLegType];
|
|
171
83
|
export interface CandidateAddress {
|
|
172
84
|
streetInfo?: string | undefined;
|
|
173
85
|
streetNumber?: string | undefined;
|
|
@@ -177,48 +89,15 @@ export interface CandidateAddress {
|
|
|
177
89
|
postalCodePlus4?: string | undefined;
|
|
178
90
|
country?: string | undefined;
|
|
179
91
|
}
|
|
180
|
-
export declare const Capability: {
|
|
181
|
-
readonly SMS: "SMS";
|
|
182
|
-
readonly Voice: "Voice";
|
|
183
|
-
};
|
|
184
|
-
export type Capability = (typeof Capability)[keyof typeof Capability];
|
|
185
92
|
export interface CreatePhoneNumberOrderRequest {
|
|
186
93
|
ProductType: PhoneNumberProductType | undefined;
|
|
187
94
|
E164PhoneNumbers: string[] | undefined;
|
|
188
95
|
Name?: string | undefined;
|
|
189
96
|
}
|
|
190
|
-
export declare const OrderedPhoneNumberStatus: {
|
|
191
|
-
readonly Acquired: "Acquired";
|
|
192
|
-
readonly Failed: "Failed";
|
|
193
|
-
readonly Processing: "Processing";
|
|
194
|
-
};
|
|
195
|
-
export type OrderedPhoneNumberStatus =
|
|
196
|
-
(typeof OrderedPhoneNumberStatus)[keyof typeof OrderedPhoneNumberStatus];
|
|
197
97
|
export interface OrderedPhoneNumber {
|
|
198
98
|
E164PhoneNumber?: string | undefined;
|
|
199
99
|
Status?: OrderedPhoneNumberStatus | undefined;
|
|
200
100
|
}
|
|
201
|
-
export declare const PhoneNumberOrderType: {
|
|
202
|
-
readonly New: "New";
|
|
203
|
-
readonly Porting: "Porting";
|
|
204
|
-
};
|
|
205
|
-
export type PhoneNumberOrderType =
|
|
206
|
-
(typeof PhoneNumberOrderType)[keyof typeof PhoneNumberOrderType];
|
|
207
|
-
export declare const PhoneNumberOrderStatus: {
|
|
208
|
-
readonly CancelRequested: "CancelRequested";
|
|
209
|
-
readonly Cancelled: "Cancelled";
|
|
210
|
-
readonly ChangeRequested: "ChangeRequested";
|
|
211
|
-
readonly Exception: "Exception";
|
|
212
|
-
readonly FOC: "FOC";
|
|
213
|
-
readonly Failed: "Failed";
|
|
214
|
-
readonly Partial: "Partial";
|
|
215
|
-
readonly PendingDocuments: "PendingDocuments";
|
|
216
|
-
readonly Processing: "Processing";
|
|
217
|
-
readonly Submitted: "Submitted";
|
|
218
|
-
readonly Successful: "Successful";
|
|
219
|
-
};
|
|
220
|
-
export type PhoneNumberOrderStatus =
|
|
221
|
-
(typeof PhoneNumberOrderStatus)[keyof typeof PhoneNumberOrderStatus];
|
|
222
101
|
export interface PhoneNumberOrder {
|
|
223
102
|
PhoneNumberOrderId?: string | undefined;
|
|
224
103
|
ProductType?: PhoneNumberProductType | undefined;
|
|
@@ -232,30 +111,10 @@ export interface PhoneNumberOrder {
|
|
|
232
111
|
export interface CreatePhoneNumberOrderResponse {
|
|
233
112
|
PhoneNumberOrder?: PhoneNumberOrder | undefined;
|
|
234
113
|
}
|
|
235
|
-
export declare class ResourceLimitExceededException extends __BaseException {
|
|
236
|
-
readonly name: "ResourceLimitExceededException";
|
|
237
|
-
readonly $fault: "client";
|
|
238
|
-
Code?: ErrorCode | undefined;
|
|
239
|
-
Message?: string | undefined;
|
|
240
|
-
constructor(
|
|
241
|
-
opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>
|
|
242
|
-
);
|
|
243
|
-
}
|
|
244
|
-
export declare const GeoMatchLevel: {
|
|
245
|
-
readonly AreaCode: "AreaCode";
|
|
246
|
-
readonly Country: "Country";
|
|
247
|
-
};
|
|
248
|
-
export type GeoMatchLevel = (typeof GeoMatchLevel)[keyof typeof GeoMatchLevel];
|
|
249
114
|
export interface GeoMatchParams {
|
|
250
115
|
Country: string | undefined;
|
|
251
116
|
AreaCode: string | undefined;
|
|
252
117
|
}
|
|
253
|
-
export declare const NumberSelectionBehavior: {
|
|
254
|
-
readonly AvoidSticky: "AvoidSticky";
|
|
255
|
-
readonly PreferSticky: "PreferSticky";
|
|
256
|
-
};
|
|
257
|
-
export type NumberSelectionBehavior =
|
|
258
|
-
(typeof NumberSelectionBehavior)[keyof typeof NumberSelectionBehavior];
|
|
259
118
|
export interface CreateProxySessionRequest {
|
|
260
119
|
VoiceConnectorId: string | undefined;
|
|
261
120
|
ParticipantPhoneNumbers: string[] | undefined;
|
|
@@ -270,13 +129,6 @@ export interface Participant {
|
|
|
270
129
|
PhoneNumber?: string | undefined;
|
|
271
130
|
ProxyPhoneNumber?: string | undefined;
|
|
272
131
|
}
|
|
273
|
-
export declare const ProxySessionStatus: {
|
|
274
|
-
readonly Closed: "Closed";
|
|
275
|
-
readonly InProgress: "InProgress";
|
|
276
|
-
readonly Open: "Open";
|
|
277
|
-
};
|
|
278
|
-
export type ProxySessionStatus =
|
|
279
|
-
(typeof ProxySessionStatus)[keyof typeof ProxySessionStatus];
|
|
280
132
|
export interface ProxySession {
|
|
281
133
|
VoiceConnectorId?: string | undefined;
|
|
282
134
|
ProxySessionId?: string | undefined;
|
|
@@ -295,13 +147,6 @@ export interface ProxySession {
|
|
|
295
147
|
export interface CreateProxySessionResponse {
|
|
296
148
|
ProxySession?: ProxySession | undefined;
|
|
297
149
|
}
|
|
298
|
-
export declare class ConflictException extends __BaseException {
|
|
299
|
-
readonly name: "ConflictException";
|
|
300
|
-
readonly $fault: "client";
|
|
301
|
-
Code?: ErrorCode | undefined;
|
|
302
|
-
Message?: string | undefined;
|
|
303
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
304
|
-
}
|
|
305
150
|
export interface SipMediaApplicationEndpoint {
|
|
306
151
|
LambdaArn?: string | undefined;
|
|
307
152
|
}
|
|
@@ -345,12 +190,6 @@ export interface SipRuleTargetApplication {
|
|
|
345
190
|
Priority?: number | undefined;
|
|
346
191
|
AwsRegion?: string | undefined;
|
|
347
192
|
}
|
|
348
|
-
export declare const SipRuleTriggerType: {
|
|
349
|
-
readonly RequestUriHostname: "RequestUriHostname";
|
|
350
|
-
readonly ToPhoneNumber: "ToPhoneNumber";
|
|
351
|
-
};
|
|
352
|
-
export type SipRuleTriggerType =
|
|
353
|
-
(typeof SipRuleTriggerType)[keyof typeof SipRuleTriggerType];
|
|
354
193
|
export interface CreateSipRuleRequest {
|
|
355
194
|
Name: string | undefined;
|
|
356
195
|
TriggerType: SipRuleTriggerType | undefined;
|
|
@@ -371,31 +210,6 @@ export interface SipRule {
|
|
|
371
210
|
export interface CreateSipRuleResponse {
|
|
372
211
|
SipRule?: SipRule | undefined;
|
|
373
212
|
}
|
|
374
|
-
export declare const VoiceConnectorAwsRegion: {
|
|
375
|
-
readonly AP_NORTHEAST_1: "ap-northeast-1";
|
|
376
|
-
readonly AP_NORTHEAST_2: "ap-northeast-2";
|
|
377
|
-
readonly AP_SOUTHEAST_1: "ap-southeast-1";
|
|
378
|
-
readonly AP_SOUTHEAST_2: "ap-southeast-2";
|
|
379
|
-
readonly CA_CENTRAL_1: "ca-central-1";
|
|
380
|
-
readonly EU_CENTRAL_1: "eu-central-1";
|
|
381
|
-
readonly EU_WEST_1: "eu-west-1";
|
|
382
|
-
readonly EU_WEST_2: "eu-west-2";
|
|
383
|
-
readonly US_EAST_1: "us-east-1";
|
|
384
|
-
readonly US_WEST_2: "us-west-2";
|
|
385
|
-
};
|
|
386
|
-
export type VoiceConnectorAwsRegion =
|
|
387
|
-
(typeof VoiceConnectorAwsRegion)[keyof typeof VoiceConnectorAwsRegion];
|
|
388
|
-
export declare const VoiceConnectorIntegrationType: {
|
|
389
|
-
readonly CONNECT_ANALYTICS_CONNECTOR: "CONNECT_ANALYTICS_CONNECTOR";
|
|
390
|
-
readonly CONNECT_CALL_TRANSFER_CONNECTOR: "CONNECT_CALL_TRANSFER_CONNECTOR";
|
|
391
|
-
};
|
|
392
|
-
export type VoiceConnectorIntegrationType =
|
|
393
|
-
(typeof VoiceConnectorIntegrationType)[keyof typeof VoiceConnectorIntegrationType];
|
|
394
|
-
export declare const NetworkType: {
|
|
395
|
-
readonly DUAL_STACK: "DUAL_STACK";
|
|
396
|
-
readonly IPV4_ONLY: "IPV4_ONLY";
|
|
397
|
-
};
|
|
398
|
-
export type NetworkType = (typeof NetworkType)[keyof typeof NetworkType];
|
|
399
213
|
export interface CreateVoiceConnectorRequest {
|
|
400
214
|
Name: string | undefined;
|
|
401
215
|
AwsRegion?: VoiceConnectorAwsRegion | undefined;
|
|
@@ -452,13 +266,6 @@ export interface VoiceProfile {
|
|
|
452
266
|
export interface CreateVoiceProfileResponse {
|
|
453
267
|
VoiceProfile?: VoiceProfile | undefined;
|
|
454
268
|
}
|
|
455
|
-
export declare class GoneException extends __BaseException {
|
|
456
|
-
readonly name: "GoneException";
|
|
457
|
-
readonly $fault: "client";
|
|
458
|
-
Code?: ErrorCode | undefined;
|
|
459
|
-
Message?: string | undefined;
|
|
460
|
-
constructor(opts: __ExceptionOptionType<GoneException, __BaseException>);
|
|
461
|
-
}
|
|
462
269
|
export interface ServerSideEncryptionConfiguration {
|
|
463
270
|
KmsKeyArn: string | undefined;
|
|
464
271
|
}
|
|
@@ -555,13 +362,6 @@ export interface GetGlobalSettingsResponse {
|
|
|
555
362
|
export interface GetPhoneNumberRequest {
|
|
556
363
|
PhoneNumberId: string | undefined;
|
|
557
364
|
}
|
|
558
|
-
export declare const PhoneNumberAssociationName: {
|
|
559
|
-
readonly SipRuleId: "SipRuleId";
|
|
560
|
-
readonly VoiceConnectorGroupId: "VoiceConnectorGroupId";
|
|
561
|
-
readonly VoiceConnectorId: "VoiceConnectorId";
|
|
562
|
-
};
|
|
563
|
-
export type PhoneNumberAssociationName =
|
|
564
|
-
(typeof PhoneNumberAssociationName)[keyof typeof PhoneNumberAssociationName];
|
|
565
365
|
export interface PhoneNumberAssociation {
|
|
566
366
|
Value?: string | undefined;
|
|
567
367
|
Name?: PhoneNumberAssociationName | undefined;
|
|
@@ -575,27 +375,6 @@ export interface PhoneNumberCapabilities {
|
|
|
575
375
|
InboundMMS?: boolean | undefined;
|
|
576
376
|
OutboundMMS?: boolean | undefined;
|
|
577
377
|
}
|
|
578
|
-
export declare const PhoneNumberStatus: {
|
|
579
|
-
readonly AcquireFailed: "AcquireFailed";
|
|
580
|
-
readonly AcquireInProgress: "AcquireInProgress";
|
|
581
|
-
readonly Assigned: "Assigned";
|
|
582
|
-
readonly Cancelled: "Cancelled";
|
|
583
|
-
readonly DeleteFailed: "DeleteFailed";
|
|
584
|
-
readonly DeleteInProgress: "DeleteInProgress";
|
|
585
|
-
readonly PortinCancelRequested: "PortinCancelRequested";
|
|
586
|
-
readonly PortinInProgress: "PortinInProgress";
|
|
587
|
-
readonly ReleaseFailed: "ReleaseFailed";
|
|
588
|
-
readonly ReleaseInProgress: "ReleaseInProgress";
|
|
589
|
-
readonly Unassigned: "Unassigned";
|
|
590
|
-
};
|
|
591
|
-
export type PhoneNumberStatus =
|
|
592
|
-
(typeof PhoneNumberStatus)[keyof typeof PhoneNumberStatus];
|
|
593
|
-
export declare const PhoneNumberType: {
|
|
594
|
-
readonly Local: "Local";
|
|
595
|
-
readonly TollFree: "TollFree";
|
|
596
|
-
};
|
|
597
|
-
export type PhoneNumberType =
|
|
598
|
-
(typeof PhoneNumberType)[keyof typeof PhoneNumberType];
|
|
599
378
|
export interface PhoneNumber {
|
|
600
379
|
PhoneNumberId?: string | undefined;
|
|
601
380
|
E164PhoneNumber?: string | undefined;
|
|
@@ -716,23 +495,6 @@ export interface GetVoiceConnectorEmergencyCallingConfigurationResponse {
|
|
|
716
495
|
export interface GetVoiceConnectorExternalSystemsConfigurationRequest {
|
|
717
496
|
VoiceConnectorId: string | undefined;
|
|
718
497
|
}
|
|
719
|
-
export declare const ContactCenterSystemType: {
|
|
720
|
-
readonly AVAYA_AURA_CALL_CENTER_ELITE: "AVAYA_AURA_CALL_CENTER_ELITE";
|
|
721
|
-
readonly AVAYA_AURA_CONTACT_CENTER: "AVAYA_AURA_CONTACT_CENTER";
|
|
722
|
-
readonly CISCO_UNIFIED_CONTACT_CENTER_ENTERPRISE: "CISCO_UNIFIED_CONTACT_CENTER_ENTERPRISE";
|
|
723
|
-
readonly GENESYS_ENGAGE_ON_PREMISES: "GENESYS_ENGAGE_ON_PREMISES";
|
|
724
|
-
};
|
|
725
|
-
export type ContactCenterSystemType =
|
|
726
|
-
(typeof ContactCenterSystemType)[keyof typeof ContactCenterSystemType];
|
|
727
|
-
export declare const SessionBorderControllerType: {
|
|
728
|
-
readonly AUDIOCODES_MEDIANT_SBC: "AUDIOCODES_MEDIANT_SBC";
|
|
729
|
-
readonly AVAYA_SBCE: "AVAYA_SBCE";
|
|
730
|
-
readonly CISCO_UNIFIED_BORDER_ELEMENT: "CISCO_UNIFIED_BORDER_ELEMENT";
|
|
731
|
-
readonly ORACLE_ACME_PACKET_SBC: "ORACLE_ACME_PACKET_SBC";
|
|
732
|
-
readonly RIBBON_SBC: "RIBBON_SBC";
|
|
733
|
-
};
|
|
734
|
-
export type SessionBorderControllerType =
|
|
735
|
-
(typeof SessionBorderControllerType)[keyof typeof SessionBorderControllerType];
|
|
736
498
|
export interface ExternalSystemsConfiguration {
|
|
737
499
|
SessionBorderControllerTypes?: SessionBorderControllerType[] | undefined;
|
|
738
500
|
ContactCenterSystemTypes?: ContactCenterSystemType[] | undefined;
|
|
@@ -759,12 +521,6 @@ export interface GetVoiceConnectorLoggingConfigurationResponse {
|
|
|
759
521
|
export interface GetVoiceConnectorOriginationRequest {
|
|
760
522
|
VoiceConnectorId: string | undefined;
|
|
761
523
|
}
|
|
762
|
-
export declare const OriginationRouteProtocol: {
|
|
763
|
-
readonly TCP: "TCP";
|
|
764
|
-
readonly UDP: "UDP";
|
|
765
|
-
};
|
|
766
|
-
export type OriginationRouteProtocol =
|
|
767
|
-
(typeof OriginationRouteProtocol)[keyof typeof OriginationRouteProtocol];
|
|
768
524
|
export interface OriginationRoute {
|
|
769
525
|
Host?: string | undefined;
|
|
770
526
|
Port?: number | undefined;
|
|
@@ -798,13 +554,6 @@ export interface MediaInsightsConfiguration {
|
|
|
798
554
|
Disabled?: boolean | undefined;
|
|
799
555
|
ConfigurationArn?: string | undefined;
|
|
800
556
|
}
|
|
801
|
-
export declare const NotificationTarget: {
|
|
802
|
-
readonly EventBridge: "EventBridge";
|
|
803
|
-
readonly SNS: "SNS";
|
|
804
|
-
readonly SQS: "SQS";
|
|
805
|
-
};
|
|
806
|
-
export type NotificationTarget =
|
|
807
|
-
(typeof NotificationTarget)[keyof typeof NotificationTarget];
|
|
808
557
|
export interface StreamingNotificationTarget {
|
|
809
558
|
NotificationTarget?: NotificationTarget | undefined;
|
|
810
559
|
}
|
|
@@ -1103,19 +852,6 @@ export interface StartSpeakerSearchTaskRequest {
|
|
|
1103
852
|
export interface StartSpeakerSearchTaskResponse {
|
|
1104
853
|
SpeakerSearchTask?: SpeakerSearchTask | undefined;
|
|
1105
854
|
}
|
|
1106
|
-
export declare class UnprocessableEntityException extends __BaseException {
|
|
1107
|
-
readonly name: "UnprocessableEntityException";
|
|
1108
|
-
readonly $fault: "client";
|
|
1109
|
-
Code?: ErrorCode | undefined;
|
|
1110
|
-
Message?: string | undefined;
|
|
1111
|
-
constructor(
|
|
1112
|
-
opts: __ExceptionOptionType<UnprocessableEntityException, __BaseException>
|
|
1113
|
-
);
|
|
1114
|
-
}
|
|
1115
|
-
export declare const LanguageCode: {
|
|
1116
|
-
readonly EN_US: "en-US";
|
|
1117
|
-
};
|
|
1118
|
-
export type LanguageCode = (typeof LanguageCode)[keyof typeof LanguageCode];
|
|
1119
855
|
export interface StartVoiceToneAnalysisTaskRequest {
|
|
1120
856
|
VoiceConnectorId: string | undefined;
|
|
1121
857
|
TransactionId: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-chime-sdk-voice",
|
|
3
3
|
"description": "AWS SDK for JavaScript Chime Sdk Voice Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.935.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-chime-sdk-voice",
|
|
@@ -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.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.935.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.935.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.935.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.935.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|