@aws-sdk/client-chime 3.301.0 → 3.303.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/models/models_0.js +254 -302
- package/dist-cjs/models/models_1.js +13 -16
- package/dist-es/models/models_0.js +254 -302
- package/dist-es/models/models_1.js +13 -16
- package/dist-types/models/models_0.d.ts +494 -254
- package/dist-types/models/models_1.d.ts +28 -13
- package/dist-types/ts3.4/models/models_0.d.ts +336 -254
- package/dist-types/ts3.4/models/models_1.d.ts +18 -13
- package/package.json +34 -34
|
@@ -152,10 +152,12 @@ export interface GetVoiceConnectorLoggingConfigurationResponse {
|
|
|
152
152
|
export interface GetVoiceConnectorOriginationRequest {
|
|
153
153
|
VoiceConnectorId: string | undefined;
|
|
154
154
|
}
|
|
155
|
-
export declare
|
|
156
|
-
TCP
|
|
157
|
-
UDP
|
|
158
|
-
}
|
|
155
|
+
export declare const OriginationRouteProtocol: {
|
|
156
|
+
readonly TCP: "TCP";
|
|
157
|
+
readonly UDP: "UDP";
|
|
158
|
+
};
|
|
159
|
+
export type OriginationRouteProtocol =
|
|
160
|
+
(typeof OriginationRouteProtocol)[keyof typeof OriginationRouteProtocol];
|
|
159
161
|
export interface OriginationRoute {
|
|
160
162
|
Host?: string;
|
|
161
163
|
Port?: number;
|
|
@@ -185,11 +187,13 @@ export interface GetVoiceConnectorProxyResponse {
|
|
|
185
187
|
export interface GetVoiceConnectorStreamingConfigurationRequest {
|
|
186
188
|
VoiceConnectorId: string | undefined;
|
|
187
189
|
}
|
|
188
|
-
export declare
|
|
189
|
-
EventBridge
|
|
190
|
-
SNS
|
|
191
|
-
SQS
|
|
192
|
-
}
|
|
190
|
+
export declare const NotificationTarget: {
|
|
191
|
+
readonly EventBridge: "EventBridge";
|
|
192
|
+
readonly SNS: "SNS";
|
|
193
|
+
readonly SQS: "SQS";
|
|
194
|
+
};
|
|
195
|
+
export type NotificationTarget =
|
|
196
|
+
(typeof NotificationTarget)[keyof typeof NotificationTarget];
|
|
193
197
|
export interface StreamingNotificationTarget {
|
|
194
198
|
NotificationTarget: NotificationTarget | string | undefined;
|
|
195
199
|
}
|
|
@@ -334,10 +338,11 @@ export interface ListChannelMembershipsForAppInstanceUserResponse {
|
|
|
334
338
|
ChannelMemberships?: ChannelMembershipForAppInstanceUserSummary[];
|
|
335
339
|
NextToken?: string;
|
|
336
340
|
}
|
|
337
|
-
export declare
|
|
338
|
-
ASCENDING
|
|
339
|
-
DESCENDING
|
|
340
|
-
}
|
|
341
|
+
export declare const SortOrder: {
|
|
342
|
+
readonly ASCENDING: "ASCENDING";
|
|
343
|
+
readonly DESCENDING: "DESCENDING";
|
|
344
|
+
};
|
|
345
|
+
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
341
346
|
export interface ListChannelMessagesRequest {
|
|
342
347
|
ChannelArn: string | undefined;
|
|
343
348
|
SortOrder?: SortOrder | string;
|
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.303.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,43 +21,43 @@
|
|
|
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.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
-
"@aws-sdk/util-utf8": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.303.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.303.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.303.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.303.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.303.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.303.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.303.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.303.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.303.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.303.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.303.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.303.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.303.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.303.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.303.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.303.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.303.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.303.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.303.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.303.0",
|
|
44
|
+
"@aws-sdk/types": "3.303.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.303.0",
|
|
46
|
+
"@aws-sdk/util-base64": "3.303.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.303.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.303.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.303.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.303.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.303.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.303.0",
|
|
55
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
56
56
|
"tslib": "^2.5.0",
|
|
57
57
|
"uuid": "^8.3.2"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
60
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
61
61
|
"@tsconfig/node14": "1.0.3",
|
|
62
62
|
"@types/node": "^14.14.31",
|
|
63
63
|
"@types/uuid": "^8.3.0",
|