@aws-sdk/client-ivschat 3.888.0 → 3.891.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.
@@ -44,6 +44,8 @@ declare const CreateChatTokenCommand_base: {
44
44
  * ```javascript
45
45
  * import { IvschatClient, CreateChatTokenCommand } from "@aws-sdk/client-ivschat"; // ES Modules import
46
46
  * // const { IvschatClient, CreateChatTokenCommand } = require("@aws-sdk/client-ivschat"); // CommonJS import
47
+ * // import type { IvschatClientConfig } from "@aws-sdk/client-ivschat";
48
+ * const config = {}; // type is IvschatClientConfig
47
49
  * const client = new IvschatClient(config);
48
50
  * const input = { // CreateChatTokenRequest
49
51
  * roomIdentifier: "STRING_VALUE", // required
@@ -34,6 +34,8 @@ declare const CreateLoggingConfigurationCommand_base: {
34
34
  * ```javascript
35
35
  * import { IvschatClient, CreateLoggingConfigurationCommand } from "@aws-sdk/client-ivschat"; // ES Modules import
36
36
  * // const { IvschatClient, CreateLoggingConfigurationCommand } = require("@aws-sdk/client-ivschat"); // CommonJS import
37
+ * // import type { IvschatClientConfig } from "@aws-sdk/client-ivschat";
38
+ * const config = {}; // type is IvschatClientConfig
37
39
  * const client = new IvschatClient(config);
38
40
  * const input = { // CreateLoggingConfigurationRequest
39
41
  * name: "STRING_VALUE",
@@ -33,6 +33,8 @@ declare const CreateRoomCommand_base: {
33
33
  * ```javascript
34
34
  * import { IvschatClient, CreateRoomCommand } from "@aws-sdk/client-ivschat"; // ES Modules import
35
35
  * // const { IvschatClient, CreateRoomCommand } = require("@aws-sdk/client-ivschat"); // CommonJS import
36
+ * // import type { IvschatClientConfig } from "@aws-sdk/client-ivschat";
37
+ * const config = {}; // type is IvschatClientConfig
36
38
  * const client = new IvschatClient(config);
37
39
  * const input = { // CreateRoomRequest
38
40
  * name: "STRING_VALUE",
@@ -33,6 +33,8 @@ declare const DeleteLoggingConfigurationCommand_base: {
33
33
  * ```javascript
34
34
  * import { IvschatClient, DeleteLoggingConfigurationCommand } from "@aws-sdk/client-ivschat"; // ES Modules import
35
35
  * // const { IvschatClient, DeleteLoggingConfigurationCommand } = require("@aws-sdk/client-ivschat"); // CommonJS import
36
+ * // import type { IvschatClientConfig } from "@aws-sdk/client-ivschat";
37
+ * const config = {}; // type is IvschatClientConfig
36
38
  * const client = new IvschatClient(config);
37
39
  * const input = { // DeleteLoggingConfigurationRequest
38
40
  * identifier: "STRING_VALUE", // required
@@ -36,6 +36,8 @@ declare const DeleteMessageCommand_base: {
36
36
  * ```javascript
37
37
  * import { IvschatClient, DeleteMessageCommand } from "@aws-sdk/client-ivschat"; // ES Modules import
38
38
  * // const { IvschatClient, DeleteMessageCommand } = require("@aws-sdk/client-ivschat"); // CommonJS import
39
+ * // import type { IvschatClientConfig } from "@aws-sdk/client-ivschat";
40
+ * const config = {}; // type is IvschatClientConfig
39
41
  * const client = new IvschatClient(config);
40
42
  * const input = { // DeleteMessageRequest
41
43
  * roomIdentifier: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const DeleteRoomCommand_base: {
33
33
  * ```javascript
34
34
  * import { IvschatClient, DeleteRoomCommand } from "@aws-sdk/client-ivschat"; // ES Modules import
35
35
  * // const { IvschatClient, DeleteRoomCommand } = require("@aws-sdk/client-ivschat"); // CommonJS import
36
+ * // import type { IvschatClientConfig } from "@aws-sdk/client-ivschat";
37
+ * const config = {}; // type is IvschatClientConfig
36
38
  * const client = new IvschatClient(config);
37
39
  * const input = { // DeleteRoomRequest
38
40
  * identifier: "STRING_VALUE", // required
@@ -35,6 +35,8 @@ declare const DisconnectUserCommand_base: {
35
35
  * ```javascript
36
36
  * import { IvschatClient, DisconnectUserCommand } from "@aws-sdk/client-ivschat"; // ES Modules import
37
37
  * // const { IvschatClient, DisconnectUserCommand } = require("@aws-sdk/client-ivschat"); // CommonJS import
38
+ * // import type { IvschatClientConfig } from "@aws-sdk/client-ivschat";
39
+ * const config = {}; // type is IvschatClientConfig
38
40
  * const client = new IvschatClient(config);
39
41
  * const input = { // DisconnectUserRequest
40
42
  * roomIdentifier: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetLoggingConfigurationCommand_base: {
33
33
  * ```javascript
34
34
  * import { IvschatClient, GetLoggingConfigurationCommand } from "@aws-sdk/client-ivschat"; // ES Modules import
35
35
  * // const { IvschatClient, GetLoggingConfigurationCommand } = require("@aws-sdk/client-ivschat"); // CommonJS import
36
+ * // import type { IvschatClientConfig } from "@aws-sdk/client-ivschat";
37
+ * const config = {}; // type is IvschatClientConfig
36
38
  * const client = new IvschatClient(config);
37
39
  * const input = { // GetLoggingConfigurationRequest
38
40
  * identifier: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetRoomCommand_base: {
33
33
  * ```javascript
34
34
  * import { IvschatClient, GetRoomCommand } from "@aws-sdk/client-ivschat"; // ES Modules import
35
35
  * // const { IvschatClient, GetRoomCommand } = require("@aws-sdk/client-ivschat"); // CommonJS import
36
+ * // import type { IvschatClientConfig } from "@aws-sdk/client-ivschat";
37
+ * const config = {}; // type is IvschatClientConfig
36
38
  * const client = new IvschatClient(config);
37
39
  * const input = { // GetRoomRequest
38
40
  * identifier: "STRING_VALUE", // required
@@ -34,6 +34,8 @@ declare const ListLoggingConfigurationsCommand_base: {
34
34
  * ```javascript
35
35
  * import { IvschatClient, ListLoggingConfigurationsCommand } from "@aws-sdk/client-ivschat"; // ES Modules import
36
36
  * // const { IvschatClient, ListLoggingConfigurationsCommand } = require("@aws-sdk/client-ivschat"); // CommonJS import
37
+ * // import type { IvschatClientConfig } from "@aws-sdk/client-ivschat";
38
+ * const config = {}; // type is IvschatClientConfig
37
39
  * const client = new IvschatClient(config);
38
40
  * const input = { // ListLoggingConfigurationsRequest
39
41
  * nextToken: "STRING_VALUE",
@@ -34,6 +34,8 @@ declare const ListRoomsCommand_base: {
34
34
  * ```javascript
35
35
  * import { IvschatClient, ListRoomsCommand } from "@aws-sdk/client-ivschat"; // ES Modules import
36
36
  * // const { IvschatClient, ListRoomsCommand } = require("@aws-sdk/client-ivschat"); // CommonJS import
37
+ * // import type { IvschatClientConfig } from "@aws-sdk/client-ivschat";
38
+ * const config = {}; // type is IvschatClientConfig
37
39
  * const client = new IvschatClient(config);
38
40
  * const input = { // ListRoomsRequest
39
41
  * name: "STRING_VALUE",
@@ -33,6 +33,8 @@ declare const ListTagsForResourceCommand_base: {
33
33
  * ```javascript
34
34
  * import { IvschatClient, ListTagsForResourceCommand } from "@aws-sdk/client-ivschat"; // ES Modules import
35
35
  * // const { IvschatClient, ListTagsForResourceCommand } = require("@aws-sdk/client-ivschat"); // CommonJS import
36
+ * // import type { IvschatClientConfig } from "@aws-sdk/client-ivschat";
37
+ * const config = {}; // type is IvschatClientConfig
36
38
  * const client = new IvschatClient(config);
37
39
  * const input = { // ListTagsForResourceRequest
38
40
  * resourceArn: "STRING_VALUE", // required
@@ -35,6 +35,8 @@ declare const SendEventCommand_base: {
35
35
  * ```javascript
36
36
  * import { IvschatClient, SendEventCommand } from "@aws-sdk/client-ivschat"; // ES Modules import
37
37
  * // const { IvschatClient, SendEventCommand } = require("@aws-sdk/client-ivschat"); // CommonJS import
38
+ * // import type { IvschatClientConfig } from "@aws-sdk/client-ivschat";
39
+ * const config = {}; // type is IvschatClientConfig
38
40
  * const client = new IvschatClient(config);
39
41
  * const input = { // SendEventRequest
40
42
  * roomIdentifier: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const TagResourceCommand_base: {
33
33
  * ```javascript
34
34
  * import { IvschatClient, TagResourceCommand } from "@aws-sdk/client-ivschat"; // ES Modules import
35
35
  * // const { IvschatClient, TagResourceCommand } = require("@aws-sdk/client-ivschat"); // CommonJS import
36
+ * // import type { IvschatClientConfig } from "@aws-sdk/client-ivschat";
37
+ * const config = {}; // type is IvschatClientConfig
36
38
  * const client = new IvschatClient(config);
37
39
  * const input = { // TagResourceRequest
38
40
  * resourceArn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const UntagResourceCommand_base: {
33
33
  * ```javascript
34
34
  * import { IvschatClient, UntagResourceCommand } from "@aws-sdk/client-ivschat"; // ES Modules import
35
35
  * // const { IvschatClient, UntagResourceCommand } = require("@aws-sdk/client-ivschat"); // CommonJS import
36
+ * // import type { IvschatClientConfig } from "@aws-sdk/client-ivschat";
37
+ * const config = {}; // type is IvschatClientConfig
36
38
  * const client = new IvschatClient(config);
37
39
  * const input = { // UntagResourceRequest
38
40
  * resourceArn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const UpdateLoggingConfigurationCommand_base: {
33
33
  * ```javascript
34
34
  * import { IvschatClient, UpdateLoggingConfigurationCommand } from "@aws-sdk/client-ivschat"; // ES Modules import
35
35
  * // const { IvschatClient, UpdateLoggingConfigurationCommand } = require("@aws-sdk/client-ivschat"); // CommonJS import
36
+ * // import type { IvschatClientConfig } from "@aws-sdk/client-ivschat";
37
+ * const config = {}; // type is IvschatClientConfig
36
38
  * const client = new IvschatClient(config);
37
39
  * const input = { // UpdateLoggingConfigurationRequest
38
40
  * identifier: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const UpdateRoomCommand_base: {
33
33
  * ```javascript
34
34
  * import { IvschatClient, UpdateRoomCommand } from "@aws-sdk/client-ivschat"; // ES Modules import
35
35
  * // const { IvschatClient, UpdateRoomCommand } = require("@aws-sdk/client-ivschat"); // CommonJS import
36
+ * // import type { IvschatClientConfig } from "@aws-sdk/client-ivschat";
37
+ * const config = {}; // type is IvschatClientConfig
36
38
  * const client = new IvschatClient(config);
37
39
  * const input = { // UpdateRoomRequest
38
40
  * identifier: "STRING_VALUE", // required
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.888.0",
4
+ "version": "3.891.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-ivschat",
@@ -20,41 +20,41 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.888.0",
24
- "@aws-sdk/credential-provider-node": "3.888.0",
25
- "@aws-sdk/middleware-host-header": "3.887.0",
26
- "@aws-sdk/middleware-logger": "3.887.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.887.0",
28
- "@aws-sdk/middleware-user-agent": "3.888.0",
29
- "@aws-sdk/region-config-resolver": "3.887.0",
23
+ "@aws-sdk/core": "3.890.0",
24
+ "@aws-sdk/credential-provider-node": "3.891.0",
25
+ "@aws-sdk/middleware-host-header": "3.891.0",
26
+ "@aws-sdk/middleware-logger": "3.891.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.891.0",
28
+ "@aws-sdk/middleware-user-agent": "3.891.0",
29
+ "@aws-sdk/region-config-resolver": "3.890.0",
30
30
  "@aws-sdk/types": "3.887.0",
31
- "@aws-sdk/util-endpoints": "3.887.0",
31
+ "@aws-sdk/util-endpoints": "3.891.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.887.0",
33
- "@aws-sdk/util-user-agent-node": "3.888.0",
34
- "@smithy/config-resolver": "^4.2.1",
33
+ "@aws-sdk/util-user-agent-node": "3.891.0",
34
+ "@smithy/config-resolver": "^4.2.2",
35
35
  "@smithy/core": "^3.11.0",
36
36
  "@smithy/fetch-http-handler": "^5.2.1",
37
37
  "@smithy/hash-node": "^4.1.1",
38
38
  "@smithy/invalid-dependency": "^4.1.1",
39
39
  "@smithy/middleware-content-length": "^4.1.1",
40
- "@smithy/middleware-endpoint": "^4.2.1",
41
- "@smithy/middleware-retry": "^4.2.1",
40
+ "@smithy/middleware-endpoint": "^4.2.2",
41
+ "@smithy/middleware-retry": "^4.2.3",
42
42
  "@smithy/middleware-serde": "^4.1.1",
43
43
  "@smithy/middleware-stack": "^4.1.1",
44
- "@smithy/node-config-provider": "^4.2.1",
44
+ "@smithy/node-config-provider": "^4.2.2",
45
45
  "@smithy/node-http-handler": "^4.2.1",
46
46
  "@smithy/protocol-http": "^5.2.1",
47
- "@smithy/smithy-client": "^4.6.1",
47
+ "@smithy/smithy-client": "^4.6.2",
48
48
  "@smithy/types": "^4.5.0",
49
49
  "@smithy/url-parser": "^4.1.1",
50
50
  "@smithy/util-base64": "^4.1.0",
51
51
  "@smithy/util-body-length-browser": "^4.1.0",
52
52
  "@smithy/util-body-length-node": "^4.1.0",
53
- "@smithy/util-defaults-mode-browser": "^4.1.1",
54
- "@smithy/util-defaults-mode-node": "^4.1.1",
55
- "@smithy/util-endpoints": "^3.1.1",
53
+ "@smithy/util-defaults-mode-browser": "^4.1.2",
54
+ "@smithy/util-defaults-mode-node": "^4.1.2",
55
+ "@smithy/util-endpoints": "^3.1.2",
56
56
  "@smithy/util-middleware": "^4.1.1",
57
- "@smithy/util-retry": "^4.1.1",
57
+ "@smithy/util-retry": "^4.1.2",
58
58
  "@smithy/util-utf8": "^4.1.0",
59
59
  "tslib": "^2.6.2"
60
60
  },