@aws-sdk/client-ivschat 3.169.0 → 3.170.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/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/Ivschat.d.ts +220 -65
- package/dist-types/ts3.4/IvschatClient.d.ts +201 -85
- package/dist-types/ts3.4/commands/CreateChatTokenCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateRoomCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteMessageCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteRoomCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DisconnectUserCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetRoomCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListRoomsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/SendEventCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateRoomCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +12 -12
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/IvschatServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +406 -368
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListRoomsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +2 -2
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +149 -38
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-ivschat
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @aws-sdk/client-ivschat
|
|
@@ -1,65 +1,220 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
CreateChatTokenCommandInput,
|
|
4
|
+
CreateChatTokenCommandOutput,
|
|
5
|
+
} from "./commands/CreateChatTokenCommand";
|
|
6
|
+
import {
|
|
7
|
+
CreateRoomCommandInput,
|
|
8
|
+
CreateRoomCommandOutput,
|
|
9
|
+
} from "./commands/CreateRoomCommand";
|
|
10
|
+
import {
|
|
11
|
+
DeleteMessageCommandInput,
|
|
12
|
+
DeleteMessageCommandOutput,
|
|
13
|
+
} from "./commands/DeleteMessageCommand";
|
|
14
|
+
import {
|
|
15
|
+
DeleteRoomCommandInput,
|
|
16
|
+
DeleteRoomCommandOutput,
|
|
17
|
+
} from "./commands/DeleteRoomCommand";
|
|
18
|
+
import {
|
|
19
|
+
DisconnectUserCommandInput,
|
|
20
|
+
DisconnectUserCommandOutput,
|
|
21
|
+
} from "./commands/DisconnectUserCommand";
|
|
22
|
+
import {
|
|
23
|
+
GetRoomCommandInput,
|
|
24
|
+
GetRoomCommandOutput,
|
|
25
|
+
} from "./commands/GetRoomCommand";
|
|
26
|
+
import {
|
|
27
|
+
ListRoomsCommandInput,
|
|
28
|
+
ListRoomsCommandOutput,
|
|
29
|
+
} from "./commands/ListRoomsCommand";
|
|
30
|
+
import {
|
|
31
|
+
ListTagsForResourceCommandInput,
|
|
32
|
+
ListTagsForResourceCommandOutput,
|
|
33
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
34
|
+
import {
|
|
35
|
+
SendEventCommandInput,
|
|
36
|
+
SendEventCommandOutput,
|
|
37
|
+
} from "./commands/SendEventCommand";
|
|
38
|
+
import {
|
|
39
|
+
TagResourceCommandInput,
|
|
40
|
+
TagResourceCommandOutput,
|
|
41
|
+
} from "./commands/TagResourceCommand";
|
|
42
|
+
import {
|
|
43
|
+
UntagResourceCommandInput,
|
|
44
|
+
UntagResourceCommandOutput,
|
|
45
|
+
} from "./commands/UntagResourceCommand";
|
|
46
|
+
import {
|
|
47
|
+
UpdateRoomCommandInput,
|
|
48
|
+
UpdateRoomCommandOutput,
|
|
49
|
+
} from "./commands/UpdateRoomCommand";
|
|
50
|
+
import { IvschatClient } from "./IvschatClient";
|
|
51
|
+
|
|
52
|
+
export declare class Ivschat extends IvschatClient {
|
|
53
|
+
createChatToken(
|
|
54
|
+
args: CreateChatTokenCommandInput,
|
|
55
|
+
options?: __HttpHandlerOptions
|
|
56
|
+
): Promise<CreateChatTokenCommandOutput>;
|
|
57
|
+
createChatToken(
|
|
58
|
+
args: CreateChatTokenCommandInput,
|
|
59
|
+
cb: (err: any, data?: CreateChatTokenCommandOutput) => void
|
|
60
|
+
): void;
|
|
61
|
+
createChatToken(
|
|
62
|
+
args: CreateChatTokenCommandInput,
|
|
63
|
+
options: __HttpHandlerOptions,
|
|
64
|
+
cb: (err: any, data?: CreateChatTokenCommandOutput) => void
|
|
65
|
+
): void;
|
|
66
|
+
|
|
67
|
+
createRoom(
|
|
68
|
+
args: CreateRoomCommandInput,
|
|
69
|
+
options?: __HttpHandlerOptions
|
|
70
|
+
): Promise<CreateRoomCommandOutput>;
|
|
71
|
+
createRoom(
|
|
72
|
+
args: CreateRoomCommandInput,
|
|
73
|
+
cb: (err: any, data?: CreateRoomCommandOutput) => void
|
|
74
|
+
): void;
|
|
75
|
+
createRoom(
|
|
76
|
+
args: CreateRoomCommandInput,
|
|
77
|
+
options: __HttpHandlerOptions,
|
|
78
|
+
cb: (err: any, data?: CreateRoomCommandOutput) => void
|
|
79
|
+
): void;
|
|
80
|
+
|
|
81
|
+
deleteMessage(
|
|
82
|
+
args: DeleteMessageCommandInput,
|
|
83
|
+
options?: __HttpHandlerOptions
|
|
84
|
+
): Promise<DeleteMessageCommandOutput>;
|
|
85
|
+
deleteMessage(
|
|
86
|
+
args: DeleteMessageCommandInput,
|
|
87
|
+
cb: (err: any, data?: DeleteMessageCommandOutput) => void
|
|
88
|
+
): void;
|
|
89
|
+
deleteMessage(
|
|
90
|
+
args: DeleteMessageCommandInput,
|
|
91
|
+
options: __HttpHandlerOptions,
|
|
92
|
+
cb: (err: any, data?: DeleteMessageCommandOutput) => void
|
|
93
|
+
): void;
|
|
94
|
+
|
|
95
|
+
deleteRoom(
|
|
96
|
+
args: DeleteRoomCommandInput,
|
|
97
|
+
options?: __HttpHandlerOptions
|
|
98
|
+
): Promise<DeleteRoomCommandOutput>;
|
|
99
|
+
deleteRoom(
|
|
100
|
+
args: DeleteRoomCommandInput,
|
|
101
|
+
cb: (err: any, data?: DeleteRoomCommandOutput) => void
|
|
102
|
+
): void;
|
|
103
|
+
deleteRoom(
|
|
104
|
+
args: DeleteRoomCommandInput,
|
|
105
|
+
options: __HttpHandlerOptions,
|
|
106
|
+
cb: (err: any, data?: DeleteRoomCommandOutput) => void
|
|
107
|
+
): void;
|
|
108
|
+
|
|
109
|
+
disconnectUser(
|
|
110
|
+
args: DisconnectUserCommandInput,
|
|
111
|
+
options?: __HttpHandlerOptions
|
|
112
|
+
): Promise<DisconnectUserCommandOutput>;
|
|
113
|
+
disconnectUser(
|
|
114
|
+
args: DisconnectUserCommandInput,
|
|
115
|
+
cb: (err: any, data?: DisconnectUserCommandOutput) => void
|
|
116
|
+
): void;
|
|
117
|
+
disconnectUser(
|
|
118
|
+
args: DisconnectUserCommandInput,
|
|
119
|
+
options: __HttpHandlerOptions,
|
|
120
|
+
cb: (err: any, data?: DisconnectUserCommandOutput) => void
|
|
121
|
+
): void;
|
|
122
|
+
|
|
123
|
+
getRoom(
|
|
124
|
+
args: GetRoomCommandInput,
|
|
125
|
+
options?: __HttpHandlerOptions
|
|
126
|
+
): Promise<GetRoomCommandOutput>;
|
|
127
|
+
getRoom(
|
|
128
|
+
args: GetRoomCommandInput,
|
|
129
|
+
cb: (err: any, data?: GetRoomCommandOutput) => void
|
|
130
|
+
): void;
|
|
131
|
+
getRoom(
|
|
132
|
+
args: GetRoomCommandInput,
|
|
133
|
+
options: __HttpHandlerOptions,
|
|
134
|
+
cb: (err: any, data?: GetRoomCommandOutput) => void
|
|
135
|
+
): void;
|
|
136
|
+
|
|
137
|
+
listRooms(
|
|
138
|
+
args: ListRoomsCommandInput,
|
|
139
|
+
options?: __HttpHandlerOptions
|
|
140
|
+
): Promise<ListRoomsCommandOutput>;
|
|
141
|
+
listRooms(
|
|
142
|
+
args: ListRoomsCommandInput,
|
|
143
|
+
cb: (err: any, data?: ListRoomsCommandOutput) => void
|
|
144
|
+
): void;
|
|
145
|
+
listRooms(
|
|
146
|
+
args: ListRoomsCommandInput,
|
|
147
|
+
options: __HttpHandlerOptions,
|
|
148
|
+
cb: (err: any, data?: ListRoomsCommandOutput) => void
|
|
149
|
+
): void;
|
|
150
|
+
|
|
151
|
+
listTagsForResource(
|
|
152
|
+
args: ListTagsForResourceCommandInput,
|
|
153
|
+
options?: __HttpHandlerOptions
|
|
154
|
+
): Promise<ListTagsForResourceCommandOutput>;
|
|
155
|
+
listTagsForResource(
|
|
156
|
+
args: ListTagsForResourceCommandInput,
|
|
157
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
158
|
+
): void;
|
|
159
|
+
listTagsForResource(
|
|
160
|
+
args: ListTagsForResourceCommandInput,
|
|
161
|
+
options: __HttpHandlerOptions,
|
|
162
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
163
|
+
): void;
|
|
164
|
+
|
|
165
|
+
sendEvent(
|
|
166
|
+
args: SendEventCommandInput,
|
|
167
|
+
options?: __HttpHandlerOptions
|
|
168
|
+
): Promise<SendEventCommandOutput>;
|
|
169
|
+
sendEvent(
|
|
170
|
+
args: SendEventCommandInput,
|
|
171
|
+
cb: (err: any, data?: SendEventCommandOutput) => void
|
|
172
|
+
): void;
|
|
173
|
+
sendEvent(
|
|
174
|
+
args: SendEventCommandInput,
|
|
175
|
+
options: __HttpHandlerOptions,
|
|
176
|
+
cb: (err: any, data?: SendEventCommandOutput) => void
|
|
177
|
+
): void;
|
|
178
|
+
|
|
179
|
+
tagResource(
|
|
180
|
+
args: TagResourceCommandInput,
|
|
181
|
+
options?: __HttpHandlerOptions
|
|
182
|
+
): Promise<TagResourceCommandOutput>;
|
|
183
|
+
tagResource(
|
|
184
|
+
args: TagResourceCommandInput,
|
|
185
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
186
|
+
): void;
|
|
187
|
+
tagResource(
|
|
188
|
+
args: TagResourceCommandInput,
|
|
189
|
+
options: __HttpHandlerOptions,
|
|
190
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
191
|
+
): void;
|
|
192
|
+
|
|
193
|
+
untagResource(
|
|
194
|
+
args: UntagResourceCommandInput,
|
|
195
|
+
options?: __HttpHandlerOptions
|
|
196
|
+
): Promise<UntagResourceCommandOutput>;
|
|
197
|
+
untagResource(
|
|
198
|
+
args: UntagResourceCommandInput,
|
|
199
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
200
|
+
): void;
|
|
201
|
+
untagResource(
|
|
202
|
+
args: UntagResourceCommandInput,
|
|
203
|
+
options: __HttpHandlerOptions,
|
|
204
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
205
|
+
): void;
|
|
206
|
+
|
|
207
|
+
updateRoom(
|
|
208
|
+
args: UpdateRoomCommandInput,
|
|
209
|
+
options?: __HttpHandlerOptions
|
|
210
|
+
): Promise<UpdateRoomCommandOutput>;
|
|
211
|
+
updateRoom(
|
|
212
|
+
args: UpdateRoomCommandInput,
|
|
213
|
+
cb: (err: any, data?: UpdateRoomCommandOutput) => void
|
|
214
|
+
): void;
|
|
215
|
+
updateRoom(
|
|
216
|
+
args: UpdateRoomCommandInput,
|
|
217
|
+
options: __HttpHandlerOptions,
|
|
218
|
+
cb: (err: any, data?: UpdateRoomCommandOutput) => void
|
|
219
|
+
): void;
|
|
220
|
+
}
|
|
@@ -1,85 +1,201 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
import {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
}
|
|
85
|
-
|
|
1
|
+
import {
|
|
2
|
+
EndpointsInputConfig,
|
|
3
|
+
EndpointsResolvedConfig,
|
|
4
|
+
RegionInputConfig,
|
|
5
|
+
RegionResolvedConfig,
|
|
6
|
+
} from "@aws-sdk/config-resolver";
|
|
7
|
+
import {
|
|
8
|
+
HostHeaderInputConfig,
|
|
9
|
+
HostHeaderResolvedConfig,
|
|
10
|
+
} from "@aws-sdk/middleware-host-header";
|
|
11
|
+
import {
|
|
12
|
+
RetryInputConfig,
|
|
13
|
+
RetryResolvedConfig,
|
|
14
|
+
} from "@aws-sdk/middleware-retry";
|
|
15
|
+
import {
|
|
16
|
+
AwsAuthInputConfig,
|
|
17
|
+
AwsAuthResolvedConfig,
|
|
18
|
+
} from "@aws-sdk/middleware-signing";
|
|
19
|
+
import {
|
|
20
|
+
UserAgentInputConfig,
|
|
21
|
+
UserAgentResolvedConfig,
|
|
22
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
23
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
24
|
+
import {
|
|
25
|
+
Client as __Client,
|
|
26
|
+
DefaultsMode,
|
|
27
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
28
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
29
|
+
} from "@aws-sdk/smithy-client";
|
|
30
|
+
import {
|
|
31
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
32
|
+
Credentials as __Credentials,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
RegionInfoProvider,
|
|
41
|
+
StreamCollector as __StreamCollector,
|
|
42
|
+
UrlParser as __UrlParser,
|
|
43
|
+
UserAgent as __UserAgent,
|
|
44
|
+
} from "@aws-sdk/types";
|
|
45
|
+
import {
|
|
46
|
+
CreateChatTokenCommandInput,
|
|
47
|
+
CreateChatTokenCommandOutput,
|
|
48
|
+
} from "./commands/CreateChatTokenCommand";
|
|
49
|
+
import {
|
|
50
|
+
CreateRoomCommandInput,
|
|
51
|
+
CreateRoomCommandOutput,
|
|
52
|
+
} from "./commands/CreateRoomCommand";
|
|
53
|
+
import {
|
|
54
|
+
DeleteMessageCommandInput,
|
|
55
|
+
DeleteMessageCommandOutput,
|
|
56
|
+
} from "./commands/DeleteMessageCommand";
|
|
57
|
+
import {
|
|
58
|
+
DeleteRoomCommandInput,
|
|
59
|
+
DeleteRoomCommandOutput,
|
|
60
|
+
} from "./commands/DeleteRoomCommand";
|
|
61
|
+
import {
|
|
62
|
+
DisconnectUserCommandInput,
|
|
63
|
+
DisconnectUserCommandOutput,
|
|
64
|
+
} from "./commands/DisconnectUserCommand";
|
|
65
|
+
import {
|
|
66
|
+
GetRoomCommandInput,
|
|
67
|
+
GetRoomCommandOutput,
|
|
68
|
+
} from "./commands/GetRoomCommand";
|
|
69
|
+
import {
|
|
70
|
+
ListRoomsCommandInput,
|
|
71
|
+
ListRoomsCommandOutput,
|
|
72
|
+
} from "./commands/ListRoomsCommand";
|
|
73
|
+
import {
|
|
74
|
+
ListTagsForResourceCommandInput,
|
|
75
|
+
ListTagsForResourceCommandOutput,
|
|
76
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
77
|
+
import {
|
|
78
|
+
SendEventCommandInput,
|
|
79
|
+
SendEventCommandOutput,
|
|
80
|
+
} from "./commands/SendEventCommand";
|
|
81
|
+
import {
|
|
82
|
+
TagResourceCommandInput,
|
|
83
|
+
TagResourceCommandOutput,
|
|
84
|
+
} from "./commands/TagResourceCommand";
|
|
85
|
+
import {
|
|
86
|
+
UntagResourceCommandInput,
|
|
87
|
+
UntagResourceCommandOutput,
|
|
88
|
+
} from "./commands/UntagResourceCommand";
|
|
89
|
+
import {
|
|
90
|
+
UpdateRoomCommandInput,
|
|
91
|
+
UpdateRoomCommandOutput,
|
|
92
|
+
} from "./commands/UpdateRoomCommand";
|
|
93
|
+
export declare type ServiceInputTypes =
|
|
94
|
+
| CreateChatTokenCommandInput
|
|
95
|
+
| CreateRoomCommandInput
|
|
96
|
+
| DeleteMessageCommandInput
|
|
97
|
+
| DeleteRoomCommandInput
|
|
98
|
+
| DisconnectUserCommandInput
|
|
99
|
+
| GetRoomCommandInput
|
|
100
|
+
| ListRoomsCommandInput
|
|
101
|
+
| ListTagsForResourceCommandInput
|
|
102
|
+
| SendEventCommandInput
|
|
103
|
+
| TagResourceCommandInput
|
|
104
|
+
| UntagResourceCommandInput
|
|
105
|
+
| UpdateRoomCommandInput;
|
|
106
|
+
export declare type ServiceOutputTypes =
|
|
107
|
+
| CreateChatTokenCommandOutput
|
|
108
|
+
| CreateRoomCommandOutput
|
|
109
|
+
| DeleteMessageCommandOutput
|
|
110
|
+
| DeleteRoomCommandOutput
|
|
111
|
+
| DisconnectUserCommandOutput
|
|
112
|
+
| GetRoomCommandOutput
|
|
113
|
+
| ListRoomsCommandOutput
|
|
114
|
+
| ListTagsForResourceCommandOutput
|
|
115
|
+
| SendEventCommandOutput
|
|
116
|
+
| TagResourceCommandOutput
|
|
117
|
+
| UntagResourceCommandOutput
|
|
118
|
+
| UpdateRoomCommandOutput;
|
|
119
|
+
export interface ClientDefaults
|
|
120
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
121
|
+
requestHandler?: __HttpHandler;
|
|
122
|
+
|
|
123
|
+
sha256?: __HashConstructor;
|
|
124
|
+
|
|
125
|
+
urlParser?: __UrlParser;
|
|
126
|
+
|
|
127
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
128
|
+
|
|
129
|
+
streamCollector?: __StreamCollector;
|
|
130
|
+
|
|
131
|
+
base64Decoder?: __Decoder;
|
|
132
|
+
|
|
133
|
+
base64Encoder?: __Encoder;
|
|
134
|
+
|
|
135
|
+
utf8Decoder?: __Decoder;
|
|
136
|
+
|
|
137
|
+
utf8Encoder?: __Encoder;
|
|
138
|
+
|
|
139
|
+
runtime?: string;
|
|
140
|
+
|
|
141
|
+
disableHostPrefix?: boolean;
|
|
142
|
+
|
|
143
|
+
maxAttempts?: number | __Provider<number>;
|
|
144
|
+
|
|
145
|
+
retryMode?: string | __Provider<string>;
|
|
146
|
+
|
|
147
|
+
logger?: __Logger;
|
|
148
|
+
|
|
149
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
150
|
+
|
|
151
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
152
|
+
|
|
153
|
+
serviceId?: string;
|
|
154
|
+
|
|
155
|
+
region?: string | __Provider<string>;
|
|
156
|
+
|
|
157
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
158
|
+
|
|
159
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
160
|
+
|
|
161
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
162
|
+
|
|
163
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
164
|
+
}
|
|
165
|
+
declare type IvschatClientConfigType = Partial<
|
|
166
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
167
|
+
> &
|
|
168
|
+
ClientDefaults &
|
|
169
|
+
RegionInputConfig &
|
|
170
|
+
EndpointsInputConfig &
|
|
171
|
+
RetryInputConfig &
|
|
172
|
+
HostHeaderInputConfig &
|
|
173
|
+
AwsAuthInputConfig &
|
|
174
|
+
UserAgentInputConfig;
|
|
175
|
+
|
|
176
|
+
export interface IvschatClientConfig extends IvschatClientConfigType {}
|
|
177
|
+
declare type IvschatClientResolvedConfigType =
|
|
178
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
179
|
+
Required<ClientDefaults> &
|
|
180
|
+
RegionResolvedConfig &
|
|
181
|
+
EndpointsResolvedConfig &
|
|
182
|
+
RetryResolvedConfig &
|
|
183
|
+
HostHeaderResolvedConfig &
|
|
184
|
+
AwsAuthResolvedConfig &
|
|
185
|
+
UserAgentResolvedConfig;
|
|
186
|
+
|
|
187
|
+
export interface IvschatClientResolvedConfig
|
|
188
|
+
extends IvschatClientResolvedConfigType {}
|
|
189
|
+
|
|
190
|
+
export declare class IvschatClient extends __Client<
|
|
191
|
+
__HttpHandlerOptions,
|
|
192
|
+
ServiceInputTypes,
|
|
193
|
+
ServiceOutputTypes,
|
|
194
|
+
IvschatClientResolvedConfig
|
|
195
|
+
> {
|
|
196
|
+
readonly config: IvschatClientResolvedConfig;
|
|
197
|
+
constructor(configuration: IvschatClientConfig);
|
|
198
|
+
|
|
199
|
+
destroy(): void;
|
|
200
|
+
}
|
|
201
|
+
export {};
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
IvschatClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IvschatClient";
|
|
13
|
+
import {
|
|
14
|
+
CreateChatTokenRequest,
|
|
15
|
+
CreateChatTokenResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateChatTokenCommandInput extends CreateChatTokenRequest {}
|
|
18
|
+
export interface CreateChatTokenCommandOutput
|
|
19
|
+
extends CreateChatTokenResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class CreateChatTokenCommand extends $Command<
|
|
23
|
+
CreateChatTokenCommandInput,
|
|
24
|
+
CreateChatTokenCommandOutput,
|
|
25
|
+
IvschatClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: CreateChatTokenCommandInput;
|
|
28
|
+
constructor(input: CreateChatTokenCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: IvschatClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<CreateChatTokenCommandInput, CreateChatTokenCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|