@aws-sdk/client-ivs-realtime 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/CreateParticipantTokenCommand.d.ts +3 -3
- package/dist-types/commands/CreateStageCommand.d.ts +6 -6
- package/dist-types/commands/DeleteStageCommand.d.ts +1 -1
- package/dist-types/commands/DisconnectParticipantCommand.d.ts +1 -1
- package/dist-types/commands/GetStageCommand.d.ts +1 -1
- package/dist-types/commands/ListStagesCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateStageCommand.d.ts +1 -1
- package/package.json +3 -3
|
@@ -28,14 +28,14 @@ export interface CreateParticipantTokenCommandOutput extends CreateParticipantTo
|
|
|
28
28
|
* import { IVSRealTimeClient, CreateParticipantTokenCommand } from "@aws-sdk/client-ivs-realtime"; // ES Modules import
|
|
29
29
|
* // const { IVSRealTimeClient, CreateParticipantTokenCommand } = require("@aws-sdk/client-ivs-realtime"); // CommonJS import
|
|
30
30
|
* const client = new IVSRealTimeClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // CreateParticipantTokenRequest
|
|
32
32
|
* stageArn: "STRING_VALUE", // required
|
|
33
33
|
* duration: Number("int"),
|
|
34
34
|
* userId: "STRING_VALUE",
|
|
35
|
-
* attributes: {
|
|
35
|
+
* attributes: { // ParticipantTokenAttributes
|
|
36
36
|
* "<keys>": "STRING_VALUE",
|
|
37
37
|
* },
|
|
38
|
-
* capabilities: [
|
|
38
|
+
* capabilities: [ // ParticipantTokenCapabilities
|
|
39
39
|
* "STRING_VALUE",
|
|
40
40
|
* ],
|
|
41
41
|
* };
|
|
@@ -26,21 +26,21 @@ export interface CreateStageCommandOutput extends CreateStageResponse, __Metadat
|
|
|
26
26
|
* import { IVSRealTimeClient, CreateStageCommand } from "@aws-sdk/client-ivs-realtime"; // ES Modules import
|
|
27
27
|
* // const { IVSRealTimeClient, CreateStageCommand } = require("@aws-sdk/client-ivs-realtime"); // CommonJS import
|
|
28
28
|
* const client = new IVSRealTimeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateStageRequest
|
|
30
30
|
* name: "STRING_VALUE",
|
|
31
|
-
* participantTokenConfigurations: [
|
|
32
|
-
* {
|
|
31
|
+
* participantTokenConfigurations: [ // ParticipantTokenConfigurations
|
|
32
|
+
* { // ParticipantTokenConfiguration
|
|
33
33
|
* duration: Number("int"),
|
|
34
34
|
* userId: "STRING_VALUE",
|
|
35
|
-
* attributes: {
|
|
35
|
+
* attributes: { // ParticipantTokenAttributes
|
|
36
36
|
* "<keys>": "STRING_VALUE",
|
|
37
37
|
* },
|
|
38
|
-
* capabilities: [
|
|
38
|
+
* capabilities: [ // ParticipantTokenCapabilities
|
|
39
39
|
* "STRING_VALUE",
|
|
40
40
|
* ],
|
|
41
41
|
* },
|
|
42
42
|
* ],
|
|
43
|
-
* tags: {
|
|
43
|
+
* tags: { // Tags
|
|
44
44
|
* "<keys>": "STRING_VALUE",
|
|
45
45
|
* },
|
|
46
46
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DeleteStageCommandOutput extends DeleteStageResponse, __Metadat
|
|
|
26
26
|
* import { IVSRealTimeClient, DeleteStageCommand } from "@aws-sdk/client-ivs-realtime"; // ES Modules import
|
|
27
27
|
* // const { IVSRealTimeClient, DeleteStageCommand } = require("@aws-sdk/client-ivs-realtime"); // CommonJS import
|
|
28
28
|
* const client = new IVSRealTimeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteStageRequest
|
|
30
30
|
* arn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteStageCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DisconnectParticipantCommandOutput extends DisconnectParticipan
|
|
|
26
26
|
* import { IVSRealTimeClient, DisconnectParticipantCommand } from "@aws-sdk/client-ivs-realtime"; // ES Modules import
|
|
27
27
|
* // const { IVSRealTimeClient, DisconnectParticipantCommand } = require("@aws-sdk/client-ivs-realtime"); // CommonJS import
|
|
28
28
|
* const client = new IVSRealTimeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DisconnectParticipantRequest
|
|
30
30
|
* stageArn: "STRING_VALUE", // required
|
|
31
31
|
* participantId: "STRING_VALUE", // required
|
|
32
32
|
* reason: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface GetStageCommandOutput extends GetStageResponse, __MetadataBeare
|
|
|
26
26
|
* import { IVSRealTimeClient, GetStageCommand } from "@aws-sdk/client-ivs-realtime"; // ES Modules import
|
|
27
27
|
* // const { IVSRealTimeClient, GetStageCommand } = require("@aws-sdk/client-ivs-realtime"); // CommonJS import
|
|
28
28
|
* const client = new IVSRealTimeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetStageRequest
|
|
30
30
|
* arn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetStageCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface ListStagesCommandOutput extends ListStagesResponse, __MetadataB
|
|
|
26
26
|
* import { IVSRealTimeClient, ListStagesCommand } from "@aws-sdk/client-ivs-realtime"; // ES Modules import
|
|
27
27
|
* // const { IVSRealTimeClient, ListStagesCommand } = require("@aws-sdk/client-ivs-realtime"); // CommonJS import
|
|
28
28
|
* const client = new IVSRealTimeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListStagesRequest
|
|
30
30
|
* nextToken: "STRING_VALUE",
|
|
31
31
|
* maxResults: Number("int"),
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { IVSRealTimeClient, ListTagsForResourceCommand } from "@aws-sdk/client-ivs-realtime"; // ES Modules import
|
|
27
27
|
* // const { IVSRealTimeClient, ListTagsForResourceCommand } = require("@aws-sdk/client-ivs-realtime"); // CommonJS import
|
|
28
28
|
* const client = new IVSRealTimeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -26,9 +26,9 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
26
26
|
* import { IVSRealTimeClient, TagResourceCommand } from "@aws-sdk/client-ivs-realtime"; // ES Modules import
|
|
27
27
|
* // const { IVSRealTimeClient, TagResourceCommand } = require("@aws-sdk/client-ivs-realtime"); // CommonJS import
|
|
28
28
|
* const client = new IVSRealTimeClient(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 { IVSRealTimeClient, UntagResourceCommand } from "@aws-sdk/client-ivs-realtime"; // ES Modules import
|
|
27
27
|
* // const { IVSRealTimeClient, UntagResourceCommand } = require("@aws-sdk/client-ivs-realtime"); // CommonJS import
|
|
28
28
|
* const client = new IVSRealTimeClient(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,7 +26,7 @@ export interface UpdateStageCommandOutput extends UpdateStageResponse, __Metadat
|
|
|
26
26
|
* import { IVSRealTimeClient, UpdateStageCommand } from "@aws-sdk/client-ivs-realtime"; // ES Modules import
|
|
27
27
|
* // const { IVSRealTimeClient, UpdateStageCommand } = require("@aws-sdk/client-ivs-realtime"); // CommonJS import
|
|
28
28
|
* const client = new IVSRealTimeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateStageRequest
|
|
30
30
|
* arn: "STRING_VALUE", // required
|
|
31
31
|
* name: "STRING_VALUE",
|
|
32
32
|
* };
|
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.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",
|