@aws-sdk/client-kinesis-video-signaling 3.379.1 → 3.385.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.
|
@@ -30,20 +30,24 @@ export type Service = (typeof Service)[keyof typeof Service];
|
|
|
30
30
|
*/
|
|
31
31
|
export interface GetIceServerConfigRequest {
|
|
32
32
|
/**
|
|
33
|
+
* @public
|
|
33
34
|
* <p>The ARN of the signaling channel to be used for the peer-to-peer connection between
|
|
34
35
|
* configured peers. </p>
|
|
35
36
|
*/
|
|
36
37
|
ChannelARN: string | undefined;
|
|
37
38
|
/**
|
|
39
|
+
* @public
|
|
38
40
|
* <p>Unique identifier for the viewer. Must be unique within the signaling channel.</p>
|
|
39
41
|
*/
|
|
40
42
|
ClientId?: string;
|
|
41
43
|
/**
|
|
44
|
+
* @public
|
|
42
45
|
* <p>Specifies the desired service. Currently, <code>TURN</code> is the only valid
|
|
43
46
|
* value.</p>
|
|
44
47
|
*/
|
|
45
48
|
Service?: Service | string;
|
|
46
49
|
/**
|
|
50
|
+
* @public
|
|
47
51
|
* <p>An optional user ID to be associated with the credentials.</p>
|
|
48
52
|
*/
|
|
49
53
|
Username?: string;
|
|
@@ -54,19 +58,23 @@ export interface GetIceServerConfigRequest {
|
|
|
54
58
|
*/
|
|
55
59
|
export interface IceServer {
|
|
56
60
|
/**
|
|
61
|
+
* @public
|
|
57
62
|
* <p>An array of URIs, in the form specified in the <a href="https://tools.ietf.org/html/draft-petithuguenin-behave-turn-uris-03">I-D.petithuguenin-behave-turn-uris</a> spec. These URIs provide the different
|
|
58
63
|
* addresses and/or protocols that can be used to reach the TURN server.</p>
|
|
59
64
|
*/
|
|
60
65
|
Uris?: string[];
|
|
61
66
|
/**
|
|
67
|
+
* @public
|
|
62
68
|
* <p>A username to login to the ICE server.</p>
|
|
63
69
|
*/
|
|
64
70
|
Username?: string;
|
|
65
71
|
/**
|
|
72
|
+
* @public
|
|
66
73
|
* <p>A password to login to the ICE server.</p>
|
|
67
74
|
*/
|
|
68
75
|
Password?: string;
|
|
69
76
|
/**
|
|
77
|
+
* @public
|
|
70
78
|
* <p>The period of time, in seconds, during which the username and password are
|
|
71
79
|
* valid.</p>
|
|
72
80
|
*/
|
|
@@ -77,6 +85,7 @@ export interface IceServer {
|
|
|
77
85
|
*/
|
|
78
86
|
export interface GetIceServerConfigResponse {
|
|
79
87
|
/**
|
|
88
|
+
* @public
|
|
80
89
|
* <p>The list of ICE server information objects.</p>
|
|
81
90
|
*/
|
|
82
91
|
IceServerList?: IceServer[];
|
|
@@ -151,15 +160,18 @@ export declare class SessionExpiredException extends __BaseException {
|
|
|
151
160
|
*/
|
|
152
161
|
export interface SendAlexaOfferToMasterRequest {
|
|
153
162
|
/**
|
|
163
|
+
* @public
|
|
154
164
|
* <p>The ARN of the signaling channel by which Alexa and the master peer
|
|
155
165
|
* communicate.</p>
|
|
156
166
|
*/
|
|
157
167
|
ChannelARN: string | undefined;
|
|
158
168
|
/**
|
|
169
|
+
* @public
|
|
159
170
|
* <p>The unique identifier for the sender client.</p>
|
|
160
171
|
*/
|
|
161
172
|
SenderClientId: string | undefined;
|
|
162
173
|
/**
|
|
174
|
+
* @public
|
|
163
175
|
* <p>The base64-encoded SDP offer content.</p>
|
|
164
176
|
*/
|
|
165
177
|
MessagePayload: string | undefined;
|
|
@@ -169,6 +181,7 @@ export interface SendAlexaOfferToMasterRequest {
|
|
|
169
181
|
*/
|
|
170
182
|
export interface SendAlexaOfferToMasterResponse {
|
|
171
183
|
/**
|
|
184
|
+
* @public
|
|
172
185
|
* <p>The base64-encoded SDP answer content.</p>
|
|
173
186
|
*/
|
|
174
187
|
Answer?: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-kinesis-video-signaling",
|
|
3
3
|
"description": "AWS SDK for JavaScript Kinesis Video Signaling Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.385.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,15 +21,15 @@
|
|
|
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.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.385.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.385.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.379.1",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.378.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.378.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.379.1",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.382.0",
|
|
31
31
|
"@aws-sdk/types": "3.378.0",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.382.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "3.378.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-node": "3.378.0",
|
|
35
35
|
"@smithy/config-resolver": "^2.0.1",
|