@aws-sdk/client-ivs-realtime 3.888.0 → 3.890.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.
|
@@ -51,6 +51,7 @@ declare const GetCompositionCommand_base: {
|
|
|
51
51
|
* // videoAspectRatio: "AUTO" || "VIDEO" || "SQUARE" || "PORTRAIT",
|
|
52
52
|
* // videoFillMode: "FILL" || "COVER" || "CONTAIN",
|
|
53
53
|
* // gridGap: Number("int"),
|
|
54
|
+
* // participantOrderAttribute: "STRING_VALUE",
|
|
54
55
|
* // },
|
|
55
56
|
* // pip: { // PipConfiguration
|
|
56
57
|
* // featuredParticipantAttribute: "STRING_VALUE",
|
|
@@ -63,6 +64,7 @@ declare const GetCompositionCommand_base: {
|
|
|
63
64
|
* // pipPosition: "TOP_LEFT" || "TOP_RIGHT" || "BOTTOM_LEFT" || "BOTTOM_RIGHT",
|
|
64
65
|
* // pipWidth: Number("int"),
|
|
65
66
|
* // pipHeight: Number("int"),
|
|
67
|
+
* // participantOrderAttribute: "STRING_VALUE",
|
|
66
68
|
* // },
|
|
67
69
|
* // },
|
|
68
70
|
* // destinations: [ // DestinationList // required
|
|
@@ -67,6 +67,7 @@ declare const StartCompositionCommand_base: {
|
|
|
67
67
|
* videoAspectRatio: "AUTO" || "VIDEO" || "SQUARE" || "PORTRAIT",
|
|
68
68
|
* videoFillMode: "FILL" || "COVER" || "CONTAIN",
|
|
69
69
|
* gridGap: Number("int"),
|
|
70
|
+
* participantOrderAttribute: "STRING_VALUE",
|
|
70
71
|
* },
|
|
71
72
|
* pip: { // PipConfiguration
|
|
72
73
|
* featuredParticipantAttribute: "STRING_VALUE",
|
|
@@ -79,6 +80,7 @@ declare const StartCompositionCommand_base: {
|
|
|
79
80
|
* pipPosition: "TOP_LEFT" || "TOP_RIGHT" || "BOTTOM_LEFT" || "BOTTOM_RIGHT",
|
|
80
81
|
* pipWidth: Number("int"),
|
|
81
82
|
* pipHeight: Number("int"),
|
|
83
|
+
* participantOrderAttribute: "STRING_VALUE",
|
|
82
84
|
* },
|
|
83
85
|
* },
|
|
84
86
|
* destinations: [ // DestinationConfigurationList // required
|
|
@@ -128,6 +130,7 @@ declare const StartCompositionCommand_base: {
|
|
|
128
130
|
* // videoAspectRatio: "AUTO" || "VIDEO" || "SQUARE" || "PORTRAIT",
|
|
129
131
|
* // videoFillMode: "FILL" || "COVER" || "CONTAIN",
|
|
130
132
|
* // gridGap: Number("int"),
|
|
133
|
+
* // participantOrderAttribute: "STRING_VALUE",
|
|
131
134
|
* // },
|
|
132
135
|
* // pip: { // PipConfiguration
|
|
133
136
|
* // featuredParticipantAttribute: "STRING_VALUE",
|
|
@@ -140,6 +143,7 @@ declare const StartCompositionCommand_base: {
|
|
|
140
143
|
* // pipPosition: "TOP_LEFT" || "TOP_RIGHT" || "BOTTOM_LEFT" || "BOTTOM_RIGHT",
|
|
141
144
|
* // pipWidth: Number("int"),
|
|
142
145
|
* // pipHeight: Number("int"),
|
|
146
|
+
* // participantOrderAttribute: "STRING_VALUE",
|
|
143
147
|
* // },
|
|
144
148
|
* // },
|
|
145
149
|
* // destinations: [ // DestinationList // required
|
|
@@ -1505,6 +1505,13 @@ export interface GridConfiguration {
|
|
|
1505
1505
|
* @public
|
|
1506
1506
|
*/
|
|
1507
1507
|
gridGap?: number | undefined;
|
|
1508
|
+
/**
|
|
1509
|
+
* <p>Attribute name in <a>ParticipantTokenConfiguration</a> identifying the participant ordering key.
|
|
1510
|
+
* Participants with <code>participantOrderAttribute</code> set to <code>""</code> or not specified are ordered based
|
|
1511
|
+
* on their arrival time into the stage.</p>
|
|
1512
|
+
* @public
|
|
1513
|
+
*/
|
|
1514
|
+
participantOrderAttribute?: string | undefined;
|
|
1508
1515
|
}
|
|
1509
1516
|
/**
|
|
1510
1517
|
* @public
|
|
@@ -1602,6 +1609,13 @@ export interface PipConfiguration {
|
|
|
1602
1609
|
* @public
|
|
1603
1610
|
*/
|
|
1604
1611
|
pipHeight?: number | undefined;
|
|
1612
|
+
/**
|
|
1613
|
+
* <p>Attribute name in <a>ParticipantTokenConfiguration</a> identifying the participant ordering key.
|
|
1614
|
+
* Participants with <code>participantOrderAttribute</code> set to <code>""</code> or not specified are ordered based
|
|
1615
|
+
* on their arrival time into the stage.</p>
|
|
1616
|
+
* @public
|
|
1617
|
+
*/
|
|
1618
|
+
participantOrderAttribute?: string | undefined;
|
|
1605
1619
|
}
|
|
1606
1620
|
/**
|
|
1607
1621
|
* <p>Configuration information of supported layouts for server-side composition.</p>
|
|
@@ -2606,7 +2620,7 @@ export interface Event {
|
|
|
2606
2620
|
destinationSessionId?: string | undefined;
|
|
2607
2621
|
/**
|
|
2608
2622
|
* <p>If true, this indicates the <code>participantId</code> is a replicated participant.
|
|
2609
|
-
* If this is a subscribe event, then this flag refers to <code>remoteParticipantId</code>.</p>
|
|
2623
|
+
* If this is a subscribe event, then this flag refers to <code>remoteParticipantId</code>. Default: <code>false</code>.</p>
|
|
2610
2624
|
* @public
|
|
2611
2625
|
*/
|
|
2612
2626
|
replica?: boolean | undefined;
|
|
@@ -2830,7 +2844,7 @@ export interface ParticipantSummary {
|
|
|
2830
2844
|
*/
|
|
2831
2845
|
replicationState?: ReplicationState | undefined;
|
|
2832
2846
|
/**
|
|
2833
|
-
* <p>
|
|
2847
|
+
* <p>Source stage ARN from which this participant is replicated, if <code>replicationType</code> is <code>REPLICA</code>.</p>
|
|
2834
2848
|
* @public
|
|
2835
2849
|
*/
|
|
2836
2850
|
sourceStageArn?: string | undefined;
|
|
@@ -382,6 +382,7 @@ export interface GridConfiguration {
|
|
|
382
382
|
videoAspectRatio?: VideoAspectRatio | undefined;
|
|
383
383
|
videoFillMode?: VideoFillMode | undefined;
|
|
384
384
|
gridGap?: number | undefined;
|
|
385
|
+
participantOrderAttribute?: string | undefined;
|
|
385
386
|
}
|
|
386
387
|
export declare const PipBehavior: {
|
|
387
388
|
readonly DYNAMIC: "DYNAMIC";
|
|
@@ -406,6 +407,7 @@ export interface PipConfiguration {
|
|
|
406
407
|
pipPosition?: PipPosition | undefined;
|
|
407
408
|
pipWidth?: number | undefined;
|
|
408
409
|
pipHeight?: number | undefined;
|
|
410
|
+
participantOrderAttribute?: string | undefined;
|
|
409
411
|
}
|
|
410
412
|
export interface LayoutConfiguration {
|
|
411
413
|
grid?: GridConfiguration | undefined;
|
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.890.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",
|
|
@@ -20,39 +20,39 @@
|
|
|
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.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.890.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.890.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.887.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.887.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.887.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.890.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.890.0",
|
|
30
30
|
"@aws-sdk/types": "3.887.0",
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.890.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.887.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
-
"@smithy/config-resolver": "^4.2.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.890.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.
|
|
41
|
-
"@smithy/middleware-retry": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.2.2",
|
|
41
|
+
"@smithy/middleware-retry": "^4.2.2",
|
|
42
42
|
"@smithy/middleware-serde": "^4.1.1",
|
|
43
43
|
"@smithy/middleware-stack": "^4.1.1",
|
|
44
|
-
"@smithy/node-config-provider": "^4.2.
|
|
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.
|
|
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.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.1.
|
|
55
|
-
"@smithy/util-endpoints": "^3.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
57
|
"@smithy/util-retry": "^4.1.1",
|
|
58
58
|
"@smithy/util-utf8": "^4.1.0",
|