@aws-sdk/client-chime-sdk-identity 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 +51 -50
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +50 -0
- package/dist-es/models/errors.js +145 -0
- package/dist-es/models/models_0.js +1 -195
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +122 -0
- package/dist-types/models/errors.d.ts +130 -0
- package/dist-types/models/models_0.d.ts +1 -251
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +65 -0
- package/dist-types/ts3.4/models/errors.d.ts +78 -0
- package/dist-types/ts3.4/models/models_0.d.ts +10 -142
- 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,10 +1,13 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import {
|
|
2
|
+
AllowMessages,
|
|
3
|
+
AppInstanceUserEndpointType,
|
|
4
|
+
EndpointStatus,
|
|
5
|
+
EndpointStatusReason,
|
|
6
|
+
ExpirationCriterion,
|
|
7
|
+
RespondsTo,
|
|
8
|
+
StandardMessages,
|
|
9
|
+
TargetedMessages,
|
|
10
|
+
} from "./enums";
|
|
8
11
|
export interface AppInstance {
|
|
9
12
|
AppInstanceArn?: string | undefined;
|
|
10
13
|
Name?: string | undefined;
|
|
@@ -24,28 +27,10 @@ export interface AppInstanceAdmin {
|
|
|
24
27
|
export interface AppInstanceAdminSummary {
|
|
25
28
|
Admin?: Identity | undefined;
|
|
26
29
|
}
|
|
27
|
-
export declare const StandardMessages: {
|
|
28
|
-
readonly ALL: "ALL";
|
|
29
|
-
readonly AUTO: "AUTO";
|
|
30
|
-
readonly MENTIONS: "MENTIONS";
|
|
31
|
-
readonly NONE: "NONE";
|
|
32
|
-
};
|
|
33
|
-
export type StandardMessages =
|
|
34
|
-
(typeof StandardMessages)[keyof typeof StandardMessages];
|
|
35
|
-
export declare const TargetedMessages: {
|
|
36
|
-
readonly ALL: "ALL";
|
|
37
|
-
readonly NONE: "NONE";
|
|
38
|
-
};
|
|
39
|
-
export type TargetedMessages =
|
|
40
|
-
(typeof TargetedMessages)[keyof typeof TargetedMessages];
|
|
41
30
|
export interface InvokedBy {
|
|
42
31
|
StandardMessages: StandardMessages | undefined;
|
|
43
32
|
TargetedMessages: TargetedMessages | undefined;
|
|
44
33
|
}
|
|
45
|
-
export declare const RespondsTo: {
|
|
46
|
-
readonly STANDARD_MESSAGES: "STANDARD_MESSAGES";
|
|
47
|
-
};
|
|
48
|
-
export type RespondsTo = (typeof RespondsTo)[keyof typeof RespondsTo];
|
|
49
34
|
export interface LexConfiguration {
|
|
50
35
|
RespondsTo?: RespondsTo | undefined;
|
|
51
36
|
InvokedBy?: InvokedBy | undefined;
|
|
@@ -80,11 +65,6 @@ export interface ChannelRetentionSettings {
|
|
|
80
65
|
export interface AppInstanceRetentionSettings {
|
|
81
66
|
ChannelRetentionSettings?: ChannelRetentionSettings | undefined;
|
|
82
67
|
}
|
|
83
|
-
export declare const ExpirationCriterion: {
|
|
84
|
-
readonly CREATED_TIMESTAMP: "CREATED_TIMESTAMP";
|
|
85
|
-
};
|
|
86
|
-
export type ExpirationCriterion =
|
|
87
|
-
(typeof ExpirationCriterion)[keyof typeof ExpirationCriterion];
|
|
88
68
|
export interface ExpirationSettings {
|
|
89
69
|
ExpirationDays: number | undefined;
|
|
90
70
|
ExpirationCriterion: ExpirationCriterion | undefined;
|
|
@@ -101,29 +81,10 @@ export interface EndpointAttributes {
|
|
|
101
81
|
DeviceToken: string | undefined;
|
|
102
82
|
VoipDeviceToken?: string | undefined;
|
|
103
83
|
}
|
|
104
|
-
export declare const EndpointStatus: {
|
|
105
|
-
readonly ACTIVE: "ACTIVE";
|
|
106
|
-
readonly INACTIVE: "INACTIVE";
|
|
107
|
-
};
|
|
108
|
-
export type EndpointStatus =
|
|
109
|
-
(typeof EndpointStatus)[keyof typeof EndpointStatus];
|
|
110
|
-
export declare const EndpointStatusReason: {
|
|
111
|
-
readonly INVALID_DEVICE_TOKEN: "INVALID_DEVICE_TOKEN";
|
|
112
|
-
readonly INVALID_PINPOINT_ARN: "INVALID_PINPOINT_ARN";
|
|
113
|
-
};
|
|
114
|
-
export type EndpointStatusReason =
|
|
115
|
-
(typeof EndpointStatusReason)[keyof typeof EndpointStatusReason];
|
|
116
84
|
export interface EndpointState {
|
|
117
85
|
Status: EndpointStatus | undefined;
|
|
118
86
|
StatusReason?: EndpointStatusReason | undefined;
|
|
119
87
|
}
|
|
120
|
-
export declare const AppInstanceUserEndpointType: {
|
|
121
|
-
readonly APNS: "APNS";
|
|
122
|
-
readonly APNS_SANDBOX: "APNS_SANDBOX";
|
|
123
|
-
readonly GCM: "GCM";
|
|
124
|
-
};
|
|
125
|
-
export type AppInstanceUserEndpointType =
|
|
126
|
-
(typeof AppInstanceUserEndpointType)[keyof typeof AppInstanceUserEndpointType];
|
|
127
88
|
export interface AppInstanceUserEndpoint {
|
|
128
89
|
AppInstanceUserArn?: string | undefined;
|
|
129
90
|
EndpointId?: string | undefined;
|
|
@@ -149,40 +110,6 @@ export interface AppInstanceUserSummary {
|
|
|
149
110
|
Name?: string | undefined;
|
|
150
111
|
Metadata?: string | undefined;
|
|
151
112
|
}
|
|
152
|
-
export declare const ErrorCode: {
|
|
153
|
-
readonly AccessDenied: "AccessDenied";
|
|
154
|
-
readonly BadRequest: "BadRequest";
|
|
155
|
-
readonly Conflict: "Conflict";
|
|
156
|
-
readonly Forbidden: "Forbidden";
|
|
157
|
-
readonly NotFound: "NotFound";
|
|
158
|
-
readonly PhoneNumberAssociationsExist: "PhoneNumberAssociationsExist";
|
|
159
|
-
readonly PreconditionFailed: "PreconditionFailed";
|
|
160
|
-
readonly ResourceLimitExceeded: "ResourceLimitExceeded";
|
|
161
|
-
readonly ServiceFailure: "ServiceFailure";
|
|
162
|
-
readonly ServiceUnavailable: "ServiceUnavailable";
|
|
163
|
-
readonly Throttled: "Throttled";
|
|
164
|
-
readonly Throttling: "Throttling";
|
|
165
|
-
readonly Unauthorized: "Unauthorized";
|
|
166
|
-
readonly Unprocessable: "Unprocessable";
|
|
167
|
-
readonly VoiceConnectorGroupAssociationsExist: "VoiceConnectorGroupAssociationsExist";
|
|
168
|
-
};
|
|
169
|
-
export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
170
|
-
export declare class BadRequestException extends __BaseException {
|
|
171
|
-
readonly name: "BadRequestException";
|
|
172
|
-
readonly $fault: "client";
|
|
173
|
-
Code?: ErrorCode | undefined;
|
|
174
|
-
Message?: string | undefined;
|
|
175
|
-
constructor(
|
|
176
|
-
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
177
|
-
);
|
|
178
|
-
}
|
|
179
|
-
export declare class ConflictException extends __BaseException {
|
|
180
|
-
readonly name: "ConflictException";
|
|
181
|
-
readonly $fault: "client";
|
|
182
|
-
Code?: ErrorCode | undefined;
|
|
183
|
-
Message?: string | undefined;
|
|
184
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
185
|
-
}
|
|
186
113
|
export interface Tag {
|
|
187
114
|
Key: string | undefined;
|
|
188
115
|
Value: string | undefined;
|
|
@@ -196,58 +123,6 @@ export interface CreateAppInstanceRequest {
|
|
|
196
123
|
export interface CreateAppInstanceResponse {
|
|
197
124
|
AppInstanceArn?: string | undefined;
|
|
198
125
|
}
|
|
199
|
-
export declare class ForbiddenException extends __BaseException {
|
|
200
|
-
readonly name: "ForbiddenException";
|
|
201
|
-
readonly $fault: "client";
|
|
202
|
-
Code?: ErrorCode | undefined;
|
|
203
|
-
Message?: string | undefined;
|
|
204
|
-
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
205
|
-
}
|
|
206
|
-
export declare class ResourceLimitExceededException extends __BaseException {
|
|
207
|
-
readonly name: "ResourceLimitExceededException";
|
|
208
|
-
readonly $fault: "client";
|
|
209
|
-
Code?: ErrorCode | undefined;
|
|
210
|
-
Message?: string | undefined;
|
|
211
|
-
constructor(
|
|
212
|
-
opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>
|
|
213
|
-
);
|
|
214
|
-
}
|
|
215
|
-
export declare class ServiceFailureException extends __BaseException {
|
|
216
|
-
readonly name: "ServiceFailureException";
|
|
217
|
-
readonly $fault: "server";
|
|
218
|
-
Code?: ErrorCode | undefined;
|
|
219
|
-
Message?: string | undefined;
|
|
220
|
-
constructor(
|
|
221
|
-
opts: __ExceptionOptionType<ServiceFailureException, __BaseException>
|
|
222
|
-
);
|
|
223
|
-
}
|
|
224
|
-
export declare class ServiceUnavailableException extends __BaseException {
|
|
225
|
-
readonly name: "ServiceUnavailableException";
|
|
226
|
-
readonly $fault: "server";
|
|
227
|
-
Code?: ErrorCode | undefined;
|
|
228
|
-
Message?: string | undefined;
|
|
229
|
-
constructor(
|
|
230
|
-
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
231
|
-
);
|
|
232
|
-
}
|
|
233
|
-
export declare class ThrottledClientException extends __BaseException {
|
|
234
|
-
readonly name: "ThrottledClientException";
|
|
235
|
-
readonly $fault: "client";
|
|
236
|
-
Code?: ErrorCode | undefined;
|
|
237
|
-
Message?: string | undefined;
|
|
238
|
-
constructor(
|
|
239
|
-
opts: __ExceptionOptionType<ThrottledClientException, __BaseException>
|
|
240
|
-
);
|
|
241
|
-
}
|
|
242
|
-
export declare class UnauthorizedClientException extends __BaseException {
|
|
243
|
-
readonly name: "UnauthorizedClientException";
|
|
244
|
-
readonly $fault: "client";
|
|
245
|
-
Code?: ErrorCode | undefined;
|
|
246
|
-
Message?: string | undefined;
|
|
247
|
-
constructor(
|
|
248
|
-
opts: __ExceptionOptionType<UnauthorizedClientException, __BaseException>
|
|
249
|
-
);
|
|
250
|
-
}
|
|
251
126
|
export interface CreateAppInstanceAdminRequest {
|
|
252
127
|
AppInstanceAdminArn: string | undefined;
|
|
253
128
|
AppInstanceArn: string | undefined;
|
|
@@ -315,13 +190,6 @@ export interface DescribeAppInstanceBotRequest {
|
|
|
315
190
|
export interface DescribeAppInstanceBotResponse {
|
|
316
191
|
AppInstanceBot?: AppInstanceBot | undefined;
|
|
317
192
|
}
|
|
318
|
-
export declare class NotFoundException extends __BaseException {
|
|
319
|
-
readonly name: "NotFoundException";
|
|
320
|
-
readonly $fault: "client";
|
|
321
|
-
Code?: ErrorCode | undefined;
|
|
322
|
-
Message?: string | undefined;
|
|
323
|
-
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
324
|
-
}
|
|
325
193
|
export interface DescribeAppInstanceUserRequest {
|
|
326
194
|
AppInstanceUserArn: string | undefined;
|
|
327
195
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-chime-sdk-identity",
|
|
3
3
|
"description": "AWS SDK for JavaScript Chime Sdk Identity 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-identity",
|
|
@@ -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";
|