@aws-sdk/client-ivschat 3.428.0 → 3.429.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.
@@ -46,7 +46,7 @@ export interface CreateChatTokenRequest {
46
46
  * <p>Set of capabilities that the user is allowed to perform in the room. Default: None (the
47
47
  * capability to view messages is implicitly included in all requests).</p>
48
48
  */
49
- capabilities?: (ChatTokenCapability | string)[];
49
+ capabilities?: ChatTokenCapability[];
50
50
  /**
51
51
  * @public
52
52
  * <p>Session duration (in minutes), after which the session expires. Default: 60 (1
@@ -123,7 +123,7 @@ export declare class ResourceNotFoundException extends __BaseException {
123
123
  * @public
124
124
  * <p/>
125
125
  */
126
- resourceType: ResourceType | string | undefined;
126
+ resourceType: ResourceType | undefined;
127
127
  /**
128
128
  * @internal
129
129
  */
@@ -169,7 +169,7 @@ export declare class ValidationException extends __BaseException {
169
169
  * @public
170
170
  * <p/>
171
171
  */
172
- reason: ValidationExceptionReason | string | undefined;
172
+ reason: ValidationExceptionReason | undefined;
173
173
  /**
174
174
  * @public
175
175
  * <p/>
@@ -196,7 +196,7 @@ export declare class ConflictException extends __BaseException {
196
196
  * @public
197
197
  * <p/>
198
198
  */
199
- resourceType: ResourceType | string | undefined;
199
+ resourceType: ResourceType | undefined;
200
200
  /**
201
201
  * @internal
202
202
  */
@@ -379,7 +379,7 @@ export interface CreateLoggingConfigurationResponse {
379
379
  * <p>The state of the logging configuration. When the state is <code>ACTIVE</code>, the
380
380
  * configuration is ready to log chat content.</p>
381
381
  */
382
- state?: CreateLoggingConfigurationState | string;
382
+ state?: CreateLoggingConfigurationState;
383
383
  /**
384
384
  * @public
385
385
  * <p>Tags attached to the resource, from the request (if specified). Array of maps, each of
@@ -403,7 +403,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
403
403
  * @public
404
404
  * <p/>
405
405
  */
406
- resourceType: ResourceType | string | undefined;
406
+ resourceType: ResourceType | undefined;
407
407
  /**
408
408
  * @public
409
409
  * <p/>
@@ -446,7 +446,7 @@ export interface MessageReviewHandler {
446
446
  * connected to the room. If denied, the message is not delivered to any user. Default:
447
447
  * <code>ALLOW</code>.</p>
448
448
  */
449
- fallbackResult?: FallbackResult | string;
449
+ fallbackResult?: FallbackResult;
450
450
  }
451
451
  /**
452
452
  * @public
@@ -610,7 +610,7 @@ export declare class ThrottlingException extends __BaseException {
610
610
  * @public
611
611
  * <p/>
612
612
  */
613
- resourceType: ResourceType | string | undefined;
613
+ resourceType: ResourceType | undefined;
614
614
  /**
615
615
  * @public
616
616
  * <p/>
@@ -730,7 +730,7 @@ export interface GetLoggingConfigurationResponse {
730
730
  * <p>The state of the logging configuration. When the state is <code>ACTIVE</code>, the
731
731
  * configuration is ready to log chat content.</p>
732
732
  */
733
- state?: LoggingConfigurationState | string;
733
+ state?: LoggingConfigurationState;
734
734
  /**
735
735
  * @public
736
736
  * <p>Tags attached to the resource. Array of maps, each of the form <code>string:string
@@ -871,7 +871,7 @@ export interface LoggingConfigurationSummary {
871
871
  * <p>The state of the logging configuration. When this is <code>ACTIVE</code>, the
872
872
  * configuration is ready for logging chat content.</p>
873
873
  */
874
- state?: LoggingConfigurationState | string;
874
+ state?: LoggingConfigurationState;
875
875
  /**
876
876
  * @public
877
877
  * <p>Tags to attach to the resource. Array of maps, each of the form <code>string:string
@@ -1194,7 +1194,7 @@ export interface UpdateLoggingConfigurationResponse {
1194
1194
  * <p>The state of the logging configuration. When the state is <code>ACTIVE</code>, the
1195
1195
  * configuration is ready to log chat content.</p>
1196
1196
  */
1197
- state?: UpdateLoggingConfigurationState | string;
1197
+ state?: UpdateLoggingConfigurationState;
1198
1198
  /**
1199
1199
  * @public
1200
1200
  * <p>Tags attached to the resource. Array of maps, each of the form <code>string:string
@@ -17,7 +17,7 @@ export type ChatTokenCapability =
17
17
  export interface CreateChatTokenRequest {
18
18
  roomIdentifier: string | undefined;
19
19
  userId: string | undefined;
20
- capabilities?: (ChatTokenCapability | string)[];
20
+ capabilities?: ChatTokenCapability[];
21
21
  sessionDurationInMinutes?: number;
22
22
  attributes?: Record<string, string>;
23
23
  }
@@ -41,7 +41,7 @@ export declare class ResourceNotFoundException extends __BaseException {
41
41
  readonly name: "ResourceNotFoundException";
42
42
  readonly $fault: "client";
43
43
  resourceId: string | undefined;
44
- resourceType: ResourceType | string | undefined;
44
+ resourceType: ResourceType | undefined;
45
45
  constructor(
46
46
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
47
47
  );
@@ -60,7 +60,7 @@ export type ValidationExceptionReason =
60
60
  export declare class ValidationException extends __BaseException {
61
61
  readonly name: "ValidationException";
62
62
  readonly $fault: "client";
63
- reason: ValidationExceptionReason | string | undefined;
63
+ reason: ValidationExceptionReason | undefined;
64
64
  fieldList?: ValidationExceptionField[];
65
65
  constructor(
66
66
  opts: __ExceptionOptionType<ValidationException, __BaseException>
@@ -70,7 +70,7 @@ export declare class ConflictException extends __BaseException {
70
70
  readonly name: "ConflictException";
71
71
  readonly $fault: "client";
72
72
  resourceId: string | undefined;
73
- resourceType: ResourceType | string | undefined;
73
+ resourceType: ResourceType | undefined;
74
74
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
75
75
  }
76
76
  export interface CloudWatchLogsDestinationConfiguration {
@@ -137,14 +137,14 @@ export interface CreateLoggingConfigurationResponse {
137
137
  updateTime?: Date;
138
138
  name?: string;
139
139
  destinationConfiguration?: DestinationConfiguration;
140
- state?: CreateLoggingConfigurationState | string;
140
+ state?: CreateLoggingConfigurationState;
141
141
  tags?: Record<string, string>;
142
142
  }
143
143
  export declare class ServiceQuotaExceededException extends __BaseException {
144
144
  readonly name: "ServiceQuotaExceededException";
145
145
  readonly $fault: "client";
146
146
  resourceId: string | undefined;
147
- resourceType: ResourceType | string | undefined;
147
+ resourceType: ResourceType | undefined;
148
148
  limit: number | undefined;
149
149
  constructor(
150
150
  opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
@@ -158,7 +158,7 @@ export type FallbackResult =
158
158
  (typeof FallbackResult)[keyof typeof FallbackResult];
159
159
  export interface MessageReviewHandler {
160
160
  uri?: string;
161
- fallbackResult?: FallbackResult | string;
161
+ fallbackResult?: FallbackResult;
162
162
  }
163
163
  export interface CreateRoomRequest {
164
164
  name?: string;
@@ -195,7 +195,7 @@ export declare class ThrottlingException extends __BaseException {
195
195
  readonly name: "ThrottlingException";
196
196
  readonly $fault: "client";
197
197
  resourceId: string | undefined;
198
- resourceType: ResourceType | string | undefined;
198
+ resourceType: ResourceType | undefined;
199
199
  limit: number | undefined;
200
200
  constructor(
201
201
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
@@ -231,7 +231,7 @@ export interface GetLoggingConfigurationResponse {
231
231
  updateTime?: Date;
232
232
  name?: string;
233
233
  destinationConfiguration?: DestinationConfiguration;
234
- state?: LoggingConfigurationState | string;
234
+ state?: LoggingConfigurationState;
235
235
  tags?: Record<string, string>;
236
236
  }
237
237
  export interface GetRoomRequest {
@@ -260,7 +260,7 @@ export interface LoggingConfigurationSummary {
260
260
  updateTime?: Date;
261
261
  name?: string;
262
262
  destinationConfiguration?: DestinationConfiguration;
263
- state?: LoggingConfigurationState | string;
263
+ state?: LoggingConfigurationState;
264
264
  tags?: Record<string, string>;
265
265
  }
266
266
  export interface ListLoggingConfigurationsResponse {
@@ -336,7 +336,7 @@ export interface UpdateLoggingConfigurationResponse {
336
336
  updateTime?: Date;
337
337
  name?: string;
338
338
  destinationConfiguration?: DestinationConfiguration;
339
- state?: UpdateLoggingConfigurationState | string;
339
+ state?: UpdateLoggingConfigurationState;
340
340
  tags?: Record<string, string>;
341
341
  }
342
342
  export interface UpdateRoomRequest {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-ivschat",
3
3
  "description": "AWS SDK for JavaScript Ivschat Client for Node.js, Browser and React Native",
4
- "version": "3.428.0",
4
+ "version": "3.429.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.428.0",
25
- "@aws-sdk/credential-provider-node": "3.428.0",
26
- "@aws-sdk/middleware-host-header": "3.428.0",
24
+ "@aws-sdk/client-sts": "3.429.0",
25
+ "@aws-sdk/credential-provider-node": "3.429.0",
26
+ "@aws-sdk/middleware-host-header": "3.429.0",
27
27
  "@aws-sdk/middleware-logger": "3.428.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
29
  "@aws-sdk/middleware-signing": "3.428.0",
@@ -38,7 +38,7 @@
38
38
  "@smithy/hash-node": "^2.0.11",
39
39
  "@smithy/invalid-dependency": "^2.0.11",
40
40
  "@smithy/middleware-content-length": "^2.0.13",
41
- "@smithy/middleware-endpoint": "^2.1.0",
41
+ "@smithy/middleware-endpoint": "^2.1.1",
42
42
  "@smithy/middleware-retry": "^2.0.16",
43
43
  "@smithy/middleware-serde": "^2.0.11",
44
44
  "@smithy/middleware-stack": "^2.0.5",