@aws-sdk/client-chime 3.933.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 +108 -107
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +107 -0
- package/dist-es/models/errors.js +177 -0
- package/dist-es/models/models_0.js +1 -284
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +251 -0
- package/dist-types/models/errors.d.ts +158 -0
- package/dist-types/models/models_0.d.ts +1 -408
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +134 -0
- package/dist-types/ts3.4/models/errors.d.ts +96 -0
- package/dist-types/ts3.4/models/models_0.d.ts +20 -229
- 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
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { ChimeServiceException as __BaseException } from "./ChimeServiceException";
|
|
3
|
+
import { ErrorCode } from "./enums";
|
|
4
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
+
readonly name: "AccessDeniedException";
|
|
6
|
+
readonly $fault: "client";
|
|
7
|
+
Code?: ErrorCode | undefined;
|
|
8
|
+
Message?: string | undefined;
|
|
9
|
+
constructor(
|
|
10
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
11
|
+
);
|
|
12
|
+
}
|
|
13
|
+
export declare class BadRequestException extends __BaseException {
|
|
14
|
+
readonly name: "BadRequestException";
|
|
15
|
+
readonly $fault: "client";
|
|
16
|
+
Code?: ErrorCode | undefined;
|
|
17
|
+
Message?: string | undefined;
|
|
18
|
+
constructor(
|
|
19
|
+
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
20
|
+
);
|
|
21
|
+
}
|
|
22
|
+
export declare class ForbiddenException extends __BaseException {
|
|
23
|
+
readonly name: "ForbiddenException";
|
|
24
|
+
readonly $fault: "client";
|
|
25
|
+
Code?: ErrorCode | undefined;
|
|
26
|
+
Message?: string | undefined;
|
|
27
|
+
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
28
|
+
}
|
|
29
|
+
export declare class NotFoundException extends __BaseException {
|
|
30
|
+
readonly name: "NotFoundException";
|
|
31
|
+
readonly $fault: "client";
|
|
32
|
+
Code?: ErrorCode | undefined;
|
|
33
|
+
Message?: string | undefined;
|
|
34
|
+
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
35
|
+
}
|
|
36
|
+
export declare class ServiceFailureException extends __BaseException {
|
|
37
|
+
readonly name: "ServiceFailureException";
|
|
38
|
+
readonly $fault: "server";
|
|
39
|
+
Code?: ErrorCode | undefined;
|
|
40
|
+
Message?: string | undefined;
|
|
41
|
+
constructor(
|
|
42
|
+
opts: __ExceptionOptionType<ServiceFailureException, __BaseException>
|
|
43
|
+
);
|
|
44
|
+
}
|
|
45
|
+
export declare class ServiceUnavailableException extends __BaseException {
|
|
46
|
+
readonly name: "ServiceUnavailableException";
|
|
47
|
+
readonly $fault: "server";
|
|
48
|
+
Code?: ErrorCode | undefined;
|
|
49
|
+
Message?: string | undefined;
|
|
50
|
+
constructor(
|
|
51
|
+
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
52
|
+
);
|
|
53
|
+
}
|
|
54
|
+
export declare class ThrottledClientException extends __BaseException {
|
|
55
|
+
readonly name: "ThrottledClientException";
|
|
56
|
+
readonly $fault: "client";
|
|
57
|
+
Code?: ErrorCode | undefined;
|
|
58
|
+
Message?: string | undefined;
|
|
59
|
+
constructor(
|
|
60
|
+
opts: __ExceptionOptionType<ThrottledClientException, __BaseException>
|
|
61
|
+
);
|
|
62
|
+
}
|
|
63
|
+
export declare class UnauthorizedClientException extends __BaseException {
|
|
64
|
+
readonly name: "UnauthorizedClientException";
|
|
65
|
+
readonly $fault: "client";
|
|
66
|
+
Code?: ErrorCode | undefined;
|
|
67
|
+
Message?: string | undefined;
|
|
68
|
+
constructor(
|
|
69
|
+
opts: __ExceptionOptionType<UnauthorizedClientException, __BaseException>
|
|
70
|
+
);
|
|
71
|
+
}
|
|
72
|
+
export declare class ConflictException extends __BaseException {
|
|
73
|
+
readonly name: "ConflictException";
|
|
74
|
+
readonly $fault: "client";
|
|
75
|
+
Code?: ErrorCode | undefined;
|
|
76
|
+
Message?: string | undefined;
|
|
77
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
78
|
+
}
|
|
79
|
+
export declare class ResourceLimitExceededException extends __BaseException {
|
|
80
|
+
readonly name: "ResourceLimitExceededException";
|
|
81
|
+
readonly $fault: "client";
|
|
82
|
+
Code?: ErrorCode | undefined;
|
|
83
|
+
Message?: string | undefined;
|
|
84
|
+
constructor(
|
|
85
|
+
opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>
|
|
86
|
+
);
|
|
87
|
+
}
|
|
88
|
+
export declare class UnprocessableEntityException extends __BaseException {
|
|
89
|
+
readonly name: "UnprocessableEntityException";
|
|
90
|
+
readonly $fault: "client";
|
|
91
|
+
Code?: ErrorCode | undefined;
|
|
92
|
+
Message?: string | undefined;
|
|
93
|
+
constructor(
|
|
94
|
+
opts: __ExceptionOptionType<UnprocessableEntityException, __BaseException>
|
|
95
|
+
);
|
|
96
|
+
}
|
|
@@ -1,51 +1,23 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
22
|
-
readonly name: "AccessDeniedException";
|
|
23
|
-
readonly $fault: "client";
|
|
24
|
-
Code?: ErrorCode | undefined;
|
|
25
|
-
Message?: string | undefined;
|
|
26
|
-
constructor(
|
|
27
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
28
|
-
);
|
|
29
|
-
}
|
|
30
|
-
export declare const AccountStatus: {
|
|
31
|
-
readonly Active: "Active";
|
|
32
|
-
readonly Suspended: "Suspended";
|
|
33
|
-
};
|
|
34
|
-
export type AccountStatus = (typeof AccountStatus)[keyof typeof AccountStatus];
|
|
35
|
-
export declare const AccountType: {
|
|
36
|
-
readonly EnterpriseDirectory: "EnterpriseDirectory";
|
|
37
|
-
readonly EnterpriseLWA: "EnterpriseLWA";
|
|
38
|
-
readonly EnterpriseOIDC: "EnterpriseOIDC";
|
|
39
|
-
readonly Team: "Team";
|
|
40
|
-
};
|
|
41
|
-
export type AccountType = (typeof AccountType)[keyof typeof AccountType];
|
|
42
|
-
export declare const License: {
|
|
43
|
-
readonly Basic: "Basic";
|
|
44
|
-
readonly Plus: "Plus";
|
|
45
|
-
readonly Pro: "Pro";
|
|
46
|
-
readonly ProTrial: "ProTrial";
|
|
47
|
-
};
|
|
48
|
-
export type License = (typeof License)[keyof typeof License];
|
|
1
|
+
import {
|
|
2
|
+
AccountStatus,
|
|
3
|
+
AccountType,
|
|
4
|
+
BotType,
|
|
5
|
+
CallingNameStatus,
|
|
6
|
+
EmailStatus,
|
|
7
|
+
ErrorCode,
|
|
8
|
+
InviteStatus,
|
|
9
|
+
License,
|
|
10
|
+
MemberType,
|
|
11
|
+
OrderedPhoneNumberStatus,
|
|
12
|
+
PhoneNumberAssociationName,
|
|
13
|
+
PhoneNumberOrderStatus,
|
|
14
|
+
PhoneNumberProductType,
|
|
15
|
+
PhoneNumberStatus,
|
|
16
|
+
PhoneNumberType,
|
|
17
|
+
RegistrationStatus,
|
|
18
|
+
RoomMembershipRole,
|
|
19
|
+
UserType,
|
|
20
|
+
} from "./enums";
|
|
49
21
|
export interface SigninDelegateGroup {
|
|
50
22
|
GroupName?: string | undefined;
|
|
51
23
|
}
|
|
@@ -74,76 +46,11 @@ export interface AssociatePhoneNumberWithUserRequest {
|
|
|
74
46
|
E164PhoneNumber: string | undefined;
|
|
75
47
|
}
|
|
76
48
|
export interface AssociatePhoneNumberWithUserResponse {}
|
|
77
|
-
export declare class BadRequestException extends __BaseException {
|
|
78
|
-
readonly name: "BadRequestException";
|
|
79
|
-
readonly $fault: "client";
|
|
80
|
-
Code?: ErrorCode | undefined;
|
|
81
|
-
Message?: string | undefined;
|
|
82
|
-
constructor(
|
|
83
|
-
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
84
|
-
);
|
|
85
|
-
}
|
|
86
|
-
export declare class ForbiddenException extends __BaseException {
|
|
87
|
-
readonly name: "ForbiddenException";
|
|
88
|
-
readonly $fault: "client";
|
|
89
|
-
Code?: ErrorCode | undefined;
|
|
90
|
-
Message?: string | undefined;
|
|
91
|
-
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
92
|
-
}
|
|
93
|
-
export declare class NotFoundException extends __BaseException {
|
|
94
|
-
readonly name: "NotFoundException";
|
|
95
|
-
readonly $fault: "client";
|
|
96
|
-
Code?: ErrorCode | undefined;
|
|
97
|
-
Message?: string | undefined;
|
|
98
|
-
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
99
|
-
}
|
|
100
|
-
export declare class ServiceFailureException extends __BaseException {
|
|
101
|
-
readonly name: "ServiceFailureException";
|
|
102
|
-
readonly $fault: "server";
|
|
103
|
-
Code?: ErrorCode | undefined;
|
|
104
|
-
Message?: string | undefined;
|
|
105
|
-
constructor(
|
|
106
|
-
opts: __ExceptionOptionType<ServiceFailureException, __BaseException>
|
|
107
|
-
);
|
|
108
|
-
}
|
|
109
|
-
export declare class ServiceUnavailableException extends __BaseException {
|
|
110
|
-
readonly name: "ServiceUnavailableException";
|
|
111
|
-
readonly $fault: "server";
|
|
112
|
-
Code?: ErrorCode | undefined;
|
|
113
|
-
Message?: string | undefined;
|
|
114
|
-
constructor(
|
|
115
|
-
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
116
|
-
);
|
|
117
|
-
}
|
|
118
|
-
export declare class ThrottledClientException extends __BaseException {
|
|
119
|
-
readonly name: "ThrottledClientException";
|
|
120
|
-
readonly $fault: "client";
|
|
121
|
-
Code?: ErrorCode | undefined;
|
|
122
|
-
Message?: string | undefined;
|
|
123
|
-
constructor(
|
|
124
|
-
opts: __ExceptionOptionType<ThrottledClientException, __BaseException>
|
|
125
|
-
);
|
|
126
|
-
}
|
|
127
|
-
export declare class UnauthorizedClientException extends __BaseException {
|
|
128
|
-
readonly name: "UnauthorizedClientException";
|
|
129
|
-
readonly $fault: "client";
|
|
130
|
-
Code?: ErrorCode | undefined;
|
|
131
|
-
Message?: string | undefined;
|
|
132
|
-
constructor(
|
|
133
|
-
opts: __ExceptionOptionType<UnauthorizedClientException, __BaseException>
|
|
134
|
-
);
|
|
135
|
-
}
|
|
136
49
|
export interface AssociateSigninDelegateGroupsWithAccountRequest {
|
|
137
50
|
AccountId: string | undefined;
|
|
138
51
|
SigninDelegateGroups: SigninDelegateGroup[] | undefined;
|
|
139
52
|
}
|
|
140
53
|
export interface AssociateSigninDelegateGroupsWithAccountResponse {}
|
|
141
|
-
export declare const RoomMembershipRole: {
|
|
142
|
-
readonly Administrator: "Administrator";
|
|
143
|
-
readonly Member: "Member";
|
|
144
|
-
};
|
|
145
|
-
export type RoomMembershipRole =
|
|
146
|
-
(typeof RoomMembershipRole)[keyof typeof RoomMembershipRole];
|
|
147
54
|
export interface MembershipItem {
|
|
148
55
|
MemberId?: string | undefined;
|
|
149
56
|
Role?: RoomMembershipRole | undefined;
|
|
@@ -191,13 +98,6 @@ export interface BatchUnsuspendUserRequest {
|
|
|
191
98
|
export interface BatchUnsuspendUserResponse {
|
|
192
99
|
UserErrors?: UserError[] | undefined;
|
|
193
100
|
}
|
|
194
|
-
export declare const PhoneNumberProductType: {
|
|
195
|
-
readonly BusinessCalling: "BusinessCalling";
|
|
196
|
-
readonly SipMediaApplicationDialIn: "SipMediaApplicationDialIn";
|
|
197
|
-
readonly VoiceConnector: "VoiceConnector";
|
|
198
|
-
};
|
|
199
|
-
export type PhoneNumberProductType =
|
|
200
|
-
(typeof PhoneNumberProductType)[keyof typeof PhoneNumberProductType];
|
|
201
101
|
export interface UpdatePhoneNumberRequestItem {
|
|
202
102
|
PhoneNumberId: string | undefined;
|
|
203
103
|
ProductType?: PhoneNumberProductType | undefined;
|
|
@@ -209,11 +109,6 @@ export interface BatchUpdatePhoneNumberRequest {
|
|
|
209
109
|
export interface BatchUpdatePhoneNumberResponse {
|
|
210
110
|
PhoneNumberErrors?: PhoneNumberError[] | undefined;
|
|
211
111
|
}
|
|
212
|
-
export declare const UserType: {
|
|
213
|
-
readonly PrivateUser: "PrivateUser";
|
|
214
|
-
readonly SharedDevice: "SharedDevice";
|
|
215
|
-
};
|
|
216
|
-
export type UserType = (typeof UserType)[keyof typeof UserType];
|
|
217
112
|
export interface UpdateUserRequestItem {
|
|
218
113
|
UserId: string | undefined;
|
|
219
114
|
LicenseType?: License | undefined;
|
|
@@ -227,10 +122,6 @@ export interface BatchUpdateUserRequest {
|
|
|
227
122
|
export interface BatchUpdateUserResponse {
|
|
228
123
|
UserErrors?: UserError[] | undefined;
|
|
229
124
|
}
|
|
230
|
-
export declare const BotType: {
|
|
231
|
-
readonly ChatBot: "ChatBot";
|
|
232
|
-
};
|
|
233
|
-
export type BotType = (typeof BotType)[keyof typeof BotType];
|
|
234
125
|
export interface Bot {
|
|
235
126
|
BotId?: string | undefined;
|
|
236
127
|
UserId?: string | undefined;
|
|
@@ -245,21 +136,6 @@ export interface Bot {
|
|
|
245
136
|
export interface BusinessCallingSettings {
|
|
246
137
|
CdrBucket?: string | undefined;
|
|
247
138
|
}
|
|
248
|
-
export declare const CallingNameStatus: {
|
|
249
|
-
readonly Unassigned: "Unassigned";
|
|
250
|
-
readonly UpdateFailed: "UpdateFailed";
|
|
251
|
-
readonly UpdateInProgress: "UpdateInProgress";
|
|
252
|
-
readonly UpdateSucceeded: "UpdateSucceeded";
|
|
253
|
-
};
|
|
254
|
-
export type CallingNameStatus =
|
|
255
|
-
(typeof CallingNameStatus)[keyof typeof CallingNameStatus];
|
|
256
|
-
export declare class ConflictException extends __BaseException {
|
|
257
|
-
readonly name: "ConflictException";
|
|
258
|
-
readonly $fault: "client";
|
|
259
|
-
Code?: ErrorCode | undefined;
|
|
260
|
-
Message?: string | undefined;
|
|
261
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
262
|
-
}
|
|
263
139
|
export interface ConversationRetentionSettings {
|
|
264
140
|
RetentionDays?: number | undefined;
|
|
265
141
|
}
|
|
@@ -277,15 +153,6 @@ export interface CreateBotRequest {
|
|
|
277
153
|
export interface CreateBotResponse {
|
|
278
154
|
Bot?: Bot | undefined;
|
|
279
155
|
}
|
|
280
|
-
export declare class ResourceLimitExceededException extends __BaseException {
|
|
281
|
-
readonly name: "ResourceLimitExceededException";
|
|
282
|
-
readonly $fault: "client";
|
|
283
|
-
Code?: ErrorCode | undefined;
|
|
284
|
-
Message?: string | undefined;
|
|
285
|
-
constructor(
|
|
286
|
-
opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>
|
|
287
|
-
);
|
|
288
|
-
}
|
|
289
156
|
export interface CreateMeetingDialOutRequest {
|
|
290
157
|
MeetingId: string | undefined;
|
|
291
158
|
FromPhoneNumber: string | undefined;
|
|
@@ -299,25 +166,10 @@ export interface CreatePhoneNumberOrderRequest {
|
|
|
299
166
|
ProductType: PhoneNumberProductType | undefined;
|
|
300
167
|
E164PhoneNumbers: string[] | undefined;
|
|
301
168
|
}
|
|
302
|
-
export declare const OrderedPhoneNumberStatus: {
|
|
303
|
-
readonly Acquired: "Acquired";
|
|
304
|
-
readonly Failed: "Failed";
|
|
305
|
-
readonly Processing: "Processing";
|
|
306
|
-
};
|
|
307
|
-
export type OrderedPhoneNumberStatus =
|
|
308
|
-
(typeof OrderedPhoneNumberStatus)[keyof typeof OrderedPhoneNumberStatus];
|
|
309
169
|
export interface OrderedPhoneNumber {
|
|
310
170
|
E164PhoneNumber?: string | undefined;
|
|
311
171
|
Status?: OrderedPhoneNumberStatus | undefined;
|
|
312
172
|
}
|
|
313
|
-
export declare const PhoneNumberOrderStatus: {
|
|
314
|
-
readonly Failed: "Failed";
|
|
315
|
-
readonly Partial: "Partial";
|
|
316
|
-
readonly Processing: "Processing";
|
|
317
|
-
readonly Successful: "Successful";
|
|
318
|
-
};
|
|
319
|
-
export type PhoneNumberOrderStatus =
|
|
320
|
-
(typeof PhoneNumberOrderStatus)[keyof typeof PhoneNumberOrderStatus];
|
|
321
173
|
export interface PhoneNumberOrder {
|
|
322
174
|
PhoneNumberOrderId?: string | undefined;
|
|
323
175
|
ProductType?: PhoneNumberProductType | undefined;
|
|
@@ -351,12 +203,6 @@ export interface CreateRoomMembershipRequest {
|
|
|
351
203
|
MemberId: string | undefined;
|
|
352
204
|
Role?: RoomMembershipRole | undefined;
|
|
353
205
|
}
|
|
354
|
-
export declare const MemberType: {
|
|
355
|
-
readonly Bot: "Bot";
|
|
356
|
-
readonly User: "User";
|
|
357
|
-
readonly Webhook: "Webhook";
|
|
358
|
-
};
|
|
359
|
-
export type MemberType = (typeof MemberType)[keyof typeof MemberType];
|
|
360
206
|
export interface Member {
|
|
361
207
|
MemberId?: string | undefined;
|
|
362
208
|
MemberType?: MemberType | undefined;
|
|
@@ -380,19 +226,6 @@ export interface CreateUserRequest {
|
|
|
380
226
|
Email?: string | undefined;
|
|
381
227
|
UserType?: UserType | undefined;
|
|
382
228
|
}
|
|
383
|
-
export declare const InviteStatus: {
|
|
384
|
-
readonly Accepted: "Accepted";
|
|
385
|
-
readonly Failed: "Failed";
|
|
386
|
-
readonly Pending: "Pending";
|
|
387
|
-
};
|
|
388
|
-
export type InviteStatus = (typeof InviteStatus)[keyof typeof InviteStatus];
|
|
389
|
-
export declare const RegistrationStatus: {
|
|
390
|
-
readonly Registered: "Registered";
|
|
391
|
-
readonly Suspended: "Suspended";
|
|
392
|
-
readonly Unregistered: "Unregistered";
|
|
393
|
-
};
|
|
394
|
-
export type RegistrationStatus =
|
|
395
|
-
(typeof RegistrationStatus)[keyof typeof RegistrationStatus];
|
|
396
229
|
export interface User {
|
|
397
230
|
UserId: string | undefined;
|
|
398
231
|
AccountId?: string | undefined;
|
|
@@ -415,15 +248,6 @@ export interface DeleteAccountRequest {
|
|
|
415
248
|
AccountId: string | undefined;
|
|
416
249
|
}
|
|
417
250
|
export interface DeleteAccountResponse {}
|
|
418
|
-
export declare class UnprocessableEntityException extends __BaseException {
|
|
419
|
-
readonly name: "UnprocessableEntityException";
|
|
420
|
-
readonly $fault: "client";
|
|
421
|
-
Code?: ErrorCode | undefined;
|
|
422
|
-
Message?: string | undefined;
|
|
423
|
-
constructor(
|
|
424
|
-
opts: __ExceptionOptionType<UnprocessableEntityException, __BaseException>
|
|
425
|
-
);
|
|
426
|
-
}
|
|
427
251
|
export interface DeleteEventsConfigurationRequest {
|
|
428
252
|
AccountId: string | undefined;
|
|
429
253
|
BotId: string | undefined;
|
|
@@ -450,12 +274,6 @@ export interface DisassociateSigninDelegateGroupsFromAccountRequest {
|
|
|
450
274
|
GroupNames: string[] | undefined;
|
|
451
275
|
}
|
|
452
276
|
export interface DisassociateSigninDelegateGroupsFromAccountResponse {}
|
|
453
|
-
export declare const EmailStatus: {
|
|
454
|
-
readonly Failed: "Failed";
|
|
455
|
-
readonly NotSent: "NotSent";
|
|
456
|
-
readonly Sent: "Sent";
|
|
457
|
-
};
|
|
458
|
-
export type EmailStatus = (typeof EmailStatus)[keyof typeof EmailStatus];
|
|
459
277
|
export interface EventsConfiguration {
|
|
460
278
|
BotId?: string | undefined;
|
|
461
279
|
OutboundEventsHTTPSEndpoint?: string | undefined;
|
|
@@ -497,15 +315,6 @@ export interface GetGlobalSettingsResponse {
|
|
|
497
315
|
export interface GetPhoneNumberRequest {
|
|
498
316
|
PhoneNumberId: string | undefined;
|
|
499
317
|
}
|
|
500
|
-
export declare const PhoneNumberAssociationName: {
|
|
501
|
-
readonly AccountId: "AccountId";
|
|
502
|
-
readonly SipRuleId: "SipRuleId";
|
|
503
|
-
readonly UserId: "UserId";
|
|
504
|
-
readonly VoiceConnectorGroupId: "VoiceConnectorGroupId";
|
|
505
|
-
readonly VoiceConnectorId: "VoiceConnectorId";
|
|
506
|
-
};
|
|
507
|
-
export type PhoneNumberAssociationName =
|
|
508
|
-
(typeof PhoneNumberAssociationName)[keyof typeof PhoneNumberAssociationName];
|
|
509
318
|
export interface PhoneNumberAssociation {
|
|
510
319
|
Value?: string | undefined;
|
|
511
320
|
Name?: PhoneNumberAssociationName | undefined;
|
|
@@ -519,24 +328,6 @@ export interface PhoneNumberCapabilities {
|
|
|
519
328
|
InboundMMS?: boolean | undefined;
|
|
520
329
|
OutboundMMS?: boolean | undefined;
|
|
521
330
|
}
|
|
522
|
-
export declare const PhoneNumberStatus: {
|
|
523
|
-
readonly AcquireFailed: "AcquireFailed";
|
|
524
|
-
readonly AcquireInProgress: "AcquireInProgress";
|
|
525
|
-
readonly Assigned: "Assigned";
|
|
526
|
-
readonly DeleteFailed: "DeleteFailed";
|
|
527
|
-
readonly DeleteInProgress: "DeleteInProgress";
|
|
528
|
-
readonly ReleaseFailed: "ReleaseFailed";
|
|
529
|
-
readonly ReleaseInProgress: "ReleaseInProgress";
|
|
530
|
-
readonly Unassigned: "Unassigned";
|
|
531
|
-
};
|
|
532
|
-
export type PhoneNumberStatus =
|
|
533
|
-
(typeof PhoneNumberStatus)[keyof typeof PhoneNumberStatus];
|
|
534
|
-
export declare const PhoneNumberType: {
|
|
535
|
-
readonly Local: "Local";
|
|
536
|
-
readonly TollFree: "TollFree";
|
|
537
|
-
};
|
|
538
|
-
export type PhoneNumberType =
|
|
539
|
-
(typeof PhoneNumberType)[keyof typeof PhoneNumberType];
|
|
540
331
|
export interface PhoneNumber {
|
|
541
332
|
PhoneNumberId?: string | undefined;
|
|
542
333
|
E164PhoneNumber?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-chime",
|
|
3
3
|
"description": "AWS SDK for JavaScript Chime 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",
|
|
@@ -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";
|