camstreamerlib 4.0.0-beta.113 → 4.0.0-beta.115

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.
Files changed (53) hide show
  1. package/cjs/CamStreamerAPI.d.ts +44 -22
  2. package/cjs/types/CamStreamerAPI/CamStreamerAPI.d.ts +278 -99
  3. package/cjs/types/CamStreamerAPI/churchSchema.d.ts +5 -0
  4. package/cjs/types/CamStreamerAPI/daCastSchema.d.ts +5 -0
  5. package/cjs/types/CamStreamerAPI/dailymotionSchema.d.ts +5 -0
  6. package/cjs/types/CamStreamerAPI/facebookSchema.d.ts +5 -0
  7. package/cjs/types/CamStreamerAPI/gameChangerSchema.d.ts +5 -0
  8. package/cjs/types/CamStreamerAPI/hlsPullSchema.d.ts +5 -0
  9. package/cjs/types/CamStreamerAPI/hlsPushSchema.d.ts +5 -0
  10. package/cjs/types/CamStreamerAPI/ibmSchema.d.ts +5 -0
  11. package/cjs/types/CamStreamerAPI/microsoftAzureSchema.d.ts +5 -0
  12. package/cjs/types/CamStreamerAPI/microsoftStreamSchema.d.ts +5 -0
  13. package/cjs/types/CamStreamerAPI/mpegDvbSchema.d.ts +11 -33
  14. package/cjs/types/CamStreamerAPI/mpegDvbSchema.js +2 -11
  15. package/cjs/types/CamStreamerAPI/oldStreamSchema.d.ts +6 -6
  16. package/cjs/types/CamStreamerAPI/rtmpSchema.d.ts +10 -0
  17. package/cjs/types/CamStreamerAPI/sdCardSchema.d.ts +5 -0
  18. package/cjs/types/CamStreamerAPI/srtSchema.d.ts +5 -0
  19. package/cjs/types/CamStreamerAPI/streamCommonTypes.d.ts +8 -0
  20. package/cjs/types/CamStreamerAPI/streamCommonTypes.js +6 -1
  21. package/cjs/types/CamStreamerAPI/twitchSchema.d.ts +5 -0
  22. package/cjs/types/CamStreamerAPI/vimeoSchema.d.ts +5 -0
  23. package/cjs/types/CamStreamerAPI/windySchema.d.ts +5 -0
  24. package/cjs/types/CamStreamerAPI/wowzaSchema.d.ts +5 -0
  25. package/cjs/types/CamStreamerAPI/youtubeRtmpSchema.d.ts +5 -0
  26. package/cjs/types/CamStreamerAPI/youtubeSchema.d.ts +5 -0
  27. package/esm/types/CamStreamerAPI/mpegDvbSchema.js +2 -11
  28. package/esm/types/CamStreamerAPI/streamCommonTypes.js +6 -1
  29. package/package.json +1 -1
  30. package/types/CamStreamerAPI.d.ts +44 -22
  31. package/types/types/CamStreamerAPI/CamStreamerAPI.d.ts +278 -99
  32. package/types/types/CamStreamerAPI/churchSchema.d.ts +5 -0
  33. package/types/types/CamStreamerAPI/daCastSchema.d.ts +5 -0
  34. package/types/types/CamStreamerAPI/dailymotionSchema.d.ts +5 -0
  35. package/types/types/CamStreamerAPI/facebookSchema.d.ts +5 -0
  36. package/types/types/CamStreamerAPI/gameChangerSchema.d.ts +5 -0
  37. package/types/types/CamStreamerAPI/hlsPullSchema.d.ts +5 -0
  38. package/types/types/CamStreamerAPI/hlsPushSchema.d.ts +5 -0
  39. package/types/types/CamStreamerAPI/ibmSchema.d.ts +5 -0
  40. package/types/types/CamStreamerAPI/microsoftAzureSchema.d.ts +5 -0
  41. package/types/types/CamStreamerAPI/microsoftStreamSchema.d.ts +5 -0
  42. package/types/types/CamStreamerAPI/mpegDvbSchema.d.ts +11 -33
  43. package/types/types/CamStreamerAPI/oldStreamSchema.d.ts +6 -6
  44. package/types/types/CamStreamerAPI/rtmpSchema.d.ts +10 -0
  45. package/types/types/CamStreamerAPI/sdCardSchema.d.ts +5 -0
  46. package/types/types/CamStreamerAPI/srtSchema.d.ts +5 -0
  47. package/types/types/CamStreamerAPI/streamCommonTypes.d.ts +8 -0
  48. package/types/types/CamStreamerAPI/twitchSchema.d.ts +5 -0
  49. package/types/types/CamStreamerAPI/vimeoSchema.d.ts +5 -0
  50. package/types/types/CamStreamerAPI/windySchema.d.ts +5 -0
  51. package/types/types/CamStreamerAPI/wowzaSchema.d.ts +5 -0
  52. package/types/types/CamStreamerAPI/youtubeRtmpSchema.d.ts +5 -0
  53. package/types/types/CamStreamerAPI/youtubeSchema.d.ts +5 -0
@@ -38,12 +38,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
38
38
  type: z.ZodLiteral<"onetime">;
39
39
  startTime: z.ZodNumber;
40
40
  stopTime: z.ZodNumber;
41
+ ioPort: z.ZodNullable<z.ZodString>;
41
42
  }, "strip", z.ZodTypeAny, {
42
43
  type: "onetime";
44
+ ioPort: string | null;
43
45
  startTime: number;
44
46
  stopTime: number;
45
47
  }, {
46
48
  type: "onetime";
49
+ ioPort: string | null;
47
50
  startTime: number;
48
51
  stopTime: number;
49
52
  }>, z.ZodObject<{
@@ -269,6 +272,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
269
272
  ioPort: string | null;
270
273
  } | {
271
274
  type: "onetime";
275
+ ioPort: string | null;
272
276
  startTime: number;
273
277
  stopTime: number;
274
278
  } | {
@@ -335,6 +339,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
335
339
  ioPort: string | null;
336
340
  } | {
337
341
  type: "onetime";
342
+ ioPort: string | null;
338
343
  startTime: number;
339
344
  stopTime: number;
340
345
  } | {
@@ -375,12 +380,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
375
380
  type: z.ZodLiteral<"onetime">;
376
381
  startTime: z.ZodNumber;
377
382
  stopTime: z.ZodNumber;
383
+ ioPort: z.ZodNullable<z.ZodString>;
378
384
  }, "strip", z.ZodTypeAny, {
379
385
  type: "onetime";
386
+ ioPort: string | null;
380
387
  startTime: number;
381
388
  stopTime: number;
382
389
  }, {
383
390
  type: "onetime";
391
+ ioPort: string | null;
384
392
  startTime: number;
385
393
  stopTime: number;
386
394
  }>, z.ZodObject<{
@@ -539,17 +547,8 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
539
547
  type: z.ZodLiteral<"mpeg_dvb">;
540
548
  ipAddress: z.ZodString;
541
549
  port: z.ZodNumber;
542
- standard: z.ZodEnum<["DVB", "ATSC"]>;
543
- nullPacketsPaddingEnabled: z.ZodBoolean;
544
- nullPacketsPaddingKbps: z.ZodNumber;
545
- videoPid: z.ZodNumber;
546
- audioPid: z.ZodNumber;
547
- mpegtsStreamId: z.ZodNumber;
548
- pmtPid: z.ZodNumber;
549
- pcrPid: z.ZodNumber;
550
- pcrPeriodMs: z.ZodNumber;
551
- providerName: z.ZodString;
552
- serviceName: z.ZodString;
550
+ outputUrl: z.ZodString;
551
+ outputParameters: z.ZodString;
553
552
  statusCameraLed: z.ZodBoolean;
554
553
  statusCameraOutput: z.ZodNullable<z.ZodString>;
555
554
  saveToSdCard: z.ZodBoolean;
@@ -591,6 +590,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
591
590
  ioPort: string | null;
592
591
  } | {
593
592
  type: "onetime";
593
+ ioPort: string | null;
594
594
  startTime: number;
595
595
  stopTime: number;
596
596
  } | {
@@ -611,17 +611,8 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
611
611
  statusCameraLed: boolean;
612
612
  statusCameraOutput: string | null;
613
613
  ipAddress: string;
614
- standard: "DVB" | "ATSC";
615
- nullPacketsPaddingEnabled: boolean;
616
- nullPacketsPaddingKbps: number;
617
- videoPid: number;
618
- audioPid: number;
619
- mpegtsStreamId: number;
620
- pmtPid: number;
621
- pcrPid: number;
622
- pcrPeriodMs: number;
623
- providerName: string;
624
- serviceName: string;
614
+ outputUrl: string;
615
+ outputParameters: string;
625
616
  }, {
626
617
  type: "mpeg_dvb";
627
618
  audio: {
@@ -660,6 +651,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
660
651
  ioPort: string | null;
661
652
  } | {
662
653
  type: "onetime";
654
+ ioPort: string | null;
663
655
  startTime: number;
664
656
  stopTime: number;
665
657
  } | {
@@ -680,17 +672,8 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
680
672
  statusCameraLed: boolean;
681
673
  statusCameraOutput: string | null;
682
674
  ipAddress: string;
683
- standard: "DVB" | "ATSC";
684
- nullPacketsPaddingEnabled: boolean;
685
- nullPacketsPaddingKbps: number;
686
- videoPid: number;
687
- audioPid: number;
688
- mpegtsStreamId: number;
689
- pmtPid: number;
690
- pcrPid: number;
691
- pcrPeriodMs: number;
692
- providerName: string;
693
- serviceName: string;
675
+ outputUrl: string;
676
+ outputParameters: string;
694
677
  }>, z.ZodObject<{
695
678
  id: z.ZodNumber;
696
679
  enabled: z.ZodBoolean;
@@ -709,12 +692,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
709
692
  type: z.ZodLiteral<"onetime">;
710
693
  startTime: z.ZodNumber;
711
694
  stopTime: z.ZodNumber;
695
+ ioPort: z.ZodNullable<z.ZodString>;
712
696
  }, "strip", z.ZodTypeAny, {
713
697
  type: "onetime";
698
+ ioPort: string | null;
714
699
  startTime: number;
715
700
  stopTime: number;
716
701
  }, {
717
702
  type: "onetime";
703
+ ioPort: string | null;
718
704
  startTime: number;
719
705
  stopTime: number;
720
706
  }>, z.ZodObject<{
@@ -915,6 +901,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
915
901
  ioPort: string | null;
916
902
  } | {
917
903
  type: "onetime";
904
+ ioPort: string | null;
918
905
  startTime: number;
919
906
  stopTime: number;
920
907
  } | {
@@ -974,6 +961,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
974
961
  ioPort: string | null;
975
962
  } | {
976
963
  type: "onetime";
964
+ ioPort: string | null;
977
965
  startTime: number;
978
966
  stopTime: number;
979
967
  } | {
@@ -1014,12 +1002,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
1014
1002
  type: z.ZodLiteral<"onetime">;
1015
1003
  startTime: z.ZodNumber;
1016
1004
  stopTime: z.ZodNumber;
1005
+ ioPort: z.ZodNullable<z.ZodString>;
1017
1006
  }, "strip", z.ZodTypeAny, {
1018
1007
  type: "onetime";
1008
+ ioPort: string | null;
1019
1009
  startTime: number;
1020
1010
  stopTime: number;
1021
1011
  }, {
1022
1012
  type: "onetime";
1013
+ ioPort: string | null;
1023
1014
  startTime: number;
1024
1015
  stopTime: number;
1025
1016
  }>, z.ZodObject<{
@@ -1213,6 +1204,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
1213
1204
  ioPort: string | null;
1214
1205
  } | {
1215
1206
  type: "onetime";
1207
+ ioPort: string | null;
1216
1208
  startTime: number;
1217
1209
  stopTime: number;
1218
1210
  } | {
@@ -1266,6 +1258,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
1266
1258
  ioPort: string | null;
1267
1259
  } | {
1268
1260
  type: "onetime";
1261
+ ioPort: string | null;
1269
1262
  startTime: number;
1270
1263
  stopTime: number;
1271
1264
  } | {
@@ -1300,12 +1293,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
1300
1293
  type: z.ZodLiteral<"onetime">;
1301
1294
  startTime: z.ZodNumber;
1302
1295
  stopTime: z.ZodNumber;
1296
+ ioPort: z.ZodNullable<z.ZodString>;
1303
1297
  }, "strip", z.ZodTypeAny, {
1304
1298
  type: "onetime";
1299
+ ioPort: string | null;
1305
1300
  startTime: number;
1306
1301
  stopTime: number;
1307
1302
  }, {
1308
1303
  type: "onetime";
1304
+ ioPort: string | null;
1309
1305
  startTime: number;
1310
1306
  stopTime: number;
1311
1307
  }>, z.ZodObject<{
@@ -1499,6 +1495,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
1499
1495
  ioPort: string | null;
1500
1496
  } | {
1501
1497
  type: "onetime";
1498
+ ioPort: string | null;
1502
1499
  startTime: number;
1503
1500
  stopTime: number;
1504
1501
  } | {
@@ -1552,6 +1549,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
1552
1549
  ioPort: string | null;
1553
1550
  } | {
1554
1551
  type: "onetime";
1552
+ ioPort: string | null;
1555
1553
  startTime: number;
1556
1554
  stopTime: number;
1557
1555
  } | {
@@ -1586,12 +1584,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
1586
1584
  type: z.ZodLiteral<"onetime">;
1587
1585
  startTime: z.ZodNumber;
1588
1586
  stopTime: z.ZodNumber;
1587
+ ioPort: z.ZodNullable<z.ZodString>;
1589
1588
  }, "strip", z.ZodTypeAny, {
1590
1589
  type: "onetime";
1590
+ ioPort: string | null;
1591
1591
  startTime: number;
1592
1592
  stopTime: number;
1593
1593
  }, {
1594
1594
  type: "onetime";
1595
+ ioPort: string | null;
1595
1596
  startTime: number;
1596
1597
  stopTime: number;
1597
1598
  }>, z.ZodObject<{
@@ -1799,6 +1800,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
1799
1800
  ioPort: string | null;
1800
1801
  } | {
1801
1802
  type: "onetime";
1803
+ ioPort: string | null;
1802
1804
  startTime: number;
1803
1805
  stopTime: number;
1804
1806
  } | {
@@ -1866,6 +1868,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
1866
1868
  ioPort: string | null;
1867
1869
  } | {
1868
1870
  type: "onetime";
1871
+ ioPort: string | null;
1869
1872
  startTime: number;
1870
1873
  stopTime: number;
1871
1874
  } | {
@@ -1914,12 +1917,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
1914
1917
  type: z.ZodLiteral<"onetime">;
1915
1918
  startTime: z.ZodNumber;
1916
1919
  stopTime: z.ZodNumber;
1920
+ ioPort: z.ZodNullable<z.ZodString>;
1917
1921
  }, "strip", z.ZodTypeAny, {
1918
1922
  type: "onetime";
1923
+ ioPort: string | null;
1919
1924
  startTime: number;
1920
1925
  stopTime: number;
1921
1926
  }, {
1922
1927
  type: "onetime";
1928
+ ioPort: string | null;
1923
1929
  startTime: number;
1924
1930
  stopTime: number;
1925
1931
  }>, z.ZodObject<{
@@ -2113,6 +2119,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
2113
2119
  ioPort: string | null;
2114
2120
  } | {
2115
2121
  type: "onetime";
2122
+ ioPort: string | null;
2116
2123
  startTime: number;
2117
2124
  stopTime: number;
2118
2125
  } | {
@@ -2166,6 +2173,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
2166
2173
  ioPort: string | null;
2167
2174
  } | {
2168
2175
  type: "onetime";
2176
+ ioPort: string | null;
2169
2177
  startTime: number;
2170
2178
  stopTime: number;
2171
2179
  } | {
@@ -2200,12 +2208,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
2200
2208
  type: z.ZodLiteral<"onetime">;
2201
2209
  startTime: z.ZodNumber;
2202
2210
  stopTime: z.ZodNumber;
2211
+ ioPort: z.ZodNullable<z.ZodString>;
2203
2212
  }, "strip", z.ZodTypeAny, {
2204
2213
  type: "onetime";
2214
+ ioPort: string | null;
2205
2215
  startTime: number;
2206
2216
  stopTime: number;
2207
2217
  }, {
2208
2218
  type: "onetime";
2219
+ ioPort: string | null;
2209
2220
  startTime: number;
2210
2221
  stopTime: number;
2211
2222
  }>, z.ZodObject<{
@@ -2399,6 +2410,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
2399
2410
  ioPort: string | null;
2400
2411
  } | {
2401
2412
  type: "onetime";
2413
+ ioPort: string | null;
2402
2414
  startTime: number;
2403
2415
  stopTime: number;
2404
2416
  } | {
@@ -2452,6 +2464,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
2452
2464
  ioPort: string | null;
2453
2465
  } | {
2454
2466
  type: "onetime";
2467
+ ioPort: string | null;
2455
2468
  startTime: number;
2456
2469
  stopTime: number;
2457
2470
  } | {
@@ -2486,12 +2499,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
2486
2499
  type: z.ZodLiteral<"onetime">;
2487
2500
  startTime: z.ZodNumber;
2488
2501
  stopTime: z.ZodNumber;
2502
+ ioPort: z.ZodNullable<z.ZodString>;
2489
2503
  }, "strip", z.ZodTypeAny, {
2490
2504
  type: "onetime";
2505
+ ioPort: string | null;
2491
2506
  startTime: number;
2492
2507
  stopTime: number;
2493
2508
  }, {
2494
2509
  type: "onetime";
2510
+ ioPort: string | null;
2495
2511
  startTime: number;
2496
2512
  stopTime: number;
2497
2513
  }>, z.ZodObject<{
@@ -2685,6 +2701,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
2685
2701
  ioPort: string | null;
2686
2702
  } | {
2687
2703
  type: "onetime";
2704
+ ioPort: string | null;
2688
2705
  startTime: number;
2689
2706
  stopTime: number;
2690
2707
  } | {
@@ -2738,6 +2755,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
2738
2755
  ioPort: string | null;
2739
2756
  } | {
2740
2757
  type: "onetime";
2758
+ ioPort: string | null;
2741
2759
  startTime: number;
2742
2760
  stopTime: number;
2743
2761
  } | {
@@ -2772,12 +2790,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
2772
2790
  type: z.ZodLiteral<"onetime">;
2773
2791
  startTime: z.ZodNumber;
2774
2792
  stopTime: z.ZodNumber;
2793
+ ioPort: z.ZodNullable<z.ZodString>;
2775
2794
  }, "strip", z.ZodTypeAny, {
2776
2795
  type: "onetime";
2796
+ ioPort: string | null;
2777
2797
  startTime: number;
2778
2798
  stopTime: number;
2779
2799
  }, {
2780
2800
  type: "onetime";
2801
+ ioPort: string | null;
2781
2802
  startTime: number;
2782
2803
  stopTime: number;
2783
2804
  }>, z.ZodObject<{
@@ -2971,6 +2992,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
2971
2992
  ioPort: string | null;
2972
2993
  } | {
2973
2994
  type: "onetime";
2995
+ ioPort: string | null;
2974
2996
  startTime: number;
2975
2997
  stopTime: number;
2976
2998
  } | {
@@ -3024,6 +3046,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
3024
3046
  ioPort: string | null;
3025
3047
  } | {
3026
3048
  type: "onetime";
3049
+ ioPort: string | null;
3027
3050
  startTime: number;
3028
3051
  stopTime: number;
3029
3052
  } | {
@@ -3058,12 +3081,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
3058
3081
  type: z.ZodLiteral<"onetime">;
3059
3082
  startTime: z.ZodNumber;
3060
3083
  stopTime: z.ZodNumber;
3084
+ ioPort: z.ZodNullable<z.ZodString>;
3061
3085
  }, "strip", z.ZodTypeAny, {
3062
3086
  type: "onetime";
3087
+ ioPort: string | null;
3063
3088
  startTime: number;
3064
3089
  stopTime: number;
3065
3090
  }, {
3066
3091
  type: "onetime";
3092
+ ioPort: string | null;
3067
3093
  startTime: number;
3068
3094
  stopTime: number;
3069
3095
  }>, z.ZodObject<{
@@ -3257,6 +3283,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
3257
3283
  ioPort: string | null;
3258
3284
  } | {
3259
3285
  type: "onetime";
3286
+ ioPort: string | null;
3260
3287
  startTime: number;
3261
3288
  stopTime: number;
3262
3289
  } | {
@@ -3310,6 +3337,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
3310
3337
  ioPort: string | null;
3311
3338
  } | {
3312
3339
  type: "onetime";
3340
+ ioPort: string | null;
3313
3341
  startTime: number;
3314
3342
  stopTime: number;
3315
3343
  } | {
@@ -3344,12 +3372,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
3344
3372
  type: z.ZodLiteral<"onetime">;
3345
3373
  startTime: z.ZodNumber;
3346
3374
  stopTime: z.ZodNumber;
3375
+ ioPort: z.ZodNullable<z.ZodString>;
3347
3376
  }, "strip", z.ZodTypeAny, {
3348
3377
  type: "onetime";
3378
+ ioPort: string | null;
3349
3379
  startTime: number;
3350
3380
  stopTime: number;
3351
3381
  }, {
3352
3382
  type: "onetime";
3383
+ ioPort: string | null;
3353
3384
  startTime: number;
3354
3385
  stopTime: number;
3355
3386
  }>, z.ZodObject<{
@@ -3543,6 +3574,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
3543
3574
  ioPort: string | null;
3544
3575
  } | {
3545
3576
  type: "onetime";
3577
+ ioPort: string | null;
3546
3578
  startTime: number;
3547
3579
  stopTime: number;
3548
3580
  } | {
@@ -3596,6 +3628,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
3596
3628
  ioPort: string | null;
3597
3629
  } | {
3598
3630
  type: "onetime";
3631
+ ioPort: string | null;
3599
3632
  startTime: number;
3600
3633
  stopTime: number;
3601
3634
  } | {
@@ -3630,12 +3663,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
3630
3663
  type: z.ZodLiteral<"onetime">;
3631
3664
  startTime: z.ZodNumber;
3632
3665
  stopTime: z.ZodNumber;
3666
+ ioPort: z.ZodNullable<z.ZodString>;
3633
3667
  }, "strip", z.ZodTypeAny, {
3634
3668
  type: "onetime";
3669
+ ioPort: string | null;
3635
3670
  startTime: number;
3636
3671
  stopTime: number;
3637
3672
  }, {
3638
3673
  type: "onetime";
3674
+ ioPort: string | null;
3639
3675
  startTime: number;
3640
3676
  stopTime: number;
3641
3677
  }>, z.ZodObject<{
@@ -3829,6 +3865,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
3829
3865
  ioPort: string | null;
3830
3866
  } | {
3831
3867
  type: "onetime";
3868
+ ioPort: string | null;
3832
3869
  startTime: number;
3833
3870
  stopTime: number;
3834
3871
  } | {
@@ -3882,6 +3919,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
3882
3919
  ioPort: string | null;
3883
3920
  } | {
3884
3921
  type: "onetime";
3922
+ ioPort: string | null;
3885
3923
  startTime: number;
3886
3924
  stopTime: number;
3887
3925
  } | {
@@ -3916,12 +3954,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
3916
3954
  type: z.ZodLiteral<"onetime">;
3917
3955
  startTime: z.ZodNumber;
3918
3956
  stopTime: z.ZodNumber;
3957
+ ioPort: z.ZodNullable<z.ZodString>;
3919
3958
  }, "strip", z.ZodTypeAny, {
3920
3959
  type: "onetime";
3960
+ ioPort: string | null;
3921
3961
  startTime: number;
3922
3962
  stopTime: number;
3923
3963
  }, {
3924
3964
  type: "onetime";
3965
+ ioPort: string | null;
3925
3966
  startTime: number;
3926
3967
  stopTime: number;
3927
3968
  }>, z.ZodObject<{
@@ -4115,6 +4156,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
4115
4156
  ioPort: string | null;
4116
4157
  } | {
4117
4158
  type: "onetime";
4159
+ ioPort: string | null;
4118
4160
  startTime: number;
4119
4161
  stopTime: number;
4120
4162
  } | {
@@ -4168,6 +4210,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
4168
4210
  ioPort: string | null;
4169
4211
  } | {
4170
4212
  type: "onetime";
4213
+ ioPort: string | null;
4171
4214
  startTime: number;
4172
4215
  stopTime: number;
4173
4216
  } | {
@@ -4202,12 +4245,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
4202
4245
  type: z.ZodLiteral<"onetime">;
4203
4246
  startTime: z.ZodNumber;
4204
4247
  stopTime: z.ZodNumber;
4248
+ ioPort: z.ZodNullable<z.ZodString>;
4205
4249
  }, "strip", z.ZodTypeAny, {
4206
4250
  type: "onetime";
4251
+ ioPort: string | null;
4207
4252
  startTime: number;
4208
4253
  stopTime: number;
4209
4254
  }, {
4210
4255
  type: "onetime";
4256
+ ioPort: string | null;
4211
4257
  startTime: number;
4212
4258
  stopTime: number;
4213
4259
  }>, z.ZodObject<{
@@ -4401,6 +4447,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
4401
4447
  ioPort: string | null;
4402
4448
  } | {
4403
4449
  type: "onetime";
4450
+ ioPort: string | null;
4404
4451
  startTime: number;
4405
4452
  stopTime: number;
4406
4453
  } | {
@@ -4454,6 +4501,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
4454
4501
  ioPort: string | null;
4455
4502
  } | {
4456
4503
  type: "onetime";
4504
+ ioPort: string | null;
4457
4505
  startTime: number;
4458
4506
  stopTime: number;
4459
4507
  } | {
@@ -4488,12 +4536,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
4488
4536
  type: z.ZodLiteral<"onetime">;
4489
4537
  startTime: z.ZodNumber;
4490
4538
  stopTime: z.ZodNumber;
4539
+ ioPort: z.ZodNullable<z.ZodString>;
4491
4540
  }, "strip", z.ZodTypeAny, {
4492
4541
  type: "onetime";
4542
+ ioPort: string | null;
4493
4543
  startTime: number;
4494
4544
  stopTime: number;
4495
4545
  }, {
4496
4546
  type: "onetime";
4547
+ ioPort: string | null;
4497
4548
  startTime: number;
4498
4549
  stopTime: number;
4499
4550
  }>, z.ZodObject<{
@@ -4687,6 +4738,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
4687
4738
  ioPort: string | null;
4688
4739
  } | {
4689
4740
  type: "onetime";
4741
+ ioPort: string | null;
4690
4742
  startTime: number;
4691
4743
  stopTime: number;
4692
4744
  } | {
@@ -4740,6 +4792,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
4740
4792
  ioPort: string | null;
4741
4793
  } | {
4742
4794
  type: "onetime";
4795
+ ioPort: string | null;
4743
4796
  startTime: number;
4744
4797
  stopTime: number;
4745
4798
  } | {
@@ -4774,12 +4827,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
4774
4827
  type: z.ZodLiteral<"onetime">;
4775
4828
  startTime: z.ZodNumber;
4776
4829
  stopTime: z.ZodNumber;
4830
+ ioPort: z.ZodNullable<z.ZodString>;
4777
4831
  }, "strip", z.ZodTypeAny, {
4778
4832
  type: "onetime";
4833
+ ioPort: string | null;
4779
4834
  startTime: number;
4780
4835
  stopTime: number;
4781
4836
  }, {
4782
4837
  type: "onetime";
4838
+ ioPort: string | null;
4783
4839
  startTime: number;
4784
4840
  stopTime: number;
4785
4841
  }>, z.ZodObject<{
@@ -4973,6 +5029,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
4973
5029
  ioPort: string | null;
4974
5030
  } | {
4975
5031
  type: "onetime";
5032
+ ioPort: string | null;
4976
5033
  startTime: number;
4977
5034
  stopTime: number;
4978
5035
  } | {
@@ -5026,6 +5083,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
5026
5083
  ioPort: string | null;
5027
5084
  } | {
5028
5085
  type: "onetime";
5086
+ ioPort: string | null;
5029
5087
  startTime: number;
5030
5088
  stopTime: number;
5031
5089
  } | {
@@ -5060,12 +5118,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
5060
5118
  type: z.ZodLiteral<"onetime">;
5061
5119
  startTime: z.ZodNumber;
5062
5120
  stopTime: z.ZodNumber;
5121
+ ioPort: z.ZodNullable<z.ZodString>;
5063
5122
  }, "strip", z.ZodTypeAny, {
5064
5123
  type: "onetime";
5124
+ ioPort: string | null;
5065
5125
  startTime: number;
5066
5126
  stopTime: number;
5067
5127
  }, {
5068
5128
  type: "onetime";
5129
+ ioPort: string | null;
5069
5130
  startTime: number;
5070
5131
  stopTime: number;
5071
5132
  }>, z.ZodObject<{
@@ -5259,6 +5320,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
5259
5320
  ioPort: string | null;
5260
5321
  } | {
5261
5322
  type: "onetime";
5323
+ ioPort: string | null;
5262
5324
  startTime: number;
5263
5325
  stopTime: number;
5264
5326
  } | {
@@ -5312,6 +5374,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
5312
5374
  ioPort: string | null;
5313
5375
  } | {
5314
5376
  type: "onetime";
5377
+ ioPort: string | null;
5315
5378
  startTime: number;
5316
5379
  stopTime: number;
5317
5380
  } | {
@@ -5346,12 +5409,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
5346
5409
  type: z.ZodLiteral<"onetime">;
5347
5410
  startTime: z.ZodNumber;
5348
5411
  stopTime: z.ZodNumber;
5412
+ ioPort: z.ZodNullable<z.ZodString>;
5349
5413
  }, "strip", z.ZodTypeAny, {
5350
5414
  type: "onetime";
5415
+ ioPort: string | null;
5351
5416
  startTime: number;
5352
5417
  stopTime: number;
5353
5418
  }, {
5354
5419
  type: "onetime";
5420
+ ioPort: string | null;
5355
5421
  startTime: number;
5356
5422
  stopTime: number;
5357
5423
  }>, z.ZodObject<{
@@ -5552,6 +5618,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
5552
5618
  ioPort: string | null;
5553
5619
  } | {
5554
5620
  type: "onetime";
5621
+ ioPort: string | null;
5555
5622
  startTime: number;
5556
5623
  stopTime: number;
5557
5624
  } | {
@@ -5611,6 +5678,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
5611
5678
  ioPort: string | null;
5612
5679
  } | {
5613
5680
  type: "onetime";
5681
+ ioPort: string | null;
5614
5682
  startTime: number;
5615
5683
  stopTime: number;
5616
5684
  } | {
@@ -5651,12 +5719,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
5651
5719
  type: z.ZodLiteral<"onetime">;
5652
5720
  startTime: z.ZodNumber;
5653
5721
  stopTime: z.ZodNumber;
5722
+ ioPort: z.ZodNullable<z.ZodString>;
5654
5723
  }, "strip", z.ZodTypeAny, {
5655
5724
  type: "onetime";
5725
+ ioPort: string | null;
5656
5726
  startTime: number;
5657
5727
  stopTime: number;
5658
5728
  }, {
5659
5729
  type: "onetime";
5730
+ ioPort: string | null;
5660
5731
  startTime: number;
5661
5732
  stopTime: number;
5662
5733
  }>, z.ZodObject<{
@@ -5857,6 +5928,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
5857
5928
  ioPort: string | null;
5858
5929
  } | {
5859
5930
  type: "onetime";
5931
+ ioPort: string | null;
5860
5932
  startTime: number;
5861
5933
  stopTime: number;
5862
5934
  } | {
@@ -5916,6 +5988,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
5916
5988
  ioPort: string | null;
5917
5989
  } | {
5918
5990
  type: "onetime";
5991
+ ioPort: string | null;
5919
5992
  startTime: number;
5920
5993
  stopTime: number;
5921
5994
  } | {
@@ -5960,12 +6033,15 @@ export declare const streamListSchema: z.ZodObject<{
5960
6033
  type: z.ZodLiteral<"onetime">;
5961
6034
  startTime: z.ZodNumber;
5962
6035
  stopTime: z.ZodNumber;
6036
+ ioPort: z.ZodNullable<z.ZodString>;
5963
6037
  }, "strip", z.ZodTypeAny, {
5964
6038
  type: "onetime";
6039
+ ioPort: string | null;
5965
6040
  startTime: number;
5966
6041
  stopTime: number;
5967
6042
  }, {
5968
6043
  type: "onetime";
6044
+ ioPort: string | null;
5969
6045
  startTime: number;
5970
6046
  stopTime: number;
5971
6047
  }>, z.ZodObject<{
@@ -6191,6 +6267,7 @@ export declare const streamListSchema: z.ZodObject<{
6191
6267
  ioPort: string | null;
6192
6268
  } | {
6193
6269
  type: "onetime";
6270
+ ioPort: string | null;
6194
6271
  startTime: number;
6195
6272
  stopTime: number;
6196
6273
  } | {
@@ -6257,6 +6334,7 @@ export declare const streamListSchema: z.ZodObject<{
6257
6334
  ioPort: string | null;
6258
6335
  } | {
6259
6336
  type: "onetime";
6337
+ ioPort: string | null;
6260
6338
  startTime: number;
6261
6339
  stopTime: number;
6262
6340
  } | {
@@ -6297,12 +6375,15 @@ export declare const streamListSchema: z.ZodObject<{
6297
6375
  type: z.ZodLiteral<"onetime">;
6298
6376
  startTime: z.ZodNumber;
6299
6377
  stopTime: z.ZodNumber;
6378
+ ioPort: z.ZodNullable<z.ZodString>;
6300
6379
  }, "strip", z.ZodTypeAny, {
6301
6380
  type: "onetime";
6381
+ ioPort: string | null;
6302
6382
  startTime: number;
6303
6383
  stopTime: number;
6304
6384
  }, {
6305
6385
  type: "onetime";
6386
+ ioPort: string | null;
6306
6387
  startTime: number;
6307
6388
  stopTime: number;
6308
6389
  }>, z.ZodObject<{
@@ -6461,17 +6542,8 @@ export declare const streamListSchema: z.ZodObject<{
6461
6542
  type: z.ZodLiteral<"mpeg_dvb">;
6462
6543
  ipAddress: z.ZodString;
6463
6544
  port: z.ZodNumber;
6464
- standard: z.ZodEnum<["DVB", "ATSC"]>;
6465
- nullPacketsPaddingEnabled: z.ZodBoolean;
6466
- nullPacketsPaddingKbps: z.ZodNumber;
6467
- videoPid: z.ZodNumber;
6468
- audioPid: z.ZodNumber;
6469
- mpegtsStreamId: z.ZodNumber;
6470
- pmtPid: z.ZodNumber;
6471
- pcrPid: z.ZodNumber;
6472
- pcrPeriodMs: z.ZodNumber;
6473
- providerName: z.ZodString;
6474
- serviceName: z.ZodString;
6545
+ outputUrl: z.ZodString;
6546
+ outputParameters: z.ZodString;
6475
6547
  statusCameraLed: z.ZodBoolean;
6476
6548
  statusCameraOutput: z.ZodNullable<z.ZodString>;
6477
6549
  saveToSdCard: z.ZodBoolean;
@@ -6513,6 +6585,7 @@ export declare const streamListSchema: z.ZodObject<{
6513
6585
  ioPort: string | null;
6514
6586
  } | {
6515
6587
  type: "onetime";
6588
+ ioPort: string | null;
6516
6589
  startTime: number;
6517
6590
  stopTime: number;
6518
6591
  } | {
@@ -6533,17 +6606,8 @@ export declare const streamListSchema: z.ZodObject<{
6533
6606
  statusCameraLed: boolean;
6534
6607
  statusCameraOutput: string | null;
6535
6608
  ipAddress: string;
6536
- standard: "DVB" | "ATSC";
6537
- nullPacketsPaddingEnabled: boolean;
6538
- nullPacketsPaddingKbps: number;
6539
- videoPid: number;
6540
- audioPid: number;
6541
- mpegtsStreamId: number;
6542
- pmtPid: number;
6543
- pcrPid: number;
6544
- pcrPeriodMs: number;
6545
- providerName: string;
6546
- serviceName: string;
6609
+ outputUrl: string;
6610
+ outputParameters: string;
6547
6611
  }, {
6548
6612
  type: "mpeg_dvb";
6549
6613
  audio: {
@@ -6582,6 +6646,7 @@ export declare const streamListSchema: z.ZodObject<{
6582
6646
  ioPort: string | null;
6583
6647
  } | {
6584
6648
  type: "onetime";
6649
+ ioPort: string | null;
6585
6650
  startTime: number;
6586
6651
  stopTime: number;
6587
6652
  } | {
@@ -6602,17 +6667,8 @@ export declare const streamListSchema: z.ZodObject<{
6602
6667
  statusCameraLed: boolean;
6603
6668
  statusCameraOutput: string | null;
6604
6669
  ipAddress: string;
6605
- standard: "DVB" | "ATSC";
6606
- nullPacketsPaddingEnabled: boolean;
6607
- nullPacketsPaddingKbps: number;
6608
- videoPid: number;
6609
- audioPid: number;
6610
- mpegtsStreamId: number;
6611
- pmtPid: number;
6612
- pcrPid: number;
6613
- pcrPeriodMs: number;
6614
- providerName: string;
6615
- serviceName: string;
6670
+ outputUrl: string;
6671
+ outputParameters: string;
6616
6672
  }>, z.ZodObject<{
6617
6673
  id: z.ZodNumber;
6618
6674
  enabled: z.ZodBoolean;
@@ -6631,12 +6687,15 @@ export declare const streamListSchema: z.ZodObject<{
6631
6687
  type: z.ZodLiteral<"onetime">;
6632
6688
  startTime: z.ZodNumber;
6633
6689
  stopTime: z.ZodNumber;
6690
+ ioPort: z.ZodNullable<z.ZodString>;
6634
6691
  }, "strip", z.ZodTypeAny, {
6635
6692
  type: "onetime";
6693
+ ioPort: string | null;
6636
6694
  startTime: number;
6637
6695
  stopTime: number;
6638
6696
  }, {
6639
6697
  type: "onetime";
6698
+ ioPort: string | null;
6640
6699
  startTime: number;
6641
6700
  stopTime: number;
6642
6701
  }>, z.ZodObject<{
@@ -6837,6 +6896,7 @@ export declare const streamListSchema: z.ZodObject<{
6837
6896
  ioPort: string | null;
6838
6897
  } | {
6839
6898
  type: "onetime";
6899
+ ioPort: string | null;
6840
6900
  startTime: number;
6841
6901
  stopTime: number;
6842
6902
  } | {
@@ -6896,6 +6956,7 @@ export declare const streamListSchema: z.ZodObject<{
6896
6956
  ioPort: string | null;
6897
6957
  } | {
6898
6958
  type: "onetime";
6959
+ ioPort: string | null;
6899
6960
  startTime: number;
6900
6961
  stopTime: number;
6901
6962
  } | {
@@ -6936,12 +6997,15 @@ export declare const streamListSchema: z.ZodObject<{
6936
6997
  type: z.ZodLiteral<"onetime">;
6937
6998
  startTime: z.ZodNumber;
6938
6999
  stopTime: z.ZodNumber;
7000
+ ioPort: z.ZodNullable<z.ZodString>;
6939
7001
  }, "strip", z.ZodTypeAny, {
6940
7002
  type: "onetime";
7003
+ ioPort: string | null;
6941
7004
  startTime: number;
6942
7005
  stopTime: number;
6943
7006
  }, {
6944
7007
  type: "onetime";
7008
+ ioPort: string | null;
6945
7009
  startTime: number;
6946
7010
  stopTime: number;
6947
7011
  }>, z.ZodObject<{
@@ -7135,6 +7199,7 @@ export declare const streamListSchema: z.ZodObject<{
7135
7199
  ioPort: string | null;
7136
7200
  } | {
7137
7201
  type: "onetime";
7202
+ ioPort: string | null;
7138
7203
  startTime: number;
7139
7204
  stopTime: number;
7140
7205
  } | {
@@ -7188,6 +7253,7 @@ export declare const streamListSchema: z.ZodObject<{
7188
7253
  ioPort: string | null;
7189
7254
  } | {
7190
7255
  type: "onetime";
7256
+ ioPort: string | null;
7191
7257
  startTime: number;
7192
7258
  stopTime: number;
7193
7259
  } | {
@@ -7222,12 +7288,15 @@ export declare const streamListSchema: z.ZodObject<{
7222
7288
  type: z.ZodLiteral<"onetime">;
7223
7289
  startTime: z.ZodNumber;
7224
7290
  stopTime: z.ZodNumber;
7291
+ ioPort: z.ZodNullable<z.ZodString>;
7225
7292
  }, "strip", z.ZodTypeAny, {
7226
7293
  type: "onetime";
7294
+ ioPort: string | null;
7227
7295
  startTime: number;
7228
7296
  stopTime: number;
7229
7297
  }, {
7230
7298
  type: "onetime";
7299
+ ioPort: string | null;
7231
7300
  startTime: number;
7232
7301
  stopTime: number;
7233
7302
  }>, z.ZodObject<{
@@ -7421,6 +7490,7 @@ export declare const streamListSchema: z.ZodObject<{
7421
7490
  ioPort: string | null;
7422
7491
  } | {
7423
7492
  type: "onetime";
7493
+ ioPort: string | null;
7424
7494
  startTime: number;
7425
7495
  stopTime: number;
7426
7496
  } | {
@@ -7474,6 +7544,7 @@ export declare const streamListSchema: z.ZodObject<{
7474
7544
  ioPort: string | null;
7475
7545
  } | {
7476
7546
  type: "onetime";
7547
+ ioPort: string | null;
7477
7548
  startTime: number;
7478
7549
  stopTime: number;
7479
7550
  } | {
@@ -7508,12 +7579,15 @@ export declare const streamListSchema: z.ZodObject<{
7508
7579
  type: z.ZodLiteral<"onetime">;
7509
7580
  startTime: z.ZodNumber;
7510
7581
  stopTime: z.ZodNumber;
7582
+ ioPort: z.ZodNullable<z.ZodString>;
7511
7583
  }, "strip", z.ZodTypeAny, {
7512
7584
  type: "onetime";
7585
+ ioPort: string | null;
7513
7586
  startTime: number;
7514
7587
  stopTime: number;
7515
7588
  }, {
7516
7589
  type: "onetime";
7590
+ ioPort: string | null;
7517
7591
  startTime: number;
7518
7592
  stopTime: number;
7519
7593
  }>, z.ZodObject<{
@@ -7721,6 +7795,7 @@ export declare const streamListSchema: z.ZodObject<{
7721
7795
  ioPort: string | null;
7722
7796
  } | {
7723
7797
  type: "onetime";
7798
+ ioPort: string | null;
7724
7799
  startTime: number;
7725
7800
  stopTime: number;
7726
7801
  } | {
@@ -7788,6 +7863,7 @@ export declare const streamListSchema: z.ZodObject<{
7788
7863
  ioPort: string | null;
7789
7864
  } | {
7790
7865
  type: "onetime";
7866
+ ioPort: string | null;
7791
7867
  startTime: number;
7792
7868
  stopTime: number;
7793
7869
  } | {
@@ -7836,12 +7912,15 @@ export declare const streamListSchema: z.ZodObject<{
7836
7912
  type: z.ZodLiteral<"onetime">;
7837
7913
  startTime: z.ZodNumber;
7838
7914
  stopTime: z.ZodNumber;
7915
+ ioPort: z.ZodNullable<z.ZodString>;
7839
7916
  }, "strip", z.ZodTypeAny, {
7840
7917
  type: "onetime";
7918
+ ioPort: string | null;
7841
7919
  startTime: number;
7842
7920
  stopTime: number;
7843
7921
  }, {
7844
7922
  type: "onetime";
7923
+ ioPort: string | null;
7845
7924
  startTime: number;
7846
7925
  stopTime: number;
7847
7926
  }>, z.ZodObject<{
@@ -8035,6 +8114,7 @@ export declare const streamListSchema: z.ZodObject<{
8035
8114
  ioPort: string | null;
8036
8115
  } | {
8037
8116
  type: "onetime";
8117
+ ioPort: string | null;
8038
8118
  startTime: number;
8039
8119
  stopTime: number;
8040
8120
  } | {
@@ -8088,6 +8168,7 @@ export declare const streamListSchema: z.ZodObject<{
8088
8168
  ioPort: string | null;
8089
8169
  } | {
8090
8170
  type: "onetime";
8171
+ ioPort: string | null;
8091
8172
  startTime: number;
8092
8173
  stopTime: number;
8093
8174
  } | {
@@ -8122,12 +8203,15 @@ export declare const streamListSchema: z.ZodObject<{
8122
8203
  type: z.ZodLiteral<"onetime">;
8123
8204
  startTime: z.ZodNumber;
8124
8205
  stopTime: z.ZodNumber;
8206
+ ioPort: z.ZodNullable<z.ZodString>;
8125
8207
  }, "strip", z.ZodTypeAny, {
8126
8208
  type: "onetime";
8209
+ ioPort: string | null;
8127
8210
  startTime: number;
8128
8211
  stopTime: number;
8129
8212
  }, {
8130
8213
  type: "onetime";
8214
+ ioPort: string | null;
8131
8215
  startTime: number;
8132
8216
  stopTime: number;
8133
8217
  }>, z.ZodObject<{
@@ -8321,6 +8405,7 @@ export declare const streamListSchema: z.ZodObject<{
8321
8405
  ioPort: string | null;
8322
8406
  } | {
8323
8407
  type: "onetime";
8408
+ ioPort: string | null;
8324
8409
  startTime: number;
8325
8410
  stopTime: number;
8326
8411
  } | {
@@ -8374,6 +8459,7 @@ export declare const streamListSchema: z.ZodObject<{
8374
8459
  ioPort: string | null;
8375
8460
  } | {
8376
8461
  type: "onetime";
8462
+ ioPort: string | null;
8377
8463
  startTime: number;
8378
8464
  stopTime: number;
8379
8465
  } | {
@@ -8408,12 +8494,15 @@ export declare const streamListSchema: z.ZodObject<{
8408
8494
  type: z.ZodLiteral<"onetime">;
8409
8495
  startTime: z.ZodNumber;
8410
8496
  stopTime: z.ZodNumber;
8497
+ ioPort: z.ZodNullable<z.ZodString>;
8411
8498
  }, "strip", z.ZodTypeAny, {
8412
8499
  type: "onetime";
8500
+ ioPort: string | null;
8413
8501
  startTime: number;
8414
8502
  stopTime: number;
8415
8503
  }, {
8416
8504
  type: "onetime";
8505
+ ioPort: string | null;
8417
8506
  startTime: number;
8418
8507
  stopTime: number;
8419
8508
  }>, z.ZodObject<{
@@ -8607,6 +8696,7 @@ export declare const streamListSchema: z.ZodObject<{
8607
8696
  ioPort: string | null;
8608
8697
  } | {
8609
8698
  type: "onetime";
8699
+ ioPort: string | null;
8610
8700
  startTime: number;
8611
8701
  stopTime: number;
8612
8702
  } | {
@@ -8660,6 +8750,7 @@ export declare const streamListSchema: z.ZodObject<{
8660
8750
  ioPort: string | null;
8661
8751
  } | {
8662
8752
  type: "onetime";
8753
+ ioPort: string | null;
8663
8754
  startTime: number;
8664
8755
  stopTime: number;
8665
8756
  } | {
@@ -8694,12 +8785,15 @@ export declare const streamListSchema: z.ZodObject<{
8694
8785
  type: z.ZodLiteral<"onetime">;
8695
8786
  startTime: z.ZodNumber;
8696
8787
  stopTime: z.ZodNumber;
8788
+ ioPort: z.ZodNullable<z.ZodString>;
8697
8789
  }, "strip", z.ZodTypeAny, {
8698
8790
  type: "onetime";
8791
+ ioPort: string | null;
8699
8792
  startTime: number;
8700
8793
  stopTime: number;
8701
8794
  }, {
8702
8795
  type: "onetime";
8796
+ ioPort: string | null;
8703
8797
  startTime: number;
8704
8798
  stopTime: number;
8705
8799
  }>, z.ZodObject<{
@@ -8893,6 +8987,7 @@ export declare const streamListSchema: z.ZodObject<{
8893
8987
  ioPort: string | null;
8894
8988
  } | {
8895
8989
  type: "onetime";
8990
+ ioPort: string | null;
8896
8991
  startTime: number;
8897
8992
  stopTime: number;
8898
8993
  } | {
@@ -8946,6 +9041,7 @@ export declare const streamListSchema: z.ZodObject<{
8946
9041
  ioPort: string | null;
8947
9042
  } | {
8948
9043
  type: "onetime";
9044
+ ioPort: string | null;
8949
9045
  startTime: number;
8950
9046
  stopTime: number;
8951
9047
  } | {
@@ -8980,12 +9076,15 @@ export declare const streamListSchema: z.ZodObject<{
8980
9076
  type: z.ZodLiteral<"onetime">;
8981
9077
  startTime: z.ZodNumber;
8982
9078
  stopTime: z.ZodNumber;
9079
+ ioPort: z.ZodNullable<z.ZodString>;
8983
9080
  }, "strip", z.ZodTypeAny, {
8984
9081
  type: "onetime";
9082
+ ioPort: string | null;
8985
9083
  startTime: number;
8986
9084
  stopTime: number;
8987
9085
  }, {
8988
9086
  type: "onetime";
9087
+ ioPort: string | null;
8989
9088
  startTime: number;
8990
9089
  stopTime: number;
8991
9090
  }>, z.ZodObject<{
@@ -9179,6 +9278,7 @@ export declare const streamListSchema: z.ZodObject<{
9179
9278
  ioPort: string | null;
9180
9279
  } | {
9181
9280
  type: "onetime";
9281
+ ioPort: string | null;
9182
9282
  startTime: number;
9183
9283
  stopTime: number;
9184
9284
  } | {
@@ -9232,6 +9332,7 @@ export declare const streamListSchema: z.ZodObject<{
9232
9332
  ioPort: string | null;
9233
9333
  } | {
9234
9334
  type: "onetime";
9335
+ ioPort: string | null;
9235
9336
  startTime: number;
9236
9337
  stopTime: number;
9237
9338
  } | {
@@ -9266,12 +9367,15 @@ export declare const streamListSchema: z.ZodObject<{
9266
9367
  type: z.ZodLiteral<"onetime">;
9267
9368
  startTime: z.ZodNumber;
9268
9369
  stopTime: z.ZodNumber;
9370
+ ioPort: z.ZodNullable<z.ZodString>;
9269
9371
  }, "strip", z.ZodTypeAny, {
9270
9372
  type: "onetime";
9373
+ ioPort: string | null;
9271
9374
  startTime: number;
9272
9375
  stopTime: number;
9273
9376
  }, {
9274
9377
  type: "onetime";
9378
+ ioPort: string | null;
9275
9379
  startTime: number;
9276
9380
  stopTime: number;
9277
9381
  }>, z.ZodObject<{
@@ -9465,6 +9569,7 @@ export declare const streamListSchema: z.ZodObject<{
9465
9569
  ioPort: string | null;
9466
9570
  } | {
9467
9571
  type: "onetime";
9572
+ ioPort: string | null;
9468
9573
  startTime: number;
9469
9574
  stopTime: number;
9470
9575
  } | {
@@ -9518,6 +9623,7 @@ export declare const streamListSchema: z.ZodObject<{
9518
9623
  ioPort: string | null;
9519
9624
  } | {
9520
9625
  type: "onetime";
9626
+ ioPort: string | null;
9521
9627
  startTime: number;
9522
9628
  stopTime: number;
9523
9629
  } | {
@@ -9552,12 +9658,15 @@ export declare const streamListSchema: z.ZodObject<{
9552
9658
  type: z.ZodLiteral<"onetime">;
9553
9659
  startTime: z.ZodNumber;
9554
9660
  stopTime: z.ZodNumber;
9661
+ ioPort: z.ZodNullable<z.ZodString>;
9555
9662
  }, "strip", z.ZodTypeAny, {
9556
9663
  type: "onetime";
9664
+ ioPort: string | null;
9557
9665
  startTime: number;
9558
9666
  stopTime: number;
9559
9667
  }, {
9560
9668
  type: "onetime";
9669
+ ioPort: string | null;
9561
9670
  startTime: number;
9562
9671
  stopTime: number;
9563
9672
  }>, z.ZodObject<{
@@ -9751,6 +9860,7 @@ export declare const streamListSchema: z.ZodObject<{
9751
9860
  ioPort: string | null;
9752
9861
  } | {
9753
9862
  type: "onetime";
9863
+ ioPort: string | null;
9754
9864
  startTime: number;
9755
9865
  stopTime: number;
9756
9866
  } | {
@@ -9804,6 +9914,7 @@ export declare const streamListSchema: z.ZodObject<{
9804
9914
  ioPort: string | null;
9805
9915
  } | {
9806
9916
  type: "onetime";
9917
+ ioPort: string | null;
9807
9918
  startTime: number;
9808
9919
  stopTime: number;
9809
9920
  } | {
@@ -9838,12 +9949,15 @@ export declare const streamListSchema: z.ZodObject<{
9838
9949
  type: z.ZodLiteral<"onetime">;
9839
9950
  startTime: z.ZodNumber;
9840
9951
  stopTime: z.ZodNumber;
9952
+ ioPort: z.ZodNullable<z.ZodString>;
9841
9953
  }, "strip", z.ZodTypeAny, {
9842
9954
  type: "onetime";
9955
+ ioPort: string | null;
9843
9956
  startTime: number;
9844
9957
  stopTime: number;
9845
9958
  }, {
9846
9959
  type: "onetime";
9960
+ ioPort: string | null;
9847
9961
  startTime: number;
9848
9962
  stopTime: number;
9849
9963
  }>, z.ZodObject<{
@@ -10037,6 +10151,7 @@ export declare const streamListSchema: z.ZodObject<{
10037
10151
  ioPort: string | null;
10038
10152
  } | {
10039
10153
  type: "onetime";
10154
+ ioPort: string | null;
10040
10155
  startTime: number;
10041
10156
  stopTime: number;
10042
10157
  } | {
@@ -10090,6 +10205,7 @@ export declare const streamListSchema: z.ZodObject<{
10090
10205
  ioPort: string | null;
10091
10206
  } | {
10092
10207
  type: "onetime";
10208
+ ioPort: string | null;
10093
10209
  startTime: number;
10094
10210
  stopTime: number;
10095
10211
  } | {
@@ -10124,12 +10240,15 @@ export declare const streamListSchema: z.ZodObject<{
10124
10240
  type: z.ZodLiteral<"onetime">;
10125
10241
  startTime: z.ZodNumber;
10126
10242
  stopTime: z.ZodNumber;
10243
+ ioPort: z.ZodNullable<z.ZodString>;
10127
10244
  }, "strip", z.ZodTypeAny, {
10128
10245
  type: "onetime";
10246
+ ioPort: string | null;
10129
10247
  startTime: number;
10130
10248
  stopTime: number;
10131
10249
  }, {
10132
10250
  type: "onetime";
10251
+ ioPort: string | null;
10133
10252
  startTime: number;
10134
10253
  stopTime: number;
10135
10254
  }>, z.ZodObject<{
@@ -10323,6 +10442,7 @@ export declare const streamListSchema: z.ZodObject<{
10323
10442
  ioPort: string | null;
10324
10443
  } | {
10325
10444
  type: "onetime";
10445
+ ioPort: string | null;
10326
10446
  startTime: number;
10327
10447
  stopTime: number;
10328
10448
  } | {
@@ -10376,6 +10496,7 @@ export declare const streamListSchema: z.ZodObject<{
10376
10496
  ioPort: string | null;
10377
10497
  } | {
10378
10498
  type: "onetime";
10499
+ ioPort: string | null;
10379
10500
  startTime: number;
10380
10501
  stopTime: number;
10381
10502
  } | {
@@ -10410,12 +10531,15 @@ export declare const streamListSchema: z.ZodObject<{
10410
10531
  type: z.ZodLiteral<"onetime">;
10411
10532
  startTime: z.ZodNumber;
10412
10533
  stopTime: z.ZodNumber;
10534
+ ioPort: z.ZodNullable<z.ZodString>;
10413
10535
  }, "strip", z.ZodTypeAny, {
10414
10536
  type: "onetime";
10537
+ ioPort: string | null;
10415
10538
  startTime: number;
10416
10539
  stopTime: number;
10417
10540
  }, {
10418
10541
  type: "onetime";
10542
+ ioPort: string | null;
10419
10543
  startTime: number;
10420
10544
  stopTime: number;
10421
10545
  }>, z.ZodObject<{
@@ -10609,6 +10733,7 @@ export declare const streamListSchema: z.ZodObject<{
10609
10733
  ioPort: string | null;
10610
10734
  } | {
10611
10735
  type: "onetime";
10736
+ ioPort: string | null;
10612
10737
  startTime: number;
10613
10738
  stopTime: number;
10614
10739
  } | {
@@ -10662,6 +10787,7 @@ export declare const streamListSchema: z.ZodObject<{
10662
10787
  ioPort: string | null;
10663
10788
  } | {
10664
10789
  type: "onetime";
10790
+ ioPort: string | null;
10665
10791
  startTime: number;
10666
10792
  stopTime: number;
10667
10793
  } | {
@@ -10696,12 +10822,15 @@ export declare const streamListSchema: z.ZodObject<{
10696
10822
  type: z.ZodLiteral<"onetime">;
10697
10823
  startTime: z.ZodNumber;
10698
10824
  stopTime: z.ZodNumber;
10825
+ ioPort: z.ZodNullable<z.ZodString>;
10699
10826
  }, "strip", z.ZodTypeAny, {
10700
10827
  type: "onetime";
10828
+ ioPort: string | null;
10701
10829
  startTime: number;
10702
10830
  stopTime: number;
10703
10831
  }, {
10704
10832
  type: "onetime";
10833
+ ioPort: string | null;
10705
10834
  startTime: number;
10706
10835
  stopTime: number;
10707
10836
  }>, z.ZodObject<{
@@ -10895,6 +11024,7 @@ export declare const streamListSchema: z.ZodObject<{
10895
11024
  ioPort: string | null;
10896
11025
  } | {
10897
11026
  type: "onetime";
11027
+ ioPort: string | null;
10898
11028
  startTime: number;
10899
11029
  stopTime: number;
10900
11030
  } | {
@@ -10948,6 +11078,7 @@ export declare const streamListSchema: z.ZodObject<{
10948
11078
  ioPort: string | null;
10949
11079
  } | {
10950
11080
  type: "onetime";
11081
+ ioPort: string | null;
10951
11082
  startTime: number;
10952
11083
  stopTime: number;
10953
11084
  } | {
@@ -10982,12 +11113,15 @@ export declare const streamListSchema: z.ZodObject<{
10982
11113
  type: z.ZodLiteral<"onetime">;
10983
11114
  startTime: z.ZodNumber;
10984
11115
  stopTime: z.ZodNumber;
11116
+ ioPort: z.ZodNullable<z.ZodString>;
10985
11117
  }, "strip", z.ZodTypeAny, {
10986
11118
  type: "onetime";
11119
+ ioPort: string | null;
10987
11120
  startTime: number;
10988
11121
  stopTime: number;
10989
11122
  }, {
10990
11123
  type: "onetime";
11124
+ ioPort: string | null;
10991
11125
  startTime: number;
10992
11126
  stopTime: number;
10993
11127
  }>, z.ZodObject<{
@@ -11181,6 +11315,7 @@ export declare const streamListSchema: z.ZodObject<{
11181
11315
  ioPort: string | null;
11182
11316
  } | {
11183
11317
  type: "onetime";
11318
+ ioPort: string | null;
11184
11319
  startTime: number;
11185
11320
  stopTime: number;
11186
11321
  } | {
@@ -11234,6 +11369,7 @@ export declare const streamListSchema: z.ZodObject<{
11234
11369
  ioPort: string | null;
11235
11370
  } | {
11236
11371
  type: "onetime";
11372
+ ioPort: string | null;
11237
11373
  startTime: number;
11238
11374
  stopTime: number;
11239
11375
  } | {
@@ -11268,12 +11404,15 @@ export declare const streamListSchema: z.ZodObject<{
11268
11404
  type: z.ZodLiteral<"onetime">;
11269
11405
  startTime: z.ZodNumber;
11270
11406
  stopTime: z.ZodNumber;
11407
+ ioPort: z.ZodNullable<z.ZodString>;
11271
11408
  }, "strip", z.ZodTypeAny, {
11272
11409
  type: "onetime";
11410
+ ioPort: string | null;
11273
11411
  startTime: number;
11274
11412
  stopTime: number;
11275
11413
  }, {
11276
11414
  type: "onetime";
11415
+ ioPort: string | null;
11277
11416
  startTime: number;
11278
11417
  stopTime: number;
11279
11418
  }>, z.ZodObject<{
@@ -11474,6 +11613,7 @@ export declare const streamListSchema: z.ZodObject<{
11474
11613
  ioPort: string | null;
11475
11614
  } | {
11476
11615
  type: "onetime";
11616
+ ioPort: string | null;
11477
11617
  startTime: number;
11478
11618
  stopTime: number;
11479
11619
  } | {
@@ -11533,6 +11673,7 @@ export declare const streamListSchema: z.ZodObject<{
11533
11673
  ioPort: string | null;
11534
11674
  } | {
11535
11675
  type: "onetime";
11676
+ ioPort: string | null;
11536
11677
  startTime: number;
11537
11678
  stopTime: number;
11538
11679
  } | {
@@ -11573,12 +11714,15 @@ export declare const streamListSchema: z.ZodObject<{
11573
11714
  type: z.ZodLiteral<"onetime">;
11574
11715
  startTime: z.ZodNumber;
11575
11716
  stopTime: z.ZodNumber;
11717
+ ioPort: z.ZodNullable<z.ZodString>;
11576
11718
  }, "strip", z.ZodTypeAny, {
11577
11719
  type: "onetime";
11720
+ ioPort: string | null;
11578
11721
  startTime: number;
11579
11722
  stopTime: number;
11580
11723
  }, {
11581
11724
  type: "onetime";
11725
+ ioPort: string | null;
11582
11726
  startTime: number;
11583
11727
  stopTime: number;
11584
11728
  }>, z.ZodObject<{
@@ -11779,6 +11923,7 @@ export declare const streamListSchema: z.ZodObject<{
11779
11923
  ioPort: string | null;
11780
11924
  } | {
11781
11925
  type: "onetime";
11926
+ ioPort: string | null;
11782
11927
  startTime: number;
11783
11928
  stopTime: number;
11784
11929
  } | {
@@ -11838,6 +11983,7 @@ export declare const streamListSchema: z.ZodObject<{
11838
11983
  ioPort: string | null;
11839
11984
  } | {
11840
11985
  type: "onetime";
11986
+ ioPort: string | null;
11841
11987
  startTime: number;
11842
11988
  stopTime: number;
11843
11989
  } | {
@@ -11906,6 +12052,7 @@ export declare const streamListSchema: z.ZodObject<{
11906
12052
  ioPort: string | null;
11907
12053
  } | {
11908
12054
  type: "onetime";
12055
+ ioPort: string | null;
11909
12056
  startTime: number;
11910
12057
  stopTime: number;
11911
12058
  } | {
@@ -11966,6 +12113,7 @@ export declare const streamListSchema: z.ZodObject<{
11966
12113
  ioPort: string | null;
11967
12114
  } | {
11968
12115
  type: "onetime";
12116
+ ioPort: string | null;
11969
12117
  startTime: number;
11970
12118
  stopTime: number;
11971
12119
  } | {
@@ -11986,17 +12134,8 @@ export declare const streamListSchema: z.ZodObject<{
11986
12134
  statusCameraLed: boolean;
11987
12135
  statusCameraOutput: string | null;
11988
12136
  ipAddress: string;
11989
- standard: "DVB" | "ATSC";
11990
- nullPacketsPaddingEnabled: boolean;
11991
- nullPacketsPaddingKbps: number;
11992
- videoPid: number;
11993
- audioPid: number;
11994
- mpegtsStreamId: number;
11995
- pmtPid: number;
11996
- pcrPid: number;
11997
- pcrPeriodMs: number;
11998
- providerName: string;
11999
- serviceName: string;
12137
+ outputUrl: string;
12138
+ outputParameters: string;
12000
12139
  } | {
12001
12140
  type: "rtmp";
12002
12141
  audio: {
@@ -12034,6 +12173,7 @@ export declare const streamListSchema: z.ZodObject<{
12034
12173
  ioPort: string | null;
12035
12174
  } | {
12036
12175
  type: "onetime";
12176
+ ioPort: string | null;
12037
12177
  startTime: number;
12038
12178
  stopTime: number;
12039
12179
  } | {
@@ -12093,6 +12233,7 @@ export declare const streamListSchema: z.ZodObject<{
12093
12233
  ioPort: string | null;
12094
12234
  } | {
12095
12235
  type: "onetime";
12236
+ ioPort: string | null;
12096
12237
  startTime: number;
12097
12238
  stopTime: number;
12098
12239
  } | {
@@ -12146,6 +12287,7 @@ export declare const streamListSchema: z.ZodObject<{
12146
12287
  ioPort: string | null;
12147
12288
  } | {
12148
12289
  type: "onetime";
12290
+ ioPort: string | null;
12149
12291
  startTime: number;
12150
12292
  stopTime: number;
12151
12293
  } | {
@@ -12199,6 +12341,7 @@ export declare const streamListSchema: z.ZodObject<{
12199
12341
  ioPort: string | null;
12200
12342
  } | {
12201
12343
  type: "onetime";
12344
+ ioPort: string | null;
12202
12345
  startTime: number;
12203
12346
  stopTime: number;
12204
12347
  } | {
@@ -12266,6 +12409,7 @@ export declare const streamListSchema: z.ZodObject<{
12266
12409
  ioPort: string | null;
12267
12410
  } | {
12268
12411
  type: "onetime";
12412
+ ioPort: string | null;
12269
12413
  startTime: number;
12270
12414
  stopTime: number;
12271
12415
  } | {
@@ -12319,6 +12463,7 @@ export declare const streamListSchema: z.ZodObject<{
12319
12463
  ioPort: string | null;
12320
12464
  } | {
12321
12465
  type: "onetime";
12466
+ ioPort: string | null;
12322
12467
  startTime: number;
12323
12468
  stopTime: number;
12324
12469
  } | {
@@ -12372,6 +12517,7 @@ export declare const streamListSchema: z.ZodObject<{
12372
12517
  ioPort: string | null;
12373
12518
  } | {
12374
12519
  type: "onetime";
12520
+ ioPort: string | null;
12375
12521
  startTime: number;
12376
12522
  stopTime: number;
12377
12523
  } | {
@@ -12425,6 +12571,7 @@ export declare const streamListSchema: z.ZodObject<{
12425
12571
  ioPort: string | null;
12426
12572
  } | {
12427
12573
  type: "onetime";
12574
+ ioPort: string | null;
12428
12575
  startTime: number;
12429
12576
  stopTime: number;
12430
12577
  } | {
@@ -12478,6 +12625,7 @@ export declare const streamListSchema: z.ZodObject<{
12478
12625
  ioPort: string | null;
12479
12626
  } | {
12480
12627
  type: "onetime";
12628
+ ioPort: string | null;
12481
12629
  startTime: number;
12482
12630
  stopTime: number;
12483
12631
  } | {
@@ -12531,6 +12679,7 @@ export declare const streamListSchema: z.ZodObject<{
12531
12679
  ioPort: string | null;
12532
12680
  } | {
12533
12681
  type: "onetime";
12682
+ ioPort: string | null;
12534
12683
  startTime: number;
12535
12684
  stopTime: number;
12536
12685
  } | {
@@ -12584,6 +12733,7 @@ export declare const streamListSchema: z.ZodObject<{
12584
12733
  ioPort: string | null;
12585
12734
  } | {
12586
12735
  type: "onetime";
12736
+ ioPort: string | null;
12587
12737
  startTime: number;
12588
12738
  stopTime: number;
12589
12739
  } | {
@@ -12637,6 +12787,7 @@ export declare const streamListSchema: z.ZodObject<{
12637
12787
  ioPort: string | null;
12638
12788
  } | {
12639
12789
  type: "onetime";
12790
+ ioPort: string | null;
12640
12791
  startTime: number;
12641
12792
  stopTime: number;
12642
12793
  } | {
@@ -12690,6 +12841,7 @@ export declare const streamListSchema: z.ZodObject<{
12690
12841
  ioPort: string | null;
12691
12842
  } | {
12692
12843
  type: "onetime";
12844
+ ioPort: string | null;
12693
12845
  startTime: number;
12694
12846
  stopTime: number;
12695
12847
  } | {
@@ -12743,6 +12895,7 @@ export declare const streamListSchema: z.ZodObject<{
12743
12895
  ioPort: string | null;
12744
12896
  } | {
12745
12897
  type: "onetime";
12898
+ ioPort: string | null;
12746
12899
  startTime: number;
12747
12900
  stopTime: number;
12748
12901
  } | {
@@ -12796,6 +12949,7 @@ export declare const streamListSchema: z.ZodObject<{
12796
12949
  ioPort: string | null;
12797
12950
  } | {
12798
12951
  type: "onetime";
12952
+ ioPort: string | null;
12799
12953
  startTime: number;
12800
12954
  stopTime: number;
12801
12955
  } | {
@@ -12849,6 +13003,7 @@ export declare const streamListSchema: z.ZodObject<{
12849
13003
  ioPort: string | null;
12850
13004
  } | {
12851
13005
  type: "onetime";
13006
+ ioPort: string | null;
12852
13007
  startTime: number;
12853
13008
  stopTime: number;
12854
13009
  } | {
@@ -12902,6 +13057,7 @@ export declare const streamListSchema: z.ZodObject<{
12902
13057
  ioPort: string | null;
12903
13058
  } | {
12904
13059
  type: "onetime";
13060
+ ioPort: string | null;
12905
13061
  startTime: number;
12906
13062
  stopTime: number;
12907
13063
  } | {
@@ -12961,6 +13117,7 @@ export declare const streamListSchema: z.ZodObject<{
12961
13117
  ioPort: string | null;
12962
13118
  } | {
12963
13119
  type: "onetime";
13120
+ ioPort: string | null;
12964
13121
  startTime: number;
12965
13122
  stopTime: number;
12966
13123
  } | {
@@ -13029,6 +13186,7 @@ export declare const streamListSchema: z.ZodObject<{
13029
13186
  ioPort: string | null;
13030
13187
  } | {
13031
13188
  type: "onetime";
13189
+ ioPort: string | null;
13032
13190
  startTime: number;
13033
13191
  stopTime: number;
13034
13192
  } | {
@@ -13089,6 +13247,7 @@ export declare const streamListSchema: z.ZodObject<{
13089
13247
  ioPort: string | null;
13090
13248
  } | {
13091
13249
  type: "onetime";
13250
+ ioPort: string | null;
13092
13251
  startTime: number;
13093
13252
  stopTime: number;
13094
13253
  } | {
@@ -13109,17 +13268,8 @@ export declare const streamListSchema: z.ZodObject<{
13109
13268
  statusCameraLed: boolean;
13110
13269
  statusCameraOutput: string | null;
13111
13270
  ipAddress: string;
13112
- standard: "DVB" | "ATSC";
13113
- nullPacketsPaddingEnabled: boolean;
13114
- nullPacketsPaddingKbps: number;
13115
- videoPid: number;
13116
- audioPid: number;
13117
- mpegtsStreamId: number;
13118
- pmtPid: number;
13119
- pcrPid: number;
13120
- pcrPeriodMs: number;
13121
- providerName: string;
13122
- serviceName: string;
13271
+ outputUrl: string;
13272
+ outputParameters: string;
13123
13273
  } | {
13124
13274
  type: "rtmp";
13125
13275
  audio: {
@@ -13157,6 +13307,7 @@ export declare const streamListSchema: z.ZodObject<{
13157
13307
  ioPort: string | null;
13158
13308
  } | {
13159
13309
  type: "onetime";
13310
+ ioPort: string | null;
13160
13311
  startTime: number;
13161
13312
  stopTime: number;
13162
13313
  } | {
@@ -13216,6 +13367,7 @@ export declare const streamListSchema: z.ZodObject<{
13216
13367
  ioPort: string | null;
13217
13368
  } | {
13218
13369
  type: "onetime";
13370
+ ioPort: string | null;
13219
13371
  startTime: number;
13220
13372
  stopTime: number;
13221
13373
  } | {
@@ -13269,6 +13421,7 @@ export declare const streamListSchema: z.ZodObject<{
13269
13421
  ioPort: string | null;
13270
13422
  } | {
13271
13423
  type: "onetime";
13424
+ ioPort: string | null;
13272
13425
  startTime: number;
13273
13426
  stopTime: number;
13274
13427
  } | {
@@ -13322,6 +13475,7 @@ export declare const streamListSchema: z.ZodObject<{
13322
13475
  ioPort: string | null;
13323
13476
  } | {
13324
13477
  type: "onetime";
13478
+ ioPort: string | null;
13325
13479
  startTime: number;
13326
13480
  stopTime: number;
13327
13481
  } | {
@@ -13389,6 +13543,7 @@ export declare const streamListSchema: z.ZodObject<{
13389
13543
  ioPort: string | null;
13390
13544
  } | {
13391
13545
  type: "onetime";
13546
+ ioPort: string | null;
13392
13547
  startTime: number;
13393
13548
  stopTime: number;
13394
13549
  } | {
@@ -13442,6 +13597,7 @@ export declare const streamListSchema: z.ZodObject<{
13442
13597
  ioPort: string | null;
13443
13598
  } | {
13444
13599
  type: "onetime";
13600
+ ioPort: string | null;
13445
13601
  startTime: number;
13446
13602
  stopTime: number;
13447
13603
  } | {
@@ -13495,6 +13651,7 @@ export declare const streamListSchema: z.ZodObject<{
13495
13651
  ioPort: string | null;
13496
13652
  } | {
13497
13653
  type: "onetime";
13654
+ ioPort: string | null;
13498
13655
  startTime: number;
13499
13656
  stopTime: number;
13500
13657
  } | {
@@ -13548,6 +13705,7 @@ export declare const streamListSchema: z.ZodObject<{
13548
13705
  ioPort: string | null;
13549
13706
  } | {
13550
13707
  type: "onetime";
13708
+ ioPort: string | null;
13551
13709
  startTime: number;
13552
13710
  stopTime: number;
13553
13711
  } | {
@@ -13601,6 +13759,7 @@ export declare const streamListSchema: z.ZodObject<{
13601
13759
  ioPort: string | null;
13602
13760
  } | {
13603
13761
  type: "onetime";
13762
+ ioPort: string | null;
13604
13763
  startTime: number;
13605
13764
  stopTime: number;
13606
13765
  } | {
@@ -13654,6 +13813,7 @@ export declare const streamListSchema: z.ZodObject<{
13654
13813
  ioPort: string | null;
13655
13814
  } | {
13656
13815
  type: "onetime";
13816
+ ioPort: string | null;
13657
13817
  startTime: number;
13658
13818
  stopTime: number;
13659
13819
  } | {
@@ -13707,6 +13867,7 @@ export declare const streamListSchema: z.ZodObject<{
13707
13867
  ioPort: string | null;
13708
13868
  } | {
13709
13869
  type: "onetime";
13870
+ ioPort: string | null;
13710
13871
  startTime: number;
13711
13872
  stopTime: number;
13712
13873
  } | {
@@ -13760,6 +13921,7 @@ export declare const streamListSchema: z.ZodObject<{
13760
13921
  ioPort: string | null;
13761
13922
  } | {
13762
13923
  type: "onetime";
13924
+ ioPort: string | null;
13763
13925
  startTime: number;
13764
13926
  stopTime: number;
13765
13927
  } | {
@@ -13813,6 +13975,7 @@ export declare const streamListSchema: z.ZodObject<{
13813
13975
  ioPort: string | null;
13814
13976
  } | {
13815
13977
  type: "onetime";
13978
+ ioPort: string | null;
13816
13979
  startTime: number;
13817
13980
  stopTime: number;
13818
13981
  } | {
@@ -13866,6 +14029,7 @@ export declare const streamListSchema: z.ZodObject<{
13866
14029
  ioPort: string | null;
13867
14030
  } | {
13868
14031
  type: "onetime";
14032
+ ioPort: string | null;
13869
14033
  startTime: number;
13870
14034
  stopTime: number;
13871
14035
  } | {
@@ -13919,6 +14083,7 @@ export declare const streamListSchema: z.ZodObject<{
13919
14083
  ioPort: string | null;
13920
14084
  } | {
13921
14085
  type: "onetime";
14086
+ ioPort: string | null;
13922
14087
  startTime: number;
13923
14088
  stopTime: number;
13924
14089
  } | {
@@ -13972,6 +14137,7 @@ export declare const streamListSchema: z.ZodObject<{
13972
14137
  ioPort: string | null;
13973
14138
  } | {
13974
14139
  type: "onetime";
14140
+ ioPort: string | null;
13975
14141
  startTime: number;
13976
14142
  stopTime: number;
13977
14143
  } | {
@@ -14025,6 +14191,7 @@ export declare const streamListSchema: z.ZodObject<{
14025
14191
  ioPort: string | null;
14026
14192
  } | {
14027
14193
  type: "onetime";
14194
+ ioPort: string | null;
14028
14195
  startTime: number;
14029
14196
  stopTime: number;
14030
14197
  } | {
@@ -14084,6 +14251,7 @@ export declare const streamListSchema: z.ZodObject<{
14084
14251
  ioPort: string | null;
14085
14252
  } | {
14086
14253
  type: "onetime";
14254
+ ioPort: string | null;
14087
14255
  startTime: number;
14088
14256
  stopTime: number;
14089
14257
  } | {
@@ -14154,6 +14322,7 @@ export declare const isFacebookStream: (stream: TStream) => stream is {
14154
14322
  ioPort: string | null;
14155
14323
  } | {
14156
14324
  type: "onetime";
14325
+ ioPort: string | null;
14157
14326
  startTime: number;
14158
14327
  stopTime: number;
14159
14328
  } | {
@@ -14217,6 +14386,7 @@ export declare const isMpegDvbStream: (stream: TStream) => stream is {
14217
14386
  ioPort: string | null;
14218
14387
  } | {
14219
14388
  type: "onetime";
14389
+ ioPort: string | null;
14220
14390
  startTime: number;
14221
14391
  stopTime: number;
14222
14392
  } | {
@@ -14237,17 +14407,8 @@ export declare const isMpegDvbStream: (stream: TStream) => stream is {
14237
14407
  statusCameraLed: boolean;
14238
14408
  statusCameraOutput: string | null;
14239
14409
  ipAddress: string;
14240
- standard: "DVB" | "ATSC";
14241
- nullPacketsPaddingEnabled: boolean;
14242
- nullPacketsPaddingKbps: number;
14243
- videoPid: number;
14244
- audioPid: number;
14245
- mpegtsStreamId: number;
14246
- pmtPid: number;
14247
- pcrPid: number;
14248
- pcrPeriodMs: number;
14249
- providerName: string;
14250
- serviceName: string;
14410
+ outputUrl: string;
14411
+ outputParameters: string;
14251
14412
  };
14252
14413
  export type TRtmpStream = z.infer<typeof rtmpSchema>;
14253
14414
  export declare const isRtmpStream: (stream: TStream) => stream is {
@@ -14287,6 +14448,7 @@ export declare const isRtmpStream: (stream: TStream) => stream is {
14287
14448
  ioPort: string | null;
14288
14449
  } | {
14289
14450
  type: "onetime";
14451
+ ioPort: string | null;
14290
14452
  startTime: number;
14291
14453
  stopTime: number;
14292
14454
  } | {
@@ -14348,6 +14510,7 @@ export declare const isSdCardStream: (stream: TStream) => stream is {
14348
14510
  ioPort: string | null;
14349
14511
  } | {
14350
14512
  type: "onetime";
14513
+ ioPort: string | null;
14351
14514
  startTime: number;
14352
14515
  stopTime: number;
14353
14516
  } | {
@@ -14403,6 +14566,7 @@ export declare const isWindyStream: (stream: TStream) => stream is {
14403
14566
  ioPort: string | null;
14404
14567
  } | {
14405
14568
  type: "onetime";
14569
+ ioPort: string | null;
14406
14570
  startTime: number;
14407
14571
  stopTime: number;
14408
14572
  } | {
@@ -14458,6 +14622,7 @@ export declare const isYouTubeStream: (stream: TStream) => stream is {
14458
14622
  ioPort: string | null;
14459
14623
  } | {
14460
14624
  type: "onetime";
14625
+ ioPort: string | null;
14461
14626
  startTime: number;
14462
14627
  stopTime: number;
14463
14628
  } | {
@@ -14527,6 +14692,7 @@ export declare const isVimeoStream: (stream: TStream) => stream is {
14527
14692
  ioPort: string | null;
14528
14693
  } | {
14529
14694
  type: "onetime";
14695
+ ioPort: string | null;
14530
14696
  startTime: number;
14531
14697
  stopTime: number;
14532
14698
  } | {
@@ -14582,6 +14748,7 @@ export declare const isTwitchStream: (stream: TStream) => stream is {
14582
14748
  ioPort: string | null;
14583
14749
  } | {
14584
14750
  type: "onetime";
14751
+ ioPort: string | null;
14585
14752
  startTime: number;
14586
14753
  stopTime: number;
14587
14754
  } | {
@@ -14637,6 +14804,7 @@ export declare const isChurchStream: (stream: TStream) => stream is {
14637
14804
  ioPort: string | null;
14638
14805
  } | {
14639
14806
  type: "onetime";
14807
+ ioPort: string | null;
14640
14808
  startTime: number;
14641
14809
  stopTime: number;
14642
14810
  } | {
@@ -14692,6 +14860,7 @@ export declare const isSrtStream: (stream: TStream) => stream is {
14692
14860
  ioPort: string | null;
14693
14861
  } | {
14694
14862
  type: "onetime";
14863
+ ioPort: string | null;
14695
14864
  startTime: number;
14696
14865
  stopTime: number;
14697
14866
  } | {
@@ -14747,6 +14916,7 @@ export declare const isDaCastStream: (stream: TStream) => stream is {
14747
14916
  ioPort: string | null;
14748
14917
  } | {
14749
14918
  type: "onetime";
14919
+ ioPort: string | null;
14750
14920
  startTime: number;
14751
14921
  stopTime: number;
14752
14922
  } | {
@@ -14802,6 +14972,7 @@ export declare const isHlsPullStream: (stream: TStream) => stream is {
14802
14972
  ioPort: string | null;
14803
14973
  } | {
14804
14974
  type: "onetime";
14975
+ ioPort: string | null;
14805
14976
  startTime: number;
14806
14977
  stopTime: number;
14807
14978
  } | {
@@ -14857,6 +15028,7 @@ export declare const isHlsPushStream: (stream: TStream) => stream is {
14857
15028
  ioPort: string | null;
14858
15029
  } | {
14859
15030
  type: "onetime";
15031
+ ioPort: string | null;
14860
15032
  startTime: number;
14861
15033
  stopTime: number;
14862
15034
  } | {
@@ -14912,6 +15084,7 @@ export declare const isWowzaStream: (stream: TStream) => stream is {
14912
15084
  ioPort: string | null;
14913
15085
  } | {
14914
15086
  type: "onetime";
15087
+ ioPort: string | null;
14915
15088
  startTime: number;
14916
15089
  stopTime: number;
14917
15090
  } | {
@@ -14967,6 +15140,7 @@ export declare const isDailymotionStream: (stream: TStream) => stream is {
14967
15140
  ioPort: string | null;
14968
15141
  } | {
14969
15142
  type: "onetime";
15143
+ ioPort: string | null;
14970
15144
  startTime: number;
14971
15145
  stopTime: number;
14972
15146
  } | {
@@ -15022,6 +15196,7 @@ export declare const isIbmStream: (stream: TStream) => stream is {
15022
15196
  ioPort: string | null;
15023
15197
  } | {
15024
15198
  type: "onetime";
15199
+ ioPort: string | null;
15025
15200
  startTime: number;
15026
15201
  stopTime: number;
15027
15202
  } | {
@@ -15077,6 +15252,7 @@ export declare const isMicrosoftAzureStream: (stream: TStream) => stream is {
15077
15252
  ioPort: string | null;
15078
15253
  } | {
15079
15254
  type: "onetime";
15255
+ ioPort: string | null;
15080
15256
  startTime: number;
15081
15257
  stopTime: number;
15082
15258
  } | {
@@ -15132,6 +15308,7 @@ export declare const isMicrosoftStream: (stream: TStream) => stream is {
15132
15308
  ioPort: string | null;
15133
15309
  } | {
15134
15310
  type: "onetime";
15311
+ ioPort: string | null;
15135
15312
  startTime: number;
15136
15313
  stopTime: number;
15137
15314
  } | {
@@ -15187,6 +15364,7 @@ export declare const isGameChangerStream: (stream: TStream) => stream is {
15187
15364
  ioPort: string | null;
15188
15365
  } | {
15189
15366
  type: "onetime";
15367
+ ioPort: string | null;
15190
15368
  startTime: number;
15191
15369
  stopTime: number;
15192
15370
  } | {
@@ -15248,6 +15426,7 @@ export declare const isYoutubeRtmpStream: (stream: TStream) => stream is {
15248
15426
  ioPort: string | null;
15249
15427
  } | {
15250
15428
  type: "onetime";
15429
+ ioPort: string | null;
15251
15430
  startTime: number;
15252
15431
  stopTime: number;
15253
15432
  } | {