@aws-sdk/client-ivschat 3.300.0 → 3.301.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-types/commands/CreateChatTokenCommand.d.ts +3 -3
- package/dist-types/commands/CreateLoggingConfigurationCommand.d.ts +6 -6
- package/dist-types/commands/CreateRoomCommand.d.ts +4 -4
- package/dist-types/commands/DeleteLoggingConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteMessageCommand.d.ts +1 -1
- package/dist-types/commands/DeleteRoomCommand.d.ts +1 -1
- package/dist-types/commands/DisconnectUserCommand.d.ts +1 -1
- package/dist-types/commands/GetLoggingConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/GetRoomCommand.d.ts +1 -1
- package/dist-types/commands/ListLoggingConfigurationsCommand.d.ts +1 -1
- package/dist-types/commands/ListRoomsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/SendEventCommand.d.ts +2 -2
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateLoggingConfigurationCommand.d.ts +5 -5
- package/dist-types/commands/UpdateRoomCommand.d.ts +3 -3
- package/package.json +3 -3
|
@@ -37,14 +37,14 @@ export interface CreateChatTokenCommandOutput extends CreateChatTokenResponse, _
|
|
|
37
37
|
* import { IvschatClient, CreateChatTokenCommand } from "@aws-sdk/client-ivschat"; // ES Modules import
|
|
38
38
|
* // const { IvschatClient, CreateChatTokenCommand } = require("@aws-sdk/client-ivschat"); // CommonJS import
|
|
39
39
|
* const client = new IvschatClient(config);
|
|
40
|
-
* const input = {
|
|
40
|
+
* const input = { // CreateChatTokenRequest
|
|
41
41
|
* roomIdentifier: "STRING_VALUE", // required
|
|
42
42
|
* userId: "STRING_VALUE", // required
|
|
43
|
-
* capabilities: [
|
|
43
|
+
* capabilities: [ // ChatTokenCapabilities
|
|
44
44
|
* "STRING_VALUE",
|
|
45
45
|
* ],
|
|
46
46
|
* sessionDurationInMinutes: Number("int"),
|
|
47
|
-
* attributes: {
|
|
47
|
+
* attributes: { // ChatTokenAttributes
|
|
48
48
|
* "<keys>": "STRING_VALUE",
|
|
49
49
|
* },
|
|
50
50
|
* };
|
|
@@ -27,20 +27,20 @@ export interface CreateLoggingConfigurationCommandOutput extends CreateLoggingCo
|
|
|
27
27
|
* import { IvschatClient, CreateLoggingConfigurationCommand } from "@aws-sdk/client-ivschat"; // ES Modules import
|
|
28
28
|
* // const { IvschatClient, CreateLoggingConfigurationCommand } = require("@aws-sdk/client-ivschat"); // CommonJS import
|
|
29
29
|
* const client = new IvschatClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // CreateLoggingConfigurationRequest
|
|
31
31
|
* name: "STRING_VALUE",
|
|
32
|
-
* destinationConfiguration: { // Union: only one key present
|
|
33
|
-
* s3: {
|
|
32
|
+
* destinationConfiguration: { // DestinationConfiguration Union: only one key present
|
|
33
|
+
* s3: { // S3DestinationConfiguration
|
|
34
34
|
* bucketName: "STRING_VALUE", // required
|
|
35
35
|
* },
|
|
36
|
-
* cloudWatchLogs: {
|
|
36
|
+
* cloudWatchLogs: { // CloudWatchLogsDestinationConfiguration
|
|
37
37
|
* logGroupName: "STRING_VALUE", // required
|
|
38
38
|
* },
|
|
39
|
-
* firehose: {
|
|
39
|
+
* firehose: { // FirehoseDestinationConfiguration
|
|
40
40
|
* deliveryStreamName: "STRING_VALUE", // required
|
|
41
41
|
* },
|
|
42
42
|
* },
|
|
43
|
-
* tags: {
|
|
43
|
+
* tags: { // Tags
|
|
44
44
|
* "<keys>": "STRING_VALUE",
|
|
45
45
|
* },
|
|
46
46
|
* };
|
|
@@ -26,18 +26,18 @@ export interface CreateRoomCommandOutput extends CreateRoomResponse, __MetadataB
|
|
|
26
26
|
* import { IvschatClient, CreateRoomCommand } from "@aws-sdk/client-ivschat"; // ES Modules import
|
|
27
27
|
* // const { IvschatClient, CreateRoomCommand } = require("@aws-sdk/client-ivschat"); // CommonJS import
|
|
28
28
|
* const client = new IvschatClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateRoomRequest
|
|
30
30
|
* name: "STRING_VALUE",
|
|
31
31
|
* maximumMessageRatePerSecond: Number("int"),
|
|
32
32
|
* maximumMessageLength: Number("int"),
|
|
33
|
-
* messageReviewHandler: {
|
|
33
|
+
* messageReviewHandler: { // MessageReviewHandler
|
|
34
34
|
* uri: "STRING_VALUE",
|
|
35
35
|
* fallbackResult: "STRING_VALUE",
|
|
36
36
|
* },
|
|
37
|
-
* tags: {
|
|
37
|
+
* tags: { // Tags
|
|
38
38
|
* "<keys>": "STRING_VALUE",
|
|
39
39
|
* },
|
|
40
|
-
* loggingConfigurationIdentifiers: [
|
|
40
|
+
* loggingConfigurationIdentifiers: [ // LoggingConfigurationIdentifierList
|
|
41
41
|
* "STRING_VALUE",
|
|
42
42
|
* ],
|
|
43
43
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DeleteLoggingConfigurationCommandOutput extends __MetadataBeare
|
|
|
26
26
|
* import { IvschatClient, DeleteLoggingConfigurationCommand } from "@aws-sdk/client-ivschat"; // ES Modules import
|
|
27
27
|
* // const { IvschatClient, DeleteLoggingConfigurationCommand } = require("@aws-sdk/client-ivschat"); // CommonJS import
|
|
28
28
|
* const client = new IvschatClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteLoggingConfigurationRequest
|
|
30
30
|
* identifier: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteLoggingConfigurationCommand(input);
|
|
@@ -29,7 +29,7 @@ export interface DeleteMessageCommandOutput extends DeleteMessageResponse, __Met
|
|
|
29
29
|
* import { IvschatClient, DeleteMessageCommand } from "@aws-sdk/client-ivschat"; // ES Modules import
|
|
30
30
|
* // const { IvschatClient, DeleteMessageCommand } = require("@aws-sdk/client-ivschat"); // CommonJS import
|
|
31
31
|
* const client = new IvschatClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // DeleteMessageRequest
|
|
33
33
|
* roomIdentifier: "STRING_VALUE", // required
|
|
34
34
|
* id: "STRING_VALUE", // required
|
|
35
35
|
* reason: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface DeleteRoomCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { IvschatClient, DeleteRoomCommand } from "@aws-sdk/client-ivschat"; // ES Modules import
|
|
27
27
|
* // const { IvschatClient, DeleteRoomCommand } = require("@aws-sdk/client-ivschat"); // CommonJS import
|
|
28
28
|
* const client = new IvschatClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteRoomRequest
|
|
30
30
|
* identifier: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteRoomCommand(input);
|
|
@@ -28,7 +28,7 @@ export interface DisconnectUserCommandOutput extends DisconnectUserResponse, __M
|
|
|
28
28
|
* import { IvschatClient, DisconnectUserCommand } from "@aws-sdk/client-ivschat"; // ES Modules import
|
|
29
29
|
* // const { IvschatClient, DisconnectUserCommand } = require("@aws-sdk/client-ivschat"); // CommonJS import
|
|
30
30
|
* const client = new IvschatClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // DisconnectUserRequest
|
|
32
32
|
* roomIdentifier: "STRING_VALUE", // required
|
|
33
33
|
* userId: "STRING_VALUE", // required
|
|
34
34
|
* reason: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface GetLoggingConfigurationCommandOutput extends GetLoggingConfigur
|
|
|
26
26
|
* import { IvschatClient, GetLoggingConfigurationCommand } from "@aws-sdk/client-ivschat"; // ES Modules import
|
|
27
27
|
* // const { IvschatClient, GetLoggingConfigurationCommand } = require("@aws-sdk/client-ivschat"); // CommonJS import
|
|
28
28
|
* const client = new IvschatClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetLoggingConfigurationRequest
|
|
30
30
|
* identifier: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetLoggingConfigurationCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetRoomCommandOutput extends GetRoomResponse, __MetadataBearer
|
|
|
26
26
|
* import { IvschatClient, GetRoomCommand } from "@aws-sdk/client-ivschat"; // ES Modules import
|
|
27
27
|
* // const { IvschatClient, GetRoomCommand } = require("@aws-sdk/client-ivschat"); // CommonJS import
|
|
28
28
|
* const client = new IvschatClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetRoomRequest
|
|
30
30
|
* identifier: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetRoomCommand(input);
|
|
@@ -27,7 +27,7 @@ export interface ListLoggingConfigurationsCommandOutput extends ListLoggingConfi
|
|
|
27
27
|
* import { IvschatClient, ListLoggingConfigurationsCommand } from "@aws-sdk/client-ivschat"; // ES Modules import
|
|
28
28
|
* // const { IvschatClient, ListLoggingConfigurationsCommand } = require("@aws-sdk/client-ivschat"); // CommonJS import
|
|
29
29
|
* const client = new IvschatClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListLoggingConfigurationsRequest
|
|
31
31
|
* nextToken: "STRING_VALUE",
|
|
32
32
|
* maxResults: Number("int"),
|
|
33
33
|
* };
|
|
@@ -27,7 +27,7 @@ export interface ListRoomsCommandOutput extends ListRoomsResponse, __MetadataBea
|
|
|
27
27
|
* import { IvschatClient, ListRoomsCommand } from "@aws-sdk/client-ivschat"; // ES Modules import
|
|
28
28
|
* // const { IvschatClient, ListRoomsCommand } = require("@aws-sdk/client-ivschat"); // CommonJS import
|
|
29
29
|
* const client = new IvschatClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListRoomsRequest
|
|
31
31
|
* name: "STRING_VALUE",
|
|
32
32
|
* nextToken: "STRING_VALUE",
|
|
33
33
|
* maxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { IvschatClient, ListTagsForResourceCommand } from "@aws-sdk/client-ivschat"; // ES Modules import
|
|
27
27
|
* // const { IvschatClient, ListTagsForResourceCommand } = require("@aws-sdk/client-ivschat"); // CommonJS import
|
|
28
28
|
* const client = new IvschatClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -28,10 +28,10 @@ export interface SendEventCommandOutput extends SendEventResponse, __MetadataBea
|
|
|
28
28
|
* import { IvschatClient, SendEventCommand } from "@aws-sdk/client-ivschat"; // ES Modules import
|
|
29
29
|
* // const { IvschatClient, SendEventCommand } = require("@aws-sdk/client-ivschat"); // CommonJS import
|
|
30
30
|
* const client = new IvschatClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // SendEventRequest
|
|
32
32
|
* roomIdentifier: "STRING_VALUE", // required
|
|
33
33
|
* eventName: "STRING_VALUE", // required
|
|
34
|
-
* attributes: {
|
|
34
|
+
* attributes: { // EventAttributes
|
|
35
35
|
* "<keys>": "STRING_VALUE",
|
|
36
36
|
* },
|
|
37
37
|
* };
|
|
@@ -26,9 +26,9 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
26
26
|
* import { IvschatClient, TagResourceCommand } from "@aws-sdk/client-ivschat"; // ES Modules import
|
|
27
27
|
* // const { IvschatClient, TagResourceCommand } = require("@aws-sdk/client-ivschat"); // CommonJS import
|
|
28
28
|
* const client = new IvschatClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // TagResourceRequest
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
|
-
* tags: { // required
|
|
31
|
+
* tags: { // Tags // required
|
|
32
32
|
* "<keys>": "STRING_VALUE",
|
|
33
33
|
* },
|
|
34
34
|
* };
|
|
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
26
26
|
* import { IvschatClient, UntagResourceCommand } from "@aws-sdk/client-ivschat"; // ES Modules import
|
|
27
27
|
* // const { IvschatClient, UntagResourceCommand } = require("@aws-sdk/client-ivschat"); // CommonJS import
|
|
28
28
|
* const client = new IvschatClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UntagResourceRequest
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
|
-
* tagKeys: [ // required
|
|
31
|
+
* tagKeys: [ // TagKeyList // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -26,17 +26,17 @@ export interface UpdateLoggingConfigurationCommandOutput extends UpdateLoggingCo
|
|
|
26
26
|
* import { IvschatClient, UpdateLoggingConfigurationCommand } from "@aws-sdk/client-ivschat"; // ES Modules import
|
|
27
27
|
* // const { IvschatClient, UpdateLoggingConfigurationCommand } = require("@aws-sdk/client-ivschat"); // CommonJS import
|
|
28
28
|
* const client = new IvschatClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateLoggingConfigurationRequest
|
|
30
30
|
* identifier: "STRING_VALUE", // required
|
|
31
31
|
* name: "STRING_VALUE",
|
|
32
|
-
* destinationConfiguration: { // Union: only one key present
|
|
33
|
-
* s3: {
|
|
32
|
+
* destinationConfiguration: { // DestinationConfiguration Union: only one key present
|
|
33
|
+
* s3: { // S3DestinationConfiguration
|
|
34
34
|
* bucketName: "STRING_VALUE", // required
|
|
35
35
|
* },
|
|
36
|
-
* cloudWatchLogs: {
|
|
36
|
+
* cloudWatchLogs: { // CloudWatchLogsDestinationConfiguration
|
|
37
37
|
* logGroupName: "STRING_VALUE", // required
|
|
38
38
|
* },
|
|
39
|
-
* firehose: {
|
|
39
|
+
* firehose: { // FirehoseDestinationConfiguration
|
|
40
40
|
* deliveryStreamName: "STRING_VALUE", // required
|
|
41
41
|
* },
|
|
42
42
|
* },
|
|
@@ -26,16 +26,16 @@ export interface UpdateRoomCommandOutput extends UpdateRoomResponse, __MetadataB
|
|
|
26
26
|
* import { IvschatClient, UpdateRoomCommand } from "@aws-sdk/client-ivschat"; // ES Modules import
|
|
27
27
|
* // const { IvschatClient, UpdateRoomCommand } = require("@aws-sdk/client-ivschat"); // CommonJS import
|
|
28
28
|
* const client = new IvschatClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateRoomRequest
|
|
30
30
|
* identifier: "STRING_VALUE", // required
|
|
31
31
|
* name: "STRING_VALUE",
|
|
32
32
|
* maximumMessageRatePerSecond: Number("int"),
|
|
33
33
|
* maximumMessageLength: Number("int"),
|
|
34
|
-
* messageReviewHandler: {
|
|
34
|
+
* messageReviewHandler: { // MessageReviewHandler
|
|
35
35
|
* uri: "STRING_VALUE",
|
|
36
36
|
* fallbackResult: "STRING_VALUE",
|
|
37
37
|
* },
|
|
38
|
-
* loggingConfigurationIdentifiers: [
|
|
38
|
+
* loggingConfigurationIdentifiers: [ // LoggingConfigurationIdentifierList
|
|
39
39
|
* "STRING_VALUE",
|
|
40
40
|
* ],
|
|
41
41
|
* };
|
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.
|
|
4
|
+
"version": "3.301.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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|