@aws-sdk/client-ivs-realtime 3.600.0 → 3.605.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 +49 -170
- package/dist-cjs/index.js +230 -0
- package/dist-es/IVSRealTime.js +8 -0
- package/dist-es/commands/DeletePublicKeyCommand.js +24 -0
- package/dist-es/commands/GetPublicKeyCommand.js +24 -0
- package/dist-es/commands/ImportPublicKeyCommand.js +24 -0
- package/dist-es/commands/ListPublicKeysCommand.js +24 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +19 -0
- package/dist-es/pagination/ListPublicKeysPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +115 -0
- package/dist-types/IVSRealTime.d.ts +53 -177
- package/dist-types/IVSRealTimeClient.d.ts +30 -179
- package/dist-types/commands/CreateStageCommand.d.ts +16 -0
- package/dist-types/commands/DeletePublicKeyCommand.d.ts +75 -0
- package/dist-types/commands/GetParticipantCommand.d.ts +3 -0
- package/dist-types/commands/GetPublicKeyCommand.d.ts +77 -0
- package/dist-types/commands/GetStageCommand.d.ts +10 -0
- package/dist-types/commands/ImportPublicKeyCommand.d.ts +87 -0
- package/dist-types/commands/ListParticipantsCommand.d.ts +2 -0
- package/dist-types/commands/ListPublicKeysCommand.d.ts +76 -0
- package/dist-types/commands/UpdateStageCommand.d.ts +16 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/index.d.ts +24 -177
- package/dist-types/models/models_0.d.ts +305 -22
- package/dist-types/pagination/ListPublicKeysPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
- package/dist-types/ts3.4/IVSRealTime.d.ts +69 -0
- package/dist-types/ts3.4/IVSRealTimeClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/DeletePublicKeyCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetPublicKeyCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/ImportPublicKeyCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListPublicKeysCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +80 -0
- package/dist-types/ts3.4/pagination/ListPublicKeysPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
- package/package.json +1 -1
|
@@ -23,6 +23,10 @@ import {
|
|
|
23
23
|
DeleteEncoderConfigurationCommandInput,
|
|
24
24
|
DeleteEncoderConfigurationCommandOutput,
|
|
25
25
|
} from "../commands/DeleteEncoderConfigurationCommand";
|
|
26
|
+
import {
|
|
27
|
+
DeletePublicKeyCommandInput,
|
|
28
|
+
DeletePublicKeyCommandOutput,
|
|
29
|
+
} from "../commands/DeletePublicKeyCommand";
|
|
26
30
|
import {
|
|
27
31
|
DeleteStageCommandInput,
|
|
28
32
|
DeleteStageCommandOutput,
|
|
@@ -47,6 +51,10 @@ import {
|
|
|
47
51
|
GetParticipantCommandInput,
|
|
48
52
|
GetParticipantCommandOutput,
|
|
49
53
|
} from "../commands/GetParticipantCommand";
|
|
54
|
+
import {
|
|
55
|
+
GetPublicKeyCommandInput,
|
|
56
|
+
GetPublicKeyCommandOutput,
|
|
57
|
+
} from "../commands/GetPublicKeyCommand";
|
|
50
58
|
import {
|
|
51
59
|
GetStageCommandInput,
|
|
52
60
|
GetStageCommandOutput,
|
|
@@ -59,6 +67,10 @@ import {
|
|
|
59
67
|
GetStorageConfigurationCommandInput,
|
|
60
68
|
GetStorageConfigurationCommandOutput,
|
|
61
69
|
} from "../commands/GetStorageConfigurationCommand";
|
|
70
|
+
import {
|
|
71
|
+
ImportPublicKeyCommandInput,
|
|
72
|
+
ImportPublicKeyCommandOutput,
|
|
73
|
+
} from "../commands/ImportPublicKeyCommand";
|
|
62
74
|
import {
|
|
63
75
|
ListCompositionsCommandInput,
|
|
64
76
|
ListCompositionsCommandOutput,
|
|
@@ -75,6 +87,10 @@ import {
|
|
|
75
87
|
ListParticipantsCommandInput,
|
|
76
88
|
ListParticipantsCommandOutput,
|
|
77
89
|
} from "../commands/ListParticipantsCommand";
|
|
90
|
+
import {
|
|
91
|
+
ListPublicKeysCommandInput,
|
|
92
|
+
ListPublicKeysCommandOutput,
|
|
93
|
+
} from "../commands/ListPublicKeysCommand";
|
|
78
94
|
import {
|
|
79
95
|
ListStagesCommandInput,
|
|
80
96
|
ListStagesCommandOutput,
|
|
@@ -131,6 +147,10 @@ export declare const se_DeleteEncoderConfigurationCommand: (
|
|
|
131
147
|
input: DeleteEncoderConfigurationCommandInput,
|
|
132
148
|
context: __SerdeContext
|
|
133
149
|
) => Promise<__HttpRequest>;
|
|
150
|
+
export declare const se_DeletePublicKeyCommand: (
|
|
151
|
+
input: DeletePublicKeyCommandInput,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<__HttpRequest>;
|
|
134
154
|
export declare const se_DeleteStageCommand: (
|
|
135
155
|
input: DeleteStageCommandInput,
|
|
136
156
|
context: __SerdeContext
|
|
@@ -155,6 +175,10 @@ export declare const se_GetParticipantCommand: (
|
|
|
155
175
|
input: GetParticipantCommandInput,
|
|
156
176
|
context: __SerdeContext
|
|
157
177
|
) => Promise<__HttpRequest>;
|
|
178
|
+
export declare const se_GetPublicKeyCommand: (
|
|
179
|
+
input: GetPublicKeyCommandInput,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<__HttpRequest>;
|
|
158
182
|
export declare const se_GetStageCommand: (
|
|
159
183
|
input: GetStageCommandInput,
|
|
160
184
|
context: __SerdeContext
|
|
@@ -167,6 +191,10 @@ export declare const se_GetStorageConfigurationCommand: (
|
|
|
167
191
|
input: GetStorageConfigurationCommandInput,
|
|
168
192
|
context: __SerdeContext
|
|
169
193
|
) => Promise<__HttpRequest>;
|
|
194
|
+
export declare const se_ImportPublicKeyCommand: (
|
|
195
|
+
input: ImportPublicKeyCommandInput,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<__HttpRequest>;
|
|
170
198
|
export declare const se_ListCompositionsCommand: (
|
|
171
199
|
input: ListCompositionsCommandInput,
|
|
172
200
|
context: __SerdeContext
|
|
@@ -183,6 +211,10 @@ export declare const se_ListParticipantsCommand: (
|
|
|
183
211
|
input: ListParticipantsCommandInput,
|
|
184
212
|
context: __SerdeContext
|
|
185
213
|
) => Promise<__HttpRequest>;
|
|
214
|
+
export declare const se_ListPublicKeysCommand: (
|
|
215
|
+
input: ListPublicKeysCommandInput,
|
|
216
|
+
context: __SerdeContext
|
|
217
|
+
) => Promise<__HttpRequest>;
|
|
186
218
|
export declare const se_ListStagesCommand: (
|
|
187
219
|
input: ListStagesCommandInput,
|
|
188
220
|
context: __SerdeContext
|
|
@@ -239,6 +271,10 @@ export declare const de_DeleteEncoderConfigurationCommand: (
|
|
|
239
271
|
output: __HttpResponse,
|
|
240
272
|
context: __SerdeContext
|
|
241
273
|
) => Promise<DeleteEncoderConfigurationCommandOutput>;
|
|
274
|
+
export declare const de_DeletePublicKeyCommand: (
|
|
275
|
+
output: __HttpResponse,
|
|
276
|
+
context: __SerdeContext
|
|
277
|
+
) => Promise<DeletePublicKeyCommandOutput>;
|
|
242
278
|
export declare const de_DeleteStageCommand: (
|
|
243
279
|
output: __HttpResponse,
|
|
244
280
|
context: __SerdeContext
|
|
@@ -263,6 +299,10 @@ export declare const de_GetParticipantCommand: (
|
|
|
263
299
|
output: __HttpResponse,
|
|
264
300
|
context: __SerdeContext
|
|
265
301
|
) => Promise<GetParticipantCommandOutput>;
|
|
302
|
+
export declare const de_GetPublicKeyCommand: (
|
|
303
|
+
output: __HttpResponse,
|
|
304
|
+
context: __SerdeContext
|
|
305
|
+
) => Promise<GetPublicKeyCommandOutput>;
|
|
266
306
|
export declare const de_GetStageCommand: (
|
|
267
307
|
output: __HttpResponse,
|
|
268
308
|
context: __SerdeContext
|
|
@@ -275,6 +315,10 @@ export declare const de_GetStorageConfigurationCommand: (
|
|
|
275
315
|
output: __HttpResponse,
|
|
276
316
|
context: __SerdeContext
|
|
277
317
|
) => Promise<GetStorageConfigurationCommandOutput>;
|
|
318
|
+
export declare const de_ImportPublicKeyCommand: (
|
|
319
|
+
output: __HttpResponse,
|
|
320
|
+
context: __SerdeContext
|
|
321
|
+
) => Promise<ImportPublicKeyCommandOutput>;
|
|
278
322
|
export declare const de_ListCompositionsCommand: (
|
|
279
323
|
output: __HttpResponse,
|
|
280
324
|
context: __SerdeContext
|
|
@@ -291,6 +335,10 @@ export declare const de_ListParticipantsCommand: (
|
|
|
291
335
|
output: __HttpResponse,
|
|
292
336
|
context: __SerdeContext
|
|
293
337
|
) => Promise<ListParticipantsCommandOutput>;
|
|
338
|
+
export declare const de_ListPublicKeysCommand: (
|
|
339
|
+
output: __HttpResponse,
|
|
340
|
+
context: __SerdeContext
|
|
341
|
+
) => Promise<ListPublicKeysCommandOutput>;
|
|
294
342
|
export declare const de_ListStagesCommand: (
|
|
295
343
|
output: __HttpResponse,
|
|
296
344
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ivs-realtime",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ivs Realtime Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.605.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-ivs-realtime",
|