@aws-sdk/client-ivschat 3.952.0 → 3.953.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/index.js +235 -169
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/CreateChatTokenCommand.js +2 -2
- package/dist-es/commands/CreateLoggingConfigurationCommand.js +2 -2
- package/dist-es/commands/CreateRoomCommand.js +2 -2
- package/dist-es/commands/DeleteLoggingConfigurationCommand.js +2 -2
- package/dist-es/commands/DeleteMessageCommand.js +2 -2
- package/dist-es/commands/DeleteRoomCommand.js +2 -2
- package/dist-es/commands/DisconnectUserCommand.js +2 -2
- package/dist-es/commands/GetLoggingConfigurationCommand.js +2 -2
- package/dist-es/commands/GetRoomCommand.js +2 -2
- package/dist-es/commands/ListLoggingConfigurationsCommand.js +2 -2
- package/dist-es/commands/ListRoomsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/SendEventCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateLoggingConfigurationCommand.js +2 -2
- package/dist-es/commands/UpdateRoomCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +137 -137
- package/dist-types/IvschatClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +67 -79
- package/dist-types/ts3.4/IvschatClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +66 -81
- package/package.json +34 -34
|
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.ivschat",
|
|
32
|
+
version: "2020-07-14",
|
|
33
|
+
serviceTarget: "AmazonInteractiveVideoServiceChat",
|
|
34
|
+
},
|
|
30
35
|
serviceId: config?.serviceId ?? "ivschat",
|
|
31
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
32
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateChatToken } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateChatToken$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateChatTokenCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateChatTokenCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoServiceChat", "CreateChatToken", {})
|
|
13
13
|
.n("IvschatClient", "CreateChatTokenCommand")
|
|
14
|
-
.sc(CreateChatToken)
|
|
14
|
+
.sc(CreateChatToken$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateLoggingConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateLoggingConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateLoggingConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateLoggingConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoServiceChat", "CreateLoggingConfiguration", {})
|
|
13
13
|
.n("IvschatClient", "CreateLoggingConfigurationCommand")
|
|
14
|
-
.sc(CreateLoggingConfiguration)
|
|
14
|
+
.sc(CreateLoggingConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateRoom } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateRoom$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateRoomCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateRoomCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoServiceChat", "CreateRoom", {})
|
|
13
13
|
.n("IvschatClient", "CreateRoomCommand")
|
|
14
|
-
.sc(CreateRoom)
|
|
14
|
+
.sc(CreateRoom$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteLoggingConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteLoggingConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteLoggingConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteLoggingConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoServiceChat", "DeleteLoggingConfiguration", {})
|
|
13
13
|
.n("IvschatClient", "DeleteLoggingConfigurationCommand")
|
|
14
|
-
.sc(DeleteLoggingConfiguration)
|
|
14
|
+
.sc(DeleteLoggingConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteMessage } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteMessage$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteMessageCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteMessageCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoServiceChat", "DeleteMessage", {})
|
|
13
13
|
.n("IvschatClient", "DeleteMessageCommand")
|
|
14
|
-
.sc(DeleteMessage)
|
|
14
|
+
.sc(DeleteMessage$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteRoom } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteRoom$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteRoomCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteRoomCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoServiceChat", "DeleteRoom", {})
|
|
13
13
|
.n("IvschatClient", "DeleteRoomCommand")
|
|
14
|
-
.sc(DeleteRoom)
|
|
14
|
+
.sc(DeleteRoom$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DisconnectUser } from "../schemas/schemas_0";
|
|
4
|
+
import { DisconnectUser$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DisconnectUserCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DisconnectUserCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoServiceChat", "DisconnectUser", {})
|
|
13
13
|
.n("IvschatClient", "DisconnectUserCommand")
|
|
14
|
-
.sc(DisconnectUser)
|
|
14
|
+
.sc(DisconnectUser$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetLoggingConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { GetLoggingConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetLoggingConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetLoggingConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoServiceChat", "GetLoggingConfiguration", {})
|
|
13
13
|
.n("IvschatClient", "GetLoggingConfigurationCommand")
|
|
14
|
-
.sc(GetLoggingConfiguration)
|
|
14
|
+
.sc(GetLoggingConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetRoom } from "../schemas/schemas_0";
|
|
4
|
+
import { GetRoom$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetRoomCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetRoomCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoServiceChat", "GetRoom", {})
|
|
13
13
|
.n("IvschatClient", "GetRoomCommand")
|
|
14
|
-
.sc(GetRoom)
|
|
14
|
+
.sc(GetRoom$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListLoggingConfigurations } from "../schemas/schemas_0";
|
|
4
|
+
import { ListLoggingConfigurations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListLoggingConfigurationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListLoggingConfigurationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoServiceChat", "ListLoggingConfigurations", {})
|
|
13
13
|
.n("IvschatClient", "ListLoggingConfigurationsCommand")
|
|
14
|
-
.sc(ListLoggingConfigurations)
|
|
14
|
+
.sc(ListLoggingConfigurations$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListRooms } from "../schemas/schemas_0";
|
|
4
|
+
import { ListRooms$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListRoomsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListRoomsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoServiceChat", "ListRooms", {})
|
|
13
13
|
.n("IvschatClient", "ListRoomsCommand")
|
|
14
|
-
.sc(ListRooms)
|
|
14
|
+
.sc(ListRooms$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoServiceChat", "ListTagsForResource", {})
|
|
13
13
|
.n("IvschatClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { SendEvent } from "../schemas/schemas_0";
|
|
4
|
+
import { SendEvent$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class SendEventCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class SendEventCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoServiceChat", "SendEvent", {})
|
|
13
13
|
.n("IvschatClient", "SendEventCommand")
|
|
14
|
-
.sc(SendEvent)
|
|
14
|
+
.sc(SendEvent$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoServiceChat", "TagResource", {})
|
|
13
13
|
.n("IvschatClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoServiceChat", "UntagResource", {})
|
|
13
13
|
.n("IvschatClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateLoggingConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateLoggingConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateLoggingConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateLoggingConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoServiceChat", "UpdateLoggingConfiguration", {})
|
|
13
13
|
.n("IvschatClient", "UpdateLoggingConfigurationCommand")
|
|
14
|
-
.sc(UpdateLoggingConfiguration)
|
|
14
|
+
.sc(UpdateLoggingConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateRoom } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateRoom$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateRoomCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateRoomCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoServiceChat", "UpdateRoom", {})
|
|
13
13
|
.n("IvschatClient", "UpdateRoomCommand")
|
|
14
|
-
.sc(UpdateRoom)
|
|
14
|
+
.sc(UpdateRoom$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
26
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.ivschat",
|
|
29
|
+
version: "2020-07-14",
|
|
30
|
+
serviceTarget: "AmazonInteractiveVideoServiceChat",
|
|
31
|
+
},
|
|
27
32
|
serviceId: config?.serviceId ?? "ivschat",
|
|
28
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
29
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|