@aws-sdk/client-chime-sdk-identity 3.687.0 → 3.691.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.
@@ -6,23 +6,23 @@ export declare const AllowMessages: {
6
6
  };
7
7
  export type AllowMessages = (typeof AllowMessages)[keyof typeof AllowMessages];
8
8
  export interface AppInstance {
9
- AppInstanceArn?: string;
10
- Name?: string;
11
- CreatedTimestamp?: Date;
12
- LastUpdatedTimestamp?: Date;
13
- Metadata?: string;
9
+ AppInstanceArn?: string | undefined;
10
+ Name?: string | undefined;
11
+ CreatedTimestamp?: Date | undefined;
12
+ LastUpdatedTimestamp?: Date | undefined;
13
+ Metadata?: string | undefined;
14
14
  }
15
15
  export interface Identity {
16
- Arn?: string;
17
- Name?: string;
16
+ Arn?: string | undefined;
17
+ Name?: string | undefined;
18
18
  }
19
19
  export interface AppInstanceAdmin {
20
- Admin?: Identity;
21
- AppInstanceArn?: string;
22
- CreatedTimestamp?: Date;
20
+ Admin?: Identity | undefined;
21
+ AppInstanceArn?: string | undefined;
22
+ CreatedTimestamp?: Date | undefined;
23
23
  }
24
24
  export interface AppInstanceAdminSummary {
25
- Admin?: Identity;
25
+ Admin?: Identity | undefined;
26
26
  }
27
27
  export declare const StandardMessages: {
28
28
  readonly ALL: "ALL";
@@ -47,38 +47,38 @@ export declare const RespondsTo: {
47
47
  };
48
48
  export type RespondsTo = (typeof RespondsTo)[keyof typeof RespondsTo];
49
49
  export interface LexConfiguration {
50
- RespondsTo?: RespondsTo;
51
- InvokedBy?: InvokedBy;
50
+ RespondsTo?: RespondsTo | undefined;
51
+ InvokedBy?: InvokedBy | undefined;
52
52
  LexBotAliasArn: string | undefined;
53
53
  LocaleId: string | undefined;
54
- WelcomeIntent?: string;
54
+ WelcomeIntent?: string | undefined;
55
55
  }
56
56
  export interface Configuration {
57
57
  Lex: LexConfiguration | undefined;
58
58
  }
59
59
  export interface AppInstanceBot {
60
- AppInstanceBotArn?: string;
61
- Name?: string;
62
- Configuration?: Configuration;
63
- CreatedTimestamp?: Date;
64
- LastUpdatedTimestamp?: Date;
65
- Metadata?: string;
60
+ AppInstanceBotArn?: string | undefined;
61
+ Name?: string | undefined;
62
+ Configuration?: Configuration | undefined;
63
+ CreatedTimestamp?: Date | undefined;
64
+ LastUpdatedTimestamp?: Date | undefined;
65
+ Metadata?: string | undefined;
66
66
  }
67
67
  export interface AppInstanceBotSummary {
68
- AppInstanceBotArn?: string;
69
- Name?: string;
70
- Metadata?: string;
68
+ AppInstanceBotArn?: string | undefined;
69
+ Name?: string | undefined;
70
+ Metadata?: string | undefined;
71
71
  }
72
72
  export interface AppInstanceSummary {
73
- AppInstanceArn?: string;
74
- Name?: string;
75
- Metadata?: string;
73
+ AppInstanceArn?: string | undefined;
74
+ Name?: string | undefined;
75
+ Metadata?: string | undefined;
76
76
  }
77
77
  export interface ChannelRetentionSettings {
78
- RetentionDays?: number;
78
+ RetentionDays?: number | undefined;
79
79
  }
80
80
  export interface AppInstanceRetentionSettings {
81
- ChannelRetentionSettings?: ChannelRetentionSettings;
81
+ ChannelRetentionSettings?: ChannelRetentionSettings | undefined;
82
82
  }
83
83
  export declare const ExpirationCriterion: {
84
84
  readonly CREATED_TIMESTAMP: "CREATED_TIMESTAMP";
@@ -90,16 +90,16 @@ export interface ExpirationSettings {
90
90
  ExpirationCriterion: ExpirationCriterion | undefined;
91
91
  }
92
92
  export interface AppInstanceUser {
93
- AppInstanceUserArn?: string;
94
- Name?: string;
95
- Metadata?: string;
96
- CreatedTimestamp?: Date;
97
- LastUpdatedTimestamp?: Date;
98
- ExpirationSettings?: ExpirationSettings;
93
+ AppInstanceUserArn?: string | undefined;
94
+ Name?: string | undefined;
95
+ Metadata?: string | undefined;
96
+ CreatedTimestamp?: Date | undefined;
97
+ LastUpdatedTimestamp?: Date | undefined;
98
+ ExpirationSettings?: ExpirationSettings | undefined;
99
99
  }
100
100
  export interface EndpointAttributes {
101
101
  DeviceToken: string | undefined;
102
- VoipDeviceToken?: string;
102
+ VoipDeviceToken?: string | undefined;
103
103
  }
104
104
  export declare const EndpointStatus: {
105
105
  readonly ACTIVE: "ACTIVE";
@@ -115,7 +115,7 @@ export type EndpointStatusReason =
115
115
  (typeof EndpointStatusReason)[keyof typeof EndpointStatusReason];
116
116
  export interface EndpointState {
117
117
  Status: EndpointStatus | undefined;
118
- StatusReason?: EndpointStatusReason;
118
+ StatusReason?: EndpointStatusReason | undefined;
119
119
  }
120
120
  export declare const AppInstanceUserEndpointType: {
121
121
  readonly APNS: "APNS";
@@ -125,29 +125,29 @@ export declare const AppInstanceUserEndpointType: {
125
125
  export type AppInstanceUserEndpointType =
126
126
  (typeof AppInstanceUserEndpointType)[keyof typeof AppInstanceUserEndpointType];
127
127
  export interface AppInstanceUserEndpoint {
128
- AppInstanceUserArn?: string;
129
- EndpointId?: string;
130
- Name?: string;
131
- Type?: AppInstanceUserEndpointType;
132
- ResourceArn?: string;
133
- EndpointAttributes?: EndpointAttributes;
134
- CreatedTimestamp?: Date;
135
- LastUpdatedTimestamp?: Date;
136
- AllowMessages?: AllowMessages;
137
- EndpointState?: EndpointState;
128
+ AppInstanceUserArn?: string | undefined;
129
+ EndpointId?: string | undefined;
130
+ Name?: string | undefined;
131
+ Type?: AppInstanceUserEndpointType | undefined;
132
+ ResourceArn?: string | undefined;
133
+ EndpointAttributes?: EndpointAttributes | undefined;
134
+ CreatedTimestamp?: Date | undefined;
135
+ LastUpdatedTimestamp?: Date | undefined;
136
+ AllowMessages?: AllowMessages | undefined;
137
+ EndpointState?: EndpointState | undefined;
138
138
  }
139
139
  export interface AppInstanceUserEndpointSummary {
140
- AppInstanceUserArn?: string;
141
- EndpointId?: string;
142
- Name?: string;
143
- Type?: AppInstanceUserEndpointType;
144
- AllowMessages?: AllowMessages;
145
- EndpointState?: EndpointState;
140
+ AppInstanceUserArn?: string | undefined;
141
+ EndpointId?: string | undefined;
142
+ Name?: string | undefined;
143
+ Type?: AppInstanceUserEndpointType | undefined;
144
+ AllowMessages?: AllowMessages | undefined;
145
+ EndpointState?: EndpointState | undefined;
146
146
  }
147
147
  export interface AppInstanceUserSummary {
148
- AppInstanceUserArn?: string;
149
- Name?: string;
150
- Metadata?: string;
148
+ AppInstanceUserArn?: string | undefined;
149
+ Name?: string | undefined;
150
+ Metadata?: string | undefined;
151
151
  }
152
152
  export declare const ErrorCode: {
153
153
  readonly AccessDenied: "AccessDenied";
@@ -170,8 +170,8 @@ export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
170
170
  export declare class BadRequestException extends __BaseException {
171
171
  readonly name: "BadRequestException";
172
172
  readonly $fault: "client";
173
- Code?: ErrorCode;
174
- Message?: string;
173
+ Code?: ErrorCode | undefined;
174
+ Message?: string | undefined;
175
175
  constructor(
176
176
  opts: __ExceptionOptionType<BadRequestException, __BaseException>
177
177
  );
@@ -179,8 +179,8 @@ export declare class BadRequestException extends __BaseException {
179
179
  export declare class ConflictException extends __BaseException {
180
180
  readonly name: "ConflictException";
181
181
  readonly $fault: "client";
182
- Code?: ErrorCode;
183
- Message?: string;
182
+ Code?: ErrorCode | undefined;
183
+ Message?: string | undefined;
184
184
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
185
185
  }
186
186
  export interface Tag {
@@ -189,25 +189,25 @@ export interface Tag {
189
189
  }
190
190
  export interface CreateAppInstanceRequest {
191
191
  Name: string | undefined;
192
- Metadata?: string;
193
- ClientRequestToken?: string;
194
- Tags?: Tag[];
192
+ Metadata?: string | undefined;
193
+ ClientRequestToken?: string | undefined;
194
+ Tags?: Tag[] | undefined;
195
195
  }
196
196
  export interface CreateAppInstanceResponse {
197
- AppInstanceArn?: string;
197
+ AppInstanceArn?: string | undefined;
198
198
  }
199
199
  export declare class ForbiddenException extends __BaseException {
200
200
  readonly name: "ForbiddenException";
201
201
  readonly $fault: "client";
202
- Code?: ErrorCode;
203
- Message?: string;
202
+ Code?: ErrorCode | undefined;
203
+ Message?: string | undefined;
204
204
  constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
205
205
  }
206
206
  export declare class ResourceLimitExceededException extends __BaseException {
207
207
  readonly name: "ResourceLimitExceededException";
208
208
  readonly $fault: "client";
209
- Code?: ErrorCode;
210
- Message?: string;
209
+ Code?: ErrorCode | undefined;
210
+ Message?: string | undefined;
211
211
  constructor(
212
212
  opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>
213
213
  );
@@ -215,8 +215,8 @@ export declare class ResourceLimitExceededException extends __BaseException {
215
215
  export declare class ServiceFailureException extends __BaseException {
216
216
  readonly name: "ServiceFailureException";
217
217
  readonly $fault: "server";
218
- Code?: ErrorCode;
219
- Message?: string;
218
+ Code?: ErrorCode | undefined;
219
+ Message?: string | undefined;
220
220
  constructor(
221
221
  opts: __ExceptionOptionType<ServiceFailureException, __BaseException>
222
222
  );
@@ -224,8 +224,8 @@ export declare class ServiceFailureException extends __BaseException {
224
224
  export declare class ServiceUnavailableException extends __BaseException {
225
225
  readonly name: "ServiceUnavailableException";
226
226
  readonly $fault: "server";
227
- Code?: ErrorCode;
228
- Message?: string;
227
+ Code?: ErrorCode | undefined;
228
+ Message?: string | undefined;
229
229
  constructor(
230
230
  opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
231
231
  );
@@ -233,8 +233,8 @@ export declare class ServiceUnavailableException extends __BaseException {
233
233
  export declare class ThrottledClientException extends __BaseException {
234
234
  readonly name: "ThrottledClientException";
235
235
  readonly $fault: "client";
236
- Code?: ErrorCode;
237
- Message?: string;
236
+ Code?: ErrorCode | undefined;
237
+ Message?: string | undefined;
238
238
  constructor(
239
239
  opts: __ExceptionOptionType<ThrottledClientException, __BaseException>
240
240
  );
@@ -242,8 +242,8 @@ export declare class ThrottledClientException extends __BaseException {
242
242
  export declare class UnauthorizedClientException extends __BaseException {
243
243
  readonly name: "UnauthorizedClientException";
244
244
  readonly $fault: "client";
245
- Code?: ErrorCode;
246
- Message?: string;
245
+ Code?: ErrorCode | undefined;
246
+ Message?: string | undefined;
247
247
  constructor(
248
248
  opts: __ExceptionOptionType<UnauthorizedClientException, __BaseException>
249
249
  );
@@ -253,31 +253,31 @@ export interface CreateAppInstanceAdminRequest {
253
253
  AppInstanceArn: string | undefined;
254
254
  }
255
255
  export interface CreateAppInstanceAdminResponse {
256
- AppInstanceAdmin?: Identity;
257
- AppInstanceArn?: string;
256
+ AppInstanceAdmin?: Identity | undefined;
257
+ AppInstanceArn?: string | undefined;
258
258
  }
259
259
  export interface CreateAppInstanceBotRequest {
260
260
  AppInstanceArn: string | undefined;
261
- Name?: string;
262
- Metadata?: string;
263
- ClientRequestToken?: string;
264
- Tags?: Tag[];
261
+ Name?: string | undefined;
262
+ Metadata?: string | undefined;
263
+ ClientRequestToken?: string | undefined;
264
+ Tags?: Tag[] | undefined;
265
265
  Configuration: Configuration | undefined;
266
266
  }
267
267
  export interface CreateAppInstanceBotResponse {
268
- AppInstanceBotArn?: string;
268
+ AppInstanceBotArn?: string | undefined;
269
269
  }
270
270
  export interface CreateAppInstanceUserRequest {
271
271
  AppInstanceArn: string | undefined;
272
272
  AppInstanceUserId: string | undefined;
273
273
  Name: string | undefined;
274
- Metadata?: string;
275
- ClientRequestToken?: string;
276
- Tags?: Tag[];
277
- ExpirationSettings?: ExpirationSettings;
274
+ Metadata?: string | undefined;
275
+ ClientRequestToken?: string | undefined;
276
+ Tags?: Tag[] | undefined;
277
+ ExpirationSettings?: ExpirationSettings | undefined;
278
278
  }
279
279
  export interface CreateAppInstanceUserResponse {
280
- AppInstanceUserArn?: string;
280
+ AppInstanceUserArn?: string | undefined;
281
281
  }
282
282
  export interface DeleteAppInstanceRequest {
283
283
  AppInstanceArn: string | undefined;
@@ -300,129 +300,129 @@ export interface DescribeAppInstanceRequest {
300
300
  AppInstanceArn: string | undefined;
301
301
  }
302
302
  export interface DescribeAppInstanceResponse {
303
- AppInstance?: AppInstance;
303
+ AppInstance?: AppInstance | undefined;
304
304
  }
305
305
  export interface DescribeAppInstanceAdminRequest {
306
306
  AppInstanceAdminArn: string | undefined;
307
307
  AppInstanceArn: string | undefined;
308
308
  }
309
309
  export interface DescribeAppInstanceAdminResponse {
310
- AppInstanceAdmin?: AppInstanceAdmin;
310
+ AppInstanceAdmin?: AppInstanceAdmin | undefined;
311
311
  }
312
312
  export interface DescribeAppInstanceBotRequest {
313
313
  AppInstanceBotArn: string | undefined;
314
314
  }
315
315
  export interface DescribeAppInstanceBotResponse {
316
- AppInstanceBot?: AppInstanceBot;
316
+ AppInstanceBot?: AppInstanceBot | undefined;
317
317
  }
318
318
  export declare class NotFoundException extends __BaseException {
319
319
  readonly name: "NotFoundException";
320
320
  readonly $fault: "client";
321
- Code?: ErrorCode;
322
- Message?: string;
321
+ Code?: ErrorCode | undefined;
322
+ Message?: string | undefined;
323
323
  constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
324
324
  }
325
325
  export interface DescribeAppInstanceUserRequest {
326
326
  AppInstanceUserArn: string | undefined;
327
327
  }
328
328
  export interface DescribeAppInstanceUserResponse {
329
- AppInstanceUser?: AppInstanceUser;
329
+ AppInstanceUser?: AppInstanceUser | undefined;
330
330
  }
331
331
  export interface DescribeAppInstanceUserEndpointRequest {
332
332
  AppInstanceUserArn: string | undefined;
333
333
  EndpointId: string | undefined;
334
334
  }
335
335
  export interface DescribeAppInstanceUserEndpointResponse {
336
- AppInstanceUserEndpoint?: AppInstanceUserEndpoint;
336
+ AppInstanceUserEndpoint?: AppInstanceUserEndpoint | undefined;
337
337
  }
338
338
  export interface GetAppInstanceRetentionSettingsRequest {
339
339
  AppInstanceArn: string | undefined;
340
340
  }
341
341
  export interface GetAppInstanceRetentionSettingsResponse {
342
- AppInstanceRetentionSettings?: AppInstanceRetentionSettings;
343
- InitiateDeletionTimestamp?: Date;
342
+ AppInstanceRetentionSettings?: AppInstanceRetentionSettings | undefined;
343
+ InitiateDeletionTimestamp?: Date | undefined;
344
344
  }
345
345
  export interface ListAppInstanceAdminsRequest {
346
346
  AppInstanceArn: string | undefined;
347
- MaxResults?: number;
348
- NextToken?: string;
347
+ MaxResults?: number | undefined;
348
+ NextToken?: string | undefined;
349
349
  }
350
350
  export interface ListAppInstanceAdminsResponse {
351
- AppInstanceArn?: string;
352
- AppInstanceAdmins?: AppInstanceAdminSummary[];
353
- NextToken?: string;
351
+ AppInstanceArn?: string | undefined;
352
+ AppInstanceAdmins?: AppInstanceAdminSummary[] | undefined;
353
+ NextToken?: string | undefined;
354
354
  }
355
355
  export interface ListAppInstanceBotsRequest {
356
356
  AppInstanceArn: string | undefined;
357
- MaxResults?: number;
358
- NextToken?: string;
357
+ MaxResults?: number | undefined;
358
+ NextToken?: string | undefined;
359
359
  }
360
360
  export interface ListAppInstanceBotsResponse {
361
- AppInstanceArn?: string;
362
- AppInstanceBots?: AppInstanceBotSummary[];
363
- NextToken?: string;
361
+ AppInstanceArn?: string | undefined;
362
+ AppInstanceBots?: AppInstanceBotSummary[] | undefined;
363
+ NextToken?: string | undefined;
364
364
  }
365
365
  export interface ListAppInstancesRequest {
366
- MaxResults?: number;
367
- NextToken?: string;
366
+ MaxResults?: number | undefined;
367
+ NextToken?: string | undefined;
368
368
  }
369
369
  export interface ListAppInstancesResponse {
370
- AppInstances?: AppInstanceSummary[];
371
- NextToken?: string;
370
+ AppInstances?: AppInstanceSummary[] | undefined;
371
+ NextToken?: string | undefined;
372
372
  }
373
373
  export interface ListAppInstanceUserEndpointsRequest {
374
374
  AppInstanceUserArn: string | undefined;
375
- MaxResults?: number;
376
- NextToken?: string;
375
+ MaxResults?: number | undefined;
376
+ NextToken?: string | undefined;
377
377
  }
378
378
  export interface ListAppInstanceUserEndpointsResponse {
379
- AppInstanceUserEndpoints?: AppInstanceUserEndpointSummary[];
380
- NextToken?: string;
379
+ AppInstanceUserEndpoints?: AppInstanceUserEndpointSummary[] | undefined;
380
+ NextToken?: string | undefined;
381
381
  }
382
382
  export interface ListAppInstanceUsersRequest {
383
383
  AppInstanceArn: string | undefined;
384
- MaxResults?: number;
385
- NextToken?: string;
384
+ MaxResults?: number | undefined;
385
+ NextToken?: string | undefined;
386
386
  }
387
387
  export interface ListAppInstanceUsersResponse {
388
- AppInstanceArn?: string;
389
- AppInstanceUsers?: AppInstanceUserSummary[];
390
- NextToken?: string;
388
+ AppInstanceArn?: string | undefined;
389
+ AppInstanceUsers?: AppInstanceUserSummary[] | undefined;
390
+ NextToken?: string | undefined;
391
391
  }
392
392
  export interface ListTagsForResourceRequest {
393
393
  ResourceARN: string | undefined;
394
394
  }
395
395
  export interface ListTagsForResourceResponse {
396
- Tags?: Tag[];
396
+ Tags?: Tag[] | undefined;
397
397
  }
398
398
  export interface PutAppInstanceRetentionSettingsRequest {
399
399
  AppInstanceArn: string | undefined;
400
400
  AppInstanceRetentionSettings: AppInstanceRetentionSettings | undefined;
401
401
  }
402
402
  export interface PutAppInstanceRetentionSettingsResponse {
403
- AppInstanceRetentionSettings?: AppInstanceRetentionSettings;
404
- InitiateDeletionTimestamp?: Date;
403
+ AppInstanceRetentionSettings?: AppInstanceRetentionSettings | undefined;
404
+ InitiateDeletionTimestamp?: Date | undefined;
405
405
  }
406
406
  export interface PutAppInstanceUserExpirationSettingsRequest {
407
407
  AppInstanceUserArn: string | undefined;
408
- ExpirationSettings?: ExpirationSettings;
408
+ ExpirationSettings?: ExpirationSettings | undefined;
409
409
  }
410
410
  export interface PutAppInstanceUserExpirationSettingsResponse {
411
- AppInstanceUserArn?: string;
412
- ExpirationSettings?: ExpirationSettings;
411
+ AppInstanceUserArn?: string | undefined;
412
+ ExpirationSettings?: ExpirationSettings | undefined;
413
413
  }
414
414
  export interface RegisterAppInstanceUserEndpointRequest {
415
415
  AppInstanceUserArn: string | undefined;
416
- Name?: string;
416
+ Name?: string | undefined;
417
417
  Type: AppInstanceUserEndpointType | undefined;
418
418
  ResourceArn: string | undefined;
419
419
  EndpointAttributes: EndpointAttributes | undefined;
420
- ClientRequestToken?: string;
421
- AllowMessages?: AllowMessages;
420
+ ClientRequestToken?: string | undefined;
421
+ AllowMessages?: AllowMessages | undefined;
422
422
  }
423
423
  export interface RegisterAppInstanceUserEndpointResponse {
424
- AppInstanceUserArn?: string;
425
- EndpointId?: string;
424
+ AppInstanceUserArn?: string | undefined;
425
+ EndpointId?: string | undefined;
426
426
  }
427
427
  export interface TagResourceRequest {
428
428
  ResourceARN: string | undefined;
@@ -438,16 +438,16 @@ export interface UpdateAppInstanceRequest {
438
438
  Metadata: string | undefined;
439
439
  }
440
440
  export interface UpdateAppInstanceResponse {
441
- AppInstanceArn?: string;
441
+ AppInstanceArn?: string | undefined;
442
442
  }
443
443
  export interface UpdateAppInstanceBotRequest {
444
444
  AppInstanceBotArn: string | undefined;
445
445
  Name: string | undefined;
446
446
  Metadata: string | undefined;
447
- Configuration?: Configuration;
447
+ Configuration?: Configuration | undefined;
448
448
  }
449
449
  export interface UpdateAppInstanceBotResponse {
450
- AppInstanceBotArn?: string;
450
+ AppInstanceBotArn?: string | undefined;
451
451
  }
452
452
  export interface UpdateAppInstanceUserRequest {
453
453
  AppInstanceUserArn: string | undefined;
@@ -455,17 +455,17 @@ export interface UpdateAppInstanceUserRequest {
455
455
  Metadata: string | undefined;
456
456
  }
457
457
  export interface UpdateAppInstanceUserResponse {
458
- AppInstanceUserArn?: string;
458
+ AppInstanceUserArn?: string | undefined;
459
459
  }
460
460
  export interface UpdateAppInstanceUserEndpointRequest {
461
461
  AppInstanceUserArn: string | undefined;
462
462
  EndpointId: string | undefined;
463
- Name?: string;
464
- AllowMessages?: AllowMessages;
463
+ Name?: string | undefined;
464
+ AllowMessages?: AllowMessages | undefined;
465
465
  }
466
466
  export interface UpdateAppInstanceUserEndpointResponse {
467
- AppInstanceUserArn?: string;
468
- EndpointId?: string;
467
+ AppInstanceUserArn?: string | undefined;
468
+ EndpointId?: string | undefined;
469
469
  }
470
470
  export declare const AppInstanceFilterSensitiveLog: (obj: AppInstance) => any;
471
471
  export declare const IdentityFilterSensitiveLog: (obj: Identity) => any;
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.687.0",
4
+ "version": "3.691.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,19 +20,19 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.687.0",
24
- "@aws-sdk/client-sts": "3.687.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.687.0",
23
+ "@aws-sdk/client-sso-oidc": "3.691.0",
24
+ "@aws-sdk/client-sts": "3.691.0",
25
+ "@aws-sdk/core": "3.691.0",
26
+ "@aws-sdk/credential-provider-node": "3.691.0",
27
27
  "@aws-sdk/middleware-host-header": "3.686.0",
28
28
  "@aws-sdk/middleware-logger": "3.686.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.687.0",
30
+ "@aws-sdk/middleware-user-agent": "3.691.0",
31
31
  "@aws-sdk/region-config-resolver": "3.686.0",
32
32
  "@aws-sdk/types": "3.686.0",
33
33
  "@aws-sdk/util-endpoints": "3.686.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.687.0",
35
+ "@aws-sdk/util-user-agent-node": "3.691.0",
36
36
  "@smithy/config-resolver": "^3.0.10",
37
37
  "@smithy/core": "^2.5.1",
38
38
  "@smithy/fetch-http-handler": "^4.0.0",