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