camstreamerlib 4.0.0-beta.113 → 4.0.0-beta.114
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/CamStreamerAPI.d.ts +40 -0
- package/cjs/types/CamStreamerAPI/CamStreamerAPI.d.ts +260 -0
- package/cjs/types/CamStreamerAPI/churchSchema.d.ts +5 -0
- package/cjs/types/CamStreamerAPI/daCastSchema.d.ts +5 -0
- package/cjs/types/CamStreamerAPI/dailymotionSchema.d.ts +5 -0
- package/cjs/types/CamStreamerAPI/facebookSchema.d.ts +5 -0
- package/cjs/types/CamStreamerAPI/gameChangerSchema.d.ts +5 -0
- package/cjs/types/CamStreamerAPI/hlsPullSchema.d.ts +5 -0
- package/cjs/types/CamStreamerAPI/hlsPushSchema.d.ts +5 -0
- package/cjs/types/CamStreamerAPI/ibmSchema.d.ts +5 -0
- package/cjs/types/CamStreamerAPI/microsoftAzureSchema.d.ts +5 -0
- package/cjs/types/CamStreamerAPI/microsoftStreamSchema.d.ts +5 -0
- package/cjs/types/CamStreamerAPI/mpegDvbSchema.d.ts +5 -0
- package/cjs/types/CamStreamerAPI/rtmpSchema.d.ts +10 -0
- package/cjs/types/CamStreamerAPI/sdCardSchema.d.ts +5 -0
- package/cjs/types/CamStreamerAPI/srtSchema.d.ts +5 -0
- package/cjs/types/CamStreamerAPI/streamCommonTypes.d.ts +8 -0
- package/cjs/types/CamStreamerAPI/streamCommonTypes.js +6 -1
- package/cjs/types/CamStreamerAPI/twitchSchema.d.ts +5 -0
- package/cjs/types/CamStreamerAPI/vimeoSchema.d.ts +5 -0
- package/cjs/types/CamStreamerAPI/windySchema.d.ts +5 -0
- package/cjs/types/CamStreamerAPI/wowzaSchema.d.ts +5 -0
- package/cjs/types/CamStreamerAPI/youtubeRtmpSchema.d.ts +5 -0
- package/cjs/types/CamStreamerAPI/youtubeSchema.d.ts +5 -0
- package/esm/types/CamStreamerAPI/streamCommonTypes.js +6 -1
- package/package.json +1 -1
- package/types/CamStreamerAPI.d.ts +40 -0
- package/types/types/CamStreamerAPI/CamStreamerAPI.d.ts +260 -0
- package/types/types/CamStreamerAPI/churchSchema.d.ts +5 -0
- package/types/types/CamStreamerAPI/daCastSchema.d.ts +5 -0
- package/types/types/CamStreamerAPI/dailymotionSchema.d.ts +5 -0
- package/types/types/CamStreamerAPI/facebookSchema.d.ts +5 -0
- package/types/types/CamStreamerAPI/gameChangerSchema.d.ts +5 -0
- package/types/types/CamStreamerAPI/hlsPullSchema.d.ts +5 -0
- package/types/types/CamStreamerAPI/hlsPushSchema.d.ts +5 -0
- package/types/types/CamStreamerAPI/ibmSchema.d.ts +5 -0
- package/types/types/CamStreamerAPI/microsoftAzureSchema.d.ts +5 -0
- package/types/types/CamStreamerAPI/microsoftStreamSchema.d.ts +5 -0
- package/types/types/CamStreamerAPI/mpegDvbSchema.d.ts +5 -0
- package/types/types/CamStreamerAPI/rtmpSchema.d.ts +10 -0
- package/types/types/CamStreamerAPI/sdCardSchema.d.ts +5 -0
- package/types/types/CamStreamerAPI/srtSchema.d.ts +5 -0
- package/types/types/CamStreamerAPI/streamCommonTypes.d.ts +8 -0
- package/types/types/CamStreamerAPI/twitchSchema.d.ts +5 -0
- package/types/types/CamStreamerAPI/vimeoSchema.d.ts +5 -0
- package/types/types/CamStreamerAPI/windySchema.d.ts +5 -0
- package/types/types/CamStreamerAPI/wowzaSchema.d.ts +5 -0
- package/types/types/CamStreamerAPI/youtubeRtmpSchema.d.ts +5 -0
- 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<{
|
|
@@ -591,6 +599,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
591
599
|
ioPort: string | null;
|
|
592
600
|
} | {
|
|
593
601
|
type: "onetime";
|
|
602
|
+
ioPort: string | null;
|
|
594
603
|
startTime: number;
|
|
595
604
|
stopTime: number;
|
|
596
605
|
} | {
|
|
@@ -660,6 +669,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
660
669
|
ioPort: string | null;
|
|
661
670
|
} | {
|
|
662
671
|
type: "onetime";
|
|
672
|
+
ioPort: string | null;
|
|
663
673
|
startTime: number;
|
|
664
674
|
stopTime: number;
|
|
665
675
|
} | {
|
|
@@ -709,12 +719,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
709
719
|
type: z.ZodLiteral<"onetime">;
|
|
710
720
|
startTime: z.ZodNumber;
|
|
711
721
|
stopTime: z.ZodNumber;
|
|
722
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
712
723
|
}, "strip", z.ZodTypeAny, {
|
|
713
724
|
type: "onetime";
|
|
725
|
+
ioPort: string | null;
|
|
714
726
|
startTime: number;
|
|
715
727
|
stopTime: number;
|
|
716
728
|
}, {
|
|
717
729
|
type: "onetime";
|
|
730
|
+
ioPort: string | null;
|
|
718
731
|
startTime: number;
|
|
719
732
|
stopTime: number;
|
|
720
733
|
}>, z.ZodObject<{
|
|
@@ -915,6 +928,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
915
928
|
ioPort: string | null;
|
|
916
929
|
} | {
|
|
917
930
|
type: "onetime";
|
|
931
|
+
ioPort: string | null;
|
|
918
932
|
startTime: number;
|
|
919
933
|
stopTime: number;
|
|
920
934
|
} | {
|
|
@@ -974,6 +988,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
974
988
|
ioPort: string | null;
|
|
975
989
|
} | {
|
|
976
990
|
type: "onetime";
|
|
991
|
+
ioPort: string | null;
|
|
977
992
|
startTime: number;
|
|
978
993
|
stopTime: number;
|
|
979
994
|
} | {
|
|
@@ -1014,12 +1029,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
1014
1029
|
type: z.ZodLiteral<"onetime">;
|
|
1015
1030
|
startTime: z.ZodNumber;
|
|
1016
1031
|
stopTime: z.ZodNumber;
|
|
1032
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
1017
1033
|
}, "strip", z.ZodTypeAny, {
|
|
1018
1034
|
type: "onetime";
|
|
1035
|
+
ioPort: string | null;
|
|
1019
1036
|
startTime: number;
|
|
1020
1037
|
stopTime: number;
|
|
1021
1038
|
}, {
|
|
1022
1039
|
type: "onetime";
|
|
1040
|
+
ioPort: string | null;
|
|
1023
1041
|
startTime: number;
|
|
1024
1042
|
stopTime: number;
|
|
1025
1043
|
}>, z.ZodObject<{
|
|
@@ -1213,6 +1231,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
1213
1231
|
ioPort: string | null;
|
|
1214
1232
|
} | {
|
|
1215
1233
|
type: "onetime";
|
|
1234
|
+
ioPort: string | null;
|
|
1216
1235
|
startTime: number;
|
|
1217
1236
|
stopTime: number;
|
|
1218
1237
|
} | {
|
|
@@ -1266,6 +1285,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
1266
1285
|
ioPort: string | null;
|
|
1267
1286
|
} | {
|
|
1268
1287
|
type: "onetime";
|
|
1288
|
+
ioPort: string | null;
|
|
1269
1289
|
startTime: number;
|
|
1270
1290
|
stopTime: number;
|
|
1271
1291
|
} | {
|
|
@@ -1300,12 +1320,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
1300
1320
|
type: z.ZodLiteral<"onetime">;
|
|
1301
1321
|
startTime: z.ZodNumber;
|
|
1302
1322
|
stopTime: z.ZodNumber;
|
|
1323
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
1303
1324
|
}, "strip", z.ZodTypeAny, {
|
|
1304
1325
|
type: "onetime";
|
|
1326
|
+
ioPort: string | null;
|
|
1305
1327
|
startTime: number;
|
|
1306
1328
|
stopTime: number;
|
|
1307
1329
|
}, {
|
|
1308
1330
|
type: "onetime";
|
|
1331
|
+
ioPort: string | null;
|
|
1309
1332
|
startTime: number;
|
|
1310
1333
|
stopTime: number;
|
|
1311
1334
|
}>, z.ZodObject<{
|
|
@@ -1499,6 +1522,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
1499
1522
|
ioPort: string | null;
|
|
1500
1523
|
} | {
|
|
1501
1524
|
type: "onetime";
|
|
1525
|
+
ioPort: string | null;
|
|
1502
1526
|
startTime: number;
|
|
1503
1527
|
stopTime: number;
|
|
1504
1528
|
} | {
|
|
@@ -1552,6 +1576,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
1552
1576
|
ioPort: string | null;
|
|
1553
1577
|
} | {
|
|
1554
1578
|
type: "onetime";
|
|
1579
|
+
ioPort: string | null;
|
|
1555
1580
|
startTime: number;
|
|
1556
1581
|
stopTime: number;
|
|
1557
1582
|
} | {
|
|
@@ -1586,12 +1611,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
1586
1611
|
type: z.ZodLiteral<"onetime">;
|
|
1587
1612
|
startTime: z.ZodNumber;
|
|
1588
1613
|
stopTime: z.ZodNumber;
|
|
1614
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
1589
1615
|
}, "strip", z.ZodTypeAny, {
|
|
1590
1616
|
type: "onetime";
|
|
1617
|
+
ioPort: string | null;
|
|
1591
1618
|
startTime: number;
|
|
1592
1619
|
stopTime: number;
|
|
1593
1620
|
}, {
|
|
1594
1621
|
type: "onetime";
|
|
1622
|
+
ioPort: string | null;
|
|
1595
1623
|
startTime: number;
|
|
1596
1624
|
stopTime: number;
|
|
1597
1625
|
}>, z.ZodObject<{
|
|
@@ -1799,6 +1827,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
1799
1827
|
ioPort: string | null;
|
|
1800
1828
|
} | {
|
|
1801
1829
|
type: "onetime";
|
|
1830
|
+
ioPort: string | null;
|
|
1802
1831
|
startTime: number;
|
|
1803
1832
|
stopTime: number;
|
|
1804
1833
|
} | {
|
|
@@ -1866,6 +1895,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
1866
1895
|
ioPort: string | null;
|
|
1867
1896
|
} | {
|
|
1868
1897
|
type: "onetime";
|
|
1898
|
+
ioPort: string | null;
|
|
1869
1899
|
startTime: number;
|
|
1870
1900
|
stopTime: number;
|
|
1871
1901
|
} | {
|
|
@@ -1914,12 +1944,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
1914
1944
|
type: z.ZodLiteral<"onetime">;
|
|
1915
1945
|
startTime: z.ZodNumber;
|
|
1916
1946
|
stopTime: z.ZodNumber;
|
|
1947
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
1917
1948
|
}, "strip", z.ZodTypeAny, {
|
|
1918
1949
|
type: "onetime";
|
|
1950
|
+
ioPort: string | null;
|
|
1919
1951
|
startTime: number;
|
|
1920
1952
|
stopTime: number;
|
|
1921
1953
|
}, {
|
|
1922
1954
|
type: "onetime";
|
|
1955
|
+
ioPort: string | null;
|
|
1923
1956
|
startTime: number;
|
|
1924
1957
|
stopTime: number;
|
|
1925
1958
|
}>, z.ZodObject<{
|
|
@@ -2113,6 +2146,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
2113
2146
|
ioPort: string | null;
|
|
2114
2147
|
} | {
|
|
2115
2148
|
type: "onetime";
|
|
2149
|
+
ioPort: string | null;
|
|
2116
2150
|
startTime: number;
|
|
2117
2151
|
stopTime: number;
|
|
2118
2152
|
} | {
|
|
@@ -2166,6 +2200,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
2166
2200
|
ioPort: string | null;
|
|
2167
2201
|
} | {
|
|
2168
2202
|
type: "onetime";
|
|
2203
|
+
ioPort: string | null;
|
|
2169
2204
|
startTime: number;
|
|
2170
2205
|
stopTime: number;
|
|
2171
2206
|
} | {
|
|
@@ -2200,12 +2235,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
2200
2235
|
type: z.ZodLiteral<"onetime">;
|
|
2201
2236
|
startTime: z.ZodNumber;
|
|
2202
2237
|
stopTime: z.ZodNumber;
|
|
2238
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
2203
2239
|
}, "strip", z.ZodTypeAny, {
|
|
2204
2240
|
type: "onetime";
|
|
2241
|
+
ioPort: string | null;
|
|
2205
2242
|
startTime: number;
|
|
2206
2243
|
stopTime: number;
|
|
2207
2244
|
}, {
|
|
2208
2245
|
type: "onetime";
|
|
2246
|
+
ioPort: string | null;
|
|
2209
2247
|
startTime: number;
|
|
2210
2248
|
stopTime: number;
|
|
2211
2249
|
}>, z.ZodObject<{
|
|
@@ -2399,6 +2437,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
2399
2437
|
ioPort: string | null;
|
|
2400
2438
|
} | {
|
|
2401
2439
|
type: "onetime";
|
|
2440
|
+
ioPort: string | null;
|
|
2402
2441
|
startTime: number;
|
|
2403
2442
|
stopTime: number;
|
|
2404
2443
|
} | {
|
|
@@ -2452,6 +2491,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
2452
2491
|
ioPort: string | null;
|
|
2453
2492
|
} | {
|
|
2454
2493
|
type: "onetime";
|
|
2494
|
+
ioPort: string | null;
|
|
2455
2495
|
startTime: number;
|
|
2456
2496
|
stopTime: number;
|
|
2457
2497
|
} | {
|
|
@@ -2486,12 +2526,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
2486
2526
|
type: z.ZodLiteral<"onetime">;
|
|
2487
2527
|
startTime: z.ZodNumber;
|
|
2488
2528
|
stopTime: z.ZodNumber;
|
|
2529
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
2489
2530
|
}, "strip", z.ZodTypeAny, {
|
|
2490
2531
|
type: "onetime";
|
|
2532
|
+
ioPort: string | null;
|
|
2491
2533
|
startTime: number;
|
|
2492
2534
|
stopTime: number;
|
|
2493
2535
|
}, {
|
|
2494
2536
|
type: "onetime";
|
|
2537
|
+
ioPort: string | null;
|
|
2495
2538
|
startTime: number;
|
|
2496
2539
|
stopTime: number;
|
|
2497
2540
|
}>, z.ZodObject<{
|
|
@@ -2685,6 +2728,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
2685
2728
|
ioPort: string | null;
|
|
2686
2729
|
} | {
|
|
2687
2730
|
type: "onetime";
|
|
2731
|
+
ioPort: string | null;
|
|
2688
2732
|
startTime: number;
|
|
2689
2733
|
stopTime: number;
|
|
2690
2734
|
} | {
|
|
@@ -2738,6 +2782,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
2738
2782
|
ioPort: string | null;
|
|
2739
2783
|
} | {
|
|
2740
2784
|
type: "onetime";
|
|
2785
|
+
ioPort: string | null;
|
|
2741
2786
|
startTime: number;
|
|
2742
2787
|
stopTime: number;
|
|
2743
2788
|
} | {
|
|
@@ -2772,12 +2817,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
2772
2817
|
type: z.ZodLiteral<"onetime">;
|
|
2773
2818
|
startTime: z.ZodNumber;
|
|
2774
2819
|
stopTime: z.ZodNumber;
|
|
2820
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
2775
2821
|
}, "strip", z.ZodTypeAny, {
|
|
2776
2822
|
type: "onetime";
|
|
2823
|
+
ioPort: string | null;
|
|
2777
2824
|
startTime: number;
|
|
2778
2825
|
stopTime: number;
|
|
2779
2826
|
}, {
|
|
2780
2827
|
type: "onetime";
|
|
2828
|
+
ioPort: string | null;
|
|
2781
2829
|
startTime: number;
|
|
2782
2830
|
stopTime: number;
|
|
2783
2831
|
}>, z.ZodObject<{
|
|
@@ -2971,6 +3019,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
2971
3019
|
ioPort: string | null;
|
|
2972
3020
|
} | {
|
|
2973
3021
|
type: "onetime";
|
|
3022
|
+
ioPort: string | null;
|
|
2974
3023
|
startTime: number;
|
|
2975
3024
|
stopTime: number;
|
|
2976
3025
|
} | {
|
|
@@ -3024,6 +3073,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
3024
3073
|
ioPort: string | null;
|
|
3025
3074
|
} | {
|
|
3026
3075
|
type: "onetime";
|
|
3076
|
+
ioPort: string | null;
|
|
3027
3077
|
startTime: number;
|
|
3028
3078
|
stopTime: number;
|
|
3029
3079
|
} | {
|
|
@@ -3058,12 +3108,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
3058
3108
|
type: z.ZodLiteral<"onetime">;
|
|
3059
3109
|
startTime: z.ZodNumber;
|
|
3060
3110
|
stopTime: z.ZodNumber;
|
|
3111
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
3061
3112
|
}, "strip", z.ZodTypeAny, {
|
|
3062
3113
|
type: "onetime";
|
|
3114
|
+
ioPort: string | null;
|
|
3063
3115
|
startTime: number;
|
|
3064
3116
|
stopTime: number;
|
|
3065
3117
|
}, {
|
|
3066
3118
|
type: "onetime";
|
|
3119
|
+
ioPort: string | null;
|
|
3067
3120
|
startTime: number;
|
|
3068
3121
|
stopTime: number;
|
|
3069
3122
|
}>, z.ZodObject<{
|
|
@@ -3257,6 +3310,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
3257
3310
|
ioPort: string | null;
|
|
3258
3311
|
} | {
|
|
3259
3312
|
type: "onetime";
|
|
3313
|
+
ioPort: string | null;
|
|
3260
3314
|
startTime: number;
|
|
3261
3315
|
stopTime: number;
|
|
3262
3316
|
} | {
|
|
@@ -3310,6 +3364,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
3310
3364
|
ioPort: string | null;
|
|
3311
3365
|
} | {
|
|
3312
3366
|
type: "onetime";
|
|
3367
|
+
ioPort: string | null;
|
|
3313
3368
|
startTime: number;
|
|
3314
3369
|
stopTime: number;
|
|
3315
3370
|
} | {
|
|
@@ -3344,12 +3399,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
3344
3399
|
type: z.ZodLiteral<"onetime">;
|
|
3345
3400
|
startTime: z.ZodNumber;
|
|
3346
3401
|
stopTime: z.ZodNumber;
|
|
3402
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
3347
3403
|
}, "strip", z.ZodTypeAny, {
|
|
3348
3404
|
type: "onetime";
|
|
3405
|
+
ioPort: string | null;
|
|
3349
3406
|
startTime: number;
|
|
3350
3407
|
stopTime: number;
|
|
3351
3408
|
}, {
|
|
3352
3409
|
type: "onetime";
|
|
3410
|
+
ioPort: string | null;
|
|
3353
3411
|
startTime: number;
|
|
3354
3412
|
stopTime: number;
|
|
3355
3413
|
}>, z.ZodObject<{
|
|
@@ -3543,6 +3601,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
3543
3601
|
ioPort: string | null;
|
|
3544
3602
|
} | {
|
|
3545
3603
|
type: "onetime";
|
|
3604
|
+
ioPort: string | null;
|
|
3546
3605
|
startTime: number;
|
|
3547
3606
|
stopTime: number;
|
|
3548
3607
|
} | {
|
|
@@ -3596,6 +3655,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
3596
3655
|
ioPort: string | null;
|
|
3597
3656
|
} | {
|
|
3598
3657
|
type: "onetime";
|
|
3658
|
+
ioPort: string | null;
|
|
3599
3659
|
startTime: number;
|
|
3600
3660
|
stopTime: number;
|
|
3601
3661
|
} | {
|
|
@@ -3630,12 +3690,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
3630
3690
|
type: z.ZodLiteral<"onetime">;
|
|
3631
3691
|
startTime: z.ZodNumber;
|
|
3632
3692
|
stopTime: z.ZodNumber;
|
|
3693
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
3633
3694
|
}, "strip", z.ZodTypeAny, {
|
|
3634
3695
|
type: "onetime";
|
|
3696
|
+
ioPort: string | null;
|
|
3635
3697
|
startTime: number;
|
|
3636
3698
|
stopTime: number;
|
|
3637
3699
|
}, {
|
|
3638
3700
|
type: "onetime";
|
|
3701
|
+
ioPort: string | null;
|
|
3639
3702
|
startTime: number;
|
|
3640
3703
|
stopTime: number;
|
|
3641
3704
|
}>, z.ZodObject<{
|
|
@@ -3829,6 +3892,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
3829
3892
|
ioPort: string | null;
|
|
3830
3893
|
} | {
|
|
3831
3894
|
type: "onetime";
|
|
3895
|
+
ioPort: string | null;
|
|
3832
3896
|
startTime: number;
|
|
3833
3897
|
stopTime: number;
|
|
3834
3898
|
} | {
|
|
@@ -3882,6 +3946,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
3882
3946
|
ioPort: string | null;
|
|
3883
3947
|
} | {
|
|
3884
3948
|
type: "onetime";
|
|
3949
|
+
ioPort: string | null;
|
|
3885
3950
|
startTime: number;
|
|
3886
3951
|
stopTime: number;
|
|
3887
3952
|
} | {
|
|
@@ -3916,12 +3981,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
3916
3981
|
type: z.ZodLiteral<"onetime">;
|
|
3917
3982
|
startTime: z.ZodNumber;
|
|
3918
3983
|
stopTime: z.ZodNumber;
|
|
3984
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
3919
3985
|
}, "strip", z.ZodTypeAny, {
|
|
3920
3986
|
type: "onetime";
|
|
3987
|
+
ioPort: string | null;
|
|
3921
3988
|
startTime: number;
|
|
3922
3989
|
stopTime: number;
|
|
3923
3990
|
}, {
|
|
3924
3991
|
type: "onetime";
|
|
3992
|
+
ioPort: string | null;
|
|
3925
3993
|
startTime: number;
|
|
3926
3994
|
stopTime: number;
|
|
3927
3995
|
}>, z.ZodObject<{
|
|
@@ -4115,6 +4183,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
4115
4183
|
ioPort: string | null;
|
|
4116
4184
|
} | {
|
|
4117
4185
|
type: "onetime";
|
|
4186
|
+
ioPort: string | null;
|
|
4118
4187
|
startTime: number;
|
|
4119
4188
|
stopTime: number;
|
|
4120
4189
|
} | {
|
|
@@ -4168,6 +4237,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
4168
4237
|
ioPort: string | null;
|
|
4169
4238
|
} | {
|
|
4170
4239
|
type: "onetime";
|
|
4240
|
+
ioPort: string | null;
|
|
4171
4241
|
startTime: number;
|
|
4172
4242
|
stopTime: number;
|
|
4173
4243
|
} | {
|
|
@@ -4202,12 +4272,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
4202
4272
|
type: z.ZodLiteral<"onetime">;
|
|
4203
4273
|
startTime: z.ZodNumber;
|
|
4204
4274
|
stopTime: z.ZodNumber;
|
|
4275
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
4205
4276
|
}, "strip", z.ZodTypeAny, {
|
|
4206
4277
|
type: "onetime";
|
|
4278
|
+
ioPort: string | null;
|
|
4207
4279
|
startTime: number;
|
|
4208
4280
|
stopTime: number;
|
|
4209
4281
|
}, {
|
|
4210
4282
|
type: "onetime";
|
|
4283
|
+
ioPort: string | null;
|
|
4211
4284
|
startTime: number;
|
|
4212
4285
|
stopTime: number;
|
|
4213
4286
|
}>, z.ZodObject<{
|
|
@@ -4401,6 +4474,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
4401
4474
|
ioPort: string | null;
|
|
4402
4475
|
} | {
|
|
4403
4476
|
type: "onetime";
|
|
4477
|
+
ioPort: string | null;
|
|
4404
4478
|
startTime: number;
|
|
4405
4479
|
stopTime: number;
|
|
4406
4480
|
} | {
|
|
@@ -4454,6 +4528,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
4454
4528
|
ioPort: string | null;
|
|
4455
4529
|
} | {
|
|
4456
4530
|
type: "onetime";
|
|
4531
|
+
ioPort: string | null;
|
|
4457
4532
|
startTime: number;
|
|
4458
4533
|
stopTime: number;
|
|
4459
4534
|
} | {
|
|
@@ -4488,12 +4563,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
4488
4563
|
type: z.ZodLiteral<"onetime">;
|
|
4489
4564
|
startTime: z.ZodNumber;
|
|
4490
4565
|
stopTime: z.ZodNumber;
|
|
4566
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
4491
4567
|
}, "strip", z.ZodTypeAny, {
|
|
4492
4568
|
type: "onetime";
|
|
4569
|
+
ioPort: string | null;
|
|
4493
4570
|
startTime: number;
|
|
4494
4571
|
stopTime: number;
|
|
4495
4572
|
}, {
|
|
4496
4573
|
type: "onetime";
|
|
4574
|
+
ioPort: string | null;
|
|
4497
4575
|
startTime: number;
|
|
4498
4576
|
stopTime: number;
|
|
4499
4577
|
}>, z.ZodObject<{
|
|
@@ -4687,6 +4765,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
4687
4765
|
ioPort: string | null;
|
|
4688
4766
|
} | {
|
|
4689
4767
|
type: "onetime";
|
|
4768
|
+
ioPort: string | null;
|
|
4690
4769
|
startTime: number;
|
|
4691
4770
|
stopTime: number;
|
|
4692
4771
|
} | {
|
|
@@ -4740,6 +4819,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
4740
4819
|
ioPort: string | null;
|
|
4741
4820
|
} | {
|
|
4742
4821
|
type: "onetime";
|
|
4822
|
+
ioPort: string | null;
|
|
4743
4823
|
startTime: number;
|
|
4744
4824
|
stopTime: number;
|
|
4745
4825
|
} | {
|
|
@@ -4774,12 +4854,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
4774
4854
|
type: z.ZodLiteral<"onetime">;
|
|
4775
4855
|
startTime: z.ZodNumber;
|
|
4776
4856
|
stopTime: z.ZodNumber;
|
|
4857
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
4777
4858
|
}, "strip", z.ZodTypeAny, {
|
|
4778
4859
|
type: "onetime";
|
|
4860
|
+
ioPort: string | null;
|
|
4779
4861
|
startTime: number;
|
|
4780
4862
|
stopTime: number;
|
|
4781
4863
|
}, {
|
|
4782
4864
|
type: "onetime";
|
|
4865
|
+
ioPort: string | null;
|
|
4783
4866
|
startTime: number;
|
|
4784
4867
|
stopTime: number;
|
|
4785
4868
|
}>, z.ZodObject<{
|
|
@@ -4973,6 +5056,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
4973
5056
|
ioPort: string | null;
|
|
4974
5057
|
} | {
|
|
4975
5058
|
type: "onetime";
|
|
5059
|
+
ioPort: string | null;
|
|
4976
5060
|
startTime: number;
|
|
4977
5061
|
stopTime: number;
|
|
4978
5062
|
} | {
|
|
@@ -5026,6 +5110,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
5026
5110
|
ioPort: string | null;
|
|
5027
5111
|
} | {
|
|
5028
5112
|
type: "onetime";
|
|
5113
|
+
ioPort: string | null;
|
|
5029
5114
|
startTime: number;
|
|
5030
5115
|
stopTime: number;
|
|
5031
5116
|
} | {
|
|
@@ -5060,12 +5145,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
5060
5145
|
type: z.ZodLiteral<"onetime">;
|
|
5061
5146
|
startTime: z.ZodNumber;
|
|
5062
5147
|
stopTime: z.ZodNumber;
|
|
5148
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
5063
5149
|
}, "strip", z.ZodTypeAny, {
|
|
5064
5150
|
type: "onetime";
|
|
5151
|
+
ioPort: string | null;
|
|
5065
5152
|
startTime: number;
|
|
5066
5153
|
stopTime: number;
|
|
5067
5154
|
}, {
|
|
5068
5155
|
type: "onetime";
|
|
5156
|
+
ioPort: string | null;
|
|
5069
5157
|
startTime: number;
|
|
5070
5158
|
stopTime: number;
|
|
5071
5159
|
}>, z.ZodObject<{
|
|
@@ -5259,6 +5347,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
5259
5347
|
ioPort: string | null;
|
|
5260
5348
|
} | {
|
|
5261
5349
|
type: "onetime";
|
|
5350
|
+
ioPort: string | null;
|
|
5262
5351
|
startTime: number;
|
|
5263
5352
|
stopTime: number;
|
|
5264
5353
|
} | {
|
|
@@ -5312,6 +5401,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
5312
5401
|
ioPort: string | null;
|
|
5313
5402
|
} | {
|
|
5314
5403
|
type: "onetime";
|
|
5404
|
+
ioPort: string | null;
|
|
5315
5405
|
startTime: number;
|
|
5316
5406
|
stopTime: number;
|
|
5317
5407
|
} | {
|
|
@@ -5346,12 +5436,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
5346
5436
|
type: z.ZodLiteral<"onetime">;
|
|
5347
5437
|
startTime: z.ZodNumber;
|
|
5348
5438
|
stopTime: z.ZodNumber;
|
|
5439
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
5349
5440
|
}, "strip", z.ZodTypeAny, {
|
|
5350
5441
|
type: "onetime";
|
|
5442
|
+
ioPort: string | null;
|
|
5351
5443
|
startTime: number;
|
|
5352
5444
|
stopTime: number;
|
|
5353
5445
|
}, {
|
|
5354
5446
|
type: "onetime";
|
|
5447
|
+
ioPort: string | null;
|
|
5355
5448
|
startTime: number;
|
|
5356
5449
|
stopTime: number;
|
|
5357
5450
|
}>, z.ZodObject<{
|
|
@@ -5552,6 +5645,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
5552
5645
|
ioPort: string | null;
|
|
5553
5646
|
} | {
|
|
5554
5647
|
type: "onetime";
|
|
5648
|
+
ioPort: string | null;
|
|
5555
5649
|
startTime: number;
|
|
5556
5650
|
stopTime: number;
|
|
5557
5651
|
} | {
|
|
@@ -5611,6 +5705,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
5611
5705
|
ioPort: string | null;
|
|
5612
5706
|
} | {
|
|
5613
5707
|
type: "onetime";
|
|
5708
|
+
ioPort: string | null;
|
|
5614
5709
|
startTime: number;
|
|
5615
5710
|
stopTime: number;
|
|
5616
5711
|
} | {
|
|
@@ -5651,12 +5746,15 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
5651
5746
|
type: z.ZodLiteral<"onetime">;
|
|
5652
5747
|
startTime: z.ZodNumber;
|
|
5653
5748
|
stopTime: z.ZodNumber;
|
|
5749
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
5654
5750
|
}, "strip", z.ZodTypeAny, {
|
|
5655
5751
|
type: "onetime";
|
|
5752
|
+
ioPort: string | null;
|
|
5656
5753
|
startTime: number;
|
|
5657
5754
|
stopTime: number;
|
|
5658
5755
|
}, {
|
|
5659
5756
|
type: "onetime";
|
|
5757
|
+
ioPort: string | null;
|
|
5660
5758
|
startTime: number;
|
|
5661
5759
|
stopTime: number;
|
|
5662
5760
|
}>, z.ZodObject<{
|
|
@@ -5857,6 +5955,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
5857
5955
|
ioPort: string | null;
|
|
5858
5956
|
} | {
|
|
5859
5957
|
type: "onetime";
|
|
5958
|
+
ioPort: string | null;
|
|
5860
5959
|
startTime: number;
|
|
5861
5960
|
stopTime: number;
|
|
5862
5961
|
} | {
|
|
@@ -5916,6 +6015,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
5916
6015
|
ioPort: string | null;
|
|
5917
6016
|
} | {
|
|
5918
6017
|
type: "onetime";
|
|
6018
|
+
ioPort: string | null;
|
|
5919
6019
|
startTime: number;
|
|
5920
6020
|
stopTime: number;
|
|
5921
6021
|
} | {
|
|
@@ -5960,12 +6060,15 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
5960
6060
|
type: z.ZodLiteral<"onetime">;
|
|
5961
6061
|
startTime: z.ZodNumber;
|
|
5962
6062
|
stopTime: z.ZodNumber;
|
|
6063
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
5963
6064
|
}, "strip", z.ZodTypeAny, {
|
|
5964
6065
|
type: "onetime";
|
|
6066
|
+
ioPort: string | null;
|
|
5965
6067
|
startTime: number;
|
|
5966
6068
|
stopTime: number;
|
|
5967
6069
|
}, {
|
|
5968
6070
|
type: "onetime";
|
|
6071
|
+
ioPort: string | null;
|
|
5969
6072
|
startTime: number;
|
|
5970
6073
|
stopTime: number;
|
|
5971
6074
|
}>, z.ZodObject<{
|
|
@@ -6191,6 +6294,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
6191
6294
|
ioPort: string | null;
|
|
6192
6295
|
} | {
|
|
6193
6296
|
type: "onetime";
|
|
6297
|
+
ioPort: string | null;
|
|
6194
6298
|
startTime: number;
|
|
6195
6299
|
stopTime: number;
|
|
6196
6300
|
} | {
|
|
@@ -6257,6 +6361,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
6257
6361
|
ioPort: string | null;
|
|
6258
6362
|
} | {
|
|
6259
6363
|
type: "onetime";
|
|
6364
|
+
ioPort: string | null;
|
|
6260
6365
|
startTime: number;
|
|
6261
6366
|
stopTime: number;
|
|
6262
6367
|
} | {
|
|
@@ -6297,12 +6402,15 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
6297
6402
|
type: z.ZodLiteral<"onetime">;
|
|
6298
6403
|
startTime: z.ZodNumber;
|
|
6299
6404
|
stopTime: z.ZodNumber;
|
|
6405
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
6300
6406
|
}, "strip", z.ZodTypeAny, {
|
|
6301
6407
|
type: "onetime";
|
|
6408
|
+
ioPort: string | null;
|
|
6302
6409
|
startTime: number;
|
|
6303
6410
|
stopTime: number;
|
|
6304
6411
|
}, {
|
|
6305
6412
|
type: "onetime";
|
|
6413
|
+
ioPort: string | null;
|
|
6306
6414
|
startTime: number;
|
|
6307
6415
|
stopTime: number;
|
|
6308
6416
|
}>, z.ZodObject<{
|
|
@@ -6513,6 +6621,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
6513
6621
|
ioPort: string | null;
|
|
6514
6622
|
} | {
|
|
6515
6623
|
type: "onetime";
|
|
6624
|
+
ioPort: string | null;
|
|
6516
6625
|
startTime: number;
|
|
6517
6626
|
stopTime: number;
|
|
6518
6627
|
} | {
|
|
@@ -6582,6 +6691,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
6582
6691
|
ioPort: string | null;
|
|
6583
6692
|
} | {
|
|
6584
6693
|
type: "onetime";
|
|
6694
|
+
ioPort: string | null;
|
|
6585
6695
|
startTime: number;
|
|
6586
6696
|
stopTime: number;
|
|
6587
6697
|
} | {
|
|
@@ -6631,12 +6741,15 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
6631
6741
|
type: z.ZodLiteral<"onetime">;
|
|
6632
6742
|
startTime: z.ZodNumber;
|
|
6633
6743
|
stopTime: z.ZodNumber;
|
|
6744
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
6634
6745
|
}, "strip", z.ZodTypeAny, {
|
|
6635
6746
|
type: "onetime";
|
|
6747
|
+
ioPort: string | null;
|
|
6636
6748
|
startTime: number;
|
|
6637
6749
|
stopTime: number;
|
|
6638
6750
|
}, {
|
|
6639
6751
|
type: "onetime";
|
|
6752
|
+
ioPort: string | null;
|
|
6640
6753
|
startTime: number;
|
|
6641
6754
|
stopTime: number;
|
|
6642
6755
|
}>, z.ZodObject<{
|
|
@@ -6837,6 +6950,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
6837
6950
|
ioPort: string | null;
|
|
6838
6951
|
} | {
|
|
6839
6952
|
type: "onetime";
|
|
6953
|
+
ioPort: string | null;
|
|
6840
6954
|
startTime: number;
|
|
6841
6955
|
stopTime: number;
|
|
6842
6956
|
} | {
|
|
@@ -6896,6 +7010,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
6896
7010
|
ioPort: string | null;
|
|
6897
7011
|
} | {
|
|
6898
7012
|
type: "onetime";
|
|
7013
|
+
ioPort: string | null;
|
|
6899
7014
|
startTime: number;
|
|
6900
7015
|
stopTime: number;
|
|
6901
7016
|
} | {
|
|
@@ -6936,12 +7051,15 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
6936
7051
|
type: z.ZodLiteral<"onetime">;
|
|
6937
7052
|
startTime: z.ZodNumber;
|
|
6938
7053
|
stopTime: z.ZodNumber;
|
|
7054
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
6939
7055
|
}, "strip", z.ZodTypeAny, {
|
|
6940
7056
|
type: "onetime";
|
|
7057
|
+
ioPort: string | null;
|
|
6941
7058
|
startTime: number;
|
|
6942
7059
|
stopTime: number;
|
|
6943
7060
|
}, {
|
|
6944
7061
|
type: "onetime";
|
|
7062
|
+
ioPort: string | null;
|
|
6945
7063
|
startTime: number;
|
|
6946
7064
|
stopTime: number;
|
|
6947
7065
|
}>, z.ZodObject<{
|
|
@@ -7135,6 +7253,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
7135
7253
|
ioPort: string | null;
|
|
7136
7254
|
} | {
|
|
7137
7255
|
type: "onetime";
|
|
7256
|
+
ioPort: string | null;
|
|
7138
7257
|
startTime: number;
|
|
7139
7258
|
stopTime: number;
|
|
7140
7259
|
} | {
|
|
@@ -7188,6 +7307,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
7188
7307
|
ioPort: string | null;
|
|
7189
7308
|
} | {
|
|
7190
7309
|
type: "onetime";
|
|
7310
|
+
ioPort: string | null;
|
|
7191
7311
|
startTime: number;
|
|
7192
7312
|
stopTime: number;
|
|
7193
7313
|
} | {
|
|
@@ -7222,12 +7342,15 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
7222
7342
|
type: z.ZodLiteral<"onetime">;
|
|
7223
7343
|
startTime: z.ZodNumber;
|
|
7224
7344
|
stopTime: z.ZodNumber;
|
|
7345
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
7225
7346
|
}, "strip", z.ZodTypeAny, {
|
|
7226
7347
|
type: "onetime";
|
|
7348
|
+
ioPort: string | null;
|
|
7227
7349
|
startTime: number;
|
|
7228
7350
|
stopTime: number;
|
|
7229
7351
|
}, {
|
|
7230
7352
|
type: "onetime";
|
|
7353
|
+
ioPort: string | null;
|
|
7231
7354
|
startTime: number;
|
|
7232
7355
|
stopTime: number;
|
|
7233
7356
|
}>, z.ZodObject<{
|
|
@@ -7421,6 +7544,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
7421
7544
|
ioPort: string | null;
|
|
7422
7545
|
} | {
|
|
7423
7546
|
type: "onetime";
|
|
7547
|
+
ioPort: string | null;
|
|
7424
7548
|
startTime: number;
|
|
7425
7549
|
stopTime: number;
|
|
7426
7550
|
} | {
|
|
@@ -7474,6 +7598,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
7474
7598
|
ioPort: string | null;
|
|
7475
7599
|
} | {
|
|
7476
7600
|
type: "onetime";
|
|
7601
|
+
ioPort: string | null;
|
|
7477
7602
|
startTime: number;
|
|
7478
7603
|
stopTime: number;
|
|
7479
7604
|
} | {
|
|
@@ -7508,12 +7633,15 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
7508
7633
|
type: z.ZodLiteral<"onetime">;
|
|
7509
7634
|
startTime: z.ZodNumber;
|
|
7510
7635
|
stopTime: z.ZodNumber;
|
|
7636
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
7511
7637
|
}, "strip", z.ZodTypeAny, {
|
|
7512
7638
|
type: "onetime";
|
|
7639
|
+
ioPort: string | null;
|
|
7513
7640
|
startTime: number;
|
|
7514
7641
|
stopTime: number;
|
|
7515
7642
|
}, {
|
|
7516
7643
|
type: "onetime";
|
|
7644
|
+
ioPort: string | null;
|
|
7517
7645
|
startTime: number;
|
|
7518
7646
|
stopTime: number;
|
|
7519
7647
|
}>, z.ZodObject<{
|
|
@@ -7721,6 +7849,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
7721
7849
|
ioPort: string | null;
|
|
7722
7850
|
} | {
|
|
7723
7851
|
type: "onetime";
|
|
7852
|
+
ioPort: string | null;
|
|
7724
7853
|
startTime: number;
|
|
7725
7854
|
stopTime: number;
|
|
7726
7855
|
} | {
|
|
@@ -7788,6 +7917,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
7788
7917
|
ioPort: string | null;
|
|
7789
7918
|
} | {
|
|
7790
7919
|
type: "onetime";
|
|
7920
|
+
ioPort: string | null;
|
|
7791
7921
|
startTime: number;
|
|
7792
7922
|
stopTime: number;
|
|
7793
7923
|
} | {
|
|
@@ -7836,12 +7966,15 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
7836
7966
|
type: z.ZodLiteral<"onetime">;
|
|
7837
7967
|
startTime: z.ZodNumber;
|
|
7838
7968
|
stopTime: z.ZodNumber;
|
|
7969
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
7839
7970
|
}, "strip", z.ZodTypeAny, {
|
|
7840
7971
|
type: "onetime";
|
|
7972
|
+
ioPort: string | null;
|
|
7841
7973
|
startTime: number;
|
|
7842
7974
|
stopTime: number;
|
|
7843
7975
|
}, {
|
|
7844
7976
|
type: "onetime";
|
|
7977
|
+
ioPort: string | null;
|
|
7845
7978
|
startTime: number;
|
|
7846
7979
|
stopTime: number;
|
|
7847
7980
|
}>, z.ZodObject<{
|
|
@@ -8035,6 +8168,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
8035
8168
|
ioPort: string | null;
|
|
8036
8169
|
} | {
|
|
8037
8170
|
type: "onetime";
|
|
8171
|
+
ioPort: string | null;
|
|
8038
8172
|
startTime: number;
|
|
8039
8173
|
stopTime: number;
|
|
8040
8174
|
} | {
|
|
@@ -8088,6 +8222,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
8088
8222
|
ioPort: string | null;
|
|
8089
8223
|
} | {
|
|
8090
8224
|
type: "onetime";
|
|
8225
|
+
ioPort: string | null;
|
|
8091
8226
|
startTime: number;
|
|
8092
8227
|
stopTime: number;
|
|
8093
8228
|
} | {
|
|
@@ -8122,12 +8257,15 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
8122
8257
|
type: z.ZodLiteral<"onetime">;
|
|
8123
8258
|
startTime: z.ZodNumber;
|
|
8124
8259
|
stopTime: z.ZodNumber;
|
|
8260
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
8125
8261
|
}, "strip", z.ZodTypeAny, {
|
|
8126
8262
|
type: "onetime";
|
|
8263
|
+
ioPort: string | null;
|
|
8127
8264
|
startTime: number;
|
|
8128
8265
|
stopTime: number;
|
|
8129
8266
|
}, {
|
|
8130
8267
|
type: "onetime";
|
|
8268
|
+
ioPort: string | null;
|
|
8131
8269
|
startTime: number;
|
|
8132
8270
|
stopTime: number;
|
|
8133
8271
|
}>, z.ZodObject<{
|
|
@@ -8321,6 +8459,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
8321
8459
|
ioPort: string | null;
|
|
8322
8460
|
} | {
|
|
8323
8461
|
type: "onetime";
|
|
8462
|
+
ioPort: string | null;
|
|
8324
8463
|
startTime: number;
|
|
8325
8464
|
stopTime: number;
|
|
8326
8465
|
} | {
|
|
@@ -8374,6 +8513,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
8374
8513
|
ioPort: string | null;
|
|
8375
8514
|
} | {
|
|
8376
8515
|
type: "onetime";
|
|
8516
|
+
ioPort: string | null;
|
|
8377
8517
|
startTime: number;
|
|
8378
8518
|
stopTime: number;
|
|
8379
8519
|
} | {
|
|
@@ -8408,12 +8548,15 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
8408
8548
|
type: z.ZodLiteral<"onetime">;
|
|
8409
8549
|
startTime: z.ZodNumber;
|
|
8410
8550
|
stopTime: z.ZodNumber;
|
|
8551
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
8411
8552
|
}, "strip", z.ZodTypeAny, {
|
|
8412
8553
|
type: "onetime";
|
|
8554
|
+
ioPort: string | null;
|
|
8413
8555
|
startTime: number;
|
|
8414
8556
|
stopTime: number;
|
|
8415
8557
|
}, {
|
|
8416
8558
|
type: "onetime";
|
|
8559
|
+
ioPort: string | null;
|
|
8417
8560
|
startTime: number;
|
|
8418
8561
|
stopTime: number;
|
|
8419
8562
|
}>, z.ZodObject<{
|
|
@@ -8607,6 +8750,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
8607
8750
|
ioPort: string | null;
|
|
8608
8751
|
} | {
|
|
8609
8752
|
type: "onetime";
|
|
8753
|
+
ioPort: string | null;
|
|
8610
8754
|
startTime: number;
|
|
8611
8755
|
stopTime: number;
|
|
8612
8756
|
} | {
|
|
@@ -8660,6 +8804,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
8660
8804
|
ioPort: string | null;
|
|
8661
8805
|
} | {
|
|
8662
8806
|
type: "onetime";
|
|
8807
|
+
ioPort: string | null;
|
|
8663
8808
|
startTime: number;
|
|
8664
8809
|
stopTime: number;
|
|
8665
8810
|
} | {
|
|
@@ -8694,12 +8839,15 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
8694
8839
|
type: z.ZodLiteral<"onetime">;
|
|
8695
8840
|
startTime: z.ZodNumber;
|
|
8696
8841
|
stopTime: z.ZodNumber;
|
|
8842
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
8697
8843
|
}, "strip", z.ZodTypeAny, {
|
|
8698
8844
|
type: "onetime";
|
|
8845
|
+
ioPort: string | null;
|
|
8699
8846
|
startTime: number;
|
|
8700
8847
|
stopTime: number;
|
|
8701
8848
|
}, {
|
|
8702
8849
|
type: "onetime";
|
|
8850
|
+
ioPort: string | null;
|
|
8703
8851
|
startTime: number;
|
|
8704
8852
|
stopTime: number;
|
|
8705
8853
|
}>, z.ZodObject<{
|
|
@@ -8893,6 +9041,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
8893
9041
|
ioPort: string | null;
|
|
8894
9042
|
} | {
|
|
8895
9043
|
type: "onetime";
|
|
9044
|
+
ioPort: string | null;
|
|
8896
9045
|
startTime: number;
|
|
8897
9046
|
stopTime: number;
|
|
8898
9047
|
} | {
|
|
@@ -8946,6 +9095,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
8946
9095
|
ioPort: string | null;
|
|
8947
9096
|
} | {
|
|
8948
9097
|
type: "onetime";
|
|
9098
|
+
ioPort: string | null;
|
|
8949
9099
|
startTime: number;
|
|
8950
9100
|
stopTime: number;
|
|
8951
9101
|
} | {
|
|
@@ -8980,12 +9130,15 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
8980
9130
|
type: z.ZodLiteral<"onetime">;
|
|
8981
9131
|
startTime: z.ZodNumber;
|
|
8982
9132
|
stopTime: z.ZodNumber;
|
|
9133
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
8983
9134
|
}, "strip", z.ZodTypeAny, {
|
|
8984
9135
|
type: "onetime";
|
|
9136
|
+
ioPort: string | null;
|
|
8985
9137
|
startTime: number;
|
|
8986
9138
|
stopTime: number;
|
|
8987
9139
|
}, {
|
|
8988
9140
|
type: "onetime";
|
|
9141
|
+
ioPort: string | null;
|
|
8989
9142
|
startTime: number;
|
|
8990
9143
|
stopTime: number;
|
|
8991
9144
|
}>, z.ZodObject<{
|
|
@@ -9179,6 +9332,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
9179
9332
|
ioPort: string | null;
|
|
9180
9333
|
} | {
|
|
9181
9334
|
type: "onetime";
|
|
9335
|
+
ioPort: string | null;
|
|
9182
9336
|
startTime: number;
|
|
9183
9337
|
stopTime: number;
|
|
9184
9338
|
} | {
|
|
@@ -9232,6 +9386,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
9232
9386
|
ioPort: string | null;
|
|
9233
9387
|
} | {
|
|
9234
9388
|
type: "onetime";
|
|
9389
|
+
ioPort: string | null;
|
|
9235
9390
|
startTime: number;
|
|
9236
9391
|
stopTime: number;
|
|
9237
9392
|
} | {
|
|
@@ -9266,12 +9421,15 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
9266
9421
|
type: z.ZodLiteral<"onetime">;
|
|
9267
9422
|
startTime: z.ZodNumber;
|
|
9268
9423
|
stopTime: z.ZodNumber;
|
|
9424
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
9269
9425
|
}, "strip", z.ZodTypeAny, {
|
|
9270
9426
|
type: "onetime";
|
|
9427
|
+
ioPort: string | null;
|
|
9271
9428
|
startTime: number;
|
|
9272
9429
|
stopTime: number;
|
|
9273
9430
|
}, {
|
|
9274
9431
|
type: "onetime";
|
|
9432
|
+
ioPort: string | null;
|
|
9275
9433
|
startTime: number;
|
|
9276
9434
|
stopTime: number;
|
|
9277
9435
|
}>, z.ZodObject<{
|
|
@@ -9465,6 +9623,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
9465
9623
|
ioPort: string | null;
|
|
9466
9624
|
} | {
|
|
9467
9625
|
type: "onetime";
|
|
9626
|
+
ioPort: string | null;
|
|
9468
9627
|
startTime: number;
|
|
9469
9628
|
stopTime: number;
|
|
9470
9629
|
} | {
|
|
@@ -9518,6 +9677,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
9518
9677
|
ioPort: string | null;
|
|
9519
9678
|
} | {
|
|
9520
9679
|
type: "onetime";
|
|
9680
|
+
ioPort: string | null;
|
|
9521
9681
|
startTime: number;
|
|
9522
9682
|
stopTime: number;
|
|
9523
9683
|
} | {
|
|
@@ -9552,12 +9712,15 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
9552
9712
|
type: z.ZodLiteral<"onetime">;
|
|
9553
9713
|
startTime: z.ZodNumber;
|
|
9554
9714
|
stopTime: z.ZodNumber;
|
|
9715
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
9555
9716
|
}, "strip", z.ZodTypeAny, {
|
|
9556
9717
|
type: "onetime";
|
|
9718
|
+
ioPort: string | null;
|
|
9557
9719
|
startTime: number;
|
|
9558
9720
|
stopTime: number;
|
|
9559
9721
|
}, {
|
|
9560
9722
|
type: "onetime";
|
|
9723
|
+
ioPort: string | null;
|
|
9561
9724
|
startTime: number;
|
|
9562
9725
|
stopTime: number;
|
|
9563
9726
|
}>, z.ZodObject<{
|
|
@@ -9751,6 +9914,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
9751
9914
|
ioPort: string | null;
|
|
9752
9915
|
} | {
|
|
9753
9916
|
type: "onetime";
|
|
9917
|
+
ioPort: string | null;
|
|
9754
9918
|
startTime: number;
|
|
9755
9919
|
stopTime: number;
|
|
9756
9920
|
} | {
|
|
@@ -9804,6 +9968,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
9804
9968
|
ioPort: string | null;
|
|
9805
9969
|
} | {
|
|
9806
9970
|
type: "onetime";
|
|
9971
|
+
ioPort: string | null;
|
|
9807
9972
|
startTime: number;
|
|
9808
9973
|
stopTime: number;
|
|
9809
9974
|
} | {
|
|
@@ -9838,12 +10003,15 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
9838
10003
|
type: z.ZodLiteral<"onetime">;
|
|
9839
10004
|
startTime: z.ZodNumber;
|
|
9840
10005
|
stopTime: z.ZodNumber;
|
|
10006
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
9841
10007
|
}, "strip", z.ZodTypeAny, {
|
|
9842
10008
|
type: "onetime";
|
|
10009
|
+
ioPort: string | null;
|
|
9843
10010
|
startTime: number;
|
|
9844
10011
|
stopTime: number;
|
|
9845
10012
|
}, {
|
|
9846
10013
|
type: "onetime";
|
|
10014
|
+
ioPort: string | null;
|
|
9847
10015
|
startTime: number;
|
|
9848
10016
|
stopTime: number;
|
|
9849
10017
|
}>, z.ZodObject<{
|
|
@@ -10037,6 +10205,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10037
10205
|
ioPort: string | null;
|
|
10038
10206
|
} | {
|
|
10039
10207
|
type: "onetime";
|
|
10208
|
+
ioPort: string | null;
|
|
10040
10209
|
startTime: number;
|
|
10041
10210
|
stopTime: number;
|
|
10042
10211
|
} | {
|
|
@@ -10090,6 +10259,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10090
10259
|
ioPort: string | null;
|
|
10091
10260
|
} | {
|
|
10092
10261
|
type: "onetime";
|
|
10262
|
+
ioPort: string | null;
|
|
10093
10263
|
startTime: number;
|
|
10094
10264
|
stopTime: number;
|
|
10095
10265
|
} | {
|
|
@@ -10124,12 +10294,15 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10124
10294
|
type: z.ZodLiteral<"onetime">;
|
|
10125
10295
|
startTime: z.ZodNumber;
|
|
10126
10296
|
stopTime: z.ZodNumber;
|
|
10297
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
10127
10298
|
}, "strip", z.ZodTypeAny, {
|
|
10128
10299
|
type: "onetime";
|
|
10300
|
+
ioPort: string | null;
|
|
10129
10301
|
startTime: number;
|
|
10130
10302
|
stopTime: number;
|
|
10131
10303
|
}, {
|
|
10132
10304
|
type: "onetime";
|
|
10305
|
+
ioPort: string | null;
|
|
10133
10306
|
startTime: number;
|
|
10134
10307
|
stopTime: number;
|
|
10135
10308
|
}>, z.ZodObject<{
|
|
@@ -10323,6 +10496,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10323
10496
|
ioPort: string | null;
|
|
10324
10497
|
} | {
|
|
10325
10498
|
type: "onetime";
|
|
10499
|
+
ioPort: string | null;
|
|
10326
10500
|
startTime: number;
|
|
10327
10501
|
stopTime: number;
|
|
10328
10502
|
} | {
|
|
@@ -10376,6 +10550,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10376
10550
|
ioPort: string | null;
|
|
10377
10551
|
} | {
|
|
10378
10552
|
type: "onetime";
|
|
10553
|
+
ioPort: string | null;
|
|
10379
10554
|
startTime: number;
|
|
10380
10555
|
stopTime: number;
|
|
10381
10556
|
} | {
|
|
@@ -10410,12 +10585,15 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10410
10585
|
type: z.ZodLiteral<"onetime">;
|
|
10411
10586
|
startTime: z.ZodNumber;
|
|
10412
10587
|
stopTime: z.ZodNumber;
|
|
10588
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
10413
10589
|
}, "strip", z.ZodTypeAny, {
|
|
10414
10590
|
type: "onetime";
|
|
10591
|
+
ioPort: string | null;
|
|
10415
10592
|
startTime: number;
|
|
10416
10593
|
stopTime: number;
|
|
10417
10594
|
}, {
|
|
10418
10595
|
type: "onetime";
|
|
10596
|
+
ioPort: string | null;
|
|
10419
10597
|
startTime: number;
|
|
10420
10598
|
stopTime: number;
|
|
10421
10599
|
}>, z.ZodObject<{
|
|
@@ -10609,6 +10787,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10609
10787
|
ioPort: string | null;
|
|
10610
10788
|
} | {
|
|
10611
10789
|
type: "onetime";
|
|
10790
|
+
ioPort: string | null;
|
|
10612
10791
|
startTime: number;
|
|
10613
10792
|
stopTime: number;
|
|
10614
10793
|
} | {
|
|
@@ -10662,6 +10841,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10662
10841
|
ioPort: string | null;
|
|
10663
10842
|
} | {
|
|
10664
10843
|
type: "onetime";
|
|
10844
|
+
ioPort: string | null;
|
|
10665
10845
|
startTime: number;
|
|
10666
10846
|
stopTime: number;
|
|
10667
10847
|
} | {
|
|
@@ -10696,12 +10876,15 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10696
10876
|
type: z.ZodLiteral<"onetime">;
|
|
10697
10877
|
startTime: z.ZodNumber;
|
|
10698
10878
|
stopTime: z.ZodNumber;
|
|
10879
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
10699
10880
|
}, "strip", z.ZodTypeAny, {
|
|
10700
10881
|
type: "onetime";
|
|
10882
|
+
ioPort: string | null;
|
|
10701
10883
|
startTime: number;
|
|
10702
10884
|
stopTime: number;
|
|
10703
10885
|
}, {
|
|
10704
10886
|
type: "onetime";
|
|
10887
|
+
ioPort: string | null;
|
|
10705
10888
|
startTime: number;
|
|
10706
10889
|
stopTime: number;
|
|
10707
10890
|
}>, z.ZodObject<{
|
|
@@ -10895,6 +11078,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10895
11078
|
ioPort: string | null;
|
|
10896
11079
|
} | {
|
|
10897
11080
|
type: "onetime";
|
|
11081
|
+
ioPort: string | null;
|
|
10898
11082
|
startTime: number;
|
|
10899
11083
|
stopTime: number;
|
|
10900
11084
|
} | {
|
|
@@ -10948,6 +11132,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10948
11132
|
ioPort: string | null;
|
|
10949
11133
|
} | {
|
|
10950
11134
|
type: "onetime";
|
|
11135
|
+
ioPort: string | null;
|
|
10951
11136
|
startTime: number;
|
|
10952
11137
|
stopTime: number;
|
|
10953
11138
|
} | {
|
|
@@ -10982,12 +11167,15 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10982
11167
|
type: z.ZodLiteral<"onetime">;
|
|
10983
11168
|
startTime: z.ZodNumber;
|
|
10984
11169
|
stopTime: z.ZodNumber;
|
|
11170
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
10985
11171
|
}, "strip", z.ZodTypeAny, {
|
|
10986
11172
|
type: "onetime";
|
|
11173
|
+
ioPort: string | null;
|
|
10987
11174
|
startTime: number;
|
|
10988
11175
|
stopTime: number;
|
|
10989
11176
|
}, {
|
|
10990
11177
|
type: "onetime";
|
|
11178
|
+
ioPort: string | null;
|
|
10991
11179
|
startTime: number;
|
|
10992
11180
|
stopTime: number;
|
|
10993
11181
|
}>, z.ZodObject<{
|
|
@@ -11181,6 +11369,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11181
11369
|
ioPort: string | null;
|
|
11182
11370
|
} | {
|
|
11183
11371
|
type: "onetime";
|
|
11372
|
+
ioPort: string | null;
|
|
11184
11373
|
startTime: number;
|
|
11185
11374
|
stopTime: number;
|
|
11186
11375
|
} | {
|
|
@@ -11234,6 +11423,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11234
11423
|
ioPort: string | null;
|
|
11235
11424
|
} | {
|
|
11236
11425
|
type: "onetime";
|
|
11426
|
+
ioPort: string | null;
|
|
11237
11427
|
startTime: number;
|
|
11238
11428
|
stopTime: number;
|
|
11239
11429
|
} | {
|
|
@@ -11268,12 +11458,15 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11268
11458
|
type: z.ZodLiteral<"onetime">;
|
|
11269
11459
|
startTime: z.ZodNumber;
|
|
11270
11460
|
stopTime: z.ZodNumber;
|
|
11461
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
11271
11462
|
}, "strip", z.ZodTypeAny, {
|
|
11272
11463
|
type: "onetime";
|
|
11464
|
+
ioPort: string | null;
|
|
11273
11465
|
startTime: number;
|
|
11274
11466
|
stopTime: number;
|
|
11275
11467
|
}, {
|
|
11276
11468
|
type: "onetime";
|
|
11469
|
+
ioPort: string | null;
|
|
11277
11470
|
startTime: number;
|
|
11278
11471
|
stopTime: number;
|
|
11279
11472
|
}>, z.ZodObject<{
|
|
@@ -11474,6 +11667,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11474
11667
|
ioPort: string | null;
|
|
11475
11668
|
} | {
|
|
11476
11669
|
type: "onetime";
|
|
11670
|
+
ioPort: string | null;
|
|
11477
11671
|
startTime: number;
|
|
11478
11672
|
stopTime: number;
|
|
11479
11673
|
} | {
|
|
@@ -11533,6 +11727,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11533
11727
|
ioPort: string | null;
|
|
11534
11728
|
} | {
|
|
11535
11729
|
type: "onetime";
|
|
11730
|
+
ioPort: string | null;
|
|
11536
11731
|
startTime: number;
|
|
11537
11732
|
stopTime: number;
|
|
11538
11733
|
} | {
|
|
@@ -11573,12 +11768,15 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11573
11768
|
type: z.ZodLiteral<"onetime">;
|
|
11574
11769
|
startTime: z.ZodNumber;
|
|
11575
11770
|
stopTime: z.ZodNumber;
|
|
11771
|
+
ioPort: z.ZodNullable<z.ZodString>;
|
|
11576
11772
|
}, "strip", z.ZodTypeAny, {
|
|
11577
11773
|
type: "onetime";
|
|
11774
|
+
ioPort: string | null;
|
|
11578
11775
|
startTime: number;
|
|
11579
11776
|
stopTime: number;
|
|
11580
11777
|
}, {
|
|
11581
11778
|
type: "onetime";
|
|
11779
|
+
ioPort: string | null;
|
|
11582
11780
|
startTime: number;
|
|
11583
11781
|
stopTime: number;
|
|
11584
11782
|
}>, z.ZodObject<{
|
|
@@ -11779,6 +11977,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11779
11977
|
ioPort: string | null;
|
|
11780
11978
|
} | {
|
|
11781
11979
|
type: "onetime";
|
|
11980
|
+
ioPort: string | null;
|
|
11782
11981
|
startTime: number;
|
|
11783
11982
|
stopTime: number;
|
|
11784
11983
|
} | {
|
|
@@ -11838,6 +12037,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11838
12037
|
ioPort: string | null;
|
|
11839
12038
|
} | {
|
|
11840
12039
|
type: "onetime";
|
|
12040
|
+
ioPort: string | null;
|
|
11841
12041
|
startTime: number;
|
|
11842
12042
|
stopTime: number;
|
|
11843
12043
|
} | {
|
|
@@ -11906,6 +12106,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11906
12106
|
ioPort: string | null;
|
|
11907
12107
|
} | {
|
|
11908
12108
|
type: "onetime";
|
|
12109
|
+
ioPort: string | null;
|
|
11909
12110
|
startTime: number;
|
|
11910
12111
|
stopTime: number;
|
|
11911
12112
|
} | {
|
|
@@ -11966,6 +12167,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11966
12167
|
ioPort: string | null;
|
|
11967
12168
|
} | {
|
|
11968
12169
|
type: "onetime";
|
|
12170
|
+
ioPort: string | null;
|
|
11969
12171
|
startTime: number;
|
|
11970
12172
|
stopTime: number;
|
|
11971
12173
|
} | {
|
|
@@ -12034,6 +12236,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12034
12236
|
ioPort: string | null;
|
|
12035
12237
|
} | {
|
|
12036
12238
|
type: "onetime";
|
|
12239
|
+
ioPort: string | null;
|
|
12037
12240
|
startTime: number;
|
|
12038
12241
|
stopTime: number;
|
|
12039
12242
|
} | {
|
|
@@ -12093,6 +12296,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12093
12296
|
ioPort: string | null;
|
|
12094
12297
|
} | {
|
|
12095
12298
|
type: "onetime";
|
|
12299
|
+
ioPort: string | null;
|
|
12096
12300
|
startTime: number;
|
|
12097
12301
|
stopTime: number;
|
|
12098
12302
|
} | {
|
|
@@ -12146,6 +12350,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12146
12350
|
ioPort: string | null;
|
|
12147
12351
|
} | {
|
|
12148
12352
|
type: "onetime";
|
|
12353
|
+
ioPort: string | null;
|
|
12149
12354
|
startTime: number;
|
|
12150
12355
|
stopTime: number;
|
|
12151
12356
|
} | {
|
|
@@ -12199,6 +12404,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12199
12404
|
ioPort: string | null;
|
|
12200
12405
|
} | {
|
|
12201
12406
|
type: "onetime";
|
|
12407
|
+
ioPort: string | null;
|
|
12202
12408
|
startTime: number;
|
|
12203
12409
|
stopTime: number;
|
|
12204
12410
|
} | {
|
|
@@ -12266,6 +12472,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12266
12472
|
ioPort: string | null;
|
|
12267
12473
|
} | {
|
|
12268
12474
|
type: "onetime";
|
|
12475
|
+
ioPort: string | null;
|
|
12269
12476
|
startTime: number;
|
|
12270
12477
|
stopTime: number;
|
|
12271
12478
|
} | {
|
|
@@ -12319,6 +12526,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12319
12526
|
ioPort: string | null;
|
|
12320
12527
|
} | {
|
|
12321
12528
|
type: "onetime";
|
|
12529
|
+
ioPort: string | null;
|
|
12322
12530
|
startTime: number;
|
|
12323
12531
|
stopTime: number;
|
|
12324
12532
|
} | {
|
|
@@ -12372,6 +12580,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12372
12580
|
ioPort: string | null;
|
|
12373
12581
|
} | {
|
|
12374
12582
|
type: "onetime";
|
|
12583
|
+
ioPort: string | null;
|
|
12375
12584
|
startTime: number;
|
|
12376
12585
|
stopTime: number;
|
|
12377
12586
|
} | {
|
|
@@ -12425,6 +12634,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12425
12634
|
ioPort: string | null;
|
|
12426
12635
|
} | {
|
|
12427
12636
|
type: "onetime";
|
|
12637
|
+
ioPort: string | null;
|
|
12428
12638
|
startTime: number;
|
|
12429
12639
|
stopTime: number;
|
|
12430
12640
|
} | {
|
|
@@ -12478,6 +12688,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12478
12688
|
ioPort: string | null;
|
|
12479
12689
|
} | {
|
|
12480
12690
|
type: "onetime";
|
|
12691
|
+
ioPort: string | null;
|
|
12481
12692
|
startTime: number;
|
|
12482
12693
|
stopTime: number;
|
|
12483
12694
|
} | {
|
|
@@ -12531,6 +12742,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12531
12742
|
ioPort: string | null;
|
|
12532
12743
|
} | {
|
|
12533
12744
|
type: "onetime";
|
|
12745
|
+
ioPort: string | null;
|
|
12534
12746
|
startTime: number;
|
|
12535
12747
|
stopTime: number;
|
|
12536
12748
|
} | {
|
|
@@ -12584,6 +12796,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12584
12796
|
ioPort: string | null;
|
|
12585
12797
|
} | {
|
|
12586
12798
|
type: "onetime";
|
|
12799
|
+
ioPort: string | null;
|
|
12587
12800
|
startTime: number;
|
|
12588
12801
|
stopTime: number;
|
|
12589
12802
|
} | {
|
|
@@ -12637,6 +12850,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12637
12850
|
ioPort: string | null;
|
|
12638
12851
|
} | {
|
|
12639
12852
|
type: "onetime";
|
|
12853
|
+
ioPort: string | null;
|
|
12640
12854
|
startTime: number;
|
|
12641
12855
|
stopTime: number;
|
|
12642
12856
|
} | {
|
|
@@ -12690,6 +12904,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12690
12904
|
ioPort: string | null;
|
|
12691
12905
|
} | {
|
|
12692
12906
|
type: "onetime";
|
|
12907
|
+
ioPort: string | null;
|
|
12693
12908
|
startTime: number;
|
|
12694
12909
|
stopTime: number;
|
|
12695
12910
|
} | {
|
|
@@ -12743,6 +12958,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12743
12958
|
ioPort: string | null;
|
|
12744
12959
|
} | {
|
|
12745
12960
|
type: "onetime";
|
|
12961
|
+
ioPort: string | null;
|
|
12746
12962
|
startTime: number;
|
|
12747
12963
|
stopTime: number;
|
|
12748
12964
|
} | {
|
|
@@ -12796,6 +13012,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12796
13012
|
ioPort: string | null;
|
|
12797
13013
|
} | {
|
|
12798
13014
|
type: "onetime";
|
|
13015
|
+
ioPort: string | null;
|
|
12799
13016
|
startTime: number;
|
|
12800
13017
|
stopTime: number;
|
|
12801
13018
|
} | {
|
|
@@ -12849,6 +13066,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12849
13066
|
ioPort: string | null;
|
|
12850
13067
|
} | {
|
|
12851
13068
|
type: "onetime";
|
|
13069
|
+
ioPort: string | null;
|
|
12852
13070
|
startTime: number;
|
|
12853
13071
|
stopTime: number;
|
|
12854
13072
|
} | {
|
|
@@ -12902,6 +13120,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12902
13120
|
ioPort: string | null;
|
|
12903
13121
|
} | {
|
|
12904
13122
|
type: "onetime";
|
|
13123
|
+
ioPort: string | null;
|
|
12905
13124
|
startTime: number;
|
|
12906
13125
|
stopTime: number;
|
|
12907
13126
|
} | {
|
|
@@ -12961,6 +13180,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12961
13180
|
ioPort: string | null;
|
|
12962
13181
|
} | {
|
|
12963
13182
|
type: "onetime";
|
|
13183
|
+
ioPort: string | null;
|
|
12964
13184
|
startTime: number;
|
|
12965
13185
|
stopTime: number;
|
|
12966
13186
|
} | {
|
|
@@ -13029,6 +13249,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
13029
13249
|
ioPort: string | null;
|
|
13030
13250
|
} | {
|
|
13031
13251
|
type: "onetime";
|
|
13252
|
+
ioPort: string | null;
|
|
13032
13253
|
startTime: number;
|
|
13033
13254
|
stopTime: number;
|
|
13034
13255
|
} | {
|
|
@@ -13089,6 +13310,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
13089
13310
|
ioPort: string | null;
|
|
13090
13311
|
} | {
|
|
13091
13312
|
type: "onetime";
|
|
13313
|
+
ioPort: string | null;
|
|
13092
13314
|
startTime: number;
|
|
13093
13315
|
stopTime: number;
|
|
13094
13316
|
} | {
|
|
@@ -13157,6 +13379,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
13157
13379
|
ioPort: string | null;
|
|
13158
13380
|
} | {
|
|
13159
13381
|
type: "onetime";
|
|
13382
|
+
ioPort: string | null;
|
|
13160
13383
|
startTime: number;
|
|
13161
13384
|
stopTime: number;
|
|
13162
13385
|
} | {
|
|
@@ -13216,6 +13439,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
13216
13439
|
ioPort: string | null;
|
|
13217
13440
|
} | {
|
|
13218
13441
|
type: "onetime";
|
|
13442
|
+
ioPort: string | null;
|
|
13219
13443
|
startTime: number;
|
|
13220
13444
|
stopTime: number;
|
|
13221
13445
|
} | {
|
|
@@ -13269,6 +13493,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
13269
13493
|
ioPort: string | null;
|
|
13270
13494
|
} | {
|
|
13271
13495
|
type: "onetime";
|
|
13496
|
+
ioPort: string | null;
|
|
13272
13497
|
startTime: number;
|
|
13273
13498
|
stopTime: number;
|
|
13274
13499
|
} | {
|
|
@@ -13322,6 +13547,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
13322
13547
|
ioPort: string | null;
|
|
13323
13548
|
} | {
|
|
13324
13549
|
type: "onetime";
|
|
13550
|
+
ioPort: string | null;
|
|
13325
13551
|
startTime: number;
|
|
13326
13552
|
stopTime: number;
|
|
13327
13553
|
} | {
|
|
@@ -13389,6 +13615,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
13389
13615
|
ioPort: string | null;
|
|
13390
13616
|
} | {
|
|
13391
13617
|
type: "onetime";
|
|
13618
|
+
ioPort: string | null;
|
|
13392
13619
|
startTime: number;
|
|
13393
13620
|
stopTime: number;
|
|
13394
13621
|
} | {
|
|
@@ -13442,6 +13669,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
13442
13669
|
ioPort: string | null;
|
|
13443
13670
|
} | {
|
|
13444
13671
|
type: "onetime";
|
|
13672
|
+
ioPort: string | null;
|
|
13445
13673
|
startTime: number;
|
|
13446
13674
|
stopTime: number;
|
|
13447
13675
|
} | {
|
|
@@ -13495,6 +13723,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
13495
13723
|
ioPort: string | null;
|
|
13496
13724
|
} | {
|
|
13497
13725
|
type: "onetime";
|
|
13726
|
+
ioPort: string | null;
|
|
13498
13727
|
startTime: number;
|
|
13499
13728
|
stopTime: number;
|
|
13500
13729
|
} | {
|
|
@@ -13548,6 +13777,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
13548
13777
|
ioPort: string | null;
|
|
13549
13778
|
} | {
|
|
13550
13779
|
type: "onetime";
|
|
13780
|
+
ioPort: string | null;
|
|
13551
13781
|
startTime: number;
|
|
13552
13782
|
stopTime: number;
|
|
13553
13783
|
} | {
|
|
@@ -13601,6 +13831,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
13601
13831
|
ioPort: string | null;
|
|
13602
13832
|
} | {
|
|
13603
13833
|
type: "onetime";
|
|
13834
|
+
ioPort: string | null;
|
|
13604
13835
|
startTime: number;
|
|
13605
13836
|
stopTime: number;
|
|
13606
13837
|
} | {
|
|
@@ -13654,6 +13885,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
13654
13885
|
ioPort: string | null;
|
|
13655
13886
|
} | {
|
|
13656
13887
|
type: "onetime";
|
|
13888
|
+
ioPort: string | null;
|
|
13657
13889
|
startTime: number;
|
|
13658
13890
|
stopTime: number;
|
|
13659
13891
|
} | {
|
|
@@ -13707,6 +13939,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
13707
13939
|
ioPort: string | null;
|
|
13708
13940
|
} | {
|
|
13709
13941
|
type: "onetime";
|
|
13942
|
+
ioPort: string | null;
|
|
13710
13943
|
startTime: number;
|
|
13711
13944
|
stopTime: number;
|
|
13712
13945
|
} | {
|
|
@@ -13760,6 +13993,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
13760
13993
|
ioPort: string | null;
|
|
13761
13994
|
} | {
|
|
13762
13995
|
type: "onetime";
|
|
13996
|
+
ioPort: string | null;
|
|
13763
13997
|
startTime: number;
|
|
13764
13998
|
stopTime: number;
|
|
13765
13999
|
} | {
|
|
@@ -13813,6 +14047,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
13813
14047
|
ioPort: string | null;
|
|
13814
14048
|
} | {
|
|
13815
14049
|
type: "onetime";
|
|
14050
|
+
ioPort: string | null;
|
|
13816
14051
|
startTime: number;
|
|
13817
14052
|
stopTime: number;
|
|
13818
14053
|
} | {
|
|
@@ -13866,6 +14101,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
13866
14101
|
ioPort: string | null;
|
|
13867
14102
|
} | {
|
|
13868
14103
|
type: "onetime";
|
|
14104
|
+
ioPort: string | null;
|
|
13869
14105
|
startTime: number;
|
|
13870
14106
|
stopTime: number;
|
|
13871
14107
|
} | {
|
|
@@ -13919,6 +14155,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
13919
14155
|
ioPort: string | null;
|
|
13920
14156
|
} | {
|
|
13921
14157
|
type: "onetime";
|
|
14158
|
+
ioPort: string | null;
|
|
13922
14159
|
startTime: number;
|
|
13923
14160
|
stopTime: number;
|
|
13924
14161
|
} | {
|
|
@@ -13972,6 +14209,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
13972
14209
|
ioPort: string | null;
|
|
13973
14210
|
} | {
|
|
13974
14211
|
type: "onetime";
|
|
14212
|
+
ioPort: string | null;
|
|
13975
14213
|
startTime: number;
|
|
13976
14214
|
stopTime: number;
|
|
13977
14215
|
} | {
|
|
@@ -14025,6 +14263,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
14025
14263
|
ioPort: string | null;
|
|
14026
14264
|
} | {
|
|
14027
14265
|
type: "onetime";
|
|
14266
|
+
ioPort: string | null;
|
|
14028
14267
|
startTime: number;
|
|
14029
14268
|
stopTime: number;
|
|
14030
14269
|
} | {
|
|
@@ -14084,6 +14323,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
14084
14323
|
ioPort: string | null;
|
|
14085
14324
|
} | {
|
|
14086
14325
|
type: "onetime";
|
|
14326
|
+
ioPort: string | null;
|
|
14087
14327
|
startTime: number;
|
|
14088
14328
|
stopTime: number;
|
|
14089
14329
|
} | {
|
|
@@ -14154,6 +14394,7 @@ export declare const isFacebookStream: (stream: TStream) => stream is {
|
|
|
14154
14394
|
ioPort: string | null;
|
|
14155
14395
|
} | {
|
|
14156
14396
|
type: "onetime";
|
|
14397
|
+
ioPort: string | null;
|
|
14157
14398
|
startTime: number;
|
|
14158
14399
|
stopTime: number;
|
|
14159
14400
|
} | {
|
|
@@ -14217,6 +14458,7 @@ export declare const isMpegDvbStream: (stream: TStream) => stream is {
|
|
|
14217
14458
|
ioPort: string | null;
|
|
14218
14459
|
} | {
|
|
14219
14460
|
type: "onetime";
|
|
14461
|
+
ioPort: string | null;
|
|
14220
14462
|
startTime: number;
|
|
14221
14463
|
stopTime: number;
|
|
14222
14464
|
} | {
|
|
@@ -14287,6 +14529,7 @@ export declare const isRtmpStream: (stream: TStream) => stream is {
|
|
|
14287
14529
|
ioPort: string | null;
|
|
14288
14530
|
} | {
|
|
14289
14531
|
type: "onetime";
|
|
14532
|
+
ioPort: string | null;
|
|
14290
14533
|
startTime: number;
|
|
14291
14534
|
stopTime: number;
|
|
14292
14535
|
} | {
|
|
@@ -14348,6 +14591,7 @@ export declare const isSdCardStream: (stream: TStream) => stream is {
|
|
|
14348
14591
|
ioPort: string | null;
|
|
14349
14592
|
} | {
|
|
14350
14593
|
type: "onetime";
|
|
14594
|
+
ioPort: string | null;
|
|
14351
14595
|
startTime: number;
|
|
14352
14596
|
stopTime: number;
|
|
14353
14597
|
} | {
|
|
@@ -14403,6 +14647,7 @@ export declare const isWindyStream: (stream: TStream) => stream is {
|
|
|
14403
14647
|
ioPort: string | null;
|
|
14404
14648
|
} | {
|
|
14405
14649
|
type: "onetime";
|
|
14650
|
+
ioPort: string | null;
|
|
14406
14651
|
startTime: number;
|
|
14407
14652
|
stopTime: number;
|
|
14408
14653
|
} | {
|
|
@@ -14458,6 +14703,7 @@ export declare const isYouTubeStream: (stream: TStream) => stream is {
|
|
|
14458
14703
|
ioPort: string | null;
|
|
14459
14704
|
} | {
|
|
14460
14705
|
type: "onetime";
|
|
14706
|
+
ioPort: string | null;
|
|
14461
14707
|
startTime: number;
|
|
14462
14708
|
stopTime: number;
|
|
14463
14709
|
} | {
|
|
@@ -14527,6 +14773,7 @@ export declare const isVimeoStream: (stream: TStream) => stream is {
|
|
|
14527
14773
|
ioPort: string | null;
|
|
14528
14774
|
} | {
|
|
14529
14775
|
type: "onetime";
|
|
14776
|
+
ioPort: string | null;
|
|
14530
14777
|
startTime: number;
|
|
14531
14778
|
stopTime: number;
|
|
14532
14779
|
} | {
|
|
@@ -14582,6 +14829,7 @@ export declare const isTwitchStream: (stream: TStream) => stream is {
|
|
|
14582
14829
|
ioPort: string | null;
|
|
14583
14830
|
} | {
|
|
14584
14831
|
type: "onetime";
|
|
14832
|
+
ioPort: string | null;
|
|
14585
14833
|
startTime: number;
|
|
14586
14834
|
stopTime: number;
|
|
14587
14835
|
} | {
|
|
@@ -14637,6 +14885,7 @@ export declare const isChurchStream: (stream: TStream) => stream is {
|
|
|
14637
14885
|
ioPort: string | null;
|
|
14638
14886
|
} | {
|
|
14639
14887
|
type: "onetime";
|
|
14888
|
+
ioPort: string | null;
|
|
14640
14889
|
startTime: number;
|
|
14641
14890
|
stopTime: number;
|
|
14642
14891
|
} | {
|
|
@@ -14692,6 +14941,7 @@ export declare const isSrtStream: (stream: TStream) => stream is {
|
|
|
14692
14941
|
ioPort: string | null;
|
|
14693
14942
|
} | {
|
|
14694
14943
|
type: "onetime";
|
|
14944
|
+
ioPort: string | null;
|
|
14695
14945
|
startTime: number;
|
|
14696
14946
|
stopTime: number;
|
|
14697
14947
|
} | {
|
|
@@ -14747,6 +14997,7 @@ export declare const isDaCastStream: (stream: TStream) => stream is {
|
|
|
14747
14997
|
ioPort: string | null;
|
|
14748
14998
|
} | {
|
|
14749
14999
|
type: "onetime";
|
|
15000
|
+
ioPort: string | null;
|
|
14750
15001
|
startTime: number;
|
|
14751
15002
|
stopTime: number;
|
|
14752
15003
|
} | {
|
|
@@ -14802,6 +15053,7 @@ export declare const isHlsPullStream: (stream: TStream) => stream is {
|
|
|
14802
15053
|
ioPort: string | null;
|
|
14803
15054
|
} | {
|
|
14804
15055
|
type: "onetime";
|
|
15056
|
+
ioPort: string | null;
|
|
14805
15057
|
startTime: number;
|
|
14806
15058
|
stopTime: number;
|
|
14807
15059
|
} | {
|
|
@@ -14857,6 +15109,7 @@ export declare const isHlsPushStream: (stream: TStream) => stream is {
|
|
|
14857
15109
|
ioPort: string | null;
|
|
14858
15110
|
} | {
|
|
14859
15111
|
type: "onetime";
|
|
15112
|
+
ioPort: string | null;
|
|
14860
15113
|
startTime: number;
|
|
14861
15114
|
stopTime: number;
|
|
14862
15115
|
} | {
|
|
@@ -14912,6 +15165,7 @@ export declare const isWowzaStream: (stream: TStream) => stream is {
|
|
|
14912
15165
|
ioPort: string | null;
|
|
14913
15166
|
} | {
|
|
14914
15167
|
type: "onetime";
|
|
15168
|
+
ioPort: string | null;
|
|
14915
15169
|
startTime: number;
|
|
14916
15170
|
stopTime: number;
|
|
14917
15171
|
} | {
|
|
@@ -14967,6 +15221,7 @@ export declare const isDailymotionStream: (stream: TStream) => stream is {
|
|
|
14967
15221
|
ioPort: string | null;
|
|
14968
15222
|
} | {
|
|
14969
15223
|
type: "onetime";
|
|
15224
|
+
ioPort: string | null;
|
|
14970
15225
|
startTime: number;
|
|
14971
15226
|
stopTime: number;
|
|
14972
15227
|
} | {
|
|
@@ -15022,6 +15277,7 @@ export declare const isIbmStream: (stream: TStream) => stream is {
|
|
|
15022
15277
|
ioPort: string | null;
|
|
15023
15278
|
} | {
|
|
15024
15279
|
type: "onetime";
|
|
15280
|
+
ioPort: string | null;
|
|
15025
15281
|
startTime: number;
|
|
15026
15282
|
stopTime: number;
|
|
15027
15283
|
} | {
|
|
@@ -15077,6 +15333,7 @@ export declare const isMicrosoftAzureStream: (stream: TStream) => stream is {
|
|
|
15077
15333
|
ioPort: string | null;
|
|
15078
15334
|
} | {
|
|
15079
15335
|
type: "onetime";
|
|
15336
|
+
ioPort: string | null;
|
|
15080
15337
|
startTime: number;
|
|
15081
15338
|
stopTime: number;
|
|
15082
15339
|
} | {
|
|
@@ -15132,6 +15389,7 @@ export declare const isMicrosoftStream: (stream: TStream) => stream is {
|
|
|
15132
15389
|
ioPort: string | null;
|
|
15133
15390
|
} | {
|
|
15134
15391
|
type: "onetime";
|
|
15392
|
+
ioPort: string | null;
|
|
15135
15393
|
startTime: number;
|
|
15136
15394
|
stopTime: number;
|
|
15137
15395
|
} | {
|
|
@@ -15187,6 +15445,7 @@ export declare const isGameChangerStream: (stream: TStream) => stream is {
|
|
|
15187
15445
|
ioPort: string | null;
|
|
15188
15446
|
} | {
|
|
15189
15447
|
type: "onetime";
|
|
15448
|
+
ioPort: string | null;
|
|
15190
15449
|
startTime: number;
|
|
15191
15450
|
stopTime: number;
|
|
15192
15451
|
} | {
|
|
@@ -15248,6 +15507,7 @@ export declare const isYoutubeRtmpStream: (stream: TStream) => stream is {
|
|
|
15248
15507
|
ioPort: string | null;
|
|
15249
15508
|
} | {
|
|
15250
15509
|
type: "onetime";
|
|
15510
|
+
ioPort: string | null;
|
|
15251
15511
|
startTime: number;
|
|
15252
15512
|
stopTime: number;
|
|
15253
15513
|
} | {
|