camstreamerlib 4.0.0-beta.129 → 4.0.0-beta.130
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/cjs/CamStreamerAPI.d.ts +6 -18
- package/cjs/types/CamStreamerAPI/CamStreamerAPI.d.ts +156 -216
- package/cjs/types/CamStreamerAPI/CamStreamerAPI.js +6 -6
- package/cjs/types/CamStreamerAPI/streamsSchema.d.ts +12 -470
- package/cjs/types/CamStreamerAPI/streamsSchema.js +7 -11
- package/esm/types/CamStreamerAPI/CamStreamerAPI.js +5 -5
- package/esm/types/CamStreamerAPI/streamsSchema.js +6 -10
- package/package.json +1 -1
- package/types/CamStreamerAPI.d.ts +6 -18
- package/types/types/CamStreamerAPI/CamStreamerAPI.d.ts +156 -216
- package/types/types/CamStreamerAPI/streamsSchema.d.ts +12 -470
|
@@ -1,442 +1,5 @@
|
|
|
1
1
|
import z from 'zod';
|
|
2
|
-
export declare const
|
|
3
|
-
streamId: z.ZodString;
|
|
4
|
-
enabled: z.ZodBoolean;
|
|
5
|
-
active: z.ZodBoolean;
|
|
6
|
-
title: z.ZodString;
|
|
7
|
-
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
8
|
-
type: z.ZodLiteral<"manual">;
|
|
9
|
-
port: z.ZodOptional<z.ZodNumber>;
|
|
10
|
-
}, "strip", z.ZodTypeAny, {
|
|
11
|
-
type: "manual";
|
|
12
|
-
port?: number | undefined;
|
|
13
|
-
}, {
|
|
14
|
-
type: "manual";
|
|
15
|
-
port?: number | undefined;
|
|
16
|
-
}>, z.ZodObject<{
|
|
17
|
-
type: z.ZodLiteral<"onetime">;
|
|
18
|
-
startTime: z.ZodNumber;
|
|
19
|
-
stopTime: z.ZodNumber;
|
|
20
|
-
prepareAheadS: z.ZodOptional<z.ZodNumber>;
|
|
21
|
-
}, "strip", z.ZodTypeAny, {
|
|
22
|
-
type: "onetime";
|
|
23
|
-
startTime: number;
|
|
24
|
-
stopTime: number;
|
|
25
|
-
prepareAheadS?: number | undefined;
|
|
26
|
-
}, {
|
|
27
|
-
type: "onetime";
|
|
28
|
-
startTime: number;
|
|
29
|
-
stopTime: number;
|
|
30
|
-
prepareAheadS?: number | undefined;
|
|
31
|
-
}>, z.ZodObject<{
|
|
32
|
-
type: z.ZodLiteral<"recurrent">;
|
|
33
|
-
schedule: z.ZodArray<z.ZodObject<{
|
|
34
|
-
start: z.ZodObject<{
|
|
35
|
-
day: z.ZodNumber;
|
|
36
|
-
timeS: z.ZodNumber;
|
|
37
|
-
}, "strip", z.ZodTypeAny, {
|
|
38
|
-
day: number;
|
|
39
|
-
timeS: number;
|
|
40
|
-
}, {
|
|
41
|
-
day: number;
|
|
42
|
-
timeS: number;
|
|
43
|
-
}>;
|
|
44
|
-
stop: z.ZodObject<{
|
|
45
|
-
day: z.ZodNumber;
|
|
46
|
-
timeS: z.ZodNumber;
|
|
47
|
-
}, "strip", z.ZodTypeAny, {
|
|
48
|
-
day: number;
|
|
49
|
-
timeS: number;
|
|
50
|
-
}, {
|
|
51
|
-
day: number;
|
|
52
|
-
timeS: number;
|
|
53
|
-
}>;
|
|
54
|
-
isActive: z.ZodBoolean;
|
|
55
|
-
}, "strip", z.ZodTypeAny, {
|
|
56
|
-
start: {
|
|
57
|
-
day: number;
|
|
58
|
-
timeS: number;
|
|
59
|
-
};
|
|
60
|
-
stop: {
|
|
61
|
-
day: number;
|
|
62
|
-
timeS: number;
|
|
63
|
-
};
|
|
64
|
-
isActive: boolean;
|
|
65
|
-
}, {
|
|
66
|
-
start: {
|
|
67
|
-
day: number;
|
|
68
|
-
timeS: number;
|
|
69
|
-
};
|
|
70
|
-
stop: {
|
|
71
|
-
day: number;
|
|
72
|
-
timeS: number;
|
|
73
|
-
};
|
|
74
|
-
isActive: boolean;
|
|
75
|
-
}>, "many">;
|
|
76
|
-
prepareAheadS: z.ZodOptional<z.ZodNumber>;
|
|
77
|
-
}, "strip", z.ZodTypeAny, {
|
|
78
|
-
type: "recurrent";
|
|
79
|
-
schedule: {
|
|
80
|
-
start: {
|
|
81
|
-
day: number;
|
|
82
|
-
timeS: number;
|
|
83
|
-
};
|
|
84
|
-
stop: {
|
|
85
|
-
day: number;
|
|
86
|
-
timeS: number;
|
|
87
|
-
};
|
|
88
|
-
isActive: boolean;
|
|
89
|
-
}[];
|
|
90
|
-
prepareAheadS?: number | undefined;
|
|
91
|
-
}, {
|
|
92
|
-
type: "recurrent";
|
|
93
|
-
schedule: {
|
|
94
|
-
start: {
|
|
95
|
-
day: number;
|
|
96
|
-
timeS: number;
|
|
97
|
-
};
|
|
98
|
-
stop: {
|
|
99
|
-
day: number;
|
|
100
|
-
timeS: number;
|
|
101
|
-
};
|
|
102
|
-
isActive: boolean;
|
|
103
|
-
}[];
|
|
104
|
-
prepareAheadS?: number | undefined;
|
|
105
|
-
}>]>;
|
|
106
|
-
video: z.ZodObject<{
|
|
107
|
-
output: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
108
|
-
type: z.ZodLiteral<"video">;
|
|
109
|
-
url: z.ZodString;
|
|
110
|
-
parameters: z.ZodString;
|
|
111
|
-
}, "strip", z.ZodTypeAny, {
|
|
112
|
-
type: "video";
|
|
113
|
-
url: string;
|
|
114
|
-
parameters: string;
|
|
115
|
-
}, {
|
|
116
|
-
type: "video";
|
|
117
|
-
url: string;
|
|
118
|
-
parameters: string;
|
|
119
|
-
}>, z.ZodObject<{
|
|
120
|
-
type: z.ZodLiteral<"images">;
|
|
121
|
-
url: z.ZodString;
|
|
122
|
-
imageIntervalS: z.ZodNumber;
|
|
123
|
-
}, "strip", z.ZodTypeAny, {
|
|
124
|
-
type: "images";
|
|
125
|
-
url: string;
|
|
126
|
-
imageIntervalS: number;
|
|
127
|
-
}, {
|
|
128
|
-
type: "images";
|
|
129
|
-
url: string;
|
|
130
|
-
imageIntervalS: number;
|
|
131
|
-
}>, z.ZodObject<{
|
|
132
|
-
type: z.ZodLiteral<"none">;
|
|
133
|
-
}, "strip", z.ZodTypeAny, {
|
|
134
|
-
type: "none";
|
|
135
|
-
}, {
|
|
136
|
-
type: "none";
|
|
137
|
-
}>]>;
|
|
138
|
-
input: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
139
|
-
type: z.ZodLiteral<"RTSP_URL">;
|
|
140
|
-
url: z.ZodString;
|
|
141
|
-
}, "strip", z.ZodTypeAny, {
|
|
142
|
-
type: "RTSP_URL";
|
|
143
|
-
url: string;
|
|
144
|
-
}, {
|
|
145
|
-
type: "RTSP_URL";
|
|
146
|
-
url: string;
|
|
147
|
-
}>, z.ZodObject<{
|
|
148
|
-
type: z.ZodLiteral<"CSw">;
|
|
149
|
-
}, "strip", z.ZodTypeAny, {
|
|
150
|
-
type: "CSw";
|
|
151
|
-
}, {
|
|
152
|
-
type: "CSw";
|
|
153
|
-
}>, z.ZodObject<{
|
|
154
|
-
type: z.ZodLiteral<"CRS">;
|
|
155
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
156
|
-
internalVapixParameters: z.ZodString;
|
|
157
|
-
userVapixParameters: z.ZodString;
|
|
158
|
-
}, "strip", z.ZodTypeAny, {
|
|
159
|
-
type: "CRS";
|
|
160
|
-
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
161
|
-
internalVapixParameters: string;
|
|
162
|
-
userVapixParameters: string;
|
|
163
|
-
}, {
|
|
164
|
-
type: "CRS";
|
|
165
|
-
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
166
|
-
internalVapixParameters: string;
|
|
167
|
-
userVapixParameters: string;
|
|
168
|
-
}>]>;
|
|
169
|
-
delayS: z.ZodOptional<z.ZodNumber>;
|
|
170
|
-
}, "strip", z.ZodTypeAny, {
|
|
171
|
-
output: {
|
|
172
|
-
type: "video";
|
|
173
|
-
url: string;
|
|
174
|
-
parameters: string;
|
|
175
|
-
} | {
|
|
176
|
-
type: "images";
|
|
177
|
-
url: string;
|
|
178
|
-
imageIntervalS: number;
|
|
179
|
-
} | {
|
|
180
|
-
type: "none";
|
|
181
|
-
};
|
|
182
|
-
input: {
|
|
183
|
-
type: "RTSP_URL";
|
|
184
|
-
url: string;
|
|
185
|
-
} | {
|
|
186
|
-
type: "CSw";
|
|
187
|
-
} | {
|
|
188
|
-
type: "CRS";
|
|
189
|
-
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
190
|
-
internalVapixParameters: string;
|
|
191
|
-
userVapixParameters: string;
|
|
192
|
-
};
|
|
193
|
-
delayS?: number | undefined;
|
|
194
|
-
}, {
|
|
195
|
-
output: {
|
|
196
|
-
type: "video";
|
|
197
|
-
url: string;
|
|
198
|
-
parameters: string;
|
|
199
|
-
} | {
|
|
200
|
-
type: "images";
|
|
201
|
-
url: string;
|
|
202
|
-
imageIntervalS: number;
|
|
203
|
-
} | {
|
|
204
|
-
type: "none";
|
|
205
|
-
};
|
|
206
|
-
input: {
|
|
207
|
-
type: "RTSP_URL";
|
|
208
|
-
url: string;
|
|
209
|
-
} | {
|
|
210
|
-
type: "CSw";
|
|
211
|
-
} | {
|
|
212
|
-
type: "CRS";
|
|
213
|
-
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
214
|
-
internalVapixParameters: string;
|
|
215
|
-
userVapixParameters: string;
|
|
216
|
-
};
|
|
217
|
-
delayS?: number | undefined;
|
|
218
|
-
}>;
|
|
219
|
-
audio: z.ZodDiscriminatedUnion<"source", [z.ZodObject<{
|
|
220
|
-
source: z.ZodLiteral<"none">;
|
|
221
|
-
}, "strip", z.ZodTypeAny, {
|
|
222
|
-
source: "none";
|
|
223
|
-
}, {
|
|
224
|
-
source: "none";
|
|
225
|
-
}>, z.ZodObject<{
|
|
226
|
-
source: z.ZodLiteral<"microphone">;
|
|
227
|
-
audioChannelNbr: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>]>;
|
|
228
|
-
forceStereo: z.ZodBoolean;
|
|
229
|
-
}, "strip", z.ZodTypeAny, {
|
|
230
|
-
source: "microphone";
|
|
231
|
-
audioChannelNbr: 1 | 2;
|
|
232
|
-
forceStereo: boolean;
|
|
233
|
-
}, {
|
|
234
|
-
source: "microphone";
|
|
235
|
-
audioChannelNbr: 1 | 2;
|
|
236
|
-
forceStereo: boolean;
|
|
237
|
-
}>, z.ZodObject<{
|
|
238
|
-
source: z.ZodLiteral<"file">;
|
|
239
|
-
name: z.ZodString;
|
|
240
|
-
path: z.ZodString;
|
|
241
|
-
forceStereo: z.ZodBoolean;
|
|
242
|
-
}, "strip", z.ZodTypeAny, {
|
|
243
|
-
path: string;
|
|
244
|
-
name: string;
|
|
245
|
-
source: "file";
|
|
246
|
-
forceStereo: boolean;
|
|
247
|
-
}, {
|
|
248
|
-
path: string;
|
|
249
|
-
name: string;
|
|
250
|
-
source: "file";
|
|
251
|
-
forceStereo: boolean;
|
|
252
|
-
}>, z.ZodObject<{
|
|
253
|
-
source: z.ZodLiteral<"url">;
|
|
254
|
-
name: z.ZodString;
|
|
255
|
-
url: z.ZodString;
|
|
256
|
-
avSyncMsec: z.ZodNumber;
|
|
257
|
-
forceStereo: z.ZodBoolean;
|
|
258
|
-
}, "strip", z.ZodTypeAny, {
|
|
259
|
-
name: string;
|
|
260
|
-
url: string;
|
|
261
|
-
source: "url";
|
|
262
|
-
forceStereo: boolean;
|
|
263
|
-
avSyncMsec: number;
|
|
264
|
-
}, {
|
|
265
|
-
name: string;
|
|
266
|
-
url: string;
|
|
267
|
-
source: "url";
|
|
268
|
-
forceStereo: boolean;
|
|
269
|
-
avSyncMsec: number;
|
|
270
|
-
}>]>;
|
|
271
|
-
status: z.ZodObject<{
|
|
272
|
-
led: z.ZodBoolean;
|
|
273
|
-
port: z.ZodOptional<z.ZodNumber>;
|
|
274
|
-
}, "strip", z.ZodTypeAny, {
|
|
275
|
-
led: boolean;
|
|
276
|
-
port?: number | undefined;
|
|
277
|
-
}, {
|
|
278
|
-
led: boolean;
|
|
279
|
-
port?: number | undefined;
|
|
280
|
-
}>;
|
|
281
|
-
} & {
|
|
282
|
-
streamKey: z.ZodString;
|
|
283
|
-
streamIdentifier: z.ZodOptional<z.ZodString>;
|
|
284
|
-
}, "strip", z.ZodTypeAny, {
|
|
285
|
-
status: {
|
|
286
|
-
led: boolean;
|
|
287
|
-
port?: number | undefined;
|
|
288
|
-
};
|
|
289
|
-
streamId: string;
|
|
290
|
-
enabled: boolean;
|
|
291
|
-
active: boolean;
|
|
292
|
-
title: string;
|
|
293
|
-
trigger: {
|
|
294
|
-
type: "manual";
|
|
295
|
-
port?: number | undefined;
|
|
296
|
-
} | {
|
|
297
|
-
type: "onetime";
|
|
298
|
-
startTime: number;
|
|
299
|
-
stopTime: number;
|
|
300
|
-
prepareAheadS?: number | undefined;
|
|
301
|
-
} | {
|
|
302
|
-
type: "recurrent";
|
|
303
|
-
schedule: {
|
|
304
|
-
start: {
|
|
305
|
-
day: number;
|
|
306
|
-
timeS: number;
|
|
307
|
-
};
|
|
308
|
-
stop: {
|
|
309
|
-
day: number;
|
|
310
|
-
timeS: number;
|
|
311
|
-
};
|
|
312
|
-
isActive: boolean;
|
|
313
|
-
}[];
|
|
314
|
-
prepareAheadS?: number | undefined;
|
|
315
|
-
};
|
|
316
|
-
video: {
|
|
317
|
-
output: {
|
|
318
|
-
type: "video";
|
|
319
|
-
url: string;
|
|
320
|
-
parameters: string;
|
|
321
|
-
} | {
|
|
322
|
-
type: "images";
|
|
323
|
-
url: string;
|
|
324
|
-
imageIntervalS: number;
|
|
325
|
-
} | {
|
|
326
|
-
type: "none";
|
|
327
|
-
};
|
|
328
|
-
input: {
|
|
329
|
-
type: "RTSP_URL";
|
|
330
|
-
url: string;
|
|
331
|
-
} | {
|
|
332
|
-
type: "CSw";
|
|
333
|
-
} | {
|
|
334
|
-
type: "CRS";
|
|
335
|
-
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
336
|
-
internalVapixParameters: string;
|
|
337
|
-
userVapixParameters: string;
|
|
338
|
-
};
|
|
339
|
-
delayS?: number | undefined;
|
|
340
|
-
};
|
|
341
|
-
audio: {
|
|
342
|
-
source: "none";
|
|
343
|
-
} | {
|
|
344
|
-
source: "microphone";
|
|
345
|
-
audioChannelNbr: 1 | 2;
|
|
346
|
-
forceStereo: boolean;
|
|
347
|
-
} | {
|
|
348
|
-
path: string;
|
|
349
|
-
name: string;
|
|
350
|
-
source: "file";
|
|
351
|
-
forceStereo: boolean;
|
|
352
|
-
} | {
|
|
353
|
-
name: string;
|
|
354
|
-
url: string;
|
|
355
|
-
source: "url";
|
|
356
|
-
forceStereo: boolean;
|
|
357
|
-
avSyncMsec: number;
|
|
358
|
-
};
|
|
359
|
-
streamKey: string;
|
|
360
|
-
streamIdentifier?: string | undefined;
|
|
361
|
-
}, {
|
|
362
|
-
status: {
|
|
363
|
-
led: boolean;
|
|
364
|
-
port?: number | undefined;
|
|
365
|
-
};
|
|
366
|
-
streamId: string;
|
|
367
|
-
enabled: boolean;
|
|
368
|
-
active: boolean;
|
|
369
|
-
title: string;
|
|
370
|
-
trigger: {
|
|
371
|
-
type: "manual";
|
|
372
|
-
port?: number | undefined;
|
|
373
|
-
} | {
|
|
374
|
-
type: "onetime";
|
|
375
|
-
startTime: number;
|
|
376
|
-
stopTime: number;
|
|
377
|
-
prepareAheadS?: number | undefined;
|
|
378
|
-
} | {
|
|
379
|
-
type: "recurrent";
|
|
380
|
-
schedule: {
|
|
381
|
-
start: {
|
|
382
|
-
day: number;
|
|
383
|
-
timeS: number;
|
|
384
|
-
};
|
|
385
|
-
stop: {
|
|
386
|
-
day: number;
|
|
387
|
-
timeS: number;
|
|
388
|
-
};
|
|
389
|
-
isActive: boolean;
|
|
390
|
-
}[];
|
|
391
|
-
prepareAheadS?: number | undefined;
|
|
392
|
-
};
|
|
393
|
-
video: {
|
|
394
|
-
output: {
|
|
395
|
-
type: "video";
|
|
396
|
-
url: string;
|
|
397
|
-
parameters: string;
|
|
398
|
-
} | {
|
|
399
|
-
type: "images";
|
|
400
|
-
url: string;
|
|
401
|
-
imageIntervalS: number;
|
|
402
|
-
} | {
|
|
403
|
-
type: "none";
|
|
404
|
-
};
|
|
405
|
-
input: {
|
|
406
|
-
type: "RTSP_URL";
|
|
407
|
-
url: string;
|
|
408
|
-
} | {
|
|
409
|
-
type: "CSw";
|
|
410
|
-
} | {
|
|
411
|
-
type: "CRS";
|
|
412
|
-
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
413
|
-
internalVapixParameters: string;
|
|
414
|
-
userVapixParameters: string;
|
|
415
|
-
};
|
|
416
|
-
delayS?: number | undefined;
|
|
417
|
-
};
|
|
418
|
-
audio: {
|
|
419
|
-
source: "none";
|
|
420
|
-
} | {
|
|
421
|
-
source: "microphone";
|
|
422
|
-
audioChannelNbr: 1 | 2;
|
|
423
|
-
forceStereo: boolean;
|
|
424
|
-
} | {
|
|
425
|
-
path: string;
|
|
426
|
-
name: string;
|
|
427
|
-
source: "file";
|
|
428
|
-
forceStereo: boolean;
|
|
429
|
-
} | {
|
|
430
|
-
name: string;
|
|
431
|
-
url: string;
|
|
432
|
-
source: "url";
|
|
433
|
-
forceStereo: boolean;
|
|
434
|
-
avSyncMsec: number;
|
|
435
|
-
};
|
|
436
|
-
streamKey: string;
|
|
437
|
-
streamIdentifier?: string | undefined;
|
|
438
|
-
}>;
|
|
439
|
-
export declare const churchSchema: z.ZodObject<{
|
|
2
|
+
export declare const daCastSchema: z.ZodObject<{
|
|
440
3
|
streamId: z.ZodString;
|
|
441
4
|
enabled: z.ZodBoolean;
|
|
442
5
|
active: z.ZodBoolean;
|
|
@@ -716,7 +279,7 @@ export declare const churchSchema: z.ZodObject<{
|
|
|
716
279
|
port?: number | undefined;
|
|
717
280
|
}>;
|
|
718
281
|
} & {
|
|
719
|
-
platform: z.ZodLiteral<"
|
|
282
|
+
platform: z.ZodLiteral<"da_cast">;
|
|
720
283
|
}, "strip", z.ZodTypeAny, {
|
|
721
284
|
status: {
|
|
722
285
|
led: boolean;
|
|
@@ -792,7 +355,7 @@ export declare const churchSchema: z.ZodObject<{
|
|
|
792
355
|
forceStereo: boolean;
|
|
793
356
|
avSyncMsec: number;
|
|
794
357
|
};
|
|
795
|
-
platform: "
|
|
358
|
+
platform: "da_cast";
|
|
796
359
|
}, {
|
|
797
360
|
status: {
|
|
798
361
|
led: boolean;
|
|
@@ -868,9 +431,9 @@ export declare const churchSchema: z.ZodObject<{
|
|
|
868
431
|
forceStereo: boolean;
|
|
869
432
|
avSyncMsec: number;
|
|
870
433
|
};
|
|
871
|
-
platform: "
|
|
434
|
+
platform: "da_cast";
|
|
872
435
|
}>;
|
|
873
|
-
export declare const
|
|
436
|
+
export declare const dailymotionSchema: z.ZodObject<{
|
|
874
437
|
streamId: z.ZodString;
|
|
875
438
|
enabled: z.ZodBoolean;
|
|
876
439
|
active: z.ZodBoolean;
|
|
@@ -1150,7 +713,7 @@ export declare const daCastSchema: z.ZodObject<{
|
|
|
1150
713
|
port?: number | undefined;
|
|
1151
714
|
}>;
|
|
1152
715
|
} & {
|
|
1153
|
-
platform: z.ZodLiteral<"
|
|
716
|
+
platform: z.ZodLiteral<"dailymotion">;
|
|
1154
717
|
}, "strip", z.ZodTypeAny, {
|
|
1155
718
|
status: {
|
|
1156
719
|
led: boolean;
|
|
@@ -1226,7 +789,7 @@ export declare const daCastSchema: z.ZodObject<{
|
|
|
1226
789
|
forceStereo: boolean;
|
|
1227
790
|
avSyncMsec: number;
|
|
1228
791
|
};
|
|
1229
|
-
platform: "
|
|
792
|
+
platform: "dailymotion";
|
|
1230
793
|
}, {
|
|
1231
794
|
status: {
|
|
1232
795
|
led: boolean;
|
|
@@ -1302,9 +865,9 @@ export declare const daCastSchema: z.ZodObject<{
|
|
|
1302
865
|
forceStereo: boolean;
|
|
1303
866
|
avSyncMsec: number;
|
|
1304
867
|
};
|
|
1305
|
-
platform: "
|
|
868
|
+
platform: "dailymotion";
|
|
1306
869
|
}>;
|
|
1307
|
-
export declare const
|
|
870
|
+
export declare const facebookRtmpSchema: z.ZodObject<{
|
|
1308
871
|
streamId: z.ZodString;
|
|
1309
872
|
enabled: z.ZodBoolean;
|
|
1310
873
|
active: z.ZodBoolean;
|
|
@@ -1584,7 +1147,7 @@ export declare const dailymotionSchema: z.ZodObject<{
|
|
|
1584
1147
|
port?: number | undefined;
|
|
1585
1148
|
}>;
|
|
1586
1149
|
} & {
|
|
1587
|
-
platform: z.ZodLiteral<"
|
|
1150
|
+
platform: z.ZodLiteral<"facebook_rtmp">;
|
|
1588
1151
|
}, "strip", z.ZodTypeAny, {
|
|
1589
1152
|
status: {
|
|
1590
1153
|
led: boolean;
|
|
@@ -1660,7 +1223,7 @@ export declare const dailymotionSchema: z.ZodObject<{
|
|
|
1660
1223
|
forceStereo: boolean;
|
|
1661
1224
|
avSyncMsec: number;
|
|
1662
1225
|
};
|
|
1663
|
-
platform: "
|
|
1226
|
+
platform: "facebook_rtmp";
|
|
1664
1227
|
}, {
|
|
1665
1228
|
status: {
|
|
1666
1229
|
led: boolean;
|
|
@@ -1736,7 +1299,7 @@ export declare const dailymotionSchema: z.ZodObject<{
|
|
|
1736
1299
|
forceStereo: boolean;
|
|
1737
1300
|
avSyncMsec: number;
|
|
1738
1301
|
};
|
|
1739
|
-
platform: "
|
|
1302
|
+
platform: "facebook_rtmp";
|
|
1740
1303
|
}>;
|
|
1741
1304
|
export declare const gameChangerSchema: z.ZodObject<{
|
|
1742
1305
|
streamId: z.ZodString;
|
|
@@ -2017,9 +1580,6 @@ export declare const gameChangerSchema: z.ZodObject<{
|
|
|
2017
1580
|
led: boolean;
|
|
2018
1581
|
port?: number | undefined;
|
|
2019
1582
|
}>;
|
|
2020
|
-
} & {
|
|
2021
|
-
streamKey: z.ZodString;
|
|
2022
|
-
streamIdentifier: z.ZodOptional<z.ZodString>;
|
|
2023
1583
|
} & {
|
|
2024
1584
|
platform: z.ZodLiteral<"game_changer">;
|
|
2025
1585
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2098,8 +1658,6 @@ export declare const gameChangerSchema: z.ZodObject<{
|
|
|
2098
1658
|
avSyncMsec: number;
|
|
2099
1659
|
};
|
|
2100
1660
|
platform: "game_changer";
|
|
2101
|
-
streamKey: string;
|
|
2102
|
-
streamIdentifier?: string | undefined;
|
|
2103
1661
|
}, {
|
|
2104
1662
|
status: {
|
|
2105
1663
|
led: boolean;
|
|
@@ -2176,8 +1734,6 @@ export declare const gameChangerSchema: z.ZodObject<{
|
|
|
2176
1734
|
avSyncMsec: number;
|
|
2177
1735
|
};
|
|
2178
1736
|
platform: "game_changer";
|
|
2179
|
-
streamKey: string;
|
|
2180
|
-
streamIdentifier?: string | undefined;
|
|
2181
1737
|
}>;
|
|
2182
1738
|
export declare const hlsPullSchema: z.ZodObject<{
|
|
2183
1739
|
streamId: z.ZodString;
|
|
@@ -5062,9 +4618,6 @@ export declare const rtmpSchema: z.ZodObject<{
|
|
|
5062
4618
|
led: boolean;
|
|
5063
4619
|
port?: number | undefined;
|
|
5064
4620
|
}>;
|
|
5065
|
-
} & {
|
|
5066
|
-
streamKey: z.ZodString;
|
|
5067
|
-
streamIdentifier: z.ZodOptional<z.ZodString>;
|
|
5068
4621
|
} & {
|
|
5069
4622
|
platform: z.ZodLiteral<"rtmp">;
|
|
5070
4623
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5143,8 +4696,6 @@ export declare const rtmpSchema: z.ZodObject<{
|
|
|
5143
4696
|
avSyncMsec: number;
|
|
5144
4697
|
};
|
|
5145
4698
|
platform: "rtmp";
|
|
5146
|
-
streamKey: string;
|
|
5147
|
-
streamIdentifier?: string | undefined;
|
|
5148
4699
|
}, {
|
|
5149
4700
|
status: {
|
|
5150
4701
|
led: boolean;
|
|
@@ -5221,8 +4772,6 @@ export declare const rtmpSchema: z.ZodObject<{
|
|
|
5221
4772
|
avSyncMsec: number;
|
|
5222
4773
|
};
|
|
5223
4774
|
platform: "rtmp";
|
|
5224
|
-
streamKey: string;
|
|
5225
|
-
streamIdentifier?: string | undefined;
|
|
5226
4775
|
}>;
|
|
5227
4776
|
export declare const sdCardSchema: z.ZodObject<{
|
|
5228
4777
|
streamId: z.ZodString;
|
|
@@ -7673,9 +7222,6 @@ export declare const youtubeRtmpSchema: z.ZodObject<{
|
|
|
7673
7222
|
led: boolean;
|
|
7674
7223
|
port?: number | undefined;
|
|
7675
7224
|
}>;
|
|
7676
|
-
} & {
|
|
7677
|
-
streamKey: z.ZodString;
|
|
7678
|
-
streamIdentifier: z.ZodOptional<z.ZodString>;
|
|
7679
7225
|
} & {
|
|
7680
7226
|
platform: z.ZodLiteral<"youtube_rtmp">;
|
|
7681
7227
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7754,8 +7300,6 @@ export declare const youtubeRtmpSchema: z.ZodObject<{
|
|
|
7754
7300
|
avSyncMsec: number;
|
|
7755
7301
|
};
|
|
7756
7302
|
platform: "youtube_rtmp";
|
|
7757
|
-
streamKey: string;
|
|
7758
|
-
streamIdentifier?: string | undefined;
|
|
7759
7303
|
}, {
|
|
7760
7304
|
status: {
|
|
7761
7305
|
led: boolean;
|
|
@@ -7832,6 +7376,4 @@ export declare const youtubeRtmpSchema: z.ZodObject<{
|
|
|
7832
7376
|
avSyncMsec: number;
|
|
7833
7377
|
};
|
|
7834
7378
|
platform: "youtube_rtmp";
|
|
7835
|
-
streamKey: string;
|
|
7836
|
-
streamIdentifier?: string | undefined;
|
|
7837
7379
|
}>;
|