@4players/odin-common 1.7.0 → 2.0.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/CHANGELOG.md +4 -0
- package/lib/cjs/schema/media.js +2 -0
- package/lib/cjs/schema/token.js +9 -3
- package/lib/esm/schema/media.js +2 -0
- package/lib/esm/schema/token.js +8 -2
- package/lib/plugin/api.d.ts +17 -1
- package/lib/rpc/commands.d.ts +14 -0
- package/lib/rpc/notifications.d.ts +236 -0
- package/lib/schema/media.d.ts +26 -0
- package/lib/schema/peer.d.ts +44 -0
- package/lib/schema/room.d.ts +182 -0
- package/lib/schema/token.d.ts +4 -4
- package/package.json +3 -3
package/lib/schema/room.d.ts
CHANGED
|
@@ -14,24 +14,30 @@ export declare const RoomSchema: z.ZodObject<{
|
|
|
14
14
|
properties: z.ZodUnion<[z.ZodObject<{
|
|
15
15
|
kind: z.ZodOptional<z.ZodLiteral<"audio">>;
|
|
16
16
|
uid: z.ZodOptional<z.ZodString>;
|
|
17
|
+
customType: z.ZodOptional<z.ZodString>;
|
|
17
18
|
}, "strip", z.ZodTypeAny, {
|
|
18
19
|
kind?: "audio" | undefined;
|
|
19
20
|
uid?: string | undefined;
|
|
21
|
+
customType?: string | undefined;
|
|
20
22
|
}, {
|
|
21
23
|
kind?: "audio" | undefined;
|
|
22
24
|
uid?: string | undefined;
|
|
25
|
+
customType?: string | undefined;
|
|
23
26
|
}>, z.ZodObject<{
|
|
24
27
|
kind: z.ZodOptional<z.ZodLiteral<"video">>;
|
|
25
28
|
codec: z.ZodOptional<z.ZodString>;
|
|
26
29
|
uid: z.ZodOptional<z.ZodString>;
|
|
30
|
+
customType: z.ZodOptional<z.ZodString>;
|
|
27
31
|
}, "strip", z.ZodTypeAny, {
|
|
28
32
|
kind?: "video" | undefined;
|
|
29
33
|
codec?: string | undefined;
|
|
30
34
|
uid?: string | undefined;
|
|
35
|
+
customType?: string | undefined;
|
|
31
36
|
}, {
|
|
32
37
|
kind?: "video" | undefined;
|
|
33
38
|
codec?: string | undefined;
|
|
34
39
|
uid?: string | undefined;
|
|
40
|
+
customType?: string | undefined;
|
|
35
41
|
}>]>;
|
|
36
42
|
paused: z.ZodBoolean;
|
|
37
43
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -39,17 +45,21 @@ export declare const RoomSchema: z.ZodObject<{
|
|
|
39
45
|
properties: ({
|
|
40
46
|
kind?: "audio" | undefined;
|
|
41
47
|
uid?: string | undefined;
|
|
48
|
+
customType?: string | undefined;
|
|
42
49
|
} | {
|
|
43
50
|
kind?: "video" | undefined;
|
|
44
51
|
codec?: string | undefined;
|
|
45
52
|
uid?: string | undefined;
|
|
53
|
+
customType?: string | undefined;
|
|
46
54
|
}) & ({
|
|
47
55
|
kind?: "audio" | undefined;
|
|
48
56
|
uid?: string | undefined;
|
|
57
|
+
customType?: string | undefined;
|
|
49
58
|
} | {
|
|
50
59
|
kind?: "video" | undefined;
|
|
51
60
|
codec?: string | undefined;
|
|
52
61
|
uid?: string | undefined;
|
|
62
|
+
customType?: string | undefined;
|
|
53
63
|
} | undefined);
|
|
54
64
|
paused: boolean;
|
|
55
65
|
}, {
|
|
@@ -57,17 +67,21 @@ export declare const RoomSchema: z.ZodObject<{
|
|
|
57
67
|
properties: ({
|
|
58
68
|
kind?: "audio" | undefined;
|
|
59
69
|
uid?: string | undefined;
|
|
70
|
+
customType?: string | undefined;
|
|
60
71
|
} | {
|
|
61
72
|
kind?: "video" | undefined;
|
|
62
73
|
codec?: string | undefined;
|
|
63
74
|
uid?: string | undefined;
|
|
75
|
+
customType?: string | undefined;
|
|
64
76
|
}) & ({
|
|
65
77
|
kind?: "audio" | undefined;
|
|
66
78
|
uid?: string | undefined;
|
|
79
|
+
customType?: string | undefined;
|
|
67
80
|
} | {
|
|
68
81
|
kind?: "video" | undefined;
|
|
69
82
|
codec?: string | undefined;
|
|
70
83
|
uid?: string | undefined;
|
|
84
|
+
customType?: string | undefined;
|
|
71
85
|
} | undefined);
|
|
72
86
|
paused: boolean;
|
|
73
87
|
}>, "many">;
|
|
@@ -80,17 +94,21 @@ export declare const RoomSchema: z.ZodObject<{
|
|
|
80
94
|
properties: ({
|
|
81
95
|
kind?: "audio" | undefined;
|
|
82
96
|
uid?: string | undefined;
|
|
97
|
+
customType?: string | undefined;
|
|
83
98
|
} | {
|
|
84
99
|
kind?: "video" | undefined;
|
|
85
100
|
codec?: string | undefined;
|
|
86
101
|
uid?: string | undefined;
|
|
102
|
+
customType?: string | undefined;
|
|
87
103
|
}) & ({
|
|
88
104
|
kind?: "audio" | undefined;
|
|
89
105
|
uid?: string | undefined;
|
|
106
|
+
customType?: string | undefined;
|
|
90
107
|
} | {
|
|
91
108
|
kind?: "video" | undefined;
|
|
92
109
|
codec?: string | undefined;
|
|
93
110
|
uid?: string | undefined;
|
|
111
|
+
customType?: string | undefined;
|
|
94
112
|
} | undefined);
|
|
95
113
|
paused: boolean;
|
|
96
114
|
}[];
|
|
@@ -103,17 +121,21 @@ export declare const RoomSchema: z.ZodObject<{
|
|
|
103
121
|
properties: ({
|
|
104
122
|
kind?: "audio" | undefined;
|
|
105
123
|
uid?: string | undefined;
|
|
124
|
+
customType?: string | undefined;
|
|
106
125
|
} | {
|
|
107
126
|
kind?: "video" | undefined;
|
|
108
127
|
codec?: string | undefined;
|
|
109
128
|
uid?: string | undefined;
|
|
129
|
+
customType?: string | undefined;
|
|
110
130
|
}) & ({
|
|
111
131
|
kind?: "audio" | undefined;
|
|
112
132
|
uid?: string | undefined;
|
|
133
|
+
customType?: string | undefined;
|
|
113
134
|
} | {
|
|
114
135
|
kind?: "video" | undefined;
|
|
115
136
|
codec?: string | undefined;
|
|
116
137
|
uid?: string | undefined;
|
|
138
|
+
customType?: string | undefined;
|
|
117
139
|
} | undefined);
|
|
118
140
|
paused: boolean;
|
|
119
141
|
}[];
|
|
@@ -131,17 +153,21 @@ export declare const RoomSchema: z.ZodObject<{
|
|
|
131
153
|
properties: ({
|
|
132
154
|
kind?: "audio" | undefined;
|
|
133
155
|
uid?: string | undefined;
|
|
156
|
+
customType?: string | undefined;
|
|
134
157
|
} | {
|
|
135
158
|
kind?: "video" | undefined;
|
|
136
159
|
codec?: string | undefined;
|
|
137
160
|
uid?: string | undefined;
|
|
161
|
+
customType?: string | undefined;
|
|
138
162
|
}) & ({
|
|
139
163
|
kind?: "audio" | undefined;
|
|
140
164
|
uid?: string | undefined;
|
|
165
|
+
customType?: string | undefined;
|
|
141
166
|
} | {
|
|
142
167
|
kind?: "video" | undefined;
|
|
143
168
|
codec?: string | undefined;
|
|
144
169
|
uid?: string | undefined;
|
|
170
|
+
customType?: string | undefined;
|
|
145
171
|
} | undefined);
|
|
146
172
|
paused: boolean;
|
|
147
173
|
}[];
|
|
@@ -159,17 +185,21 @@ export declare const RoomSchema: z.ZodObject<{
|
|
|
159
185
|
properties: ({
|
|
160
186
|
kind?: "audio" | undefined;
|
|
161
187
|
uid?: string | undefined;
|
|
188
|
+
customType?: string | undefined;
|
|
162
189
|
} | {
|
|
163
190
|
kind?: "video" | undefined;
|
|
164
191
|
codec?: string | undefined;
|
|
165
192
|
uid?: string | undefined;
|
|
193
|
+
customType?: string | undefined;
|
|
166
194
|
}) & ({
|
|
167
195
|
kind?: "audio" | undefined;
|
|
168
196
|
uid?: string | undefined;
|
|
197
|
+
customType?: string | undefined;
|
|
169
198
|
} | {
|
|
170
199
|
kind?: "video" | undefined;
|
|
171
200
|
codec?: string | undefined;
|
|
172
201
|
uid?: string | undefined;
|
|
202
|
+
customType?: string | undefined;
|
|
173
203
|
} | undefined);
|
|
174
204
|
paused: boolean;
|
|
175
205
|
}[];
|
|
@@ -191,24 +221,30 @@ export declare const RoomUpdateSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
|
|
|
191
221
|
properties: z.ZodUnion<[z.ZodObject<{
|
|
192
222
|
kind: z.ZodOptional<z.ZodLiteral<"audio">>;
|
|
193
223
|
uid: z.ZodOptional<z.ZodString>;
|
|
224
|
+
customType: z.ZodOptional<z.ZodString>;
|
|
194
225
|
}, "strip", z.ZodTypeAny, {
|
|
195
226
|
kind?: "audio" | undefined;
|
|
196
227
|
uid?: string | undefined;
|
|
228
|
+
customType?: string | undefined;
|
|
197
229
|
}, {
|
|
198
230
|
kind?: "audio" | undefined;
|
|
199
231
|
uid?: string | undefined;
|
|
232
|
+
customType?: string | undefined;
|
|
200
233
|
}>, z.ZodObject<{
|
|
201
234
|
kind: z.ZodOptional<z.ZodLiteral<"video">>;
|
|
202
235
|
codec: z.ZodOptional<z.ZodString>;
|
|
203
236
|
uid: z.ZodOptional<z.ZodString>;
|
|
237
|
+
customType: z.ZodOptional<z.ZodString>;
|
|
204
238
|
}, "strip", z.ZodTypeAny, {
|
|
205
239
|
kind?: "video" | undefined;
|
|
206
240
|
codec?: string | undefined;
|
|
207
241
|
uid?: string | undefined;
|
|
242
|
+
customType?: string | undefined;
|
|
208
243
|
}, {
|
|
209
244
|
kind?: "video" | undefined;
|
|
210
245
|
codec?: string | undefined;
|
|
211
246
|
uid?: string | undefined;
|
|
247
|
+
customType?: string | undefined;
|
|
212
248
|
}>]>;
|
|
213
249
|
paused: z.ZodBoolean;
|
|
214
250
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -216,17 +252,21 @@ export declare const RoomUpdateSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
|
|
|
216
252
|
properties: ({
|
|
217
253
|
kind?: "audio" | undefined;
|
|
218
254
|
uid?: string | undefined;
|
|
255
|
+
customType?: string | undefined;
|
|
219
256
|
} | {
|
|
220
257
|
kind?: "video" | undefined;
|
|
221
258
|
codec?: string | undefined;
|
|
222
259
|
uid?: string | undefined;
|
|
260
|
+
customType?: string | undefined;
|
|
223
261
|
}) & ({
|
|
224
262
|
kind?: "audio" | undefined;
|
|
225
263
|
uid?: string | undefined;
|
|
264
|
+
customType?: string | undefined;
|
|
226
265
|
} | {
|
|
227
266
|
kind?: "video" | undefined;
|
|
228
267
|
codec?: string | undefined;
|
|
229
268
|
uid?: string | undefined;
|
|
269
|
+
customType?: string | undefined;
|
|
230
270
|
} | undefined);
|
|
231
271
|
paused: boolean;
|
|
232
272
|
}, {
|
|
@@ -234,17 +274,21 @@ export declare const RoomUpdateSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
|
|
|
234
274
|
properties: ({
|
|
235
275
|
kind?: "audio" | undefined;
|
|
236
276
|
uid?: string | undefined;
|
|
277
|
+
customType?: string | undefined;
|
|
237
278
|
} | {
|
|
238
279
|
kind?: "video" | undefined;
|
|
239
280
|
codec?: string | undefined;
|
|
240
281
|
uid?: string | undefined;
|
|
282
|
+
customType?: string | undefined;
|
|
241
283
|
}) & ({
|
|
242
284
|
kind?: "audio" | undefined;
|
|
243
285
|
uid?: string | undefined;
|
|
286
|
+
customType?: string | undefined;
|
|
244
287
|
} | {
|
|
245
288
|
kind?: "video" | undefined;
|
|
246
289
|
codec?: string | undefined;
|
|
247
290
|
uid?: string | undefined;
|
|
291
|
+
customType?: string | undefined;
|
|
248
292
|
} | undefined);
|
|
249
293
|
paused: boolean;
|
|
250
294
|
}>, "many">;
|
|
@@ -257,17 +301,21 @@ export declare const RoomUpdateSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
|
|
|
257
301
|
properties: ({
|
|
258
302
|
kind?: "audio" | undefined;
|
|
259
303
|
uid?: string | undefined;
|
|
304
|
+
customType?: string | undefined;
|
|
260
305
|
} | {
|
|
261
306
|
kind?: "video" | undefined;
|
|
262
307
|
codec?: string | undefined;
|
|
263
308
|
uid?: string | undefined;
|
|
309
|
+
customType?: string | undefined;
|
|
264
310
|
}) & ({
|
|
265
311
|
kind?: "audio" | undefined;
|
|
266
312
|
uid?: string | undefined;
|
|
313
|
+
customType?: string | undefined;
|
|
267
314
|
} | {
|
|
268
315
|
kind?: "video" | undefined;
|
|
269
316
|
codec?: string | undefined;
|
|
270
317
|
uid?: string | undefined;
|
|
318
|
+
customType?: string | undefined;
|
|
271
319
|
} | undefined);
|
|
272
320
|
paused: boolean;
|
|
273
321
|
}[];
|
|
@@ -280,17 +328,21 @@ export declare const RoomUpdateSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
|
|
|
280
328
|
properties: ({
|
|
281
329
|
kind?: "audio" | undefined;
|
|
282
330
|
uid?: string | undefined;
|
|
331
|
+
customType?: string | undefined;
|
|
283
332
|
} | {
|
|
284
333
|
kind?: "video" | undefined;
|
|
285
334
|
codec?: string | undefined;
|
|
286
335
|
uid?: string | undefined;
|
|
336
|
+
customType?: string | undefined;
|
|
287
337
|
}) & ({
|
|
288
338
|
kind?: "audio" | undefined;
|
|
289
339
|
uid?: string | undefined;
|
|
340
|
+
customType?: string | undefined;
|
|
290
341
|
} | {
|
|
291
342
|
kind?: "video" | undefined;
|
|
292
343
|
codec?: string | undefined;
|
|
293
344
|
uid?: string | undefined;
|
|
345
|
+
customType?: string | undefined;
|
|
294
346
|
} | undefined);
|
|
295
347
|
paused: boolean;
|
|
296
348
|
}[];
|
|
@@ -308,17 +360,21 @@ export declare const RoomUpdateSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
|
|
|
308
360
|
properties: ({
|
|
309
361
|
kind?: "audio" | undefined;
|
|
310
362
|
uid?: string | undefined;
|
|
363
|
+
customType?: string | undefined;
|
|
311
364
|
} | {
|
|
312
365
|
kind?: "video" | undefined;
|
|
313
366
|
codec?: string | undefined;
|
|
314
367
|
uid?: string | undefined;
|
|
368
|
+
customType?: string | undefined;
|
|
315
369
|
}) & ({
|
|
316
370
|
kind?: "audio" | undefined;
|
|
317
371
|
uid?: string | undefined;
|
|
372
|
+
customType?: string | undefined;
|
|
318
373
|
} | {
|
|
319
374
|
kind?: "video" | undefined;
|
|
320
375
|
codec?: string | undefined;
|
|
321
376
|
uid?: string | undefined;
|
|
377
|
+
customType?: string | undefined;
|
|
322
378
|
} | undefined);
|
|
323
379
|
paused: boolean;
|
|
324
380
|
}[];
|
|
@@ -336,17 +392,21 @@ export declare const RoomUpdateSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
|
|
|
336
392
|
properties: ({
|
|
337
393
|
kind?: "audio" | undefined;
|
|
338
394
|
uid?: string | undefined;
|
|
395
|
+
customType?: string | undefined;
|
|
339
396
|
} | {
|
|
340
397
|
kind?: "video" | undefined;
|
|
341
398
|
codec?: string | undefined;
|
|
342
399
|
uid?: string | undefined;
|
|
400
|
+
customType?: string | undefined;
|
|
343
401
|
}) & ({
|
|
344
402
|
kind?: "audio" | undefined;
|
|
345
403
|
uid?: string | undefined;
|
|
404
|
+
customType?: string | undefined;
|
|
346
405
|
} | {
|
|
347
406
|
kind?: "video" | undefined;
|
|
348
407
|
codec?: string | undefined;
|
|
349
408
|
uid?: string | undefined;
|
|
409
|
+
customType?: string | undefined;
|
|
350
410
|
} | undefined);
|
|
351
411
|
paused: boolean;
|
|
352
412
|
}[];
|
|
@@ -369,17 +429,21 @@ export declare const RoomUpdateSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
|
|
|
369
429
|
properties: ({
|
|
370
430
|
kind?: "audio" | undefined;
|
|
371
431
|
uid?: string | undefined;
|
|
432
|
+
customType?: string | undefined;
|
|
372
433
|
} | {
|
|
373
434
|
kind?: "video" | undefined;
|
|
374
435
|
codec?: string | undefined;
|
|
375
436
|
uid?: string | undefined;
|
|
437
|
+
customType?: string | undefined;
|
|
376
438
|
}) & ({
|
|
377
439
|
kind?: "audio" | undefined;
|
|
378
440
|
uid?: string | undefined;
|
|
441
|
+
customType?: string | undefined;
|
|
379
442
|
} | {
|
|
380
443
|
kind?: "video" | undefined;
|
|
381
444
|
codec?: string | undefined;
|
|
382
445
|
uid?: string | undefined;
|
|
446
|
+
customType?: string | undefined;
|
|
383
447
|
} | undefined);
|
|
384
448
|
paused: boolean;
|
|
385
449
|
}[];
|
|
@@ -402,17 +466,21 @@ export declare const RoomUpdateSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
|
|
|
402
466
|
properties: ({
|
|
403
467
|
kind?: "audio" | undefined;
|
|
404
468
|
uid?: string | undefined;
|
|
469
|
+
customType?: string | undefined;
|
|
405
470
|
} | {
|
|
406
471
|
kind?: "video" | undefined;
|
|
407
472
|
codec?: string | undefined;
|
|
408
473
|
uid?: string | undefined;
|
|
474
|
+
customType?: string | undefined;
|
|
409
475
|
}) & ({
|
|
410
476
|
kind?: "audio" | undefined;
|
|
411
477
|
uid?: string | undefined;
|
|
478
|
+
customType?: string | undefined;
|
|
412
479
|
} | {
|
|
413
480
|
kind?: "video" | undefined;
|
|
414
481
|
codec?: string | undefined;
|
|
415
482
|
uid?: string | undefined;
|
|
483
|
+
customType?: string | undefined;
|
|
416
484
|
} | undefined);
|
|
417
485
|
paused: boolean;
|
|
418
486
|
}[];
|
|
@@ -449,24 +517,30 @@ export declare const RoomUpdateSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
|
|
|
449
517
|
properties: z.ZodUnion<[z.ZodObject<{
|
|
450
518
|
kind: z.ZodOptional<z.ZodLiteral<"audio">>;
|
|
451
519
|
uid: z.ZodOptional<z.ZodString>;
|
|
520
|
+
customType: z.ZodOptional<z.ZodString>;
|
|
452
521
|
}, "strip", z.ZodTypeAny, {
|
|
453
522
|
kind?: "audio" | undefined;
|
|
454
523
|
uid?: string | undefined;
|
|
524
|
+
customType?: string | undefined;
|
|
455
525
|
}, {
|
|
456
526
|
kind?: "audio" | undefined;
|
|
457
527
|
uid?: string | undefined;
|
|
528
|
+
customType?: string | undefined;
|
|
458
529
|
}>, z.ZodObject<{
|
|
459
530
|
kind: z.ZodOptional<z.ZodLiteral<"video">>;
|
|
460
531
|
codec: z.ZodOptional<z.ZodString>;
|
|
461
532
|
uid: z.ZodOptional<z.ZodString>;
|
|
533
|
+
customType: z.ZodOptional<z.ZodString>;
|
|
462
534
|
}, "strip", z.ZodTypeAny, {
|
|
463
535
|
kind?: "video" | undefined;
|
|
464
536
|
codec?: string | undefined;
|
|
465
537
|
uid?: string | undefined;
|
|
538
|
+
customType?: string | undefined;
|
|
466
539
|
}, {
|
|
467
540
|
kind?: "video" | undefined;
|
|
468
541
|
codec?: string | undefined;
|
|
469
542
|
uid?: string | undefined;
|
|
543
|
+
customType?: string | undefined;
|
|
470
544
|
}>]>;
|
|
471
545
|
paused: z.ZodBoolean;
|
|
472
546
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -474,17 +548,21 @@ export declare const RoomUpdateSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
|
|
|
474
548
|
properties: ({
|
|
475
549
|
kind?: "audio" | undefined;
|
|
476
550
|
uid?: string | undefined;
|
|
551
|
+
customType?: string | undefined;
|
|
477
552
|
} | {
|
|
478
553
|
kind?: "video" | undefined;
|
|
479
554
|
codec?: string | undefined;
|
|
480
555
|
uid?: string | undefined;
|
|
556
|
+
customType?: string | undefined;
|
|
481
557
|
}) & ({
|
|
482
558
|
kind?: "audio" | undefined;
|
|
483
559
|
uid?: string | undefined;
|
|
560
|
+
customType?: string | undefined;
|
|
484
561
|
} | {
|
|
485
562
|
kind?: "video" | undefined;
|
|
486
563
|
codec?: string | undefined;
|
|
487
564
|
uid?: string | undefined;
|
|
565
|
+
customType?: string | undefined;
|
|
488
566
|
} | undefined);
|
|
489
567
|
paused: boolean;
|
|
490
568
|
}, {
|
|
@@ -492,17 +570,21 @@ export declare const RoomUpdateSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
|
|
|
492
570
|
properties: ({
|
|
493
571
|
kind?: "audio" | undefined;
|
|
494
572
|
uid?: string | undefined;
|
|
573
|
+
customType?: string | undefined;
|
|
495
574
|
} | {
|
|
496
575
|
kind?: "video" | undefined;
|
|
497
576
|
codec?: string | undefined;
|
|
498
577
|
uid?: string | undefined;
|
|
578
|
+
customType?: string | undefined;
|
|
499
579
|
}) & ({
|
|
500
580
|
kind?: "audio" | undefined;
|
|
501
581
|
uid?: string | undefined;
|
|
582
|
+
customType?: string | undefined;
|
|
502
583
|
} | {
|
|
503
584
|
kind?: "video" | undefined;
|
|
504
585
|
codec?: string | undefined;
|
|
505
586
|
uid?: string | undefined;
|
|
587
|
+
customType?: string | undefined;
|
|
506
588
|
} | undefined);
|
|
507
589
|
paused: boolean;
|
|
508
590
|
}>, "many">;
|
|
@@ -515,17 +597,21 @@ export declare const RoomUpdateSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
|
|
|
515
597
|
properties: ({
|
|
516
598
|
kind?: "audio" | undefined;
|
|
517
599
|
uid?: string | undefined;
|
|
600
|
+
customType?: string | undefined;
|
|
518
601
|
} | {
|
|
519
602
|
kind?: "video" | undefined;
|
|
520
603
|
codec?: string | undefined;
|
|
521
604
|
uid?: string | undefined;
|
|
605
|
+
customType?: string | undefined;
|
|
522
606
|
}) & ({
|
|
523
607
|
kind?: "audio" | undefined;
|
|
524
608
|
uid?: string | undefined;
|
|
609
|
+
customType?: string | undefined;
|
|
525
610
|
} | {
|
|
526
611
|
kind?: "video" | undefined;
|
|
527
612
|
codec?: string | undefined;
|
|
528
613
|
uid?: string | undefined;
|
|
614
|
+
customType?: string | undefined;
|
|
529
615
|
} | undefined);
|
|
530
616
|
paused: boolean;
|
|
531
617
|
}[];
|
|
@@ -538,17 +624,21 @@ export declare const RoomUpdateSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
|
|
|
538
624
|
properties: ({
|
|
539
625
|
kind?: "audio" | undefined;
|
|
540
626
|
uid?: string | undefined;
|
|
627
|
+
customType?: string | undefined;
|
|
541
628
|
} | {
|
|
542
629
|
kind?: "video" | undefined;
|
|
543
630
|
codec?: string | undefined;
|
|
544
631
|
uid?: string | undefined;
|
|
632
|
+
customType?: string | undefined;
|
|
545
633
|
}) & ({
|
|
546
634
|
kind?: "audio" | undefined;
|
|
547
635
|
uid?: string | undefined;
|
|
636
|
+
customType?: string | undefined;
|
|
548
637
|
} | {
|
|
549
638
|
kind?: "video" | undefined;
|
|
550
639
|
codec?: string | undefined;
|
|
551
640
|
uid?: string | undefined;
|
|
641
|
+
customType?: string | undefined;
|
|
552
642
|
} | undefined);
|
|
553
643
|
paused: boolean;
|
|
554
644
|
}[];
|
|
@@ -564,17 +654,21 @@ export declare const RoomUpdateSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
|
|
|
564
654
|
properties: ({
|
|
565
655
|
kind?: "audio" | undefined;
|
|
566
656
|
uid?: string | undefined;
|
|
657
|
+
customType?: string | undefined;
|
|
567
658
|
} | {
|
|
568
659
|
kind?: "video" | undefined;
|
|
569
660
|
codec?: string | undefined;
|
|
570
661
|
uid?: string | undefined;
|
|
662
|
+
customType?: string | undefined;
|
|
571
663
|
}) & ({
|
|
572
664
|
kind?: "audio" | undefined;
|
|
573
665
|
uid?: string | undefined;
|
|
666
|
+
customType?: string | undefined;
|
|
574
667
|
} | {
|
|
575
668
|
kind?: "video" | undefined;
|
|
576
669
|
codec?: string | undefined;
|
|
577
670
|
uid?: string | undefined;
|
|
671
|
+
customType?: string | undefined;
|
|
578
672
|
} | undefined);
|
|
579
673
|
paused: boolean;
|
|
580
674
|
}[];
|
|
@@ -590,17 +684,21 @@ export declare const RoomUpdateSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
|
|
|
590
684
|
properties: ({
|
|
591
685
|
kind?: "audio" | undefined;
|
|
592
686
|
uid?: string | undefined;
|
|
687
|
+
customType?: string | undefined;
|
|
593
688
|
} | {
|
|
594
689
|
kind?: "video" | undefined;
|
|
595
690
|
codec?: string | undefined;
|
|
596
691
|
uid?: string | undefined;
|
|
692
|
+
customType?: string | undefined;
|
|
597
693
|
}) & ({
|
|
598
694
|
kind?: "audio" | undefined;
|
|
599
695
|
uid?: string | undefined;
|
|
696
|
+
customType?: string | undefined;
|
|
600
697
|
} | {
|
|
601
698
|
kind?: "video" | undefined;
|
|
602
699
|
codec?: string | undefined;
|
|
603
700
|
uid?: string | undefined;
|
|
701
|
+
customType?: string | undefined;
|
|
604
702
|
} | undefined);
|
|
605
703
|
paused: boolean;
|
|
606
704
|
}[];
|
|
@@ -632,24 +730,30 @@ export declare const RoomUpdatesSchema: z.ZodObject<{
|
|
|
632
730
|
properties: z.ZodUnion<[z.ZodObject<{
|
|
633
731
|
kind: z.ZodOptional<z.ZodLiteral<"audio">>;
|
|
634
732
|
uid: z.ZodOptional<z.ZodString>;
|
|
733
|
+
customType: z.ZodOptional<z.ZodString>;
|
|
635
734
|
}, "strip", z.ZodTypeAny, {
|
|
636
735
|
kind?: "audio" | undefined;
|
|
637
736
|
uid?: string | undefined;
|
|
737
|
+
customType?: string | undefined;
|
|
638
738
|
}, {
|
|
639
739
|
kind?: "audio" | undefined;
|
|
640
740
|
uid?: string | undefined;
|
|
741
|
+
customType?: string | undefined;
|
|
641
742
|
}>, z.ZodObject<{
|
|
642
743
|
kind: z.ZodOptional<z.ZodLiteral<"video">>;
|
|
643
744
|
codec: z.ZodOptional<z.ZodString>;
|
|
644
745
|
uid: z.ZodOptional<z.ZodString>;
|
|
746
|
+
customType: z.ZodOptional<z.ZodString>;
|
|
645
747
|
}, "strip", z.ZodTypeAny, {
|
|
646
748
|
kind?: "video" | undefined;
|
|
647
749
|
codec?: string | undefined;
|
|
648
750
|
uid?: string | undefined;
|
|
751
|
+
customType?: string | undefined;
|
|
649
752
|
}, {
|
|
650
753
|
kind?: "video" | undefined;
|
|
651
754
|
codec?: string | undefined;
|
|
652
755
|
uid?: string | undefined;
|
|
756
|
+
customType?: string | undefined;
|
|
653
757
|
}>]>;
|
|
654
758
|
paused: z.ZodBoolean;
|
|
655
759
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -657,17 +761,21 @@ export declare const RoomUpdatesSchema: z.ZodObject<{
|
|
|
657
761
|
properties: ({
|
|
658
762
|
kind?: "audio" | undefined;
|
|
659
763
|
uid?: string | undefined;
|
|
764
|
+
customType?: string | undefined;
|
|
660
765
|
} | {
|
|
661
766
|
kind?: "video" | undefined;
|
|
662
767
|
codec?: string | undefined;
|
|
663
768
|
uid?: string | undefined;
|
|
769
|
+
customType?: string | undefined;
|
|
664
770
|
}) & ({
|
|
665
771
|
kind?: "audio" | undefined;
|
|
666
772
|
uid?: string | undefined;
|
|
773
|
+
customType?: string | undefined;
|
|
667
774
|
} | {
|
|
668
775
|
kind?: "video" | undefined;
|
|
669
776
|
codec?: string | undefined;
|
|
670
777
|
uid?: string | undefined;
|
|
778
|
+
customType?: string | undefined;
|
|
671
779
|
} | undefined);
|
|
672
780
|
paused: boolean;
|
|
673
781
|
}, {
|
|
@@ -675,17 +783,21 @@ export declare const RoomUpdatesSchema: z.ZodObject<{
|
|
|
675
783
|
properties: ({
|
|
676
784
|
kind?: "audio" | undefined;
|
|
677
785
|
uid?: string | undefined;
|
|
786
|
+
customType?: string | undefined;
|
|
678
787
|
} | {
|
|
679
788
|
kind?: "video" | undefined;
|
|
680
789
|
codec?: string | undefined;
|
|
681
790
|
uid?: string | undefined;
|
|
791
|
+
customType?: string | undefined;
|
|
682
792
|
}) & ({
|
|
683
793
|
kind?: "audio" | undefined;
|
|
684
794
|
uid?: string | undefined;
|
|
795
|
+
customType?: string | undefined;
|
|
685
796
|
} | {
|
|
686
797
|
kind?: "video" | undefined;
|
|
687
798
|
codec?: string | undefined;
|
|
688
799
|
uid?: string | undefined;
|
|
800
|
+
customType?: string | undefined;
|
|
689
801
|
} | undefined);
|
|
690
802
|
paused: boolean;
|
|
691
803
|
}>, "many">;
|
|
@@ -698,17 +810,21 @@ export declare const RoomUpdatesSchema: z.ZodObject<{
|
|
|
698
810
|
properties: ({
|
|
699
811
|
kind?: "audio" | undefined;
|
|
700
812
|
uid?: string | undefined;
|
|
813
|
+
customType?: string | undefined;
|
|
701
814
|
} | {
|
|
702
815
|
kind?: "video" | undefined;
|
|
703
816
|
codec?: string | undefined;
|
|
704
817
|
uid?: string | undefined;
|
|
818
|
+
customType?: string | undefined;
|
|
705
819
|
}) & ({
|
|
706
820
|
kind?: "audio" | undefined;
|
|
707
821
|
uid?: string | undefined;
|
|
822
|
+
customType?: string | undefined;
|
|
708
823
|
} | {
|
|
709
824
|
kind?: "video" | undefined;
|
|
710
825
|
codec?: string | undefined;
|
|
711
826
|
uid?: string | undefined;
|
|
827
|
+
customType?: string | undefined;
|
|
712
828
|
} | undefined);
|
|
713
829
|
paused: boolean;
|
|
714
830
|
}[];
|
|
@@ -721,17 +837,21 @@ export declare const RoomUpdatesSchema: z.ZodObject<{
|
|
|
721
837
|
properties: ({
|
|
722
838
|
kind?: "audio" | undefined;
|
|
723
839
|
uid?: string | undefined;
|
|
840
|
+
customType?: string | undefined;
|
|
724
841
|
} | {
|
|
725
842
|
kind?: "video" | undefined;
|
|
726
843
|
codec?: string | undefined;
|
|
727
844
|
uid?: string | undefined;
|
|
845
|
+
customType?: string | undefined;
|
|
728
846
|
}) & ({
|
|
729
847
|
kind?: "audio" | undefined;
|
|
730
848
|
uid?: string | undefined;
|
|
849
|
+
customType?: string | undefined;
|
|
731
850
|
} | {
|
|
732
851
|
kind?: "video" | undefined;
|
|
733
852
|
codec?: string | undefined;
|
|
734
853
|
uid?: string | undefined;
|
|
854
|
+
customType?: string | undefined;
|
|
735
855
|
} | undefined);
|
|
736
856
|
paused: boolean;
|
|
737
857
|
}[];
|
|
@@ -749,17 +869,21 @@ export declare const RoomUpdatesSchema: z.ZodObject<{
|
|
|
749
869
|
properties: ({
|
|
750
870
|
kind?: "audio" | undefined;
|
|
751
871
|
uid?: string | undefined;
|
|
872
|
+
customType?: string | undefined;
|
|
752
873
|
} | {
|
|
753
874
|
kind?: "video" | undefined;
|
|
754
875
|
codec?: string | undefined;
|
|
755
876
|
uid?: string | undefined;
|
|
877
|
+
customType?: string | undefined;
|
|
756
878
|
}) & ({
|
|
757
879
|
kind?: "audio" | undefined;
|
|
758
880
|
uid?: string | undefined;
|
|
881
|
+
customType?: string | undefined;
|
|
759
882
|
} | {
|
|
760
883
|
kind?: "video" | undefined;
|
|
761
884
|
codec?: string | undefined;
|
|
762
885
|
uid?: string | undefined;
|
|
886
|
+
customType?: string | undefined;
|
|
763
887
|
} | undefined);
|
|
764
888
|
paused: boolean;
|
|
765
889
|
}[];
|
|
@@ -777,17 +901,21 @@ export declare const RoomUpdatesSchema: z.ZodObject<{
|
|
|
777
901
|
properties: ({
|
|
778
902
|
kind?: "audio" | undefined;
|
|
779
903
|
uid?: string | undefined;
|
|
904
|
+
customType?: string | undefined;
|
|
780
905
|
} | {
|
|
781
906
|
kind?: "video" | undefined;
|
|
782
907
|
codec?: string | undefined;
|
|
783
908
|
uid?: string | undefined;
|
|
909
|
+
customType?: string | undefined;
|
|
784
910
|
}) & ({
|
|
785
911
|
kind?: "audio" | undefined;
|
|
786
912
|
uid?: string | undefined;
|
|
913
|
+
customType?: string | undefined;
|
|
787
914
|
} | {
|
|
788
915
|
kind?: "video" | undefined;
|
|
789
916
|
codec?: string | undefined;
|
|
790
917
|
uid?: string | undefined;
|
|
918
|
+
customType?: string | undefined;
|
|
791
919
|
} | undefined);
|
|
792
920
|
paused: boolean;
|
|
793
921
|
}[];
|
|
@@ -810,17 +938,21 @@ export declare const RoomUpdatesSchema: z.ZodObject<{
|
|
|
810
938
|
properties: ({
|
|
811
939
|
kind?: "audio" | undefined;
|
|
812
940
|
uid?: string | undefined;
|
|
941
|
+
customType?: string | undefined;
|
|
813
942
|
} | {
|
|
814
943
|
kind?: "video" | undefined;
|
|
815
944
|
codec?: string | undefined;
|
|
816
945
|
uid?: string | undefined;
|
|
946
|
+
customType?: string | undefined;
|
|
817
947
|
}) & ({
|
|
818
948
|
kind?: "audio" | undefined;
|
|
819
949
|
uid?: string | undefined;
|
|
950
|
+
customType?: string | undefined;
|
|
820
951
|
} | {
|
|
821
952
|
kind?: "video" | undefined;
|
|
822
953
|
codec?: string | undefined;
|
|
823
954
|
uid?: string | undefined;
|
|
955
|
+
customType?: string | undefined;
|
|
824
956
|
} | undefined);
|
|
825
957
|
paused: boolean;
|
|
826
958
|
}[];
|
|
@@ -843,17 +975,21 @@ export declare const RoomUpdatesSchema: z.ZodObject<{
|
|
|
843
975
|
properties: ({
|
|
844
976
|
kind?: "audio" | undefined;
|
|
845
977
|
uid?: string | undefined;
|
|
978
|
+
customType?: string | undefined;
|
|
846
979
|
} | {
|
|
847
980
|
kind?: "video" | undefined;
|
|
848
981
|
codec?: string | undefined;
|
|
849
982
|
uid?: string | undefined;
|
|
983
|
+
customType?: string | undefined;
|
|
850
984
|
}) & ({
|
|
851
985
|
kind?: "audio" | undefined;
|
|
852
986
|
uid?: string | undefined;
|
|
987
|
+
customType?: string | undefined;
|
|
853
988
|
} | {
|
|
854
989
|
kind?: "video" | undefined;
|
|
855
990
|
codec?: string | undefined;
|
|
856
991
|
uid?: string | undefined;
|
|
992
|
+
customType?: string | undefined;
|
|
857
993
|
} | undefined);
|
|
858
994
|
paused: boolean;
|
|
859
995
|
}[];
|
|
@@ -890,24 +1026,30 @@ export declare const RoomUpdatesSchema: z.ZodObject<{
|
|
|
890
1026
|
properties: z.ZodUnion<[z.ZodObject<{
|
|
891
1027
|
kind: z.ZodOptional<z.ZodLiteral<"audio">>;
|
|
892
1028
|
uid: z.ZodOptional<z.ZodString>;
|
|
1029
|
+
customType: z.ZodOptional<z.ZodString>;
|
|
893
1030
|
}, "strip", z.ZodTypeAny, {
|
|
894
1031
|
kind?: "audio" | undefined;
|
|
895
1032
|
uid?: string | undefined;
|
|
1033
|
+
customType?: string | undefined;
|
|
896
1034
|
}, {
|
|
897
1035
|
kind?: "audio" | undefined;
|
|
898
1036
|
uid?: string | undefined;
|
|
1037
|
+
customType?: string | undefined;
|
|
899
1038
|
}>, z.ZodObject<{
|
|
900
1039
|
kind: z.ZodOptional<z.ZodLiteral<"video">>;
|
|
901
1040
|
codec: z.ZodOptional<z.ZodString>;
|
|
902
1041
|
uid: z.ZodOptional<z.ZodString>;
|
|
1042
|
+
customType: z.ZodOptional<z.ZodString>;
|
|
903
1043
|
}, "strip", z.ZodTypeAny, {
|
|
904
1044
|
kind?: "video" | undefined;
|
|
905
1045
|
codec?: string | undefined;
|
|
906
1046
|
uid?: string | undefined;
|
|
1047
|
+
customType?: string | undefined;
|
|
907
1048
|
}, {
|
|
908
1049
|
kind?: "video" | undefined;
|
|
909
1050
|
codec?: string | undefined;
|
|
910
1051
|
uid?: string | undefined;
|
|
1052
|
+
customType?: string | undefined;
|
|
911
1053
|
}>]>;
|
|
912
1054
|
paused: z.ZodBoolean;
|
|
913
1055
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -915,17 +1057,21 @@ export declare const RoomUpdatesSchema: z.ZodObject<{
|
|
|
915
1057
|
properties: ({
|
|
916
1058
|
kind?: "audio" | undefined;
|
|
917
1059
|
uid?: string | undefined;
|
|
1060
|
+
customType?: string | undefined;
|
|
918
1061
|
} | {
|
|
919
1062
|
kind?: "video" | undefined;
|
|
920
1063
|
codec?: string | undefined;
|
|
921
1064
|
uid?: string | undefined;
|
|
1065
|
+
customType?: string | undefined;
|
|
922
1066
|
}) & ({
|
|
923
1067
|
kind?: "audio" | undefined;
|
|
924
1068
|
uid?: string | undefined;
|
|
1069
|
+
customType?: string | undefined;
|
|
925
1070
|
} | {
|
|
926
1071
|
kind?: "video" | undefined;
|
|
927
1072
|
codec?: string | undefined;
|
|
928
1073
|
uid?: string | undefined;
|
|
1074
|
+
customType?: string | undefined;
|
|
929
1075
|
} | undefined);
|
|
930
1076
|
paused: boolean;
|
|
931
1077
|
}, {
|
|
@@ -933,17 +1079,21 @@ export declare const RoomUpdatesSchema: z.ZodObject<{
|
|
|
933
1079
|
properties: ({
|
|
934
1080
|
kind?: "audio" | undefined;
|
|
935
1081
|
uid?: string | undefined;
|
|
1082
|
+
customType?: string | undefined;
|
|
936
1083
|
} | {
|
|
937
1084
|
kind?: "video" | undefined;
|
|
938
1085
|
codec?: string | undefined;
|
|
939
1086
|
uid?: string | undefined;
|
|
1087
|
+
customType?: string | undefined;
|
|
940
1088
|
}) & ({
|
|
941
1089
|
kind?: "audio" | undefined;
|
|
942
1090
|
uid?: string | undefined;
|
|
1091
|
+
customType?: string | undefined;
|
|
943
1092
|
} | {
|
|
944
1093
|
kind?: "video" | undefined;
|
|
945
1094
|
codec?: string | undefined;
|
|
946
1095
|
uid?: string | undefined;
|
|
1096
|
+
customType?: string | undefined;
|
|
947
1097
|
} | undefined);
|
|
948
1098
|
paused: boolean;
|
|
949
1099
|
}>, "many">;
|
|
@@ -956,17 +1106,21 @@ export declare const RoomUpdatesSchema: z.ZodObject<{
|
|
|
956
1106
|
properties: ({
|
|
957
1107
|
kind?: "audio" | undefined;
|
|
958
1108
|
uid?: string | undefined;
|
|
1109
|
+
customType?: string | undefined;
|
|
959
1110
|
} | {
|
|
960
1111
|
kind?: "video" | undefined;
|
|
961
1112
|
codec?: string | undefined;
|
|
962
1113
|
uid?: string | undefined;
|
|
1114
|
+
customType?: string | undefined;
|
|
963
1115
|
}) & ({
|
|
964
1116
|
kind?: "audio" | undefined;
|
|
965
1117
|
uid?: string | undefined;
|
|
1118
|
+
customType?: string | undefined;
|
|
966
1119
|
} | {
|
|
967
1120
|
kind?: "video" | undefined;
|
|
968
1121
|
codec?: string | undefined;
|
|
969
1122
|
uid?: string | undefined;
|
|
1123
|
+
customType?: string | undefined;
|
|
970
1124
|
} | undefined);
|
|
971
1125
|
paused: boolean;
|
|
972
1126
|
}[];
|
|
@@ -979,17 +1133,21 @@ export declare const RoomUpdatesSchema: z.ZodObject<{
|
|
|
979
1133
|
properties: ({
|
|
980
1134
|
kind?: "audio" | undefined;
|
|
981
1135
|
uid?: string | undefined;
|
|
1136
|
+
customType?: string | undefined;
|
|
982
1137
|
} | {
|
|
983
1138
|
kind?: "video" | undefined;
|
|
984
1139
|
codec?: string | undefined;
|
|
985
1140
|
uid?: string | undefined;
|
|
1141
|
+
customType?: string | undefined;
|
|
986
1142
|
}) & ({
|
|
987
1143
|
kind?: "audio" | undefined;
|
|
988
1144
|
uid?: string | undefined;
|
|
1145
|
+
customType?: string | undefined;
|
|
989
1146
|
} | {
|
|
990
1147
|
kind?: "video" | undefined;
|
|
991
1148
|
codec?: string | undefined;
|
|
992
1149
|
uid?: string | undefined;
|
|
1150
|
+
customType?: string | undefined;
|
|
993
1151
|
} | undefined);
|
|
994
1152
|
paused: boolean;
|
|
995
1153
|
}[];
|
|
@@ -1005,17 +1163,21 @@ export declare const RoomUpdatesSchema: z.ZodObject<{
|
|
|
1005
1163
|
properties: ({
|
|
1006
1164
|
kind?: "audio" | undefined;
|
|
1007
1165
|
uid?: string | undefined;
|
|
1166
|
+
customType?: string | undefined;
|
|
1008
1167
|
} | {
|
|
1009
1168
|
kind?: "video" | undefined;
|
|
1010
1169
|
codec?: string | undefined;
|
|
1011
1170
|
uid?: string | undefined;
|
|
1171
|
+
customType?: string | undefined;
|
|
1012
1172
|
}) & ({
|
|
1013
1173
|
kind?: "audio" | undefined;
|
|
1014
1174
|
uid?: string | undefined;
|
|
1175
|
+
customType?: string | undefined;
|
|
1015
1176
|
} | {
|
|
1016
1177
|
kind?: "video" | undefined;
|
|
1017
1178
|
codec?: string | undefined;
|
|
1018
1179
|
uid?: string | undefined;
|
|
1180
|
+
customType?: string | undefined;
|
|
1019
1181
|
} | undefined);
|
|
1020
1182
|
paused: boolean;
|
|
1021
1183
|
}[];
|
|
@@ -1031,17 +1193,21 @@ export declare const RoomUpdatesSchema: z.ZodObject<{
|
|
|
1031
1193
|
properties: ({
|
|
1032
1194
|
kind?: "audio" | undefined;
|
|
1033
1195
|
uid?: string | undefined;
|
|
1196
|
+
customType?: string | undefined;
|
|
1034
1197
|
} | {
|
|
1035
1198
|
kind?: "video" | undefined;
|
|
1036
1199
|
codec?: string | undefined;
|
|
1037
1200
|
uid?: string | undefined;
|
|
1201
|
+
customType?: string | undefined;
|
|
1038
1202
|
}) & ({
|
|
1039
1203
|
kind?: "audio" | undefined;
|
|
1040
1204
|
uid?: string | undefined;
|
|
1205
|
+
customType?: string | undefined;
|
|
1041
1206
|
} | {
|
|
1042
1207
|
kind?: "video" | undefined;
|
|
1043
1208
|
codec?: string | undefined;
|
|
1044
1209
|
uid?: string | undefined;
|
|
1210
|
+
customType?: string | undefined;
|
|
1045
1211
|
} | undefined);
|
|
1046
1212
|
paused: boolean;
|
|
1047
1213
|
}[];
|
|
@@ -1072,17 +1238,21 @@ export declare const RoomUpdatesSchema: z.ZodObject<{
|
|
|
1072
1238
|
properties: ({
|
|
1073
1239
|
kind?: "audio" | undefined;
|
|
1074
1240
|
uid?: string | undefined;
|
|
1241
|
+
customType?: string | undefined;
|
|
1075
1242
|
} | {
|
|
1076
1243
|
kind?: "video" | undefined;
|
|
1077
1244
|
codec?: string | undefined;
|
|
1078
1245
|
uid?: string | undefined;
|
|
1246
|
+
customType?: string | undefined;
|
|
1079
1247
|
}) & ({
|
|
1080
1248
|
kind?: "audio" | undefined;
|
|
1081
1249
|
uid?: string | undefined;
|
|
1250
|
+
customType?: string | undefined;
|
|
1082
1251
|
} | {
|
|
1083
1252
|
kind?: "video" | undefined;
|
|
1084
1253
|
codec?: string | undefined;
|
|
1085
1254
|
uid?: string | undefined;
|
|
1255
|
+
customType?: string | undefined;
|
|
1086
1256
|
} | undefined);
|
|
1087
1257
|
paused: boolean;
|
|
1088
1258
|
}[];
|
|
@@ -1107,17 +1277,21 @@ export declare const RoomUpdatesSchema: z.ZodObject<{
|
|
|
1107
1277
|
properties: ({
|
|
1108
1278
|
kind?: "audio" | undefined;
|
|
1109
1279
|
uid?: string | undefined;
|
|
1280
|
+
customType?: string | undefined;
|
|
1110
1281
|
} | {
|
|
1111
1282
|
kind?: "video" | undefined;
|
|
1112
1283
|
codec?: string | undefined;
|
|
1113
1284
|
uid?: string | undefined;
|
|
1285
|
+
customType?: string | undefined;
|
|
1114
1286
|
}) & ({
|
|
1115
1287
|
kind?: "audio" | undefined;
|
|
1116
1288
|
uid?: string | undefined;
|
|
1289
|
+
customType?: string | undefined;
|
|
1117
1290
|
} | {
|
|
1118
1291
|
kind?: "video" | undefined;
|
|
1119
1292
|
codec?: string | undefined;
|
|
1120
1293
|
uid?: string | undefined;
|
|
1294
|
+
customType?: string | undefined;
|
|
1121
1295
|
} | undefined);
|
|
1122
1296
|
paused: boolean;
|
|
1123
1297
|
}[];
|
|
@@ -1142,17 +1316,21 @@ export declare const RoomUpdatesSchema: z.ZodObject<{
|
|
|
1142
1316
|
properties: ({
|
|
1143
1317
|
kind?: "audio" | undefined;
|
|
1144
1318
|
uid?: string | undefined;
|
|
1319
|
+
customType?: string | undefined;
|
|
1145
1320
|
} | {
|
|
1146
1321
|
kind?: "video" | undefined;
|
|
1147
1322
|
codec?: string | undefined;
|
|
1148
1323
|
uid?: string | undefined;
|
|
1324
|
+
customType?: string | undefined;
|
|
1149
1325
|
}) & ({
|
|
1150
1326
|
kind?: "audio" | undefined;
|
|
1151
1327
|
uid?: string | undefined;
|
|
1328
|
+
customType?: string | undefined;
|
|
1152
1329
|
} | {
|
|
1153
1330
|
kind?: "video" | undefined;
|
|
1154
1331
|
codec?: string | undefined;
|
|
1155
1332
|
uid?: string | undefined;
|
|
1333
|
+
customType?: string | undefined;
|
|
1156
1334
|
} | undefined);
|
|
1157
1335
|
paused: boolean;
|
|
1158
1336
|
}[];
|
|
@@ -1177,17 +1355,21 @@ export declare const RoomUpdatesSchema: z.ZodObject<{
|
|
|
1177
1355
|
properties: ({
|
|
1178
1356
|
kind?: "audio" | undefined;
|
|
1179
1357
|
uid?: string | undefined;
|
|
1358
|
+
customType?: string | undefined;
|
|
1180
1359
|
} | {
|
|
1181
1360
|
kind?: "video" | undefined;
|
|
1182
1361
|
codec?: string | undefined;
|
|
1183
1362
|
uid?: string | undefined;
|
|
1363
|
+
customType?: string | undefined;
|
|
1184
1364
|
}) & ({
|
|
1185
1365
|
kind?: "audio" | undefined;
|
|
1186
1366
|
uid?: string | undefined;
|
|
1367
|
+
customType?: string | undefined;
|
|
1187
1368
|
} | {
|
|
1188
1369
|
kind?: "video" | undefined;
|
|
1189
1370
|
codec?: string | undefined;
|
|
1190
1371
|
uid?: string | undefined;
|
|
1372
|
+
customType?: string | undefined;
|
|
1191
1373
|
} | undefined);
|
|
1192
1374
|
paused: boolean;
|
|
1193
1375
|
}[];
|