@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
|
@@ -161,24 +161,30 @@ export declare const RoomNotificationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
161
161
|
properties: z.ZodUnion<[z.ZodObject<{
|
|
162
162
|
kind: z.ZodOptional<z.ZodLiteral<"audio">>;
|
|
163
163
|
uid: z.ZodOptional<z.ZodString>;
|
|
164
|
+
customType: z.ZodOptional<z.ZodString>;
|
|
164
165
|
}, "strip", z.ZodTypeAny, {
|
|
165
166
|
kind?: "audio" | undefined;
|
|
166
167
|
uid?: string | undefined;
|
|
168
|
+
customType?: string | undefined;
|
|
167
169
|
}, {
|
|
168
170
|
kind?: "audio" | undefined;
|
|
169
171
|
uid?: string | undefined;
|
|
172
|
+
customType?: string | undefined;
|
|
170
173
|
}>, z.ZodObject<{
|
|
171
174
|
kind: z.ZodOptional<z.ZodLiteral<"video">>;
|
|
172
175
|
codec: z.ZodOptional<z.ZodString>;
|
|
173
176
|
uid: z.ZodOptional<z.ZodString>;
|
|
177
|
+
customType: z.ZodOptional<z.ZodString>;
|
|
174
178
|
}, "strip", z.ZodTypeAny, {
|
|
175
179
|
kind?: "video" | undefined;
|
|
176
180
|
codec?: string | undefined;
|
|
177
181
|
uid?: string | undefined;
|
|
182
|
+
customType?: string | undefined;
|
|
178
183
|
}, {
|
|
179
184
|
kind?: "video" | undefined;
|
|
180
185
|
codec?: string | undefined;
|
|
181
186
|
uid?: string | undefined;
|
|
187
|
+
customType?: string | undefined;
|
|
182
188
|
}>]>;
|
|
183
189
|
paused: z.ZodBoolean;
|
|
184
190
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -186,17 +192,21 @@ export declare const RoomNotificationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
186
192
|
properties: ({
|
|
187
193
|
kind?: "audio" | undefined;
|
|
188
194
|
uid?: string | undefined;
|
|
195
|
+
customType?: string | undefined;
|
|
189
196
|
} | {
|
|
190
197
|
kind?: "video" | undefined;
|
|
191
198
|
codec?: string | undefined;
|
|
192
199
|
uid?: string | undefined;
|
|
200
|
+
customType?: string | undefined;
|
|
193
201
|
}) & ({
|
|
194
202
|
kind?: "audio" | undefined;
|
|
195
203
|
uid?: string | undefined;
|
|
204
|
+
customType?: string | undefined;
|
|
196
205
|
} | {
|
|
197
206
|
kind?: "video" | undefined;
|
|
198
207
|
codec?: string | undefined;
|
|
199
208
|
uid?: string | undefined;
|
|
209
|
+
customType?: string | undefined;
|
|
200
210
|
} | undefined);
|
|
201
211
|
paused: boolean;
|
|
202
212
|
}, {
|
|
@@ -204,17 +214,21 @@ export declare const RoomNotificationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
204
214
|
properties: ({
|
|
205
215
|
kind?: "audio" | undefined;
|
|
206
216
|
uid?: string | undefined;
|
|
217
|
+
customType?: string | undefined;
|
|
207
218
|
} | {
|
|
208
219
|
kind?: "video" | undefined;
|
|
209
220
|
codec?: string | undefined;
|
|
210
221
|
uid?: string | undefined;
|
|
222
|
+
customType?: string | undefined;
|
|
211
223
|
}) & ({
|
|
212
224
|
kind?: "audio" | undefined;
|
|
213
225
|
uid?: string | undefined;
|
|
226
|
+
customType?: string | undefined;
|
|
214
227
|
} | {
|
|
215
228
|
kind?: "video" | undefined;
|
|
216
229
|
codec?: string | undefined;
|
|
217
230
|
uid?: string | undefined;
|
|
231
|
+
customType?: string | undefined;
|
|
218
232
|
} | undefined);
|
|
219
233
|
paused: boolean;
|
|
220
234
|
}>, "many">;
|
|
@@ -227,17 +241,21 @@ export declare const RoomNotificationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
227
241
|
properties: ({
|
|
228
242
|
kind?: "audio" | undefined;
|
|
229
243
|
uid?: string | undefined;
|
|
244
|
+
customType?: string | undefined;
|
|
230
245
|
} | {
|
|
231
246
|
kind?: "video" | undefined;
|
|
232
247
|
codec?: string | undefined;
|
|
233
248
|
uid?: string | undefined;
|
|
249
|
+
customType?: string | undefined;
|
|
234
250
|
}) & ({
|
|
235
251
|
kind?: "audio" | undefined;
|
|
236
252
|
uid?: string | undefined;
|
|
253
|
+
customType?: string | undefined;
|
|
237
254
|
} | {
|
|
238
255
|
kind?: "video" | undefined;
|
|
239
256
|
codec?: string | undefined;
|
|
240
257
|
uid?: string | undefined;
|
|
258
|
+
customType?: string | undefined;
|
|
241
259
|
} | undefined);
|
|
242
260
|
paused: boolean;
|
|
243
261
|
}[];
|
|
@@ -250,17 +268,21 @@ export declare const RoomNotificationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
250
268
|
properties: ({
|
|
251
269
|
kind?: "audio" | undefined;
|
|
252
270
|
uid?: string | undefined;
|
|
271
|
+
customType?: string | undefined;
|
|
253
272
|
} | {
|
|
254
273
|
kind?: "video" | undefined;
|
|
255
274
|
codec?: string | undefined;
|
|
256
275
|
uid?: string | undefined;
|
|
276
|
+
customType?: string | undefined;
|
|
257
277
|
}) & ({
|
|
258
278
|
kind?: "audio" | undefined;
|
|
259
279
|
uid?: string | undefined;
|
|
280
|
+
customType?: string | undefined;
|
|
260
281
|
} | {
|
|
261
282
|
kind?: "video" | undefined;
|
|
262
283
|
codec?: string | undefined;
|
|
263
284
|
uid?: string | undefined;
|
|
285
|
+
customType?: string | undefined;
|
|
264
286
|
} | undefined);
|
|
265
287
|
paused: boolean;
|
|
266
288
|
}[];
|
|
@@ -278,17 +300,21 @@ export declare const RoomNotificationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
278
300
|
properties: ({
|
|
279
301
|
kind?: "audio" | undefined;
|
|
280
302
|
uid?: string | undefined;
|
|
303
|
+
customType?: string | undefined;
|
|
281
304
|
} | {
|
|
282
305
|
kind?: "video" | undefined;
|
|
283
306
|
codec?: string | undefined;
|
|
284
307
|
uid?: string | undefined;
|
|
308
|
+
customType?: string | undefined;
|
|
285
309
|
}) & ({
|
|
286
310
|
kind?: "audio" | undefined;
|
|
287
311
|
uid?: string | undefined;
|
|
312
|
+
customType?: string | undefined;
|
|
288
313
|
} | {
|
|
289
314
|
kind?: "video" | undefined;
|
|
290
315
|
codec?: string | undefined;
|
|
291
316
|
uid?: string | undefined;
|
|
317
|
+
customType?: string | undefined;
|
|
292
318
|
} | undefined);
|
|
293
319
|
paused: boolean;
|
|
294
320
|
}[];
|
|
@@ -306,17 +332,21 @@ export declare const RoomNotificationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
306
332
|
properties: ({
|
|
307
333
|
kind?: "audio" | undefined;
|
|
308
334
|
uid?: string | undefined;
|
|
335
|
+
customType?: string | undefined;
|
|
309
336
|
} | {
|
|
310
337
|
kind?: "video" | undefined;
|
|
311
338
|
codec?: string | undefined;
|
|
312
339
|
uid?: string | undefined;
|
|
340
|
+
customType?: string | undefined;
|
|
313
341
|
}) & ({
|
|
314
342
|
kind?: "audio" | undefined;
|
|
315
343
|
uid?: string | undefined;
|
|
344
|
+
customType?: string | undefined;
|
|
316
345
|
} | {
|
|
317
346
|
kind?: "video" | undefined;
|
|
318
347
|
codec?: string | undefined;
|
|
319
348
|
uid?: string | undefined;
|
|
349
|
+
customType?: string | undefined;
|
|
320
350
|
} | undefined);
|
|
321
351
|
paused: boolean;
|
|
322
352
|
}[];
|
|
@@ -339,17 +369,21 @@ export declare const RoomNotificationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
339
369
|
properties: ({
|
|
340
370
|
kind?: "audio" | undefined;
|
|
341
371
|
uid?: string | undefined;
|
|
372
|
+
customType?: string | undefined;
|
|
342
373
|
} | {
|
|
343
374
|
kind?: "video" | undefined;
|
|
344
375
|
codec?: string | undefined;
|
|
345
376
|
uid?: string | undefined;
|
|
377
|
+
customType?: string | undefined;
|
|
346
378
|
}) & ({
|
|
347
379
|
kind?: "audio" | undefined;
|
|
348
380
|
uid?: string | undefined;
|
|
381
|
+
customType?: string | undefined;
|
|
349
382
|
} | {
|
|
350
383
|
kind?: "video" | undefined;
|
|
351
384
|
codec?: string | undefined;
|
|
352
385
|
uid?: string | undefined;
|
|
386
|
+
customType?: string | undefined;
|
|
353
387
|
} | undefined);
|
|
354
388
|
paused: boolean;
|
|
355
389
|
}[];
|
|
@@ -372,17 +406,21 @@ export declare const RoomNotificationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
372
406
|
properties: ({
|
|
373
407
|
kind?: "audio" | undefined;
|
|
374
408
|
uid?: string | undefined;
|
|
409
|
+
customType?: string | undefined;
|
|
375
410
|
} | {
|
|
376
411
|
kind?: "video" | undefined;
|
|
377
412
|
codec?: string | undefined;
|
|
378
413
|
uid?: string | undefined;
|
|
414
|
+
customType?: string | undefined;
|
|
379
415
|
}) & ({
|
|
380
416
|
kind?: "audio" | undefined;
|
|
381
417
|
uid?: string | undefined;
|
|
418
|
+
customType?: string | undefined;
|
|
382
419
|
} | {
|
|
383
420
|
kind?: "video" | undefined;
|
|
384
421
|
codec?: string | undefined;
|
|
385
422
|
uid?: string | undefined;
|
|
423
|
+
customType?: string | undefined;
|
|
386
424
|
} | undefined);
|
|
387
425
|
paused: boolean;
|
|
388
426
|
}[];
|
|
@@ -419,24 +457,30 @@ export declare const RoomNotificationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
419
457
|
properties: z.ZodUnion<[z.ZodObject<{
|
|
420
458
|
kind: z.ZodOptional<z.ZodLiteral<"audio">>;
|
|
421
459
|
uid: z.ZodOptional<z.ZodString>;
|
|
460
|
+
customType: z.ZodOptional<z.ZodString>;
|
|
422
461
|
}, "strip", z.ZodTypeAny, {
|
|
423
462
|
kind?: "audio" | undefined;
|
|
424
463
|
uid?: string | undefined;
|
|
464
|
+
customType?: string | undefined;
|
|
425
465
|
}, {
|
|
426
466
|
kind?: "audio" | undefined;
|
|
427
467
|
uid?: string | undefined;
|
|
468
|
+
customType?: string | undefined;
|
|
428
469
|
}>, z.ZodObject<{
|
|
429
470
|
kind: z.ZodOptional<z.ZodLiteral<"video">>;
|
|
430
471
|
codec: z.ZodOptional<z.ZodString>;
|
|
431
472
|
uid: z.ZodOptional<z.ZodString>;
|
|
473
|
+
customType: z.ZodOptional<z.ZodString>;
|
|
432
474
|
}, "strip", z.ZodTypeAny, {
|
|
433
475
|
kind?: "video" | undefined;
|
|
434
476
|
codec?: string | undefined;
|
|
435
477
|
uid?: string | undefined;
|
|
478
|
+
customType?: string | undefined;
|
|
436
479
|
}, {
|
|
437
480
|
kind?: "video" | undefined;
|
|
438
481
|
codec?: string | undefined;
|
|
439
482
|
uid?: string | undefined;
|
|
483
|
+
customType?: string | undefined;
|
|
440
484
|
}>]>;
|
|
441
485
|
paused: z.ZodBoolean;
|
|
442
486
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -444,17 +488,21 @@ export declare const RoomNotificationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
444
488
|
properties: ({
|
|
445
489
|
kind?: "audio" | undefined;
|
|
446
490
|
uid?: string | undefined;
|
|
491
|
+
customType?: string | undefined;
|
|
447
492
|
} | {
|
|
448
493
|
kind?: "video" | undefined;
|
|
449
494
|
codec?: string | undefined;
|
|
450
495
|
uid?: string | undefined;
|
|
496
|
+
customType?: string | undefined;
|
|
451
497
|
}) & ({
|
|
452
498
|
kind?: "audio" | undefined;
|
|
453
499
|
uid?: string | undefined;
|
|
500
|
+
customType?: string | undefined;
|
|
454
501
|
} | {
|
|
455
502
|
kind?: "video" | undefined;
|
|
456
503
|
codec?: string | undefined;
|
|
457
504
|
uid?: string | undefined;
|
|
505
|
+
customType?: string | undefined;
|
|
458
506
|
} | undefined);
|
|
459
507
|
paused: boolean;
|
|
460
508
|
}, {
|
|
@@ -462,17 +510,21 @@ export declare const RoomNotificationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
462
510
|
properties: ({
|
|
463
511
|
kind?: "audio" | undefined;
|
|
464
512
|
uid?: string | undefined;
|
|
513
|
+
customType?: string | undefined;
|
|
465
514
|
} | {
|
|
466
515
|
kind?: "video" | undefined;
|
|
467
516
|
codec?: string | undefined;
|
|
468
517
|
uid?: string | undefined;
|
|
518
|
+
customType?: string | undefined;
|
|
469
519
|
}) & ({
|
|
470
520
|
kind?: "audio" | undefined;
|
|
471
521
|
uid?: string | undefined;
|
|
522
|
+
customType?: string | undefined;
|
|
472
523
|
} | {
|
|
473
524
|
kind?: "video" | undefined;
|
|
474
525
|
codec?: string | undefined;
|
|
475
526
|
uid?: string | undefined;
|
|
527
|
+
customType?: string | undefined;
|
|
476
528
|
} | undefined);
|
|
477
529
|
paused: boolean;
|
|
478
530
|
}>, "many">;
|
|
@@ -485,17 +537,21 @@ export declare const RoomNotificationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
485
537
|
properties: ({
|
|
486
538
|
kind?: "audio" | undefined;
|
|
487
539
|
uid?: string | undefined;
|
|
540
|
+
customType?: string | undefined;
|
|
488
541
|
} | {
|
|
489
542
|
kind?: "video" | undefined;
|
|
490
543
|
codec?: string | undefined;
|
|
491
544
|
uid?: string | undefined;
|
|
545
|
+
customType?: string | undefined;
|
|
492
546
|
}) & ({
|
|
493
547
|
kind?: "audio" | undefined;
|
|
494
548
|
uid?: string | undefined;
|
|
549
|
+
customType?: string | undefined;
|
|
495
550
|
} | {
|
|
496
551
|
kind?: "video" | undefined;
|
|
497
552
|
codec?: string | undefined;
|
|
498
553
|
uid?: string | undefined;
|
|
554
|
+
customType?: string | undefined;
|
|
499
555
|
} | undefined);
|
|
500
556
|
paused: boolean;
|
|
501
557
|
}[];
|
|
@@ -508,17 +564,21 @@ export declare const RoomNotificationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
508
564
|
properties: ({
|
|
509
565
|
kind?: "audio" | undefined;
|
|
510
566
|
uid?: string | undefined;
|
|
567
|
+
customType?: string | undefined;
|
|
511
568
|
} | {
|
|
512
569
|
kind?: "video" | undefined;
|
|
513
570
|
codec?: string | undefined;
|
|
514
571
|
uid?: string | undefined;
|
|
572
|
+
customType?: string | undefined;
|
|
515
573
|
}) & ({
|
|
516
574
|
kind?: "audio" | undefined;
|
|
517
575
|
uid?: string | undefined;
|
|
576
|
+
customType?: string | undefined;
|
|
518
577
|
} | {
|
|
519
578
|
kind?: "video" | undefined;
|
|
520
579
|
codec?: string | undefined;
|
|
521
580
|
uid?: string | undefined;
|
|
581
|
+
customType?: string | undefined;
|
|
522
582
|
} | undefined);
|
|
523
583
|
paused: boolean;
|
|
524
584
|
}[];
|
|
@@ -534,17 +594,21 @@ export declare const RoomNotificationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
534
594
|
properties: ({
|
|
535
595
|
kind?: "audio" | undefined;
|
|
536
596
|
uid?: string | undefined;
|
|
597
|
+
customType?: string | undefined;
|
|
537
598
|
} | {
|
|
538
599
|
kind?: "video" | undefined;
|
|
539
600
|
codec?: string | undefined;
|
|
540
601
|
uid?: string | undefined;
|
|
602
|
+
customType?: string | undefined;
|
|
541
603
|
}) & ({
|
|
542
604
|
kind?: "audio" | undefined;
|
|
543
605
|
uid?: string | undefined;
|
|
606
|
+
customType?: string | undefined;
|
|
544
607
|
} | {
|
|
545
608
|
kind?: "video" | undefined;
|
|
546
609
|
codec?: string | undefined;
|
|
547
610
|
uid?: string | undefined;
|
|
611
|
+
customType?: string | undefined;
|
|
548
612
|
} | undefined);
|
|
549
613
|
paused: boolean;
|
|
550
614
|
}[];
|
|
@@ -560,17 +624,21 @@ export declare const RoomNotificationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
560
624
|
properties: ({
|
|
561
625
|
kind?: "audio" | undefined;
|
|
562
626
|
uid?: string | undefined;
|
|
627
|
+
customType?: string | undefined;
|
|
563
628
|
} | {
|
|
564
629
|
kind?: "video" | undefined;
|
|
565
630
|
codec?: string | undefined;
|
|
566
631
|
uid?: string | undefined;
|
|
632
|
+
customType?: string | undefined;
|
|
567
633
|
}) & ({
|
|
568
634
|
kind?: "audio" | undefined;
|
|
569
635
|
uid?: string | undefined;
|
|
636
|
+
customType?: string | undefined;
|
|
570
637
|
} | {
|
|
571
638
|
kind?: "video" | undefined;
|
|
572
639
|
codec?: string | undefined;
|
|
573
640
|
uid?: string | undefined;
|
|
641
|
+
customType?: string | undefined;
|
|
574
642
|
} | undefined);
|
|
575
643
|
paused: boolean;
|
|
576
644
|
}[];
|
|
@@ -601,17 +669,21 @@ export declare const RoomNotificationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
601
669
|
properties: ({
|
|
602
670
|
kind?: "audio" | undefined;
|
|
603
671
|
uid?: string | undefined;
|
|
672
|
+
customType?: string | undefined;
|
|
604
673
|
} | {
|
|
605
674
|
kind?: "video" | undefined;
|
|
606
675
|
codec?: string | undefined;
|
|
607
676
|
uid?: string | undefined;
|
|
677
|
+
customType?: string | undefined;
|
|
608
678
|
}) & ({
|
|
609
679
|
kind?: "audio" | undefined;
|
|
610
680
|
uid?: string | undefined;
|
|
681
|
+
customType?: string | undefined;
|
|
611
682
|
} | {
|
|
612
683
|
kind?: "video" | undefined;
|
|
613
684
|
codec?: string | undefined;
|
|
614
685
|
uid?: string | undefined;
|
|
686
|
+
customType?: string | undefined;
|
|
615
687
|
} | undefined);
|
|
616
688
|
paused: boolean;
|
|
617
689
|
}[];
|
|
@@ -636,17 +708,21 @@ export declare const RoomNotificationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
636
708
|
properties: ({
|
|
637
709
|
kind?: "audio" | undefined;
|
|
638
710
|
uid?: string | undefined;
|
|
711
|
+
customType?: string | undefined;
|
|
639
712
|
} | {
|
|
640
713
|
kind?: "video" | undefined;
|
|
641
714
|
codec?: string | undefined;
|
|
642
715
|
uid?: string | undefined;
|
|
716
|
+
customType?: string | undefined;
|
|
643
717
|
}) & ({
|
|
644
718
|
kind?: "audio" | undefined;
|
|
645
719
|
uid?: string | undefined;
|
|
720
|
+
customType?: string | undefined;
|
|
646
721
|
} | {
|
|
647
722
|
kind?: "video" | undefined;
|
|
648
723
|
codec?: string | undefined;
|
|
649
724
|
uid?: string | undefined;
|
|
725
|
+
customType?: string | undefined;
|
|
650
726
|
} | undefined);
|
|
651
727
|
paused: boolean;
|
|
652
728
|
}[];
|
|
@@ -671,17 +747,21 @@ export declare const RoomNotificationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
671
747
|
properties: ({
|
|
672
748
|
kind?: "audio" | undefined;
|
|
673
749
|
uid?: string | undefined;
|
|
750
|
+
customType?: string | undefined;
|
|
674
751
|
} | {
|
|
675
752
|
kind?: "video" | undefined;
|
|
676
753
|
codec?: string | undefined;
|
|
677
754
|
uid?: string | undefined;
|
|
755
|
+
customType?: string | undefined;
|
|
678
756
|
}) & ({
|
|
679
757
|
kind?: "audio" | undefined;
|
|
680
758
|
uid?: string | undefined;
|
|
759
|
+
customType?: string | undefined;
|
|
681
760
|
} | {
|
|
682
761
|
kind?: "video" | undefined;
|
|
683
762
|
codec?: string | undefined;
|
|
684
763
|
uid?: string | undefined;
|
|
764
|
+
customType?: string | undefined;
|
|
685
765
|
} | undefined);
|
|
686
766
|
paused: boolean;
|
|
687
767
|
}[];
|
|
@@ -706,17 +786,21 @@ export declare const RoomNotificationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
706
786
|
properties: ({
|
|
707
787
|
kind?: "audio" | undefined;
|
|
708
788
|
uid?: string | undefined;
|
|
789
|
+
customType?: string | undefined;
|
|
709
790
|
} | {
|
|
710
791
|
kind?: "video" | undefined;
|
|
711
792
|
codec?: string | undefined;
|
|
712
793
|
uid?: string | undefined;
|
|
794
|
+
customType?: string | undefined;
|
|
713
795
|
}) & ({
|
|
714
796
|
kind?: "audio" | undefined;
|
|
715
797
|
uid?: string | undefined;
|
|
798
|
+
customType?: string | undefined;
|
|
716
799
|
} | {
|
|
717
800
|
kind?: "video" | undefined;
|
|
718
801
|
codec?: string | undefined;
|
|
719
802
|
uid?: string | undefined;
|
|
803
|
+
customType?: string | undefined;
|
|
720
804
|
} | undefined);
|
|
721
805
|
paused: boolean;
|
|
722
806
|
}[];
|
|
@@ -743,17 +827,21 @@ export declare const RoomNotificationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
743
827
|
properties: ({
|
|
744
828
|
kind?: "audio" | undefined;
|
|
745
829
|
uid?: string | undefined;
|
|
830
|
+
customType?: string | undefined;
|
|
746
831
|
} | {
|
|
747
832
|
kind?: "video" | undefined;
|
|
748
833
|
codec?: string | undefined;
|
|
749
834
|
uid?: string | undefined;
|
|
835
|
+
customType?: string | undefined;
|
|
750
836
|
}) & ({
|
|
751
837
|
kind?: "audio" | undefined;
|
|
752
838
|
uid?: string | undefined;
|
|
839
|
+
customType?: string | undefined;
|
|
753
840
|
} | {
|
|
754
841
|
kind?: "video" | undefined;
|
|
755
842
|
codec?: string | undefined;
|
|
756
843
|
uid?: string | undefined;
|
|
844
|
+
customType?: string | undefined;
|
|
757
845
|
} | undefined);
|
|
758
846
|
paused: boolean;
|
|
759
847
|
}[];
|
|
@@ -778,17 +866,21 @@ export declare const RoomNotificationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
778
866
|
properties: ({
|
|
779
867
|
kind?: "audio" | undefined;
|
|
780
868
|
uid?: string | undefined;
|
|
869
|
+
customType?: string | undefined;
|
|
781
870
|
} | {
|
|
782
871
|
kind?: "video" | undefined;
|
|
783
872
|
codec?: string | undefined;
|
|
784
873
|
uid?: string | undefined;
|
|
874
|
+
customType?: string | undefined;
|
|
785
875
|
}) & ({
|
|
786
876
|
kind?: "audio" | undefined;
|
|
787
877
|
uid?: string | undefined;
|
|
878
|
+
customType?: string | undefined;
|
|
788
879
|
} | {
|
|
789
880
|
kind?: "video" | undefined;
|
|
790
881
|
codec?: string | undefined;
|
|
791
882
|
uid?: string | undefined;
|
|
883
|
+
customType?: string | undefined;
|
|
792
884
|
} | undefined);
|
|
793
885
|
paused: boolean;
|
|
794
886
|
}[];
|
|
@@ -816,17 +908,21 @@ export declare const RoomNotificationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
816
908
|
properties: ({
|
|
817
909
|
kind?: "audio" | undefined;
|
|
818
910
|
uid?: string | undefined;
|
|
911
|
+
customType?: string | undefined;
|
|
819
912
|
} | {
|
|
820
913
|
kind?: "video" | undefined;
|
|
821
914
|
codec?: string | undefined;
|
|
822
915
|
uid?: string | undefined;
|
|
916
|
+
customType?: string | undefined;
|
|
823
917
|
}) & ({
|
|
824
918
|
kind?: "audio" | undefined;
|
|
825
919
|
uid?: string | undefined;
|
|
920
|
+
customType?: string | undefined;
|
|
826
921
|
} | {
|
|
827
922
|
kind?: "video" | undefined;
|
|
828
923
|
codec?: string | undefined;
|
|
829
924
|
uid?: string | undefined;
|
|
925
|
+
customType?: string | undefined;
|
|
830
926
|
} | undefined);
|
|
831
927
|
paused: boolean;
|
|
832
928
|
}[];
|
|
@@ -851,17 +947,21 @@ export declare const RoomNotificationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
851
947
|
properties: ({
|
|
852
948
|
kind?: "audio" | undefined;
|
|
853
949
|
uid?: string | undefined;
|
|
950
|
+
customType?: string | undefined;
|
|
854
951
|
} | {
|
|
855
952
|
kind?: "video" | undefined;
|
|
856
953
|
codec?: string | undefined;
|
|
857
954
|
uid?: string | undefined;
|
|
955
|
+
customType?: string | undefined;
|
|
858
956
|
}) & ({
|
|
859
957
|
kind?: "audio" | undefined;
|
|
860
958
|
uid?: string | undefined;
|
|
959
|
+
customType?: string | undefined;
|
|
861
960
|
} | {
|
|
862
961
|
kind?: "video" | undefined;
|
|
863
962
|
codec?: string | undefined;
|
|
864
963
|
uid?: string | undefined;
|
|
964
|
+
customType?: string | undefined;
|
|
865
965
|
} | undefined);
|
|
866
966
|
paused: boolean;
|
|
867
967
|
}[];
|
|
@@ -894,24 +994,30 @@ export declare const RoomNotificationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
894
994
|
properties: z.ZodUnion<[z.ZodObject<{
|
|
895
995
|
kind: z.ZodOptional<z.ZodLiteral<"audio">>;
|
|
896
996
|
uid: z.ZodOptional<z.ZodString>;
|
|
997
|
+
customType: z.ZodOptional<z.ZodString>;
|
|
897
998
|
}, "strip", z.ZodTypeAny, {
|
|
898
999
|
kind?: "audio" | undefined;
|
|
899
1000
|
uid?: string | undefined;
|
|
1001
|
+
customType?: string | undefined;
|
|
900
1002
|
}, {
|
|
901
1003
|
kind?: "audio" | undefined;
|
|
902
1004
|
uid?: string | undefined;
|
|
1005
|
+
customType?: string | undefined;
|
|
903
1006
|
}>, z.ZodObject<{
|
|
904
1007
|
kind: z.ZodOptional<z.ZodLiteral<"video">>;
|
|
905
1008
|
codec: z.ZodOptional<z.ZodString>;
|
|
906
1009
|
uid: z.ZodOptional<z.ZodString>;
|
|
1010
|
+
customType: z.ZodOptional<z.ZodString>;
|
|
907
1011
|
}, "strip", z.ZodTypeAny, {
|
|
908
1012
|
kind?: "video" | undefined;
|
|
909
1013
|
codec?: string | undefined;
|
|
910
1014
|
uid?: string | undefined;
|
|
1015
|
+
customType?: string | undefined;
|
|
911
1016
|
}, {
|
|
912
1017
|
kind?: "video" | undefined;
|
|
913
1018
|
codec?: string | undefined;
|
|
914
1019
|
uid?: string | undefined;
|
|
1020
|
+
customType?: string | undefined;
|
|
915
1021
|
}>]>;
|
|
916
1022
|
paused: z.ZodBoolean;
|
|
917
1023
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -919,17 +1025,21 @@ export declare const RoomNotificationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
919
1025
|
properties: ({
|
|
920
1026
|
kind?: "audio" | undefined;
|
|
921
1027
|
uid?: string | undefined;
|
|
1028
|
+
customType?: string | undefined;
|
|
922
1029
|
} | {
|
|
923
1030
|
kind?: "video" | undefined;
|
|
924
1031
|
codec?: string | undefined;
|
|
925
1032
|
uid?: string | undefined;
|
|
1033
|
+
customType?: string | undefined;
|
|
926
1034
|
}) & ({
|
|
927
1035
|
kind?: "audio" | undefined;
|
|
928
1036
|
uid?: string | undefined;
|
|
1037
|
+
customType?: string | undefined;
|
|
929
1038
|
} | {
|
|
930
1039
|
kind?: "video" | undefined;
|
|
931
1040
|
codec?: string | undefined;
|
|
932
1041
|
uid?: string | undefined;
|
|
1042
|
+
customType?: string | undefined;
|
|
933
1043
|
} | undefined);
|
|
934
1044
|
paused: boolean;
|
|
935
1045
|
}, {
|
|
@@ -937,17 +1047,21 @@ export declare const RoomNotificationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
937
1047
|
properties: ({
|
|
938
1048
|
kind?: "audio" | undefined;
|
|
939
1049
|
uid?: string | undefined;
|
|
1050
|
+
customType?: string | undefined;
|
|
940
1051
|
} | {
|
|
941
1052
|
kind?: "video" | undefined;
|
|
942
1053
|
codec?: string | undefined;
|
|
943
1054
|
uid?: string | undefined;
|
|
1055
|
+
customType?: string | undefined;
|
|
944
1056
|
}) & ({
|
|
945
1057
|
kind?: "audio" | undefined;
|
|
946
1058
|
uid?: string | undefined;
|
|
1059
|
+
customType?: string | undefined;
|
|
947
1060
|
} | {
|
|
948
1061
|
kind?: "video" | undefined;
|
|
949
1062
|
codec?: string | undefined;
|
|
950
1063
|
uid?: string | undefined;
|
|
1064
|
+
customType?: string | undefined;
|
|
951
1065
|
} | undefined);
|
|
952
1066
|
paused: boolean;
|
|
953
1067
|
}>;
|
|
@@ -959,17 +1073,21 @@ export declare const RoomNotificationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
959
1073
|
properties: ({
|
|
960
1074
|
kind?: "audio" | undefined;
|
|
961
1075
|
uid?: string | undefined;
|
|
1076
|
+
customType?: string | undefined;
|
|
962
1077
|
} | {
|
|
963
1078
|
kind?: "video" | undefined;
|
|
964
1079
|
codec?: string | undefined;
|
|
965
1080
|
uid?: string | undefined;
|
|
1081
|
+
customType?: string | undefined;
|
|
966
1082
|
}) & ({
|
|
967
1083
|
kind?: "audio" | undefined;
|
|
968
1084
|
uid?: string | undefined;
|
|
1085
|
+
customType?: string | undefined;
|
|
969
1086
|
} | {
|
|
970
1087
|
kind?: "video" | undefined;
|
|
971
1088
|
codec?: string | undefined;
|
|
972
1089
|
uid?: string | undefined;
|
|
1090
|
+
customType?: string | undefined;
|
|
973
1091
|
} | undefined);
|
|
974
1092
|
paused: boolean;
|
|
975
1093
|
};
|
|
@@ -981,17 +1099,21 @@ export declare const RoomNotificationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
981
1099
|
properties: ({
|
|
982
1100
|
kind?: "audio" | undefined;
|
|
983
1101
|
uid?: string | undefined;
|
|
1102
|
+
customType?: string | undefined;
|
|
984
1103
|
} | {
|
|
985
1104
|
kind?: "video" | undefined;
|
|
986
1105
|
codec?: string | undefined;
|
|
987
1106
|
uid?: string | undefined;
|
|
1107
|
+
customType?: string | undefined;
|
|
988
1108
|
}) & ({
|
|
989
1109
|
kind?: "audio" | undefined;
|
|
990
1110
|
uid?: string | undefined;
|
|
1111
|
+
customType?: string | undefined;
|
|
991
1112
|
} | {
|
|
992
1113
|
kind?: "video" | undefined;
|
|
993
1114
|
codec?: string | undefined;
|
|
994
1115
|
uid?: string | undefined;
|
|
1116
|
+
customType?: string | undefined;
|
|
995
1117
|
} | undefined);
|
|
996
1118
|
paused: boolean;
|
|
997
1119
|
};
|
|
@@ -1021,17 +1143,21 @@ export declare const RoomNotificationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1021
1143
|
properties: ({
|
|
1022
1144
|
kind?: "audio" | undefined;
|
|
1023
1145
|
uid?: string | undefined;
|
|
1146
|
+
customType?: string | undefined;
|
|
1024
1147
|
} | {
|
|
1025
1148
|
kind?: "video" | undefined;
|
|
1026
1149
|
codec?: string | undefined;
|
|
1027
1150
|
uid?: string | undefined;
|
|
1151
|
+
customType?: string | undefined;
|
|
1028
1152
|
}) & ({
|
|
1029
1153
|
kind?: "audio" | undefined;
|
|
1030
1154
|
uid?: string | undefined;
|
|
1155
|
+
customType?: string | undefined;
|
|
1031
1156
|
} | {
|
|
1032
1157
|
kind?: "video" | undefined;
|
|
1033
1158
|
codec?: string | undefined;
|
|
1034
1159
|
uid?: string | undefined;
|
|
1160
|
+
customType?: string | undefined;
|
|
1035
1161
|
} | undefined);
|
|
1036
1162
|
paused: boolean;
|
|
1037
1163
|
};
|
|
@@ -1054,17 +1180,21 @@ export declare const RoomNotificationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1054
1180
|
properties: ({
|
|
1055
1181
|
kind?: "audio" | undefined;
|
|
1056
1182
|
uid?: string | undefined;
|
|
1183
|
+
customType?: string | undefined;
|
|
1057
1184
|
} | {
|
|
1058
1185
|
kind?: "video" | undefined;
|
|
1059
1186
|
codec?: string | undefined;
|
|
1060
1187
|
uid?: string | undefined;
|
|
1188
|
+
customType?: string | undefined;
|
|
1061
1189
|
}) & ({
|
|
1062
1190
|
kind?: "audio" | undefined;
|
|
1063
1191
|
uid?: string | undefined;
|
|
1192
|
+
customType?: string | undefined;
|
|
1064
1193
|
} | {
|
|
1065
1194
|
kind?: "video" | undefined;
|
|
1066
1195
|
codec?: string | undefined;
|
|
1067
1196
|
uid?: string | undefined;
|
|
1197
|
+
customType?: string | undefined;
|
|
1068
1198
|
} | undefined);
|
|
1069
1199
|
paused: boolean;
|
|
1070
1200
|
};
|
|
@@ -1127,24 +1257,30 @@ export declare const RoomNotificationsRpc: {
|
|
|
1127
1257
|
properties: z.ZodUnion<[z.ZodObject<{
|
|
1128
1258
|
kind: z.ZodOptional<z.ZodLiteral<"audio">>;
|
|
1129
1259
|
uid: z.ZodOptional<z.ZodString>;
|
|
1260
|
+
customType: z.ZodOptional<z.ZodString>;
|
|
1130
1261
|
}, "strip", z.ZodTypeAny, {
|
|
1131
1262
|
kind?: "audio" | undefined;
|
|
1132
1263
|
uid?: string | undefined;
|
|
1264
|
+
customType?: string | undefined;
|
|
1133
1265
|
}, {
|
|
1134
1266
|
kind?: "audio" | undefined;
|
|
1135
1267
|
uid?: string | undefined;
|
|
1268
|
+
customType?: string | undefined;
|
|
1136
1269
|
}>, z.ZodObject<{
|
|
1137
1270
|
kind: z.ZodOptional<z.ZodLiteral<"video">>;
|
|
1138
1271
|
codec: z.ZodOptional<z.ZodString>;
|
|
1139
1272
|
uid: z.ZodOptional<z.ZodString>;
|
|
1273
|
+
customType: z.ZodOptional<z.ZodString>;
|
|
1140
1274
|
}, "strip", z.ZodTypeAny, {
|
|
1141
1275
|
kind?: "video" | undefined;
|
|
1142
1276
|
codec?: string | undefined;
|
|
1143
1277
|
uid?: string | undefined;
|
|
1278
|
+
customType?: string | undefined;
|
|
1144
1279
|
}, {
|
|
1145
1280
|
kind?: "video" | undefined;
|
|
1146
1281
|
codec?: string | undefined;
|
|
1147
1282
|
uid?: string | undefined;
|
|
1283
|
+
customType?: string | undefined;
|
|
1148
1284
|
}>]>;
|
|
1149
1285
|
paused: z.ZodBoolean;
|
|
1150
1286
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1152,17 +1288,21 @@ export declare const RoomNotificationsRpc: {
|
|
|
1152
1288
|
properties: ({
|
|
1153
1289
|
kind?: "audio" | undefined;
|
|
1154
1290
|
uid?: string | undefined;
|
|
1291
|
+
customType?: string | undefined;
|
|
1155
1292
|
} | {
|
|
1156
1293
|
kind?: "video" | undefined;
|
|
1157
1294
|
codec?: string | undefined;
|
|
1158
1295
|
uid?: string | undefined;
|
|
1296
|
+
customType?: string | undefined;
|
|
1159
1297
|
}) & ({
|
|
1160
1298
|
kind?: "audio" | undefined;
|
|
1161
1299
|
uid?: string | undefined;
|
|
1300
|
+
customType?: string | undefined;
|
|
1162
1301
|
} | {
|
|
1163
1302
|
kind?: "video" | undefined;
|
|
1164
1303
|
codec?: string | undefined;
|
|
1165
1304
|
uid?: string | undefined;
|
|
1305
|
+
customType?: string | undefined;
|
|
1166
1306
|
} | undefined);
|
|
1167
1307
|
paused: boolean;
|
|
1168
1308
|
}, {
|
|
@@ -1170,17 +1310,21 @@ export declare const RoomNotificationsRpc: {
|
|
|
1170
1310
|
properties: ({
|
|
1171
1311
|
kind?: "audio" | undefined;
|
|
1172
1312
|
uid?: string | undefined;
|
|
1313
|
+
customType?: string | undefined;
|
|
1173
1314
|
} | {
|
|
1174
1315
|
kind?: "video" | undefined;
|
|
1175
1316
|
codec?: string | undefined;
|
|
1176
1317
|
uid?: string | undefined;
|
|
1318
|
+
customType?: string | undefined;
|
|
1177
1319
|
}) & ({
|
|
1178
1320
|
kind?: "audio" | undefined;
|
|
1179
1321
|
uid?: string | undefined;
|
|
1322
|
+
customType?: string | undefined;
|
|
1180
1323
|
} | {
|
|
1181
1324
|
kind?: "video" | undefined;
|
|
1182
1325
|
codec?: string | undefined;
|
|
1183
1326
|
uid?: string | undefined;
|
|
1327
|
+
customType?: string | undefined;
|
|
1184
1328
|
} | undefined);
|
|
1185
1329
|
paused: boolean;
|
|
1186
1330
|
}>, "many">;
|
|
@@ -1193,17 +1337,21 @@ export declare const RoomNotificationsRpc: {
|
|
|
1193
1337
|
properties: ({
|
|
1194
1338
|
kind?: "audio" | undefined;
|
|
1195
1339
|
uid?: string | undefined;
|
|
1340
|
+
customType?: string | undefined;
|
|
1196
1341
|
} | {
|
|
1197
1342
|
kind?: "video" | undefined;
|
|
1198
1343
|
codec?: string | undefined;
|
|
1199
1344
|
uid?: string | undefined;
|
|
1345
|
+
customType?: string | undefined;
|
|
1200
1346
|
}) & ({
|
|
1201
1347
|
kind?: "audio" | undefined;
|
|
1202
1348
|
uid?: string | undefined;
|
|
1349
|
+
customType?: string | undefined;
|
|
1203
1350
|
} | {
|
|
1204
1351
|
kind?: "video" | undefined;
|
|
1205
1352
|
codec?: string | undefined;
|
|
1206
1353
|
uid?: string | undefined;
|
|
1354
|
+
customType?: string | undefined;
|
|
1207
1355
|
} | undefined);
|
|
1208
1356
|
paused: boolean;
|
|
1209
1357
|
}[];
|
|
@@ -1216,17 +1364,21 @@ export declare const RoomNotificationsRpc: {
|
|
|
1216
1364
|
properties: ({
|
|
1217
1365
|
kind?: "audio" | undefined;
|
|
1218
1366
|
uid?: string | undefined;
|
|
1367
|
+
customType?: string | undefined;
|
|
1219
1368
|
} | {
|
|
1220
1369
|
kind?: "video" | undefined;
|
|
1221
1370
|
codec?: string | undefined;
|
|
1222
1371
|
uid?: string | undefined;
|
|
1372
|
+
customType?: string | undefined;
|
|
1223
1373
|
}) & ({
|
|
1224
1374
|
kind?: "audio" | undefined;
|
|
1225
1375
|
uid?: string | undefined;
|
|
1376
|
+
customType?: string | undefined;
|
|
1226
1377
|
} | {
|
|
1227
1378
|
kind?: "video" | undefined;
|
|
1228
1379
|
codec?: string | undefined;
|
|
1229
1380
|
uid?: string | undefined;
|
|
1381
|
+
customType?: string | undefined;
|
|
1230
1382
|
} | undefined);
|
|
1231
1383
|
paused: boolean;
|
|
1232
1384
|
}[];
|
|
@@ -1244,17 +1396,21 @@ export declare const RoomNotificationsRpc: {
|
|
|
1244
1396
|
properties: ({
|
|
1245
1397
|
kind?: "audio" | undefined;
|
|
1246
1398
|
uid?: string | undefined;
|
|
1399
|
+
customType?: string | undefined;
|
|
1247
1400
|
} | {
|
|
1248
1401
|
kind?: "video" | undefined;
|
|
1249
1402
|
codec?: string | undefined;
|
|
1250
1403
|
uid?: string | undefined;
|
|
1404
|
+
customType?: string | undefined;
|
|
1251
1405
|
}) & ({
|
|
1252
1406
|
kind?: "audio" | undefined;
|
|
1253
1407
|
uid?: string | undefined;
|
|
1408
|
+
customType?: string | undefined;
|
|
1254
1409
|
} | {
|
|
1255
1410
|
kind?: "video" | undefined;
|
|
1256
1411
|
codec?: string | undefined;
|
|
1257
1412
|
uid?: string | undefined;
|
|
1413
|
+
customType?: string | undefined;
|
|
1258
1414
|
} | undefined);
|
|
1259
1415
|
paused: boolean;
|
|
1260
1416
|
}[];
|
|
@@ -1272,17 +1428,21 @@ export declare const RoomNotificationsRpc: {
|
|
|
1272
1428
|
properties: ({
|
|
1273
1429
|
kind?: "audio" | undefined;
|
|
1274
1430
|
uid?: string | undefined;
|
|
1431
|
+
customType?: string | undefined;
|
|
1275
1432
|
} | {
|
|
1276
1433
|
kind?: "video" | undefined;
|
|
1277
1434
|
codec?: string | undefined;
|
|
1278
1435
|
uid?: string | undefined;
|
|
1436
|
+
customType?: string | undefined;
|
|
1279
1437
|
}) & ({
|
|
1280
1438
|
kind?: "audio" | undefined;
|
|
1281
1439
|
uid?: string | undefined;
|
|
1440
|
+
customType?: string | undefined;
|
|
1282
1441
|
} | {
|
|
1283
1442
|
kind?: "video" | undefined;
|
|
1284
1443
|
codec?: string | undefined;
|
|
1285
1444
|
uid?: string | undefined;
|
|
1445
|
+
customType?: string | undefined;
|
|
1286
1446
|
} | undefined);
|
|
1287
1447
|
paused: boolean;
|
|
1288
1448
|
}[];
|
|
@@ -1305,17 +1465,21 @@ export declare const RoomNotificationsRpc: {
|
|
|
1305
1465
|
properties: ({
|
|
1306
1466
|
kind?: "audio" | undefined;
|
|
1307
1467
|
uid?: string | undefined;
|
|
1468
|
+
customType?: string | undefined;
|
|
1308
1469
|
} | {
|
|
1309
1470
|
kind?: "video" | undefined;
|
|
1310
1471
|
codec?: string | undefined;
|
|
1311
1472
|
uid?: string | undefined;
|
|
1473
|
+
customType?: string | undefined;
|
|
1312
1474
|
}) & ({
|
|
1313
1475
|
kind?: "audio" | undefined;
|
|
1314
1476
|
uid?: string | undefined;
|
|
1477
|
+
customType?: string | undefined;
|
|
1315
1478
|
} | {
|
|
1316
1479
|
kind?: "video" | undefined;
|
|
1317
1480
|
codec?: string | undefined;
|
|
1318
1481
|
uid?: string | undefined;
|
|
1482
|
+
customType?: string | undefined;
|
|
1319
1483
|
} | undefined);
|
|
1320
1484
|
paused: boolean;
|
|
1321
1485
|
}[];
|
|
@@ -1338,17 +1502,21 @@ export declare const RoomNotificationsRpc: {
|
|
|
1338
1502
|
properties: ({
|
|
1339
1503
|
kind?: "audio" | undefined;
|
|
1340
1504
|
uid?: string | undefined;
|
|
1505
|
+
customType?: string | undefined;
|
|
1341
1506
|
} | {
|
|
1342
1507
|
kind?: "video" | undefined;
|
|
1343
1508
|
codec?: string | undefined;
|
|
1344
1509
|
uid?: string | undefined;
|
|
1510
|
+
customType?: string | undefined;
|
|
1345
1511
|
}) & ({
|
|
1346
1512
|
kind?: "audio" | undefined;
|
|
1347
1513
|
uid?: string | undefined;
|
|
1514
|
+
customType?: string | undefined;
|
|
1348
1515
|
} | {
|
|
1349
1516
|
kind?: "video" | undefined;
|
|
1350
1517
|
codec?: string | undefined;
|
|
1351
1518
|
uid?: string | undefined;
|
|
1519
|
+
customType?: string | undefined;
|
|
1352
1520
|
} | undefined);
|
|
1353
1521
|
paused: boolean;
|
|
1354
1522
|
}[];
|
|
@@ -1385,24 +1553,30 @@ export declare const RoomNotificationsRpc: {
|
|
|
1385
1553
|
properties: z.ZodUnion<[z.ZodObject<{
|
|
1386
1554
|
kind: z.ZodOptional<z.ZodLiteral<"audio">>;
|
|
1387
1555
|
uid: z.ZodOptional<z.ZodString>;
|
|
1556
|
+
customType: z.ZodOptional<z.ZodString>;
|
|
1388
1557
|
}, "strip", z.ZodTypeAny, {
|
|
1389
1558
|
kind?: "audio" | undefined;
|
|
1390
1559
|
uid?: string | undefined;
|
|
1560
|
+
customType?: string | undefined;
|
|
1391
1561
|
}, {
|
|
1392
1562
|
kind?: "audio" | undefined;
|
|
1393
1563
|
uid?: string | undefined;
|
|
1564
|
+
customType?: string | undefined;
|
|
1394
1565
|
}>, z.ZodObject<{
|
|
1395
1566
|
kind: z.ZodOptional<z.ZodLiteral<"video">>;
|
|
1396
1567
|
codec: z.ZodOptional<z.ZodString>;
|
|
1397
1568
|
uid: z.ZodOptional<z.ZodString>;
|
|
1569
|
+
customType: z.ZodOptional<z.ZodString>;
|
|
1398
1570
|
}, "strip", z.ZodTypeAny, {
|
|
1399
1571
|
kind?: "video" | undefined;
|
|
1400
1572
|
codec?: string | undefined;
|
|
1401
1573
|
uid?: string | undefined;
|
|
1574
|
+
customType?: string | undefined;
|
|
1402
1575
|
}, {
|
|
1403
1576
|
kind?: "video" | undefined;
|
|
1404
1577
|
codec?: string | undefined;
|
|
1405
1578
|
uid?: string | undefined;
|
|
1579
|
+
customType?: string | undefined;
|
|
1406
1580
|
}>]>;
|
|
1407
1581
|
paused: z.ZodBoolean;
|
|
1408
1582
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1410,17 +1584,21 @@ export declare const RoomNotificationsRpc: {
|
|
|
1410
1584
|
properties: ({
|
|
1411
1585
|
kind?: "audio" | undefined;
|
|
1412
1586
|
uid?: string | undefined;
|
|
1587
|
+
customType?: string | undefined;
|
|
1413
1588
|
} | {
|
|
1414
1589
|
kind?: "video" | undefined;
|
|
1415
1590
|
codec?: string | undefined;
|
|
1416
1591
|
uid?: string | undefined;
|
|
1592
|
+
customType?: string | undefined;
|
|
1417
1593
|
}) & ({
|
|
1418
1594
|
kind?: "audio" | undefined;
|
|
1419
1595
|
uid?: string | undefined;
|
|
1596
|
+
customType?: string | undefined;
|
|
1420
1597
|
} | {
|
|
1421
1598
|
kind?: "video" | undefined;
|
|
1422
1599
|
codec?: string | undefined;
|
|
1423
1600
|
uid?: string | undefined;
|
|
1601
|
+
customType?: string | undefined;
|
|
1424
1602
|
} | undefined);
|
|
1425
1603
|
paused: boolean;
|
|
1426
1604
|
}, {
|
|
@@ -1428,17 +1606,21 @@ export declare const RoomNotificationsRpc: {
|
|
|
1428
1606
|
properties: ({
|
|
1429
1607
|
kind?: "audio" | undefined;
|
|
1430
1608
|
uid?: string | undefined;
|
|
1609
|
+
customType?: string | undefined;
|
|
1431
1610
|
} | {
|
|
1432
1611
|
kind?: "video" | undefined;
|
|
1433
1612
|
codec?: string | undefined;
|
|
1434
1613
|
uid?: string | undefined;
|
|
1614
|
+
customType?: string | undefined;
|
|
1435
1615
|
}) & ({
|
|
1436
1616
|
kind?: "audio" | undefined;
|
|
1437
1617
|
uid?: string | undefined;
|
|
1618
|
+
customType?: string | undefined;
|
|
1438
1619
|
} | {
|
|
1439
1620
|
kind?: "video" | undefined;
|
|
1440
1621
|
codec?: string | undefined;
|
|
1441
1622
|
uid?: string | undefined;
|
|
1623
|
+
customType?: string | undefined;
|
|
1442
1624
|
} | undefined);
|
|
1443
1625
|
paused: boolean;
|
|
1444
1626
|
}>, "many">;
|
|
@@ -1451,17 +1633,21 @@ export declare const RoomNotificationsRpc: {
|
|
|
1451
1633
|
properties: ({
|
|
1452
1634
|
kind?: "audio" | undefined;
|
|
1453
1635
|
uid?: string | undefined;
|
|
1636
|
+
customType?: string | undefined;
|
|
1454
1637
|
} | {
|
|
1455
1638
|
kind?: "video" | undefined;
|
|
1456
1639
|
codec?: string | undefined;
|
|
1457
1640
|
uid?: string | undefined;
|
|
1641
|
+
customType?: string | undefined;
|
|
1458
1642
|
}) & ({
|
|
1459
1643
|
kind?: "audio" | undefined;
|
|
1460
1644
|
uid?: string | undefined;
|
|
1645
|
+
customType?: string | undefined;
|
|
1461
1646
|
} | {
|
|
1462
1647
|
kind?: "video" | undefined;
|
|
1463
1648
|
codec?: string | undefined;
|
|
1464
1649
|
uid?: string | undefined;
|
|
1650
|
+
customType?: string | undefined;
|
|
1465
1651
|
} | undefined);
|
|
1466
1652
|
paused: boolean;
|
|
1467
1653
|
}[];
|
|
@@ -1474,17 +1660,21 @@ export declare const RoomNotificationsRpc: {
|
|
|
1474
1660
|
properties: ({
|
|
1475
1661
|
kind?: "audio" | undefined;
|
|
1476
1662
|
uid?: string | undefined;
|
|
1663
|
+
customType?: string | undefined;
|
|
1477
1664
|
} | {
|
|
1478
1665
|
kind?: "video" | undefined;
|
|
1479
1666
|
codec?: string | undefined;
|
|
1480
1667
|
uid?: string | undefined;
|
|
1668
|
+
customType?: string | undefined;
|
|
1481
1669
|
}) & ({
|
|
1482
1670
|
kind?: "audio" | undefined;
|
|
1483
1671
|
uid?: string | undefined;
|
|
1672
|
+
customType?: string | undefined;
|
|
1484
1673
|
} | {
|
|
1485
1674
|
kind?: "video" | undefined;
|
|
1486
1675
|
codec?: string | undefined;
|
|
1487
1676
|
uid?: string | undefined;
|
|
1677
|
+
customType?: string | undefined;
|
|
1488
1678
|
} | undefined);
|
|
1489
1679
|
paused: boolean;
|
|
1490
1680
|
}[];
|
|
@@ -1500,17 +1690,21 @@ export declare const RoomNotificationsRpc: {
|
|
|
1500
1690
|
properties: ({
|
|
1501
1691
|
kind?: "audio" | undefined;
|
|
1502
1692
|
uid?: string | undefined;
|
|
1693
|
+
customType?: string | undefined;
|
|
1503
1694
|
} | {
|
|
1504
1695
|
kind?: "video" | undefined;
|
|
1505
1696
|
codec?: string | undefined;
|
|
1506
1697
|
uid?: string | undefined;
|
|
1698
|
+
customType?: string | undefined;
|
|
1507
1699
|
}) & ({
|
|
1508
1700
|
kind?: "audio" | undefined;
|
|
1509
1701
|
uid?: string | undefined;
|
|
1702
|
+
customType?: string | undefined;
|
|
1510
1703
|
} | {
|
|
1511
1704
|
kind?: "video" | undefined;
|
|
1512
1705
|
codec?: string | undefined;
|
|
1513
1706
|
uid?: string | undefined;
|
|
1707
|
+
customType?: string | undefined;
|
|
1514
1708
|
} | undefined);
|
|
1515
1709
|
paused: boolean;
|
|
1516
1710
|
}[];
|
|
@@ -1526,17 +1720,21 @@ export declare const RoomNotificationsRpc: {
|
|
|
1526
1720
|
properties: ({
|
|
1527
1721
|
kind?: "audio" | undefined;
|
|
1528
1722
|
uid?: string | undefined;
|
|
1723
|
+
customType?: string | undefined;
|
|
1529
1724
|
} | {
|
|
1530
1725
|
kind?: "video" | undefined;
|
|
1531
1726
|
codec?: string | undefined;
|
|
1532
1727
|
uid?: string | undefined;
|
|
1728
|
+
customType?: string | undefined;
|
|
1533
1729
|
}) & ({
|
|
1534
1730
|
kind?: "audio" | undefined;
|
|
1535
1731
|
uid?: string | undefined;
|
|
1732
|
+
customType?: string | undefined;
|
|
1536
1733
|
} | {
|
|
1537
1734
|
kind?: "video" | undefined;
|
|
1538
1735
|
codec?: string | undefined;
|
|
1539
1736
|
uid?: string | undefined;
|
|
1737
|
+
customType?: string | undefined;
|
|
1540
1738
|
} | undefined);
|
|
1541
1739
|
paused: boolean;
|
|
1542
1740
|
}[];
|
|
@@ -1567,17 +1765,21 @@ export declare const RoomNotificationsRpc: {
|
|
|
1567
1765
|
properties: ({
|
|
1568
1766
|
kind?: "audio" | undefined;
|
|
1569
1767
|
uid?: string | undefined;
|
|
1768
|
+
customType?: string | undefined;
|
|
1570
1769
|
} | {
|
|
1571
1770
|
kind?: "video" | undefined;
|
|
1572
1771
|
codec?: string | undefined;
|
|
1573
1772
|
uid?: string | undefined;
|
|
1773
|
+
customType?: string | undefined;
|
|
1574
1774
|
}) & ({
|
|
1575
1775
|
kind?: "audio" | undefined;
|
|
1576
1776
|
uid?: string | undefined;
|
|
1777
|
+
customType?: string | undefined;
|
|
1577
1778
|
} | {
|
|
1578
1779
|
kind?: "video" | undefined;
|
|
1579
1780
|
codec?: string | undefined;
|
|
1580
1781
|
uid?: string | undefined;
|
|
1782
|
+
customType?: string | undefined;
|
|
1581
1783
|
} | undefined);
|
|
1582
1784
|
paused: boolean;
|
|
1583
1785
|
}[];
|
|
@@ -1602,17 +1804,21 @@ export declare const RoomNotificationsRpc: {
|
|
|
1602
1804
|
properties: ({
|
|
1603
1805
|
kind?: "audio" | undefined;
|
|
1604
1806
|
uid?: string | undefined;
|
|
1807
|
+
customType?: string | undefined;
|
|
1605
1808
|
} | {
|
|
1606
1809
|
kind?: "video" | undefined;
|
|
1607
1810
|
codec?: string | undefined;
|
|
1608
1811
|
uid?: string | undefined;
|
|
1812
|
+
customType?: string | undefined;
|
|
1609
1813
|
}) & ({
|
|
1610
1814
|
kind?: "audio" | undefined;
|
|
1611
1815
|
uid?: string | undefined;
|
|
1816
|
+
customType?: string | undefined;
|
|
1612
1817
|
} | {
|
|
1613
1818
|
kind?: "video" | undefined;
|
|
1614
1819
|
codec?: string | undefined;
|
|
1615
1820
|
uid?: string | undefined;
|
|
1821
|
+
customType?: string | undefined;
|
|
1616
1822
|
} | undefined);
|
|
1617
1823
|
paused: boolean;
|
|
1618
1824
|
}[];
|
|
@@ -1637,17 +1843,21 @@ export declare const RoomNotificationsRpc: {
|
|
|
1637
1843
|
properties: ({
|
|
1638
1844
|
kind?: "audio" | undefined;
|
|
1639
1845
|
uid?: string | undefined;
|
|
1846
|
+
customType?: string | undefined;
|
|
1640
1847
|
} | {
|
|
1641
1848
|
kind?: "video" | undefined;
|
|
1642
1849
|
codec?: string | undefined;
|
|
1643
1850
|
uid?: string | undefined;
|
|
1851
|
+
customType?: string | undefined;
|
|
1644
1852
|
}) & ({
|
|
1645
1853
|
kind?: "audio" | undefined;
|
|
1646
1854
|
uid?: string | undefined;
|
|
1855
|
+
customType?: string | undefined;
|
|
1647
1856
|
} | {
|
|
1648
1857
|
kind?: "video" | undefined;
|
|
1649
1858
|
codec?: string | undefined;
|
|
1650
1859
|
uid?: string | undefined;
|
|
1860
|
+
customType?: string | undefined;
|
|
1651
1861
|
} | undefined);
|
|
1652
1862
|
paused: boolean;
|
|
1653
1863
|
}[];
|
|
@@ -1672,17 +1882,21 @@ export declare const RoomNotificationsRpc: {
|
|
|
1672
1882
|
properties: ({
|
|
1673
1883
|
kind?: "audio" | undefined;
|
|
1674
1884
|
uid?: string | undefined;
|
|
1885
|
+
customType?: string | undefined;
|
|
1675
1886
|
} | {
|
|
1676
1887
|
kind?: "video" | undefined;
|
|
1677
1888
|
codec?: string | undefined;
|
|
1678
1889
|
uid?: string | undefined;
|
|
1890
|
+
customType?: string | undefined;
|
|
1679
1891
|
}) & ({
|
|
1680
1892
|
kind?: "audio" | undefined;
|
|
1681
1893
|
uid?: string | undefined;
|
|
1894
|
+
customType?: string | undefined;
|
|
1682
1895
|
} | {
|
|
1683
1896
|
kind?: "video" | undefined;
|
|
1684
1897
|
codec?: string | undefined;
|
|
1685
1898
|
uid?: string | undefined;
|
|
1899
|
+
customType?: string | undefined;
|
|
1686
1900
|
} | undefined);
|
|
1687
1901
|
paused: boolean;
|
|
1688
1902
|
}[];
|
|
@@ -1712,24 +1926,30 @@ export declare const RoomNotificationsRpc: {
|
|
|
1712
1926
|
properties: z.ZodUnion<[z.ZodObject<{
|
|
1713
1927
|
kind: z.ZodOptional<z.ZodLiteral<"audio">>;
|
|
1714
1928
|
uid: z.ZodOptional<z.ZodString>;
|
|
1929
|
+
customType: z.ZodOptional<z.ZodString>;
|
|
1715
1930
|
}, "strip", z.ZodTypeAny, {
|
|
1716
1931
|
kind?: "audio" | undefined;
|
|
1717
1932
|
uid?: string | undefined;
|
|
1933
|
+
customType?: string | undefined;
|
|
1718
1934
|
}, {
|
|
1719
1935
|
kind?: "audio" | undefined;
|
|
1720
1936
|
uid?: string | undefined;
|
|
1937
|
+
customType?: string | undefined;
|
|
1721
1938
|
}>, z.ZodObject<{
|
|
1722
1939
|
kind: z.ZodOptional<z.ZodLiteral<"video">>;
|
|
1723
1940
|
codec: z.ZodOptional<z.ZodString>;
|
|
1724
1941
|
uid: z.ZodOptional<z.ZodString>;
|
|
1942
|
+
customType: z.ZodOptional<z.ZodString>;
|
|
1725
1943
|
}, "strip", z.ZodTypeAny, {
|
|
1726
1944
|
kind?: "video" | undefined;
|
|
1727
1945
|
codec?: string | undefined;
|
|
1728
1946
|
uid?: string | undefined;
|
|
1947
|
+
customType?: string | undefined;
|
|
1729
1948
|
}, {
|
|
1730
1949
|
kind?: "video" | undefined;
|
|
1731
1950
|
codec?: string | undefined;
|
|
1732
1951
|
uid?: string | undefined;
|
|
1952
|
+
customType?: string | undefined;
|
|
1733
1953
|
}>]>;
|
|
1734
1954
|
paused: z.ZodBoolean;
|
|
1735
1955
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1737,17 +1957,21 @@ export declare const RoomNotificationsRpc: {
|
|
|
1737
1957
|
properties: ({
|
|
1738
1958
|
kind?: "audio" | undefined;
|
|
1739
1959
|
uid?: string | undefined;
|
|
1960
|
+
customType?: string | undefined;
|
|
1740
1961
|
} | {
|
|
1741
1962
|
kind?: "video" | undefined;
|
|
1742
1963
|
codec?: string | undefined;
|
|
1743
1964
|
uid?: string | undefined;
|
|
1965
|
+
customType?: string | undefined;
|
|
1744
1966
|
}) & ({
|
|
1745
1967
|
kind?: "audio" | undefined;
|
|
1746
1968
|
uid?: string | undefined;
|
|
1969
|
+
customType?: string | undefined;
|
|
1747
1970
|
} | {
|
|
1748
1971
|
kind?: "video" | undefined;
|
|
1749
1972
|
codec?: string | undefined;
|
|
1750
1973
|
uid?: string | undefined;
|
|
1974
|
+
customType?: string | undefined;
|
|
1751
1975
|
} | undefined);
|
|
1752
1976
|
paused: boolean;
|
|
1753
1977
|
}, {
|
|
@@ -1755,17 +1979,21 @@ export declare const RoomNotificationsRpc: {
|
|
|
1755
1979
|
properties: ({
|
|
1756
1980
|
kind?: "audio" | undefined;
|
|
1757
1981
|
uid?: string | undefined;
|
|
1982
|
+
customType?: string | undefined;
|
|
1758
1983
|
} | {
|
|
1759
1984
|
kind?: "video" | undefined;
|
|
1760
1985
|
codec?: string | undefined;
|
|
1761
1986
|
uid?: string | undefined;
|
|
1987
|
+
customType?: string | undefined;
|
|
1762
1988
|
}) & ({
|
|
1763
1989
|
kind?: "audio" | undefined;
|
|
1764
1990
|
uid?: string | undefined;
|
|
1991
|
+
customType?: string | undefined;
|
|
1765
1992
|
} | {
|
|
1766
1993
|
kind?: "video" | undefined;
|
|
1767
1994
|
codec?: string | undefined;
|
|
1768
1995
|
uid?: string | undefined;
|
|
1996
|
+
customType?: string | undefined;
|
|
1769
1997
|
} | undefined);
|
|
1770
1998
|
paused: boolean;
|
|
1771
1999
|
}>;
|
|
@@ -1777,17 +2005,21 @@ export declare const RoomNotificationsRpc: {
|
|
|
1777
2005
|
properties: ({
|
|
1778
2006
|
kind?: "audio" | undefined;
|
|
1779
2007
|
uid?: string | undefined;
|
|
2008
|
+
customType?: string | undefined;
|
|
1780
2009
|
} | {
|
|
1781
2010
|
kind?: "video" | undefined;
|
|
1782
2011
|
codec?: string | undefined;
|
|
1783
2012
|
uid?: string | undefined;
|
|
2013
|
+
customType?: string | undefined;
|
|
1784
2014
|
}) & ({
|
|
1785
2015
|
kind?: "audio" | undefined;
|
|
1786
2016
|
uid?: string | undefined;
|
|
2017
|
+
customType?: string | undefined;
|
|
1787
2018
|
} | {
|
|
1788
2019
|
kind?: "video" | undefined;
|
|
1789
2020
|
codec?: string | undefined;
|
|
1790
2021
|
uid?: string | undefined;
|
|
2022
|
+
customType?: string | undefined;
|
|
1791
2023
|
} | undefined);
|
|
1792
2024
|
paused: boolean;
|
|
1793
2025
|
};
|
|
@@ -1799,17 +2031,21 @@ export declare const RoomNotificationsRpc: {
|
|
|
1799
2031
|
properties: ({
|
|
1800
2032
|
kind?: "audio" | undefined;
|
|
1801
2033
|
uid?: string | undefined;
|
|
2034
|
+
customType?: string | undefined;
|
|
1802
2035
|
} | {
|
|
1803
2036
|
kind?: "video" | undefined;
|
|
1804
2037
|
codec?: string | undefined;
|
|
1805
2038
|
uid?: string | undefined;
|
|
2039
|
+
customType?: string | undefined;
|
|
1806
2040
|
}) & ({
|
|
1807
2041
|
kind?: "audio" | undefined;
|
|
1808
2042
|
uid?: string | undefined;
|
|
2043
|
+
customType?: string | undefined;
|
|
1809
2044
|
} | {
|
|
1810
2045
|
kind?: "video" | undefined;
|
|
1811
2046
|
codec?: string | undefined;
|
|
1812
2047
|
uid?: string | undefined;
|
|
2048
|
+
customType?: string | undefined;
|
|
1813
2049
|
} | undefined);
|
|
1814
2050
|
paused: boolean;
|
|
1815
2051
|
};
|