@aws-sdk/client-chime-sdk-messaging 3.295.0 → 3.296.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/README.md +24 -0
- package/dist-cjs/ChimeSDKMessaging.js +45 -0
- package/dist-cjs/commands/DeleteMessagingStreamingConfigurationsCommand.js +46 -0
- package/dist-cjs/commands/GetMessagingStreamingConfigurationsCommand.js +46 -0
- package/dist-cjs/commands/PutMessagingStreamingConfigurationsCommand.js +46 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +32 -3
- package/dist-cjs/protocols/Aws_restJson1.js +243 -2
- package/dist-es/ChimeSDKMessaging.js +45 -0
- package/dist-es/commands/DeleteMessagingStreamingConfigurationsCommand.js +42 -0
- package/dist-es/commands/GetMessagingStreamingConfigurationsCommand.js +42 -0
- package/dist-es/commands/PutMessagingStreamingConfigurationsCommand.js +42 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +23 -0
- package/dist-es/protocols/Aws_restJson1.js +235 -0
- package/dist-types/ChimeSDKMessaging.d.ts +25 -40
- package/dist-types/ChimeSDKMessagingClient.d.ts +5 -2
- package/dist-types/commands/AssociateChannelFlowCommand.d.ts +0 -1
- package/dist-types/commands/CreateChannelBanCommand.d.ts +0 -1
- package/dist-types/commands/CreateChannelCommand.d.ts +0 -2
- package/dist-types/commands/CreateChannelFlowCommand.d.ts +1 -3
- package/dist-types/commands/CreateChannelMembershipCommand.d.ts +0 -4
- package/dist-types/commands/CreateChannelModeratorCommand.d.ts +0 -2
- package/dist-types/commands/DeleteChannelBanCommand.d.ts +0 -1
- package/dist-types/commands/DeleteChannelCommand.d.ts +0 -1
- package/dist-types/commands/DeleteChannelMembershipCommand.d.ts +0 -1
- package/dist-types/commands/DeleteChannelMessageCommand.d.ts +0 -1
- package/dist-types/commands/DeleteChannelModeratorCommand.d.ts +0 -1
- package/dist-types/commands/DeleteMessagingStreamingConfigurationsCommand.d.ts +60 -0
- package/dist-types/commands/DescribeChannelBanCommand.d.ts +0 -2
- package/dist-types/commands/DescribeChannelCommand.d.ts +0 -2
- package/dist-types/commands/DescribeChannelMembershipForAppInstanceUserCommand.d.ts +0 -1
- package/dist-types/commands/DescribeChannelModeratedByAppInstanceUserCommand.d.ts +0 -1
- package/dist-types/commands/GetChannelMessageCommand.d.ts +0 -1
- package/dist-types/commands/GetChannelMessageStatusCommand.d.ts +0 -3
- package/dist-types/commands/GetMessagingStreamingConfigurationsCommand.d.ts +66 -0
- package/dist-types/commands/ListChannelBansCommand.d.ts +0 -1
- package/dist-types/commands/ListChannelMembershipsCommand.d.ts +0 -2
- package/dist-types/commands/ListChannelMembershipsForAppInstanceUserCommand.d.ts +0 -1
- package/dist-types/commands/ListChannelsCommand.d.ts +0 -2
- package/dist-types/commands/ListChannelsModeratedByAppInstanceUserCommand.d.ts +0 -1
- package/dist-types/commands/PutMessagingStreamingConfigurationsCommand.d.ts +70 -0
- package/dist-types/commands/RedactChannelMessageCommand.d.ts +0 -1
- package/dist-types/commands/SendChannelMessageCommand.d.ts +0 -2
- package/dist-types/commands/UpdateChannelMessageCommand.d.ts +0 -1
- package/dist-types/commands/UpdateChannelReadMarkerCommand.d.ts +0 -1
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +75 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/ChimeSDKMessaging.d.ts +69 -0
- package/dist-types/ts3.4/ChimeSDKMessagingClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/DeleteMessagingStreamingConfigurationsCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/GetMessagingStreamingConfigurationsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/PutMessagingStreamingConfigurationsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +42 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
- package/package.json +29 -29
|
@@ -59,6 +59,10 @@ import {
|
|
|
59
59
|
DeleteChannelModeratorCommandInput,
|
|
60
60
|
DeleteChannelModeratorCommandOutput,
|
|
61
61
|
} from "../commands/DeleteChannelModeratorCommand";
|
|
62
|
+
import {
|
|
63
|
+
DeleteMessagingStreamingConfigurationsCommandInput,
|
|
64
|
+
DeleteMessagingStreamingConfigurationsCommandOutput,
|
|
65
|
+
} from "../commands/DeleteMessagingStreamingConfigurationsCommand";
|
|
62
66
|
import {
|
|
63
67
|
DescribeChannelBanCommandInput,
|
|
64
68
|
DescribeChannelBanCommandOutput,
|
|
@@ -107,6 +111,10 @@ import {
|
|
|
107
111
|
GetMessagingSessionEndpointCommandInput,
|
|
108
112
|
GetMessagingSessionEndpointCommandOutput,
|
|
109
113
|
} from "../commands/GetMessagingSessionEndpointCommand";
|
|
114
|
+
import {
|
|
115
|
+
GetMessagingStreamingConfigurationsCommandInput,
|
|
116
|
+
GetMessagingStreamingConfigurationsCommandOutput,
|
|
117
|
+
} from "../commands/GetMessagingStreamingConfigurationsCommand";
|
|
110
118
|
import {
|
|
111
119
|
ListChannelBansCommandInput,
|
|
112
120
|
ListChannelBansCommandOutput,
|
|
@@ -155,6 +163,10 @@ import {
|
|
|
155
163
|
PutChannelMembershipPreferencesCommandInput,
|
|
156
164
|
PutChannelMembershipPreferencesCommandOutput,
|
|
157
165
|
} from "../commands/PutChannelMembershipPreferencesCommand";
|
|
166
|
+
import {
|
|
167
|
+
PutMessagingStreamingConfigurationsCommandInput,
|
|
168
|
+
PutMessagingStreamingConfigurationsCommandOutput,
|
|
169
|
+
} from "../commands/PutMessagingStreamingConfigurationsCommand";
|
|
158
170
|
import {
|
|
159
171
|
RedactChannelMessageCommandInput,
|
|
160
172
|
RedactChannelMessageCommandOutput,
|
|
@@ -247,6 +259,10 @@ export declare const serializeAws_restJson1DeleteChannelModeratorCommand: (
|
|
|
247
259
|
input: DeleteChannelModeratorCommandInput,
|
|
248
260
|
context: __SerdeContext
|
|
249
261
|
) => Promise<__HttpRequest>;
|
|
262
|
+
export declare const serializeAws_restJson1DeleteMessagingStreamingConfigurationsCommand: (
|
|
263
|
+
input: DeleteMessagingStreamingConfigurationsCommandInput,
|
|
264
|
+
context: __SerdeContext
|
|
265
|
+
) => Promise<__HttpRequest>;
|
|
250
266
|
export declare const serializeAws_restJson1DescribeChannelCommand: (
|
|
251
267
|
input: DescribeChannelCommandInput,
|
|
252
268
|
context: __SerdeContext
|
|
@@ -295,6 +311,10 @@ export declare const serializeAws_restJson1GetMessagingSessionEndpointCommand: (
|
|
|
295
311
|
input: GetMessagingSessionEndpointCommandInput,
|
|
296
312
|
context: __SerdeContext
|
|
297
313
|
) => Promise<__HttpRequest>;
|
|
314
|
+
export declare const serializeAws_restJson1GetMessagingStreamingConfigurationsCommand: (
|
|
315
|
+
input: GetMessagingStreamingConfigurationsCommandInput,
|
|
316
|
+
context: __SerdeContext
|
|
317
|
+
) => Promise<__HttpRequest>;
|
|
298
318
|
export declare const serializeAws_restJson1ListChannelBansCommand: (
|
|
299
319
|
input: ListChannelBansCommandInput,
|
|
300
320
|
context: __SerdeContext
|
|
@@ -343,6 +363,10 @@ export declare const serializeAws_restJson1PutChannelMembershipPreferencesComman
|
|
|
343
363
|
input: PutChannelMembershipPreferencesCommandInput,
|
|
344
364
|
context: __SerdeContext
|
|
345
365
|
) => Promise<__HttpRequest>;
|
|
366
|
+
export declare const serializeAws_restJson1PutMessagingStreamingConfigurationsCommand: (
|
|
367
|
+
input: PutMessagingStreamingConfigurationsCommandInput,
|
|
368
|
+
context: __SerdeContext
|
|
369
|
+
) => Promise<__HttpRequest>;
|
|
346
370
|
export declare const serializeAws_restJson1RedactChannelMessageCommand: (
|
|
347
371
|
input: RedactChannelMessageCommandInput,
|
|
348
372
|
context: __SerdeContext
|
|
@@ -435,6 +459,10 @@ export declare const deserializeAws_restJson1DeleteChannelModeratorCommand: (
|
|
|
435
459
|
output: __HttpResponse,
|
|
436
460
|
context: __SerdeContext
|
|
437
461
|
) => Promise<DeleteChannelModeratorCommandOutput>;
|
|
462
|
+
export declare const deserializeAws_restJson1DeleteMessagingStreamingConfigurationsCommand: (
|
|
463
|
+
output: __HttpResponse,
|
|
464
|
+
context: __SerdeContext
|
|
465
|
+
) => Promise<DeleteMessagingStreamingConfigurationsCommandOutput>;
|
|
438
466
|
export declare const deserializeAws_restJson1DescribeChannelCommand: (
|
|
439
467
|
output: __HttpResponse,
|
|
440
468
|
context: __SerdeContext
|
|
@@ -483,6 +511,10 @@ export declare const deserializeAws_restJson1GetMessagingSessionEndpointCommand:
|
|
|
483
511
|
output: __HttpResponse,
|
|
484
512
|
context: __SerdeContext
|
|
485
513
|
) => Promise<GetMessagingSessionEndpointCommandOutput>;
|
|
514
|
+
export declare const deserializeAws_restJson1GetMessagingStreamingConfigurationsCommand: (
|
|
515
|
+
output: __HttpResponse,
|
|
516
|
+
context: __SerdeContext
|
|
517
|
+
) => Promise<GetMessagingStreamingConfigurationsCommandOutput>;
|
|
486
518
|
export declare const deserializeAws_restJson1ListChannelBansCommand: (
|
|
487
519
|
output: __HttpResponse,
|
|
488
520
|
context: __SerdeContext
|
|
@@ -531,6 +563,10 @@ export declare const deserializeAws_restJson1PutChannelMembershipPreferencesComm
|
|
|
531
563
|
output: __HttpResponse,
|
|
532
564
|
context: __SerdeContext
|
|
533
565
|
) => Promise<PutChannelMembershipPreferencesCommandOutput>;
|
|
566
|
+
export declare const deserializeAws_restJson1PutMessagingStreamingConfigurationsCommand: (
|
|
567
|
+
output: __HttpResponse,
|
|
568
|
+
context: __SerdeContext
|
|
569
|
+
) => Promise<PutMessagingStreamingConfigurationsCommandOutput>;
|
|
534
570
|
export declare const deserializeAws_restJson1RedactChannelMessageCommand: (
|
|
535
571
|
output: __HttpResponse,
|
|
536
572
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-chime-sdk-messaging",
|
|
3
3
|
"description": "AWS SDK for JavaScript Chime Sdk Messaging Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.296.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",
|
|
@@ -20,37 +20,37 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.296.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.296.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.296.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.296.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.296.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.296.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.296.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.296.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.296.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.296.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.296.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.296.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.296.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.296.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.296.0",
|
|
43
|
+
"@aws-sdk/types": "3.296.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.296.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.295.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.296.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.296.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.296.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.296.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.296.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
55
55
|
"tslib": "^2.5.0",
|
|
56
56
|
"uuid": "^8.3.2"
|