-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathweb-inputs.ts
401 lines (339 loc) · 10.7 KB
/
web-inputs.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../../resource';
import { isRequestOptions } from '../../core';
import * as Core from '../../core';
import { BasePage, type BasePageParams } from '../../pagination';
export class WebInputs extends APIResource {
/**
* Create a new Web Input
*/
create(body: WebInputCreateParams, options?: Core.RequestOptions): Core.APIPromise<WebInputCreateResponse> {
return (
this._client.post('/video/v1/web-inputs', { body, ...options }) as Core.APIPromise<{
data: WebInputCreateResponse;
}>
)._thenUnwrap((obj) => obj.data);
}
/**
* Retrieve a single Web Input's info
*/
retrieve(webInputId: string, options?: Core.RequestOptions): Core.APIPromise<WebInputRetrieveResponse> {
return (
this._client.get(`/video/v1/web-inputs/${webInputId}`, options) as Core.APIPromise<{
data: WebInputRetrieveResponse;
}>
)._thenUnwrap((obj) => obj.data);
}
/**
* List Web Inputs
*/
list(
query?: WebInputListParams,
options?: Core.RequestOptions,
): Core.PagePromise<WebInputListResponsesBasePage, WebInputListResponse>;
list(options?: Core.RequestOptions): Core.PagePromise<WebInputListResponsesBasePage, WebInputListResponse>;
list(
query: WebInputListParams | Core.RequestOptions = {},
options?: Core.RequestOptions,
): Core.PagePromise<WebInputListResponsesBasePage, WebInputListResponse> {
if (isRequestOptions(query)) {
return this.list({}, query);
}
return this._client.getAPIList('/video/v1/web-inputs', WebInputListResponsesBasePage, {
query,
...options,
});
}
/**
* Deletes a Web Input and all its data
*/
delete(webInputId: string, options?: Core.RequestOptions): Core.APIPromise<void> {
return this._client.delete(`/video/v1/web-inputs/${webInputId}`, {
...options,
headers: { Accept: '*/*', ...options?.headers },
});
}
/**
* Launches the browsers instance, loads the URL specified, and then starts
* streaming to the specified Live Stream.
*/
launch(webInputId: string, options?: Core.RequestOptions): Core.APIPromise<WebInputLaunchResponse> {
return (
this._client.put(`/video/v1/web-inputs/${webInputId}/launch`, options) as Core.APIPromise<{
data: WebInputLaunchResponse;
}>
)._thenUnwrap((obj) => obj.data);
}
/**
* Reloads the page that a Web Input is displaying.
*
* Note: Using this when the Web Input is streaming will display the page
* reloading.
*/
reload(webInputId: string, options?: Core.RequestOptions): Core.APIPromise<WebInputReloadResponse> {
return (
this._client.put(`/video/v1/web-inputs/${webInputId}/reload`, options) as Core.APIPromise<{
data: WebInputReloadResponse;
}>
)._thenUnwrap((obj) => obj.data);
}
/**
* Ends streaming to the specified Live Stream, and then shuts down the Web Input
* browser instance.
*/
shutdown(webInputId: string, options?: Core.RequestOptions): Core.APIPromise<WebInputShutdownResponse> {
return (
this._client.put(`/video/v1/web-inputs/${webInputId}/shutdown`, options) as Core.APIPromise<{
data: WebInputShutdownResponse;
}>
)._thenUnwrap((obj) => obj.data);
}
/**
* Changes the URL that a Web Input loads when it launches.
*
* Note: This can only be called when the Web Input is idle.
*/
updateURL(
webInputId: string,
body: WebInputUpdateURLParams,
options?: Core.RequestOptions,
): Core.APIPromise<WebInputUpdateURLResponse> {
return (
this._client.put(`/video/v1/web-inputs/${webInputId}/url`, { body, ...options }) as Core.APIPromise<{
data: WebInputUpdateURLResponse;
}>
)._thenUnwrap((obj) => obj.data);
}
}
export class WebInputListResponsesBasePage extends BasePage<WebInputListResponse> {}
export interface WebInputCreateResponse {
/**
* Unique identifier for the Web Input.
*/
id: string;
/**
* When set to `true` the Web Input will automatically launch and start streaming
* immediately after creation
*/
auto_launch: boolean;
/**
* Time the Web Input was created, defined as a Unix timestamp (seconds since
* epoch).
*/
created_at: string;
/**
* The Live Stream ID to broadcast this Web Input to
*/
live_stream_id: string;
/**
* The resolution of the viewport of the Web Input's browser instance. Defaults to
* 1920x1080 if not set.
*/
resolution: '1920x1080' | '1280x720' | '1080x1920' | '720x1280' | '1080x1080' | '720x720';
status: 'idle' | 'launching' | 'streaming';
/**
* The URL for the Web Input to load.
*/
url: string;
/**
* Arbitrary metadata that will be included in the Web Input details and related
* webhooks. Can be used to store your own ID for the Web Input. **Max: 255
* characters**.
*/
passthrough?: string;
/**
* The number of seconds that the Web Input should stream for before automatically
* shutting down.
*/
timeout?: number;
}
export interface WebInputRetrieveResponse {
/**
* Unique identifier for the Web Input.
*/
id: string;
/**
* When set to `true` the Web Input will automatically launch and start streaming
* immediately after creation
*/
auto_launch: boolean;
/**
* Time the Web Input was created, defined as a Unix timestamp (seconds since
* epoch).
*/
created_at: string;
/**
* The Live Stream ID to broadcast this Web Input to
*/
live_stream_id: string;
/**
* The resolution of the viewport of the Web Input's browser instance. Defaults to
* 1920x1080 if not set.
*/
resolution: '1920x1080' | '1280x720' | '1080x1920' | '720x1280' | '1080x1080' | '720x720';
status: 'idle' | 'launching' | 'streaming';
/**
* The URL for the Web Input to load.
*/
url: string;
/**
* Arbitrary metadata that will be included in the Web Input details and related
* webhooks. Can be used to store your own ID for the Web Input. **Max: 255
* characters**.
*/
passthrough?: string;
/**
* The number of seconds that the Web Input should stream for before automatically
* shutting down.
*/
timeout?: number;
}
export interface WebInputListResponse {
/**
* Unique identifier for the Web Input.
*/
id: string;
/**
* When set to `true` the Web Input will automatically launch and start streaming
* immediately after creation
*/
auto_launch: boolean;
/**
* Time the Web Input was created, defined as a Unix timestamp (seconds since
* epoch).
*/
created_at: string;
/**
* The Live Stream ID to broadcast this Web Input to
*/
live_stream_id: string;
/**
* The resolution of the viewport of the Web Input's browser instance. Defaults to
* 1920x1080 if not set.
*/
resolution: '1920x1080' | '1280x720' | '1080x1920' | '720x1280' | '1080x1080' | '720x720';
status: 'idle' | 'launching' | 'streaming';
/**
* The URL for the Web Input to load.
*/
url: string;
/**
* Arbitrary metadata that will be included in the Web Input details and related
* webhooks. Can be used to store your own ID for the Web Input. **Max: 255
* characters**.
*/
passthrough?: string;
/**
* The number of seconds that the Web Input should stream for before automatically
* shutting down.
*/
timeout?: number;
}
export type WebInputLaunchResponse = unknown;
export type WebInputReloadResponse = unknown;
export type WebInputShutdownResponse = unknown;
export interface WebInputUpdateURLResponse {
/**
* Unique identifier for the Web Input.
*/
id: string;
/**
* When set to `true` the Web Input will automatically launch and start streaming
* immediately after creation
*/
auto_launch: boolean;
/**
* Time the Web Input was created, defined as a Unix timestamp (seconds since
* epoch).
*/
created_at: string;
/**
* The Live Stream ID to broadcast this Web Input to
*/
live_stream_id: string;
/**
* The resolution of the viewport of the Web Input's browser instance. Defaults to
* 1920x1080 if not set.
*/
resolution: '1920x1080' | '1280x720' | '1080x1920' | '720x1280' | '1080x1080' | '720x720';
status: 'idle' | 'launching' | 'streaming';
/**
* The URL for the Web Input to load.
*/
url: string;
/**
* Arbitrary metadata that will be included in the Web Input details and related
* webhooks. Can be used to store your own ID for the Web Input. **Max: 255
* characters**.
*/
passthrough?: string;
/**
* The number of seconds that the Web Input should stream for before automatically
* shutting down.
*/
timeout?: number;
}
export interface WebInputCreateParams {
/**
* The Live Stream ID to broadcast this Web Input to
*/
live_stream_id: string;
/**
* The URL for the Web Input to load.
*/
url: string;
/**
* Unique identifier for the Web Input.
*/
id?: string;
/**
* When set to `true` the Web Input will automatically launch and start streaming
* immediately after creation
*/
auto_launch?: boolean;
/**
* Time the Web Input was created, defined as a Unix timestamp (seconds since
* epoch).
*/
created_at?: string;
/**
* Arbitrary metadata that will be included in the Web Input details and related
* webhooks. Can be used to store your own ID for the Web Input. **Max: 255
* characters**.
*/
passthrough?: string;
/**
* The resolution of the viewport of the Web Input's browser instance. Defaults to
* 1920x1080 if not set.
*/
resolution?: '1920x1080' | '1280x720' | '1080x1920' | '720x1280' | '1080x1080' | '720x720';
status?: 'idle' | 'launching' | 'streaming';
/**
* The number of seconds that the Web Input should stream for before automatically
* shutting down.
*/
timeout?: number;
}
export interface WebInputListParams extends BasePageParams {}
export interface WebInputUpdateURLParams {
/**
* The URL for the Web Input to load.
*/
url: string;
}
WebInputs.WebInputListResponsesBasePage = WebInputListResponsesBasePage;
export declare namespace WebInputs {
export {
type WebInputCreateResponse as WebInputCreateResponse,
type WebInputRetrieveResponse as WebInputRetrieveResponse,
type WebInputListResponse as WebInputListResponse,
type WebInputLaunchResponse as WebInputLaunchResponse,
type WebInputReloadResponse as WebInputReloadResponse,
type WebInputShutdownResponse as WebInputShutdownResponse,
type WebInputUpdateURLResponse as WebInputUpdateURLResponse,
WebInputListResponsesBasePage as WebInputListResponsesBasePage,
type WebInputCreateParams as WebInputCreateParams,
type WebInputListParams as WebInputListParams,
type WebInputUpdateURLParams as WebInputUpdateURLParams,
};
}