camstreamerlib 4.0.0-beta.135 → 4.0.0-beta.137
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/CamStreamerAPI.js +5 -0
- package/cjs/PlaneTrackerAPI.d.ts +1 -1
- package/cjs/VapixAPI.d.ts +6 -1
- package/cjs/VapixAPI.js +30 -2
- package/cjs/types/CamStreamerAPI/CamStreamerAPI.d.ts +342 -2
- package/cjs/types/CamStreamerAPI/CamStreamerAPI.js +20 -20
- package/cjs/types/CamStreamerAPI/facebookSchema.d.ts +7 -0
- package/cjs/types/CamStreamerAPI/streamCommonTypes.d.ts +7 -0
- package/cjs/types/CamStreamerAPI/streamCommonTypes.js +1 -0
- package/cjs/types/CamStreamerAPI/streamsSchema.d.ts +141 -0
- package/cjs/types/CamStreamerAPI/streamsSchema.js +40 -18
- package/cjs/types/CamStreamerAPI/windySchema.d.ts +7 -0
- package/cjs/types/CamStreamerAPI/youtubeSchema.d.ts +7 -0
- package/cjs/types/GenetecAgent.d.ts +2 -2
- package/esm/CamStreamerAPI.js +5 -0
- package/esm/VapixAPI.js +30 -2
- package/esm/types/CamStreamerAPI/CamStreamerAPI.js +21 -21
- package/esm/types/CamStreamerAPI/streamCommonTypes.js +1 -0
- package/esm/types/CamStreamerAPI/streamsSchema.js +39 -17
- package/package.json +1 -1
- package/types/CamStreamerAPI.d.ts +40 -0
- package/types/PlaneTrackerAPI.d.ts +1 -1
- package/types/VapixAPI.d.ts +6 -1
- package/types/types/CamStreamerAPI/CamStreamerAPI.d.ts +342 -2
- package/types/types/CamStreamerAPI/facebookSchema.d.ts +7 -0
- package/types/types/CamStreamerAPI/streamCommonTypes.d.ts +7 -0
- package/types/types/CamStreamerAPI/streamsSchema.d.ts +141 -0
- package/types/types/CamStreamerAPI/windySchema.d.ts +7 -0
- package/types/types/CamStreamerAPI/youtubeSchema.d.ts +7 -0
- package/types/types/GenetecAgent.d.ts +2 -2
|
@@ -2,7 +2,7 @@ import { z } from 'zod';
|
|
|
2
2
|
import { facebookSchema } from './facebookSchema';
|
|
3
3
|
import { windySchema } from './windySchema';
|
|
4
4
|
import { youtubeSchema } from './youtubeSchema';
|
|
5
|
-
import { daCastSchema, dailymotionSchema, facebookRtmpSchema, gameChangerSchema, hlsPullSchema, hlsPushSchema, ibmSchema, microsoftAzureSchema, microsoftStreamSchema, mpegDvbSchema, rtmpSchema, sdCardSchema, srtSchema, twitchSchema, vimeoSchema, wowzaSchema, youtubeRtmpSchema } from './streamsSchema';
|
|
5
|
+
import { daCastSchema, dailymotionSchema, facebookRtmpSchema, gameChangerSchema, hlsPullSchema, hlsPushSchema, ibmSchema, microsoftAzureSchema, microsoftStreamSchema, mpegDvbSchema, rtmpSchema, sdCardSchema, srtSchema, streamPlatforms, twitchSchema, vimeoSchema, wowzaSchema, youtubeRtmpSchema } from './streamsSchema';
|
|
6
6
|
import { FileLike } from '../common';
|
|
7
7
|
export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObject<{
|
|
8
8
|
streamId: z.ZodString;
|
|
@@ -113,14 +113,17 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
113
113
|
type: z.ZodLiteral<"video">;
|
|
114
114
|
url: z.ZodNullable<z.ZodString>;
|
|
115
115
|
parameters: z.ZodString;
|
|
116
|
+
saveToSdCard: z.ZodBoolean;
|
|
116
117
|
}, "strip", z.ZodTypeAny, {
|
|
117
118
|
type: "video";
|
|
118
119
|
url: string | null;
|
|
119
120
|
parameters: string;
|
|
121
|
+
saveToSdCard: boolean;
|
|
120
122
|
}, {
|
|
121
123
|
type: "video";
|
|
122
124
|
url: string | null;
|
|
123
125
|
parameters: string;
|
|
126
|
+
saveToSdCard: boolean;
|
|
124
127
|
}>, z.ZodObject<{
|
|
125
128
|
type: z.ZodLiteral<"images">;
|
|
126
129
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -174,6 +177,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
174
177
|
type: "video";
|
|
175
178
|
url: string | null;
|
|
176
179
|
parameters: string;
|
|
180
|
+
saveToSdCard: boolean;
|
|
177
181
|
} | {
|
|
178
182
|
type: "images";
|
|
179
183
|
url: string | null;
|
|
@@ -197,6 +201,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
197
201
|
type: "video";
|
|
198
202
|
url: string | null;
|
|
199
203
|
parameters: string;
|
|
204
|
+
saveToSdCard: boolean;
|
|
200
205
|
} | {
|
|
201
206
|
type: "images";
|
|
202
207
|
url: string | null;
|
|
@@ -346,6 +351,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
346
351
|
type: "video";
|
|
347
352
|
url: string | null;
|
|
348
353
|
parameters: string;
|
|
354
|
+
saveToSdCard: boolean;
|
|
349
355
|
} | {
|
|
350
356
|
type: "images";
|
|
351
357
|
url: string | null;
|
|
@@ -431,6 +437,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
431
437
|
type: "video";
|
|
432
438
|
url: string | null;
|
|
433
439
|
parameters: string;
|
|
440
|
+
saveToSdCard: boolean;
|
|
434
441
|
} | {
|
|
435
442
|
type: "images";
|
|
436
443
|
url: string | null;
|
|
@@ -581,14 +588,17 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
581
588
|
type: z.ZodLiteral<"video">;
|
|
582
589
|
url: z.ZodNullable<z.ZodString>;
|
|
583
590
|
parameters: z.ZodString;
|
|
591
|
+
saveToSdCard: z.ZodBoolean;
|
|
584
592
|
}, "strip", z.ZodTypeAny, {
|
|
585
593
|
type: "video";
|
|
586
594
|
url: string | null;
|
|
587
595
|
parameters: string;
|
|
596
|
+
saveToSdCard: boolean;
|
|
588
597
|
}, {
|
|
589
598
|
type: "video";
|
|
590
599
|
url: string | null;
|
|
591
600
|
parameters: string;
|
|
601
|
+
saveToSdCard: boolean;
|
|
592
602
|
}>, z.ZodObject<{
|
|
593
603
|
type: z.ZodLiteral<"images">;
|
|
594
604
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -642,6 +652,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
642
652
|
type: "video";
|
|
643
653
|
url: string | null;
|
|
644
654
|
parameters: string;
|
|
655
|
+
saveToSdCard: boolean;
|
|
645
656
|
} | {
|
|
646
657
|
type: "images";
|
|
647
658
|
url: string | null;
|
|
@@ -665,6 +676,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
665
676
|
type: "video";
|
|
666
677
|
url: string | null;
|
|
667
678
|
parameters: string;
|
|
679
|
+
saveToSdCard: boolean;
|
|
668
680
|
} | {
|
|
669
681
|
type: "images";
|
|
670
682
|
url: string | null;
|
|
@@ -785,6 +797,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
785
797
|
type: "video";
|
|
786
798
|
url: string | null;
|
|
787
799
|
parameters: string;
|
|
800
|
+
saveToSdCard: boolean;
|
|
788
801
|
} | {
|
|
789
802
|
type: "images";
|
|
790
803
|
url: string | null;
|
|
@@ -860,6 +873,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
860
873
|
type: "video";
|
|
861
874
|
url: string | null;
|
|
862
875
|
parameters: string;
|
|
876
|
+
saveToSdCard: boolean;
|
|
863
877
|
} | {
|
|
864
878
|
type: "images";
|
|
865
879
|
url: string | null;
|
|
@@ -1007,14 +1021,17 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
1007
1021
|
type: z.ZodLiteral<"video">;
|
|
1008
1022
|
url: z.ZodNullable<z.ZodString>;
|
|
1009
1023
|
parameters: z.ZodString;
|
|
1024
|
+
saveToSdCard: z.ZodBoolean;
|
|
1010
1025
|
}, "strip", z.ZodTypeAny, {
|
|
1011
1026
|
type: "video";
|
|
1012
1027
|
url: string | null;
|
|
1013
1028
|
parameters: string;
|
|
1029
|
+
saveToSdCard: boolean;
|
|
1014
1030
|
}, {
|
|
1015
1031
|
type: "video";
|
|
1016
1032
|
url: string | null;
|
|
1017
1033
|
parameters: string;
|
|
1034
|
+
saveToSdCard: boolean;
|
|
1018
1035
|
}>, z.ZodObject<{
|
|
1019
1036
|
type: z.ZodLiteral<"images">;
|
|
1020
1037
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -1068,6 +1085,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
1068
1085
|
type: "video";
|
|
1069
1086
|
url: string | null;
|
|
1070
1087
|
parameters: string;
|
|
1088
|
+
saveToSdCard: boolean;
|
|
1071
1089
|
} | {
|
|
1072
1090
|
type: "images";
|
|
1073
1091
|
url: string | null;
|
|
@@ -1091,6 +1109,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
1091
1109
|
type: "video";
|
|
1092
1110
|
url: string | null;
|
|
1093
1111
|
parameters: string;
|
|
1112
|
+
saveToSdCard: boolean;
|
|
1094
1113
|
} | {
|
|
1095
1114
|
type: "images";
|
|
1096
1115
|
url: string | null;
|
|
@@ -1211,6 +1230,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
1211
1230
|
type: "video";
|
|
1212
1231
|
url: string | null;
|
|
1213
1232
|
parameters: string;
|
|
1233
|
+
saveToSdCard: boolean;
|
|
1214
1234
|
} | {
|
|
1215
1235
|
type: "images";
|
|
1216
1236
|
url: string | null;
|
|
@@ -1286,6 +1306,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
1286
1306
|
type: "video";
|
|
1287
1307
|
url: string | null;
|
|
1288
1308
|
parameters: string;
|
|
1309
|
+
saveToSdCard: boolean;
|
|
1289
1310
|
} | {
|
|
1290
1311
|
type: "images";
|
|
1291
1312
|
url: string | null;
|
|
@@ -1433,14 +1454,17 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
1433
1454
|
type: z.ZodLiteral<"video">;
|
|
1434
1455
|
url: z.ZodNullable<z.ZodString>;
|
|
1435
1456
|
parameters: z.ZodString;
|
|
1457
|
+
saveToSdCard: z.ZodBoolean;
|
|
1436
1458
|
}, "strip", z.ZodTypeAny, {
|
|
1437
1459
|
type: "video";
|
|
1438
1460
|
url: string | null;
|
|
1439
1461
|
parameters: string;
|
|
1462
|
+
saveToSdCard: boolean;
|
|
1440
1463
|
}, {
|
|
1441
1464
|
type: "video";
|
|
1442
1465
|
url: string | null;
|
|
1443
1466
|
parameters: string;
|
|
1467
|
+
saveToSdCard: boolean;
|
|
1444
1468
|
}>, z.ZodObject<{
|
|
1445
1469
|
type: z.ZodLiteral<"images">;
|
|
1446
1470
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -1494,6 +1518,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
1494
1518
|
type: "video";
|
|
1495
1519
|
url: string | null;
|
|
1496
1520
|
parameters: string;
|
|
1521
|
+
saveToSdCard: boolean;
|
|
1497
1522
|
} | {
|
|
1498
1523
|
type: "images";
|
|
1499
1524
|
url: string | null;
|
|
@@ -1517,6 +1542,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
1517
1542
|
type: "video";
|
|
1518
1543
|
url: string | null;
|
|
1519
1544
|
parameters: string;
|
|
1545
|
+
saveToSdCard: boolean;
|
|
1520
1546
|
} | {
|
|
1521
1547
|
type: "images";
|
|
1522
1548
|
url: string | null;
|
|
@@ -1637,6 +1663,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
1637
1663
|
type: "video";
|
|
1638
1664
|
url: string | null;
|
|
1639
1665
|
parameters: string;
|
|
1666
|
+
saveToSdCard: boolean;
|
|
1640
1667
|
} | {
|
|
1641
1668
|
type: "images";
|
|
1642
1669
|
url: string | null;
|
|
@@ -1712,6 +1739,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
1712
1739
|
type: "video";
|
|
1713
1740
|
url: string | null;
|
|
1714
1741
|
parameters: string;
|
|
1742
|
+
saveToSdCard: boolean;
|
|
1715
1743
|
} | {
|
|
1716
1744
|
type: "images";
|
|
1717
1745
|
url: string | null;
|
|
@@ -1859,14 +1887,17 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
1859
1887
|
type: z.ZodLiteral<"video">;
|
|
1860
1888
|
url: z.ZodNullable<z.ZodString>;
|
|
1861
1889
|
parameters: z.ZodString;
|
|
1890
|
+
saveToSdCard: z.ZodBoolean;
|
|
1862
1891
|
}, "strip", z.ZodTypeAny, {
|
|
1863
1892
|
type: "video";
|
|
1864
1893
|
url: string | null;
|
|
1865
1894
|
parameters: string;
|
|
1895
|
+
saveToSdCard: boolean;
|
|
1866
1896
|
}, {
|
|
1867
1897
|
type: "video";
|
|
1868
1898
|
url: string | null;
|
|
1869
1899
|
parameters: string;
|
|
1900
|
+
saveToSdCard: boolean;
|
|
1870
1901
|
}>, z.ZodObject<{
|
|
1871
1902
|
type: z.ZodLiteral<"images">;
|
|
1872
1903
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -1920,6 +1951,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
1920
1951
|
type: "video";
|
|
1921
1952
|
url: string | null;
|
|
1922
1953
|
parameters: string;
|
|
1954
|
+
saveToSdCard: boolean;
|
|
1923
1955
|
} | {
|
|
1924
1956
|
type: "images";
|
|
1925
1957
|
url: string | null;
|
|
@@ -1943,6 +1975,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
1943
1975
|
type: "video";
|
|
1944
1976
|
url: string | null;
|
|
1945
1977
|
parameters: string;
|
|
1978
|
+
saveToSdCard: boolean;
|
|
1946
1979
|
} | {
|
|
1947
1980
|
type: "images";
|
|
1948
1981
|
url: string | null;
|
|
@@ -2063,6 +2096,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
2063
2096
|
type: "video";
|
|
2064
2097
|
url: string | null;
|
|
2065
2098
|
parameters: string;
|
|
2099
|
+
saveToSdCard: boolean;
|
|
2066
2100
|
} | {
|
|
2067
2101
|
type: "images";
|
|
2068
2102
|
url: string | null;
|
|
@@ -2138,6 +2172,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
2138
2172
|
type: "video";
|
|
2139
2173
|
url: string | null;
|
|
2140
2174
|
parameters: string;
|
|
2175
|
+
saveToSdCard: boolean;
|
|
2141
2176
|
} | {
|
|
2142
2177
|
type: "images";
|
|
2143
2178
|
url: string | null;
|
|
@@ -2285,14 +2320,17 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
2285
2320
|
type: z.ZodLiteral<"video">;
|
|
2286
2321
|
url: z.ZodNullable<z.ZodString>;
|
|
2287
2322
|
parameters: z.ZodString;
|
|
2323
|
+
saveToSdCard: z.ZodBoolean;
|
|
2288
2324
|
}, "strip", z.ZodTypeAny, {
|
|
2289
2325
|
type: "video";
|
|
2290
2326
|
url: string | null;
|
|
2291
2327
|
parameters: string;
|
|
2328
|
+
saveToSdCard: boolean;
|
|
2292
2329
|
}, {
|
|
2293
2330
|
type: "video";
|
|
2294
2331
|
url: string | null;
|
|
2295
2332
|
parameters: string;
|
|
2333
|
+
saveToSdCard: boolean;
|
|
2296
2334
|
}>, z.ZodObject<{
|
|
2297
2335
|
type: z.ZodLiteral<"images">;
|
|
2298
2336
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -2346,6 +2384,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
2346
2384
|
type: "video";
|
|
2347
2385
|
url: string | null;
|
|
2348
2386
|
parameters: string;
|
|
2387
|
+
saveToSdCard: boolean;
|
|
2349
2388
|
} | {
|
|
2350
2389
|
type: "images";
|
|
2351
2390
|
url: string | null;
|
|
@@ -2369,6 +2408,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
2369
2408
|
type: "video";
|
|
2370
2409
|
url: string | null;
|
|
2371
2410
|
parameters: string;
|
|
2411
|
+
saveToSdCard: boolean;
|
|
2372
2412
|
} | {
|
|
2373
2413
|
type: "images";
|
|
2374
2414
|
url: string | null;
|
|
@@ -2489,6 +2529,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
2489
2529
|
type: "video";
|
|
2490
2530
|
url: string | null;
|
|
2491
2531
|
parameters: string;
|
|
2532
|
+
saveToSdCard: boolean;
|
|
2492
2533
|
} | {
|
|
2493
2534
|
type: "images";
|
|
2494
2535
|
url: string | null;
|
|
@@ -2564,6 +2605,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
2564
2605
|
type: "video";
|
|
2565
2606
|
url: string | null;
|
|
2566
2607
|
parameters: string;
|
|
2608
|
+
saveToSdCard: boolean;
|
|
2567
2609
|
} | {
|
|
2568
2610
|
type: "images";
|
|
2569
2611
|
url: string | null;
|
|
@@ -2711,14 +2753,17 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
2711
2753
|
type: z.ZodLiteral<"video">;
|
|
2712
2754
|
url: z.ZodNullable<z.ZodString>;
|
|
2713
2755
|
parameters: z.ZodString;
|
|
2756
|
+
saveToSdCard: z.ZodBoolean;
|
|
2714
2757
|
}, "strip", z.ZodTypeAny, {
|
|
2715
2758
|
type: "video";
|
|
2716
2759
|
url: string | null;
|
|
2717
2760
|
parameters: string;
|
|
2761
|
+
saveToSdCard: boolean;
|
|
2718
2762
|
}, {
|
|
2719
2763
|
type: "video";
|
|
2720
2764
|
url: string | null;
|
|
2721
2765
|
parameters: string;
|
|
2766
|
+
saveToSdCard: boolean;
|
|
2722
2767
|
}>, z.ZodObject<{
|
|
2723
2768
|
type: z.ZodLiteral<"images">;
|
|
2724
2769
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -2772,6 +2817,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
2772
2817
|
type: "video";
|
|
2773
2818
|
url: string | null;
|
|
2774
2819
|
parameters: string;
|
|
2820
|
+
saveToSdCard: boolean;
|
|
2775
2821
|
} | {
|
|
2776
2822
|
type: "images";
|
|
2777
2823
|
url: string | null;
|
|
@@ -2795,6 +2841,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
2795
2841
|
type: "video";
|
|
2796
2842
|
url: string | null;
|
|
2797
2843
|
parameters: string;
|
|
2844
|
+
saveToSdCard: boolean;
|
|
2798
2845
|
} | {
|
|
2799
2846
|
type: "images";
|
|
2800
2847
|
url: string | null;
|
|
@@ -2927,6 +2974,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
2927
2974
|
type: "video";
|
|
2928
2975
|
url: string | null;
|
|
2929
2976
|
parameters: string;
|
|
2977
|
+
saveToSdCard: boolean;
|
|
2930
2978
|
} | {
|
|
2931
2979
|
type: "images";
|
|
2932
2980
|
url: string | null;
|
|
@@ -3014,6 +3062,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
3014
3062
|
type: "video";
|
|
3015
3063
|
url: string | null;
|
|
3016
3064
|
parameters: string;
|
|
3065
|
+
saveToSdCard: boolean;
|
|
3017
3066
|
} | {
|
|
3018
3067
|
type: "images";
|
|
3019
3068
|
url: string | null;
|
|
@@ -3173,14 +3222,17 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
3173
3222
|
type: z.ZodLiteral<"video">;
|
|
3174
3223
|
url: z.ZodNullable<z.ZodString>;
|
|
3175
3224
|
parameters: z.ZodString;
|
|
3225
|
+
saveToSdCard: z.ZodBoolean;
|
|
3176
3226
|
}, "strip", z.ZodTypeAny, {
|
|
3177
3227
|
type: "video";
|
|
3178
3228
|
url: string | null;
|
|
3179
3229
|
parameters: string;
|
|
3230
|
+
saveToSdCard: boolean;
|
|
3180
3231
|
}, {
|
|
3181
3232
|
type: "video";
|
|
3182
3233
|
url: string | null;
|
|
3183
3234
|
parameters: string;
|
|
3235
|
+
saveToSdCard: boolean;
|
|
3184
3236
|
}>, z.ZodObject<{
|
|
3185
3237
|
type: z.ZodLiteral<"images">;
|
|
3186
3238
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -3234,6 +3286,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
3234
3286
|
type: "video";
|
|
3235
3287
|
url: string | null;
|
|
3236
3288
|
parameters: string;
|
|
3289
|
+
saveToSdCard: boolean;
|
|
3237
3290
|
} | {
|
|
3238
3291
|
type: "images";
|
|
3239
3292
|
url: string | null;
|
|
@@ -3257,6 +3310,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
3257
3310
|
type: "video";
|
|
3258
3311
|
url: string | null;
|
|
3259
3312
|
parameters: string;
|
|
3313
|
+
saveToSdCard: boolean;
|
|
3260
3314
|
} | {
|
|
3261
3315
|
type: "images";
|
|
3262
3316
|
url: string | null;
|
|
@@ -3377,6 +3431,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
3377
3431
|
type: "video";
|
|
3378
3432
|
url: string | null;
|
|
3379
3433
|
parameters: string;
|
|
3434
|
+
saveToSdCard: boolean;
|
|
3380
3435
|
} | {
|
|
3381
3436
|
type: "images";
|
|
3382
3437
|
url: string | null;
|
|
@@ -3452,6 +3507,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
3452
3507
|
type: "video";
|
|
3453
3508
|
url: string | null;
|
|
3454
3509
|
parameters: string;
|
|
3510
|
+
saveToSdCard: boolean;
|
|
3455
3511
|
} | {
|
|
3456
3512
|
type: "images";
|
|
3457
3513
|
url: string | null;
|
|
@@ -3599,14 +3655,17 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
3599
3655
|
type: z.ZodLiteral<"video">;
|
|
3600
3656
|
url: z.ZodNullable<z.ZodString>;
|
|
3601
3657
|
parameters: z.ZodString;
|
|
3658
|
+
saveToSdCard: z.ZodBoolean;
|
|
3602
3659
|
}, "strip", z.ZodTypeAny, {
|
|
3603
3660
|
type: "video";
|
|
3604
3661
|
url: string | null;
|
|
3605
3662
|
parameters: string;
|
|
3663
|
+
saveToSdCard: boolean;
|
|
3606
3664
|
}, {
|
|
3607
3665
|
type: "video";
|
|
3608
3666
|
url: string | null;
|
|
3609
3667
|
parameters: string;
|
|
3668
|
+
saveToSdCard: boolean;
|
|
3610
3669
|
}>, z.ZodObject<{
|
|
3611
3670
|
type: z.ZodLiteral<"images">;
|
|
3612
3671
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -3660,6 +3719,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
3660
3719
|
type: "video";
|
|
3661
3720
|
url: string | null;
|
|
3662
3721
|
parameters: string;
|
|
3722
|
+
saveToSdCard: boolean;
|
|
3663
3723
|
} | {
|
|
3664
3724
|
type: "images";
|
|
3665
3725
|
url: string | null;
|
|
@@ -3683,6 +3743,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
3683
3743
|
type: "video";
|
|
3684
3744
|
url: string | null;
|
|
3685
3745
|
parameters: string;
|
|
3746
|
+
saveToSdCard: boolean;
|
|
3686
3747
|
} | {
|
|
3687
3748
|
type: "images";
|
|
3688
3749
|
url: string | null;
|
|
@@ -3803,6 +3864,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
3803
3864
|
type: "video";
|
|
3804
3865
|
url: string | null;
|
|
3805
3866
|
parameters: string;
|
|
3867
|
+
saveToSdCard: boolean;
|
|
3806
3868
|
} | {
|
|
3807
3869
|
type: "images";
|
|
3808
3870
|
url: string | null;
|
|
@@ -3878,6 +3940,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
3878
3940
|
type: "video";
|
|
3879
3941
|
url: string | null;
|
|
3880
3942
|
parameters: string;
|
|
3943
|
+
saveToSdCard: boolean;
|
|
3881
3944
|
} | {
|
|
3882
3945
|
type: "images";
|
|
3883
3946
|
url: string | null;
|
|
@@ -4025,14 +4088,17 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
4025
4088
|
type: z.ZodLiteral<"video">;
|
|
4026
4089
|
url: z.ZodNullable<z.ZodString>;
|
|
4027
4090
|
parameters: z.ZodString;
|
|
4091
|
+
saveToSdCard: z.ZodBoolean;
|
|
4028
4092
|
}, "strip", z.ZodTypeAny, {
|
|
4029
4093
|
type: "video";
|
|
4030
4094
|
url: string | null;
|
|
4031
4095
|
parameters: string;
|
|
4096
|
+
saveToSdCard: boolean;
|
|
4032
4097
|
}, {
|
|
4033
4098
|
type: "video";
|
|
4034
4099
|
url: string | null;
|
|
4035
4100
|
parameters: string;
|
|
4101
|
+
saveToSdCard: boolean;
|
|
4036
4102
|
}>, z.ZodObject<{
|
|
4037
4103
|
type: z.ZodLiteral<"images">;
|
|
4038
4104
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -4086,6 +4152,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
4086
4152
|
type: "video";
|
|
4087
4153
|
url: string | null;
|
|
4088
4154
|
parameters: string;
|
|
4155
|
+
saveToSdCard: boolean;
|
|
4089
4156
|
} | {
|
|
4090
4157
|
type: "images";
|
|
4091
4158
|
url: string | null;
|
|
@@ -4109,6 +4176,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
4109
4176
|
type: "video";
|
|
4110
4177
|
url: string | null;
|
|
4111
4178
|
parameters: string;
|
|
4179
|
+
saveToSdCard: boolean;
|
|
4112
4180
|
} | {
|
|
4113
4181
|
type: "images";
|
|
4114
4182
|
url: string | null;
|
|
@@ -4229,6 +4297,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
4229
4297
|
type: "video";
|
|
4230
4298
|
url: string | null;
|
|
4231
4299
|
parameters: string;
|
|
4300
|
+
saveToSdCard: boolean;
|
|
4232
4301
|
} | {
|
|
4233
4302
|
type: "images";
|
|
4234
4303
|
url: string | null;
|
|
@@ -4304,6 +4373,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
4304
4373
|
type: "video";
|
|
4305
4374
|
url: string | null;
|
|
4306
4375
|
parameters: string;
|
|
4376
|
+
saveToSdCard: boolean;
|
|
4307
4377
|
} | {
|
|
4308
4378
|
type: "images";
|
|
4309
4379
|
url: string | null;
|
|
@@ -4451,14 +4521,17 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
4451
4521
|
type: z.ZodLiteral<"video">;
|
|
4452
4522
|
url: z.ZodNullable<z.ZodString>;
|
|
4453
4523
|
parameters: z.ZodString;
|
|
4524
|
+
saveToSdCard: z.ZodBoolean;
|
|
4454
4525
|
}, "strip", z.ZodTypeAny, {
|
|
4455
4526
|
type: "video";
|
|
4456
4527
|
url: string | null;
|
|
4457
4528
|
parameters: string;
|
|
4529
|
+
saveToSdCard: boolean;
|
|
4458
4530
|
}, {
|
|
4459
4531
|
type: "video";
|
|
4460
4532
|
url: string | null;
|
|
4461
4533
|
parameters: string;
|
|
4534
|
+
saveToSdCard: boolean;
|
|
4462
4535
|
}>, z.ZodObject<{
|
|
4463
4536
|
type: z.ZodLiteral<"images">;
|
|
4464
4537
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -4512,6 +4585,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
4512
4585
|
type: "video";
|
|
4513
4586
|
url: string | null;
|
|
4514
4587
|
parameters: string;
|
|
4588
|
+
saveToSdCard: boolean;
|
|
4515
4589
|
} | {
|
|
4516
4590
|
type: "images";
|
|
4517
4591
|
url: string | null;
|
|
@@ -4535,6 +4609,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
4535
4609
|
type: "video";
|
|
4536
4610
|
url: string | null;
|
|
4537
4611
|
parameters: string;
|
|
4612
|
+
saveToSdCard: boolean;
|
|
4538
4613
|
} | {
|
|
4539
4614
|
type: "images";
|
|
4540
4615
|
url: string | null;
|
|
@@ -4655,6 +4730,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
4655
4730
|
type: "video";
|
|
4656
4731
|
url: string | null;
|
|
4657
4732
|
parameters: string;
|
|
4733
|
+
saveToSdCard: boolean;
|
|
4658
4734
|
} | {
|
|
4659
4735
|
type: "images";
|
|
4660
4736
|
url: string | null;
|
|
@@ -4730,6 +4806,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
4730
4806
|
type: "video";
|
|
4731
4807
|
url: string | null;
|
|
4732
4808
|
parameters: string;
|
|
4809
|
+
saveToSdCard: boolean;
|
|
4733
4810
|
} | {
|
|
4734
4811
|
type: "images";
|
|
4735
4812
|
url: string | null;
|
|
@@ -4877,14 +4954,17 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
4877
4954
|
type: z.ZodLiteral<"video">;
|
|
4878
4955
|
url: z.ZodNullable<z.ZodString>;
|
|
4879
4956
|
parameters: z.ZodString;
|
|
4957
|
+
saveToSdCard: z.ZodBoolean;
|
|
4880
4958
|
}, "strip", z.ZodTypeAny, {
|
|
4881
4959
|
type: "video";
|
|
4882
4960
|
url: string | null;
|
|
4883
4961
|
parameters: string;
|
|
4962
|
+
saveToSdCard: boolean;
|
|
4884
4963
|
}, {
|
|
4885
4964
|
type: "video";
|
|
4886
4965
|
url: string | null;
|
|
4887
4966
|
parameters: string;
|
|
4967
|
+
saveToSdCard: boolean;
|
|
4888
4968
|
}>, z.ZodObject<{
|
|
4889
4969
|
type: z.ZodLiteral<"images">;
|
|
4890
4970
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -4938,6 +5018,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
4938
5018
|
type: "video";
|
|
4939
5019
|
url: string | null;
|
|
4940
5020
|
parameters: string;
|
|
5021
|
+
saveToSdCard: boolean;
|
|
4941
5022
|
} | {
|
|
4942
5023
|
type: "images";
|
|
4943
5024
|
url: string | null;
|
|
@@ -4961,6 +5042,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
4961
5042
|
type: "video";
|
|
4962
5043
|
url: string | null;
|
|
4963
5044
|
parameters: string;
|
|
5045
|
+
saveToSdCard: boolean;
|
|
4964
5046
|
} | {
|
|
4965
5047
|
type: "images";
|
|
4966
5048
|
url: string | null;
|
|
@@ -5081,6 +5163,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
5081
5163
|
type: "video";
|
|
5082
5164
|
url: string | null;
|
|
5083
5165
|
parameters: string;
|
|
5166
|
+
saveToSdCard: boolean;
|
|
5084
5167
|
} | {
|
|
5085
5168
|
type: "images";
|
|
5086
5169
|
url: string | null;
|
|
@@ -5156,6 +5239,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
5156
5239
|
type: "video";
|
|
5157
5240
|
url: string | null;
|
|
5158
5241
|
parameters: string;
|
|
5242
|
+
saveToSdCard: boolean;
|
|
5159
5243
|
} | {
|
|
5160
5244
|
type: "images";
|
|
5161
5245
|
url: string | null;
|
|
@@ -5303,14 +5387,17 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
5303
5387
|
type: z.ZodLiteral<"video">;
|
|
5304
5388
|
url: z.ZodNullable<z.ZodString>;
|
|
5305
5389
|
parameters: z.ZodString;
|
|
5390
|
+
saveToSdCard: z.ZodBoolean;
|
|
5306
5391
|
}, "strip", z.ZodTypeAny, {
|
|
5307
5392
|
type: "video";
|
|
5308
5393
|
url: string | null;
|
|
5309
5394
|
parameters: string;
|
|
5395
|
+
saveToSdCard: boolean;
|
|
5310
5396
|
}, {
|
|
5311
5397
|
type: "video";
|
|
5312
5398
|
url: string | null;
|
|
5313
5399
|
parameters: string;
|
|
5400
|
+
saveToSdCard: boolean;
|
|
5314
5401
|
}>, z.ZodObject<{
|
|
5315
5402
|
type: z.ZodLiteral<"images">;
|
|
5316
5403
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -5364,6 +5451,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
5364
5451
|
type: "video";
|
|
5365
5452
|
url: string | null;
|
|
5366
5453
|
parameters: string;
|
|
5454
|
+
saveToSdCard: boolean;
|
|
5367
5455
|
} | {
|
|
5368
5456
|
type: "images";
|
|
5369
5457
|
url: string | null;
|
|
@@ -5387,6 +5475,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
5387
5475
|
type: "video";
|
|
5388
5476
|
url: string | null;
|
|
5389
5477
|
parameters: string;
|
|
5478
|
+
saveToSdCard: boolean;
|
|
5390
5479
|
} | {
|
|
5391
5480
|
type: "images";
|
|
5392
5481
|
url: string | null;
|
|
@@ -5507,6 +5596,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
5507
5596
|
type: "video";
|
|
5508
5597
|
url: string | null;
|
|
5509
5598
|
parameters: string;
|
|
5599
|
+
saveToSdCard: boolean;
|
|
5510
5600
|
} | {
|
|
5511
5601
|
type: "images";
|
|
5512
5602
|
url: string | null;
|
|
@@ -5582,6 +5672,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
5582
5672
|
type: "video";
|
|
5583
5673
|
url: string | null;
|
|
5584
5674
|
parameters: string;
|
|
5675
|
+
saveToSdCard: boolean;
|
|
5585
5676
|
} | {
|
|
5586
5677
|
type: "images";
|
|
5587
5678
|
url: string | null;
|
|
@@ -5729,14 +5820,17 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
5729
5820
|
type: z.ZodLiteral<"video">;
|
|
5730
5821
|
url: z.ZodNullable<z.ZodString>;
|
|
5731
5822
|
parameters: z.ZodString;
|
|
5823
|
+
saveToSdCard: z.ZodBoolean;
|
|
5732
5824
|
}, "strip", z.ZodTypeAny, {
|
|
5733
5825
|
type: "video";
|
|
5734
5826
|
url: string | null;
|
|
5735
5827
|
parameters: string;
|
|
5828
|
+
saveToSdCard: boolean;
|
|
5736
5829
|
}, {
|
|
5737
5830
|
type: "video";
|
|
5738
5831
|
url: string | null;
|
|
5739
5832
|
parameters: string;
|
|
5833
|
+
saveToSdCard: boolean;
|
|
5740
5834
|
}>, z.ZodObject<{
|
|
5741
5835
|
type: z.ZodLiteral<"images">;
|
|
5742
5836
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -5790,6 +5884,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
5790
5884
|
type: "video";
|
|
5791
5885
|
url: string | null;
|
|
5792
5886
|
parameters: string;
|
|
5887
|
+
saveToSdCard: boolean;
|
|
5793
5888
|
} | {
|
|
5794
5889
|
type: "images";
|
|
5795
5890
|
url: string | null;
|
|
@@ -5813,6 +5908,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
5813
5908
|
type: "video";
|
|
5814
5909
|
url: string | null;
|
|
5815
5910
|
parameters: string;
|
|
5911
|
+
saveToSdCard: boolean;
|
|
5816
5912
|
} | {
|
|
5817
5913
|
type: "images";
|
|
5818
5914
|
url: string | null;
|
|
@@ -5933,6 +6029,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
5933
6029
|
type: "video";
|
|
5934
6030
|
url: string | null;
|
|
5935
6031
|
parameters: string;
|
|
6032
|
+
saveToSdCard: boolean;
|
|
5936
6033
|
} | {
|
|
5937
6034
|
type: "images";
|
|
5938
6035
|
url: string | null;
|
|
@@ -6008,6 +6105,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
6008
6105
|
type: "video";
|
|
6009
6106
|
url: string | null;
|
|
6010
6107
|
parameters: string;
|
|
6108
|
+
saveToSdCard: boolean;
|
|
6011
6109
|
} | {
|
|
6012
6110
|
type: "images";
|
|
6013
6111
|
url: string | null;
|
|
@@ -6155,14 +6253,17 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
6155
6253
|
type: z.ZodLiteral<"video">;
|
|
6156
6254
|
url: z.ZodNullable<z.ZodString>;
|
|
6157
6255
|
parameters: z.ZodString;
|
|
6256
|
+
saveToSdCard: z.ZodBoolean;
|
|
6158
6257
|
}, "strip", z.ZodTypeAny, {
|
|
6159
6258
|
type: "video";
|
|
6160
6259
|
url: string | null;
|
|
6161
6260
|
parameters: string;
|
|
6261
|
+
saveToSdCard: boolean;
|
|
6162
6262
|
}, {
|
|
6163
6263
|
type: "video";
|
|
6164
6264
|
url: string | null;
|
|
6165
6265
|
parameters: string;
|
|
6266
|
+
saveToSdCard: boolean;
|
|
6166
6267
|
}>, z.ZodObject<{
|
|
6167
6268
|
type: z.ZodLiteral<"images">;
|
|
6168
6269
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -6216,6 +6317,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
6216
6317
|
type: "video";
|
|
6217
6318
|
url: string | null;
|
|
6218
6319
|
parameters: string;
|
|
6320
|
+
saveToSdCard: boolean;
|
|
6219
6321
|
} | {
|
|
6220
6322
|
type: "images";
|
|
6221
6323
|
url: string | null;
|
|
@@ -6239,6 +6341,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
6239
6341
|
type: "video";
|
|
6240
6342
|
url: string | null;
|
|
6241
6343
|
parameters: string;
|
|
6344
|
+
saveToSdCard: boolean;
|
|
6242
6345
|
} | {
|
|
6243
6346
|
type: "images";
|
|
6244
6347
|
url: string | null;
|
|
@@ -6359,6 +6462,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
6359
6462
|
type: "video";
|
|
6360
6463
|
url: string | null;
|
|
6361
6464
|
parameters: string;
|
|
6465
|
+
saveToSdCard: boolean;
|
|
6362
6466
|
} | {
|
|
6363
6467
|
type: "images";
|
|
6364
6468
|
url: string | null;
|
|
@@ -6434,6 +6538,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
6434
6538
|
type: "video";
|
|
6435
6539
|
url: string | null;
|
|
6436
6540
|
parameters: string;
|
|
6541
|
+
saveToSdCard: boolean;
|
|
6437
6542
|
} | {
|
|
6438
6543
|
type: "images";
|
|
6439
6544
|
url: string | null;
|
|
@@ -6581,14 +6686,17 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
6581
6686
|
type: z.ZodLiteral<"video">;
|
|
6582
6687
|
url: z.ZodNullable<z.ZodString>;
|
|
6583
6688
|
parameters: z.ZodString;
|
|
6689
|
+
saveToSdCard: z.ZodBoolean;
|
|
6584
6690
|
}, "strip", z.ZodTypeAny, {
|
|
6585
6691
|
type: "video";
|
|
6586
6692
|
url: string | null;
|
|
6587
6693
|
parameters: string;
|
|
6694
|
+
saveToSdCard: boolean;
|
|
6588
6695
|
}, {
|
|
6589
6696
|
type: "video";
|
|
6590
6697
|
url: string | null;
|
|
6591
6698
|
parameters: string;
|
|
6699
|
+
saveToSdCard: boolean;
|
|
6592
6700
|
}>, z.ZodObject<{
|
|
6593
6701
|
type: z.ZodLiteral<"images">;
|
|
6594
6702
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -6642,6 +6750,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
6642
6750
|
type: "video";
|
|
6643
6751
|
url: string | null;
|
|
6644
6752
|
parameters: string;
|
|
6753
|
+
saveToSdCard: boolean;
|
|
6645
6754
|
} | {
|
|
6646
6755
|
type: "images";
|
|
6647
6756
|
url: string | null;
|
|
@@ -6665,6 +6774,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
6665
6774
|
type: "video";
|
|
6666
6775
|
url: string | null;
|
|
6667
6776
|
parameters: string;
|
|
6777
|
+
saveToSdCard: boolean;
|
|
6668
6778
|
} | {
|
|
6669
6779
|
type: "images";
|
|
6670
6780
|
url: string | null;
|
|
@@ -6785,6 +6895,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
6785
6895
|
type: "video";
|
|
6786
6896
|
url: string | null;
|
|
6787
6897
|
parameters: string;
|
|
6898
|
+
saveToSdCard: boolean;
|
|
6788
6899
|
} | {
|
|
6789
6900
|
type: "images";
|
|
6790
6901
|
url: string | null;
|
|
@@ -6860,6 +6971,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
6860
6971
|
type: "video";
|
|
6861
6972
|
url: string | null;
|
|
6862
6973
|
parameters: string;
|
|
6974
|
+
saveToSdCard: boolean;
|
|
6863
6975
|
} | {
|
|
6864
6976
|
type: "images";
|
|
6865
6977
|
url: string | null;
|
|
@@ -7007,14 +7119,17 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
7007
7119
|
type: z.ZodLiteral<"video">;
|
|
7008
7120
|
url: z.ZodNullable<z.ZodString>;
|
|
7009
7121
|
parameters: z.ZodString;
|
|
7122
|
+
saveToSdCard: z.ZodBoolean;
|
|
7010
7123
|
}, "strip", z.ZodTypeAny, {
|
|
7011
7124
|
type: "video";
|
|
7012
7125
|
url: string | null;
|
|
7013
7126
|
parameters: string;
|
|
7127
|
+
saveToSdCard: boolean;
|
|
7014
7128
|
}, {
|
|
7015
7129
|
type: "video";
|
|
7016
7130
|
url: string | null;
|
|
7017
7131
|
parameters: string;
|
|
7132
|
+
saveToSdCard: boolean;
|
|
7018
7133
|
}>, z.ZodObject<{
|
|
7019
7134
|
type: z.ZodLiteral<"images">;
|
|
7020
7135
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -7068,6 +7183,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
7068
7183
|
type: "video";
|
|
7069
7184
|
url: string | null;
|
|
7070
7185
|
parameters: string;
|
|
7186
|
+
saveToSdCard: boolean;
|
|
7071
7187
|
} | {
|
|
7072
7188
|
type: "images";
|
|
7073
7189
|
url: string | null;
|
|
@@ -7091,6 +7207,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
7091
7207
|
type: "video";
|
|
7092
7208
|
url: string | null;
|
|
7093
7209
|
parameters: string;
|
|
7210
|
+
saveToSdCard: boolean;
|
|
7094
7211
|
} | {
|
|
7095
7212
|
type: "images";
|
|
7096
7213
|
url: string | null;
|
|
@@ -7211,6 +7328,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
7211
7328
|
type: "video";
|
|
7212
7329
|
url: string | null;
|
|
7213
7330
|
parameters: string;
|
|
7331
|
+
saveToSdCard: boolean;
|
|
7214
7332
|
} | {
|
|
7215
7333
|
type: "images";
|
|
7216
7334
|
url: string | null;
|
|
@@ -7286,6 +7404,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
7286
7404
|
type: "video";
|
|
7287
7405
|
url: string | null;
|
|
7288
7406
|
parameters: string;
|
|
7407
|
+
saveToSdCard: boolean;
|
|
7289
7408
|
} | {
|
|
7290
7409
|
type: "images";
|
|
7291
7410
|
url: string | null;
|
|
@@ -7433,14 +7552,17 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
7433
7552
|
type: z.ZodLiteral<"video">;
|
|
7434
7553
|
url: z.ZodNullable<z.ZodString>;
|
|
7435
7554
|
parameters: z.ZodString;
|
|
7555
|
+
saveToSdCard: z.ZodBoolean;
|
|
7436
7556
|
}, "strip", z.ZodTypeAny, {
|
|
7437
7557
|
type: "video";
|
|
7438
7558
|
url: string | null;
|
|
7439
7559
|
parameters: string;
|
|
7560
|
+
saveToSdCard: boolean;
|
|
7440
7561
|
}, {
|
|
7441
7562
|
type: "video";
|
|
7442
7563
|
url: string | null;
|
|
7443
7564
|
parameters: string;
|
|
7565
|
+
saveToSdCard: boolean;
|
|
7444
7566
|
}>, z.ZodObject<{
|
|
7445
7567
|
type: z.ZodLiteral<"images">;
|
|
7446
7568
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -7494,6 +7616,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
7494
7616
|
type: "video";
|
|
7495
7617
|
url: string | null;
|
|
7496
7618
|
parameters: string;
|
|
7619
|
+
saveToSdCard: boolean;
|
|
7497
7620
|
} | {
|
|
7498
7621
|
type: "images";
|
|
7499
7622
|
url: string | null;
|
|
@@ -7517,6 +7640,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
7517
7640
|
type: "video";
|
|
7518
7641
|
url: string | null;
|
|
7519
7642
|
parameters: string;
|
|
7643
|
+
saveToSdCard: boolean;
|
|
7520
7644
|
} | {
|
|
7521
7645
|
type: "images";
|
|
7522
7646
|
url: string | null;
|
|
@@ -7637,6 +7761,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
7637
7761
|
type: "video";
|
|
7638
7762
|
url: string | null;
|
|
7639
7763
|
parameters: string;
|
|
7764
|
+
saveToSdCard: boolean;
|
|
7640
7765
|
} | {
|
|
7641
7766
|
type: "images";
|
|
7642
7767
|
url: string | null;
|
|
@@ -7712,6 +7837,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
7712
7837
|
type: "video";
|
|
7713
7838
|
url: string | null;
|
|
7714
7839
|
parameters: string;
|
|
7840
|
+
saveToSdCard: boolean;
|
|
7715
7841
|
} | {
|
|
7716
7842
|
type: "images";
|
|
7717
7843
|
url: string | null;
|
|
@@ -7859,14 +7985,17 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
7859
7985
|
type: z.ZodLiteral<"video">;
|
|
7860
7986
|
url: z.ZodNullable<z.ZodString>;
|
|
7861
7987
|
parameters: z.ZodString;
|
|
7988
|
+
saveToSdCard: z.ZodBoolean;
|
|
7862
7989
|
}, "strip", z.ZodTypeAny, {
|
|
7863
7990
|
type: "video";
|
|
7864
7991
|
url: string | null;
|
|
7865
7992
|
parameters: string;
|
|
7993
|
+
saveToSdCard: boolean;
|
|
7866
7994
|
}, {
|
|
7867
7995
|
type: "video";
|
|
7868
7996
|
url: string | null;
|
|
7869
7997
|
parameters: string;
|
|
7998
|
+
saveToSdCard: boolean;
|
|
7870
7999
|
}>, z.ZodObject<{
|
|
7871
8000
|
type: z.ZodLiteral<"images">;
|
|
7872
8001
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -7920,6 +8049,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
7920
8049
|
type: "video";
|
|
7921
8050
|
url: string | null;
|
|
7922
8051
|
parameters: string;
|
|
8052
|
+
saveToSdCard: boolean;
|
|
7923
8053
|
} | {
|
|
7924
8054
|
type: "images";
|
|
7925
8055
|
url: string | null;
|
|
@@ -7943,6 +8073,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
7943
8073
|
type: "video";
|
|
7944
8074
|
url: string | null;
|
|
7945
8075
|
parameters: string;
|
|
8076
|
+
saveToSdCard: boolean;
|
|
7946
8077
|
} | {
|
|
7947
8078
|
type: "images";
|
|
7948
8079
|
url: string | null;
|
|
@@ -8063,6 +8194,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
8063
8194
|
type: "video";
|
|
8064
8195
|
url: string | null;
|
|
8065
8196
|
parameters: string;
|
|
8197
|
+
saveToSdCard: boolean;
|
|
8066
8198
|
} | {
|
|
8067
8199
|
type: "images";
|
|
8068
8200
|
url: string | null;
|
|
@@ -8138,6 +8270,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
8138
8270
|
type: "video";
|
|
8139
8271
|
url: string | null;
|
|
8140
8272
|
parameters: string;
|
|
8273
|
+
saveToSdCard: boolean;
|
|
8141
8274
|
} | {
|
|
8142
8275
|
type: "images";
|
|
8143
8276
|
url: string | null;
|
|
@@ -8285,14 +8418,17 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
8285
8418
|
type: z.ZodLiteral<"video">;
|
|
8286
8419
|
url: z.ZodNullable<z.ZodString>;
|
|
8287
8420
|
parameters: z.ZodString;
|
|
8421
|
+
saveToSdCard: z.ZodBoolean;
|
|
8288
8422
|
}, "strip", z.ZodTypeAny, {
|
|
8289
8423
|
type: "video";
|
|
8290
8424
|
url: string | null;
|
|
8291
8425
|
parameters: string;
|
|
8426
|
+
saveToSdCard: boolean;
|
|
8292
8427
|
}, {
|
|
8293
8428
|
type: "video";
|
|
8294
8429
|
url: string | null;
|
|
8295
8430
|
parameters: string;
|
|
8431
|
+
saveToSdCard: boolean;
|
|
8296
8432
|
}>, z.ZodObject<{
|
|
8297
8433
|
type: z.ZodLiteral<"images">;
|
|
8298
8434
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -8346,6 +8482,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
8346
8482
|
type: "video";
|
|
8347
8483
|
url: string | null;
|
|
8348
8484
|
parameters: string;
|
|
8485
|
+
saveToSdCard: boolean;
|
|
8349
8486
|
} | {
|
|
8350
8487
|
type: "images";
|
|
8351
8488
|
url: string | null;
|
|
@@ -8369,6 +8506,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
8369
8506
|
type: "video";
|
|
8370
8507
|
url: string | null;
|
|
8371
8508
|
parameters: string;
|
|
8509
|
+
saveToSdCard: boolean;
|
|
8372
8510
|
} | {
|
|
8373
8511
|
type: "images";
|
|
8374
8512
|
url: string | null;
|
|
@@ -8489,6 +8627,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
8489
8627
|
type: "video";
|
|
8490
8628
|
url: string | null;
|
|
8491
8629
|
parameters: string;
|
|
8630
|
+
saveToSdCard: boolean;
|
|
8492
8631
|
} | {
|
|
8493
8632
|
type: "images";
|
|
8494
8633
|
url: string | null;
|
|
@@ -8564,6 +8703,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
8564
8703
|
type: "video";
|
|
8565
8704
|
url: string | null;
|
|
8566
8705
|
parameters: string;
|
|
8706
|
+
saveToSdCard: boolean;
|
|
8567
8707
|
} | {
|
|
8568
8708
|
type: "images";
|
|
8569
8709
|
url: string | null;
|
|
@@ -8604,7 +8744,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
8604
8744
|
platform: "youtube_rtmp";
|
|
8605
8745
|
}>]>;
|
|
8606
8746
|
export type TStream = z.infer<typeof streamSchema>;
|
|
8607
|
-
export type TPlatform =
|
|
8747
|
+
export type TPlatform = (typeof streamPlatforms)[keyof typeof streamPlatforms];
|
|
8608
8748
|
export declare const streamListSchema: z.ZodObject<{
|
|
8609
8749
|
streamList: z.ZodArray<z.ZodDiscriminatedUnion<"platform", [z.ZodObject<{
|
|
8610
8750
|
streamId: z.ZodString;
|
|
@@ -8715,14 +8855,17 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
8715
8855
|
type: z.ZodLiteral<"video">;
|
|
8716
8856
|
url: z.ZodNullable<z.ZodString>;
|
|
8717
8857
|
parameters: z.ZodString;
|
|
8858
|
+
saveToSdCard: z.ZodBoolean;
|
|
8718
8859
|
}, "strip", z.ZodTypeAny, {
|
|
8719
8860
|
type: "video";
|
|
8720
8861
|
url: string | null;
|
|
8721
8862
|
parameters: string;
|
|
8863
|
+
saveToSdCard: boolean;
|
|
8722
8864
|
}, {
|
|
8723
8865
|
type: "video";
|
|
8724
8866
|
url: string | null;
|
|
8725
8867
|
parameters: string;
|
|
8868
|
+
saveToSdCard: boolean;
|
|
8726
8869
|
}>, z.ZodObject<{
|
|
8727
8870
|
type: z.ZodLiteral<"images">;
|
|
8728
8871
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -8776,6 +8919,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
8776
8919
|
type: "video";
|
|
8777
8920
|
url: string | null;
|
|
8778
8921
|
parameters: string;
|
|
8922
|
+
saveToSdCard: boolean;
|
|
8779
8923
|
} | {
|
|
8780
8924
|
type: "images";
|
|
8781
8925
|
url: string | null;
|
|
@@ -8799,6 +8943,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
8799
8943
|
type: "video";
|
|
8800
8944
|
url: string | null;
|
|
8801
8945
|
parameters: string;
|
|
8946
|
+
saveToSdCard: boolean;
|
|
8802
8947
|
} | {
|
|
8803
8948
|
type: "images";
|
|
8804
8949
|
url: string | null;
|
|
@@ -8948,6 +9093,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
8948
9093
|
type: "video";
|
|
8949
9094
|
url: string | null;
|
|
8950
9095
|
parameters: string;
|
|
9096
|
+
saveToSdCard: boolean;
|
|
8951
9097
|
} | {
|
|
8952
9098
|
type: "images";
|
|
8953
9099
|
url: string | null;
|
|
@@ -9033,6 +9179,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
9033
9179
|
type: "video";
|
|
9034
9180
|
url: string | null;
|
|
9035
9181
|
parameters: string;
|
|
9182
|
+
saveToSdCard: boolean;
|
|
9036
9183
|
} | {
|
|
9037
9184
|
type: "images";
|
|
9038
9185
|
url: string | null;
|
|
@@ -9183,14 +9330,17 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
9183
9330
|
type: z.ZodLiteral<"video">;
|
|
9184
9331
|
url: z.ZodNullable<z.ZodString>;
|
|
9185
9332
|
parameters: z.ZodString;
|
|
9333
|
+
saveToSdCard: z.ZodBoolean;
|
|
9186
9334
|
}, "strip", z.ZodTypeAny, {
|
|
9187
9335
|
type: "video";
|
|
9188
9336
|
url: string | null;
|
|
9189
9337
|
parameters: string;
|
|
9338
|
+
saveToSdCard: boolean;
|
|
9190
9339
|
}, {
|
|
9191
9340
|
type: "video";
|
|
9192
9341
|
url: string | null;
|
|
9193
9342
|
parameters: string;
|
|
9343
|
+
saveToSdCard: boolean;
|
|
9194
9344
|
}>, z.ZodObject<{
|
|
9195
9345
|
type: z.ZodLiteral<"images">;
|
|
9196
9346
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -9244,6 +9394,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
9244
9394
|
type: "video";
|
|
9245
9395
|
url: string | null;
|
|
9246
9396
|
parameters: string;
|
|
9397
|
+
saveToSdCard: boolean;
|
|
9247
9398
|
} | {
|
|
9248
9399
|
type: "images";
|
|
9249
9400
|
url: string | null;
|
|
@@ -9267,6 +9418,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
9267
9418
|
type: "video";
|
|
9268
9419
|
url: string | null;
|
|
9269
9420
|
parameters: string;
|
|
9421
|
+
saveToSdCard: boolean;
|
|
9270
9422
|
} | {
|
|
9271
9423
|
type: "images";
|
|
9272
9424
|
url: string | null;
|
|
@@ -9387,6 +9539,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
9387
9539
|
type: "video";
|
|
9388
9540
|
url: string | null;
|
|
9389
9541
|
parameters: string;
|
|
9542
|
+
saveToSdCard: boolean;
|
|
9390
9543
|
} | {
|
|
9391
9544
|
type: "images";
|
|
9392
9545
|
url: string | null;
|
|
@@ -9462,6 +9615,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
9462
9615
|
type: "video";
|
|
9463
9616
|
url: string | null;
|
|
9464
9617
|
parameters: string;
|
|
9618
|
+
saveToSdCard: boolean;
|
|
9465
9619
|
} | {
|
|
9466
9620
|
type: "images";
|
|
9467
9621
|
url: string | null;
|
|
@@ -9609,14 +9763,17 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
9609
9763
|
type: z.ZodLiteral<"video">;
|
|
9610
9764
|
url: z.ZodNullable<z.ZodString>;
|
|
9611
9765
|
parameters: z.ZodString;
|
|
9766
|
+
saveToSdCard: z.ZodBoolean;
|
|
9612
9767
|
}, "strip", z.ZodTypeAny, {
|
|
9613
9768
|
type: "video";
|
|
9614
9769
|
url: string | null;
|
|
9615
9770
|
parameters: string;
|
|
9771
|
+
saveToSdCard: boolean;
|
|
9616
9772
|
}, {
|
|
9617
9773
|
type: "video";
|
|
9618
9774
|
url: string | null;
|
|
9619
9775
|
parameters: string;
|
|
9776
|
+
saveToSdCard: boolean;
|
|
9620
9777
|
}>, z.ZodObject<{
|
|
9621
9778
|
type: z.ZodLiteral<"images">;
|
|
9622
9779
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -9670,6 +9827,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
9670
9827
|
type: "video";
|
|
9671
9828
|
url: string | null;
|
|
9672
9829
|
parameters: string;
|
|
9830
|
+
saveToSdCard: boolean;
|
|
9673
9831
|
} | {
|
|
9674
9832
|
type: "images";
|
|
9675
9833
|
url: string | null;
|
|
@@ -9693,6 +9851,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
9693
9851
|
type: "video";
|
|
9694
9852
|
url: string | null;
|
|
9695
9853
|
parameters: string;
|
|
9854
|
+
saveToSdCard: boolean;
|
|
9696
9855
|
} | {
|
|
9697
9856
|
type: "images";
|
|
9698
9857
|
url: string | null;
|
|
@@ -9813,6 +9972,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
9813
9972
|
type: "video";
|
|
9814
9973
|
url: string | null;
|
|
9815
9974
|
parameters: string;
|
|
9975
|
+
saveToSdCard: boolean;
|
|
9816
9976
|
} | {
|
|
9817
9977
|
type: "images";
|
|
9818
9978
|
url: string | null;
|
|
@@ -9888,6 +10048,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
9888
10048
|
type: "video";
|
|
9889
10049
|
url: string | null;
|
|
9890
10050
|
parameters: string;
|
|
10051
|
+
saveToSdCard: boolean;
|
|
9891
10052
|
} | {
|
|
9892
10053
|
type: "images";
|
|
9893
10054
|
url: string | null;
|
|
@@ -10035,14 +10196,17 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10035
10196
|
type: z.ZodLiteral<"video">;
|
|
10036
10197
|
url: z.ZodNullable<z.ZodString>;
|
|
10037
10198
|
parameters: z.ZodString;
|
|
10199
|
+
saveToSdCard: z.ZodBoolean;
|
|
10038
10200
|
}, "strip", z.ZodTypeAny, {
|
|
10039
10201
|
type: "video";
|
|
10040
10202
|
url: string | null;
|
|
10041
10203
|
parameters: string;
|
|
10204
|
+
saveToSdCard: boolean;
|
|
10042
10205
|
}, {
|
|
10043
10206
|
type: "video";
|
|
10044
10207
|
url: string | null;
|
|
10045
10208
|
parameters: string;
|
|
10209
|
+
saveToSdCard: boolean;
|
|
10046
10210
|
}>, z.ZodObject<{
|
|
10047
10211
|
type: z.ZodLiteral<"images">;
|
|
10048
10212
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -10096,6 +10260,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10096
10260
|
type: "video";
|
|
10097
10261
|
url: string | null;
|
|
10098
10262
|
parameters: string;
|
|
10263
|
+
saveToSdCard: boolean;
|
|
10099
10264
|
} | {
|
|
10100
10265
|
type: "images";
|
|
10101
10266
|
url: string | null;
|
|
@@ -10119,6 +10284,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10119
10284
|
type: "video";
|
|
10120
10285
|
url: string | null;
|
|
10121
10286
|
parameters: string;
|
|
10287
|
+
saveToSdCard: boolean;
|
|
10122
10288
|
} | {
|
|
10123
10289
|
type: "images";
|
|
10124
10290
|
url: string | null;
|
|
@@ -10239,6 +10405,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10239
10405
|
type: "video";
|
|
10240
10406
|
url: string | null;
|
|
10241
10407
|
parameters: string;
|
|
10408
|
+
saveToSdCard: boolean;
|
|
10242
10409
|
} | {
|
|
10243
10410
|
type: "images";
|
|
10244
10411
|
url: string | null;
|
|
@@ -10314,6 +10481,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10314
10481
|
type: "video";
|
|
10315
10482
|
url: string | null;
|
|
10316
10483
|
parameters: string;
|
|
10484
|
+
saveToSdCard: boolean;
|
|
10317
10485
|
} | {
|
|
10318
10486
|
type: "images";
|
|
10319
10487
|
url: string | null;
|
|
@@ -10461,14 +10629,17 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10461
10629
|
type: z.ZodLiteral<"video">;
|
|
10462
10630
|
url: z.ZodNullable<z.ZodString>;
|
|
10463
10631
|
parameters: z.ZodString;
|
|
10632
|
+
saveToSdCard: z.ZodBoolean;
|
|
10464
10633
|
}, "strip", z.ZodTypeAny, {
|
|
10465
10634
|
type: "video";
|
|
10466
10635
|
url: string | null;
|
|
10467
10636
|
parameters: string;
|
|
10637
|
+
saveToSdCard: boolean;
|
|
10468
10638
|
}, {
|
|
10469
10639
|
type: "video";
|
|
10470
10640
|
url: string | null;
|
|
10471
10641
|
parameters: string;
|
|
10642
|
+
saveToSdCard: boolean;
|
|
10472
10643
|
}>, z.ZodObject<{
|
|
10473
10644
|
type: z.ZodLiteral<"images">;
|
|
10474
10645
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -10522,6 +10693,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10522
10693
|
type: "video";
|
|
10523
10694
|
url: string | null;
|
|
10524
10695
|
parameters: string;
|
|
10696
|
+
saveToSdCard: boolean;
|
|
10525
10697
|
} | {
|
|
10526
10698
|
type: "images";
|
|
10527
10699
|
url: string | null;
|
|
@@ -10545,6 +10717,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10545
10717
|
type: "video";
|
|
10546
10718
|
url: string | null;
|
|
10547
10719
|
parameters: string;
|
|
10720
|
+
saveToSdCard: boolean;
|
|
10548
10721
|
} | {
|
|
10549
10722
|
type: "images";
|
|
10550
10723
|
url: string | null;
|
|
@@ -10665,6 +10838,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10665
10838
|
type: "video";
|
|
10666
10839
|
url: string | null;
|
|
10667
10840
|
parameters: string;
|
|
10841
|
+
saveToSdCard: boolean;
|
|
10668
10842
|
} | {
|
|
10669
10843
|
type: "images";
|
|
10670
10844
|
url: string | null;
|
|
@@ -10740,6 +10914,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10740
10914
|
type: "video";
|
|
10741
10915
|
url: string | null;
|
|
10742
10916
|
parameters: string;
|
|
10917
|
+
saveToSdCard: boolean;
|
|
10743
10918
|
} | {
|
|
10744
10919
|
type: "images";
|
|
10745
10920
|
url: string | null;
|
|
@@ -10887,14 +11062,17 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10887
11062
|
type: z.ZodLiteral<"video">;
|
|
10888
11063
|
url: z.ZodNullable<z.ZodString>;
|
|
10889
11064
|
parameters: z.ZodString;
|
|
11065
|
+
saveToSdCard: z.ZodBoolean;
|
|
10890
11066
|
}, "strip", z.ZodTypeAny, {
|
|
10891
11067
|
type: "video";
|
|
10892
11068
|
url: string | null;
|
|
10893
11069
|
parameters: string;
|
|
11070
|
+
saveToSdCard: boolean;
|
|
10894
11071
|
}, {
|
|
10895
11072
|
type: "video";
|
|
10896
11073
|
url: string | null;
|
|
10897
11074
|
parameters: string;
|
|
11075
|
+
saveToSdCard: boolean;
|
|
10898
11076
|
}>, z.ZodObject<{
|
|
10899
11077
|
type: z.ZodLiteral<"images">;
|
|
10900
11078
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -10948,6 +11126,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10948
11126
|
type: "video";
|
|
10949
11127
|
url: string | null;
|
|
10950
11128
|
parameters: string;
|
|
11129
|
+
saveToSdCard: boolean;
|
|
10951
11130
|
} | {
|
|
10952
11131
|
type: "images";
|
|
10953
11132
|
url: string | null;
|
|
@@ -10971,6 +11150,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10971
11150
|
type: "video";
|
|
10972
11151
|
url: string | null;
|
|
10973
11152
|
parameters: string;
|
|
11153
|
+
saveToSdCard: boolean;
|
|
10974
11154
|
} | {
|
|
10975
11155
|
type: "images";
|
|
10976
11156
|
url: string | null;
|
|
@@ -11091,6 +11271,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11091
11271
|
type: "video";
|
|
11092
11272
|
url: string | null;
|
|
11093
11273
|
parameters: string;
|
|
11274
|
+
saveToSdCard: boolean;
|
|
11094
11275
|
} | {
|
|
11095
11276
|
type: "images";
|
|
11096
11277
|
url: string | null;
|
|
@@ -11166,6 +11347,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11166
11347
|
type: "video";
|
|
11167
11348
|
url: string | null;
|
|
11168
11349
|
parameters: string;
|
|
11350
|
+
saveToSdCard: boolean;
|
|
11169
11351
|
} | {
|
|
11170
11352
|
type: "images";
|
|
11171
11353
|
url: string | null;
|
|
@@ -11313,14 +11495,17 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11313
11495
|
type: z.ZodLiteral<"video">;
|
|
11314
11496
|
url: z.ZodNullable<z.ZodString>;
|
|
11315
11497
|
parameters: z.ZodString;
|
|
11498
|
+
saveToSdCard: z.ZodBoolean;
|
|
11316
11499
|
}, "strip", z.ZodTypeAny, {
|
|
11317
11500
|
type: "video";
|
|
11318
11501
|
url: string | null;
|
|
11319
11502
|
parameters: string;
|
|
11503
|
+
saveToSdCard: boolean;
|
|
11320
11504
|
}, {
|
|
11321
11505
|
type: "video";
|
|
11322
11506
|
url: string | null;
|
|
11323
11507
|
parameters: string;
|
|
11508
|
+
saveToSdCard: boolean;
|
|
11324
11509
|
}>, z.ZodObject<{
|
|
11325
11510
|
type: z.ZodLiteral<"images">;
|
|
11326
11511
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -11374,6 +11559,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11374
11559
|
type: "video";
|
|
11375
11560
|
url: string | null;
|
|
11376
11561
|
parameters: string;
|
|
11562
|
+
saveToSdCard: boolean;
|
|
11377
11563
|
} | {
|
|
11378
11564
|
type: "images";
|
|
11379
11565
|
url: string | null;
|
|
@@ -11397,6 +11583,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11397
11583
|
type: "video";
|
|
11398
11584
|
url: string | null;
|
|
11399
11585
|
parameters: string;
|
|
11586
|
+
saveToSdCard: boolean;
|
|
11400
11587
|
} | {
|
|
11401
11588
|
type: "images";
|
|
11402
11589
|
url: string | null;
|
|
@@ -11529,6 +11716,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11529
11716
|
type: "video";
|
|
11530
11717
|
url: string | null;
|
|
11531
11718
|
parameters: string;
|
|
11719
|
+
saveToSdCard: boolean;
|
|
11532
11720
|
} | {
|
|
11533
11721
|
type: "images";
|
|
11534
11722
|
url: string | null;
|
|
@@ -11616,6 +11804,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11616
11804
|
type: "video";
|
|
11617
11805
|
url: string | null;
|
|
11618
11806
|
parameters: string;
|
|
11807
|
+
saveToSdCard: boolean;
|
|
11619
11808
|
} | {
|
|
11620
11809
|
type: "images";
|
|
11621
11810
|
url: string | null;
|
|
@@ -11775,14 +11964,17 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11775
11964
|
type: z.ZodLiteral<"video">;
|
|
11776
11965
|
url: z.ZodNullable<z.ZodString>;
|
|
11777
11966
|
parameters: z.ZodString;
|
|
11967
|
+
saveToSdCard: z.ZodBoolean;
|
|
11778
11968
|
}, "strip", z.ZodTypeAny, {
|
|
11779
11969
|
type: "video";
|
|
11780
11970
|
url: string | null;
|
|
11781
11971
|
parameters: string;
|
|
11972
|
+
saveToSdCard: boolean;
|
|
11782
11973
|
}, {
|
|
11783
11974
|
type: "video";
|
|
11784
11975
|
url: string | null;
|
|
11785
11976
|
parameters: string;
|
|
11977
|
+
saveToSdCard: boolean;
|
|
11786
11978
|
}>, z.ZodObject<{
|
|
11787
11979
|
type: z.ZodLiteral<"images">;
|
|
11788
11980
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -11836,6 +12028,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11836
12028
|
type: "video";
|
|
11837
12029
|
url: string | null;
|
|
11838
12030
|
parameters: string;
|
|
12031
|
+
saveToSdCard: boolean;
|
|
11839
12032
|
} | {
|
|
11840
12033
|
type: "images";
|
|
11841
12034
|
url: string | null;
|
|
@@ -11859,6 +12052,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11859
12052
|
type: "video";
|
|
11860
12053
|
url: string | null;
|
|
11861
12054
|
parameters: string;
|
|
12055
|
+
saveToSdCard: boolean;
|
|
11862
12056
|
} | {
|
|
11863
12057
|
type: "images";
|
|
11864
12058
|
url: string | null;
|
|
@@ -11979,6 +12173,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11979
12173
|
type: "video";
|
|
11980
12174
|
url: string | null;
|
|
11981
12175
|
parameters: string;
|
|
12176
|
+
saveToSdCard: boolean;
|
|
11982
12177
|
} | {
|
|
11983
12178
|
type: "images";
|
|
11984
12179
|
url: string | null;
|
|
@@ -12054,6 +12249,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12054
12249
|
type: "video";
|
|
12055
12250
|
url: string | null;
|
|
12056
12251
|
parameters: string;
|
|
12252
|
+
saveToSdCard: boolean;
|
|
12057
12253
|
} | {
|
|
12058
12254
|
type: "images";
|
|
12059
12255
|
url: string | null;
|
|
@@ -12201,14 +12397,17 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12201
12397
|
type: z.ZodLiteral<"video">;
|
|
12202
12398
|
url: z.ZodNullable<z.ZodString>;
|
|
12203
12399
|
parameters: z.ZodString;
|
|
12400
|
+
saveToSdCard: z.ZodBoolean;
|
|
12204
12401
|
}, "strip", z.ZodTypeAny, {
|
|
12205
12402
|
type: "video";
|
|
12206
12403
|
url: string | null;
|
|
12207
12404
|
parameters: string;
|
|
12405
|
+
saveToSdCard: boolean;
|
|
12208
12406
|
}, {
|
|
12209
12407
|
type: "video";
|
|
12210
12408
|
url: string | null;
|
|
12211
12409
|
parameters: string;
|
|
12410
|
+
saveToSdCard: boolean;
|
|
12212
12411
|
}>, z.ZodObject<{
|
|
12213
12412
|
type: z.ZodLiteral<"images">;
|
|
12214
12413
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -12262,6 +12461,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12262
12461
|
type: "video";
|
|
12263
12462
|
url: string | null;
|
|
12264
12463
|
parameters: string;
|
|
12464
|
+
saveToSdCard: boolean;
|
|
12265
12465
|
} | {
|
|
12266
12466
|
type: "images";
|
|
12267
12467
|
url: string | null;
|
|
@@ -12285,6 +12485,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12285
12485
|
type: "video";
|
|
12286
12486
|
url: string | null;
|
|
12287
12487
|
parameters: string;
|
|
12488
|
+
saveToSdCard: boolean;
|
|
12288
12489
|
} | {
|
|
12289
12490
|
type: "images";
|
|
12290
12491
|
url: string | null;
|
|
@@ -12405,6 +12606,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12405
12606
|
type: "video";
|
|
12406
12607
|
url: string | null;
|
|
12407
12608
|
parameters: string;
|
|
12609
|
+
saveToSdCard: boolean;
|
|
12408
12610
|
} | {
|
|
12409
12611
|
type: "images";
|
|
12410
12612
|
url: string | null;
|
|
@@ -12480,6 +12682,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12480
12682
|
type: "video";
|
|
12481
12683
|
url: string | null;
|
|
12482
12684
|
parameters: string;
|
|
12685
|
+
saveToSdCard: boolean;
|
|
12483
12686
|
} | {
|
|
12484
12687
|
type: "images";
|
|
12485
12688
|
url: string | null;
|
|
@@ -12627,14 +12830,17 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12627
12830
|
type: z.ZodLiteral<"video">;
|
|
12628
12831
|
url: z.ZodNullable<z.ZodString>;
|
|
12629
12832
|
parameters: z.ZodString;
|
|
12833
|
+
saveToSdCard: z.ZodBoolean;
|
|
12630
12834
|
}, "strip", z.ZodTypeAny, {
|
|
12631
12835
|
type: "video";
|
|
12632
12836
|
url: string | null;
|
|
12633
12837
|
parameters: string;
|
|
12838
|
+
saveToSdCard: boolean;
|
|
12634
12839
|
}, {
|
|
12635
12840
|
type: "video";
|
|
12636
12841
|
url: string | null;
|
|
12637
12842
|
parameters: string;
|
|
12843
|
+
saveToSdCard: boolean;
|
|
12638
12844
|
}>, z.ZodObject<{
|
|
12639
12845
|
type: z.ZodLiteral<"images">;
|
|
12640
12846
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -12688,6 +12894,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12688
12894
|
type: "video";
|
|
12689
12895
|
url: string | null;
|
|
12690
12896
|
parameters: string;
|
|
12897
|
+
saveToSdCard: boolean;
|
|
12691
12898
|
} | {
|
|
12692
12899
|
type: "images";
|
|
12693
12900
|
url: string | null;
|
|
@@ -12711,6 +12918,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12711
12918
|
type: "video";
|
|
12712
12919
|
url: string | null;
|
|
12713
12920
|
parameters: string;
|
|
12921
|
+
saveToSdCard: boolean;
|
|
12714
12922
|
} | {
|
|
12715
12923
|
type: "images";
|
|
12716
12924
|
url: string | null;
|
|
@@ -12831,6 +13039,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12831
13039
|
type: "video";
|
|
12832
13040
|
url: string | null;
|
|
12833
13041
|
parameters: string;
|
|
13042
|
+
saveToSdCard: boolean;
|
|
12834
13043
|
} | {
|
|
12835
13044
|
type: "images";
|
|
12836
13045
|
url: string | null;
|
|
@@ -12906,6 +13115,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12906
13115
|
type: "video";
|
|
12907
13116
|
url: string | null;
|
|
12908
13117
|
parameters: string;
|
|
13118
|
+
saveToSdCard: boolean;
|
|
12909
13119
|
} | {
|
|
12910
13120
|
type: "images";
|
|
12911
13121
|
url: string | null;
|
|
@@ -13053,14 +13263,17 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
13053
13263
|
type: z.ZodLiteral<"video">;
|
|
13054
13264
|
url: z.ZodNullable<z.ZodString>;
|
|
13055
13265
|
parameters: z.ZodString;
|
|
13266
|
+
saveToSdCard: z.ZodBoolean;
|
|
13056
13267
|
}, "strip", z.ZodTypeAny, {
|
|
13057
13268
|
type: "video";
|
|
13058
13269
|
url: string | null;
|
|
13059
13270
|
parameters: string;
|
|
13271
|
+
saveToSdCard: boolean;
|
|
13060
13272
|
}, {
|
|
13061
13273
|
type: "video";
|
|
13062
13274
|
url: string | null;
|
|
13063
13275
|
parameters: string;
|
|
13276
|
+
saveToSdCard: boolean;
|
|
13064
13277
|
}>, z.ZodObject<{
|
|
13065
13278
|
type: z.ZodLiteral<"images">;
|
|
13066
13279
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -13114,6 +13327,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
13114
13327
|
type: "video";
|
|
13115
13328
|
url: string | null;
|
|
13116
13329
|
parameters: string;
|
|
13330
|
+
saveToSdCard: boolean;
|
|
13117
13331
|
} | {
|
|
13118
13332
|
type: "images";
|
|
13119
13333
|
url: string | null;
|
|
@@ -13137,6 +13351,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
13137
13351
|
type: "video";
|
|
13138
13352
|
url: string | null;
|
|
13139
13353
|
parameters: string;
|
|
13354
|
+
saveToSdCard: boolean;
|
|
13140
13355
|
} | {
|
|
13141
13356
|
type: "images";
|
|
13142
13357
|
url: string | null;
|
|
@@ -13257,6 +13472,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
13257
13472
|
type: "video";
|
|
13258
13473
|
url: string | null;
|
|
13259
13474
|
parameters: string;
|
|
13475
|
+
saveToSdCard: boolean;
|
|
13260
13476
|
} | {
|
|
13261
13477
|
type: "images";
|
|
13262
13478
|
url: string | null;
|
|
@@ -13332,6 +13548,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
13332
13548
|
type: "video";
|
|
13333
13549
|
url: string | null;
|
|
13334
13550
|
parameters: string;
|
|
13551
|
+
saveToSdCard: boolean;
|
|
13335
13552
|
} | {
|
|
13336
13553
|
type: "images";
|
|
13337
13554
|
url: string | null;
|
|
@@ -13479,14 +13696,17 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
13479
13696
|
type: z.ZodLiteral<"video">;
|
|
13480
13697
|
url: z.ZodNullable<z.ZodString>;
|
|
13481
13698
|
parameters: z.ZodString;
|
|
13699
|
+
saveToSdCard: z.ZodBoolean;
|
|
13482
13700
|
}, "strip", z.ZodTypeAny, {
|
|
13483
13701
|
type: "video";
|
|
13484
13702
|
url: string | null;
|
|
13485
13703
|
parameters: string;
|
|
13704
|
+
saveToSdCard: boolean;
|
|
13486
13705
|
}, {
|
|
13487
13706
|
type: "video";
|
|
13488
13707
|
url: string | null;
|
|
13489
13708
|
parameters: string;
|
|
13709
|
+
saveToSdCard: boolean;
|
|
13490
13710
|
}>, z.ZodObject<{
|
|
13491
13711
|
type: z.ZodLiteral<"images">;
|
|
13492
13712
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -13540,6 +13760,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
13540
13760
|
type: "video";
|
|
13541
13761
|
url: string | null;
|
|
13542
13762
|
parameters: string;
|
|
13763
|
+
saveToSdCard: boolean;
|
|
13543
13764
|
} | {
|
|
13544
13765
|
type: "images";
|
|
13545
13766
|
url: string | null;
|
|
@@ -13563,6 +13784,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
13563
13784
|
type: "video";
|
|
13564
13785
|
url: string | null;
|
|
13565
13786
|
parameters: string;
|
|
13787
|
+
saveToSdCard: boolean;
|
|
13566
13788
|
} | {
|
|
13567
13789
|
type: "images";
|
|
13568
13790
|
url: string | null;
|
|
@@ -13683,6 +13905,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
13683
13905
|
type: "video";
|
|
13684
13906
|
url: string | null;
|
|
13685
13907
|
parameters: string;
|
|
13908
|
+
saveToSdCard: boolean;
|
|
13686
13909
|
} | {
|
|
13687
13910
|
type: "images";
|
|
13688
13911
|
url: string | null;
|
|
@@ -13758,6 +13981,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
13758
13981
|
type: "video";
|
|
13759
13982
|
url: string | null;
|
|
13760
13983
|
parameters: string;
|
|
13984
|
+
saveToSdCard: boolean;
|
|
13761
13985
|
} | {
|
|
13762
13986
|
type: "images";
|
|
13763
13987
|
url: string | null;
|
|
@@ -13905,14 +14129,17 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
13905
14129
|
type: z.ZodLiteral<"video">;
|
|
13906
14130
|
url: z.ZodNullable<z.ZodString>;
|
|
13907
14131
|
parameters: z.ZodString;
|
|
14132
|
+
saveToSdCard: z.ZodBoolean;
|
|
13908
14133
|
}, "strip", z.ZodTypeAny, {
|
|
13909
14134
|
type: "video";
|
|
13910
14135
|
url: string | null;
|
|
13911
14136
|
parameters: string;
|
|
14137
|
+
saveToSdCard: boolean;
|
|
13912
14138
|
}, {
|
|
13913
14139
|
type: "video";
|
|
13914
14140
|
url: string | null;
|
|
13915
14141
|
parameters: string;
|
|
14142
|
+
saveToSdCard: boolean;
|
|
13916
14143
|
}>, z.ZodObject<{
|
|
13917
14144
|
type: z.ZodLiteral<"images">;
|
|
13918
14145
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -13966,6 +14193,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
13966
14193
|
type: "video";
|
|
13967
14194
|
url: string | null;
|
|
13968
14195
|
parameters: string;
|
|
14196
|
+
saveToSdCard: boolean;
|
|
13969
14197
|
} | {
|
|
13970
14198
|
type: "images";
|
|
13971
14199
|
url: string | null;
|
|
@@ -13989,6 +14217,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
13989
14217
|
type: "video";
|
|
13990
14218
|
url: string | null;
|
|
13991
14219
|
parameters: string;
|
|
14220
|
+
saveToSdCard: boolean;
|
|
13992
14221
|
} | {
|
|
13993
14222
|
type: "images";
|
|
13994
14223
|
url: string | null;
|
|
@@ -14109,6 +14338,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
14109
14338
|
type: "video";
|
|
14110
14339
|
url: string | null;
|
|
14111
14340
|
parameters: string;
|
|
14341
|
+
saveToSdCard: boolean;
|
|
14112
14342
|
} | {
|
|
14113
14343
|
type: "images";
|
|
14114
14344
|
url: string | null;
|
|
@@ -14184,6 +14414,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
14184
14414
|
type: "video";
|
|
14185
14415
|
url: string | null;
|
|
14186
14416
|
parameters: string;
|
|
14417
|
+
saveToSdCard: boolean;
|
|
14187
14418
|
} | {
|
|
14188
14419
|
type: "images";
|
|
14189
14420
|
url: string | null;
|
|
@@ -14331,14 +14562,17 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
14331
14562
|
type: z.ZodLiteral<"video">;
|
|
14332
14563
|
url: z.ZodNullable<z.ZodString>;
|
|
14333
14564
|
parameters: z.ZodString;
|
|
14565
|
+
saveToSdCard: z.ZodBoolean;
|
|
14334
14566
|
}, "strip", z.ZodTypeAny, {
|
|
14335
14567
|
type: "video";
|
|
14336
14568
|
url: string | null;
|
|
14337
14569
|
parameters: string;
|
|
14570
|
+
saveToSdCard: boolean;
|
|
14338
14571
|
}, {
|
|
14339
14572
|
type: "video";
|
|
14340
14573
|
url: string | null;
|
|
14341
14574
|
parameters: string;
|
|
14575
|
+
saveToSdCard: boolean;
|
|
14342
14576
|
}>, z.ZodObject<{
|
|
14343
14577
|
type: z.ZodLiteral<"images">;
|
|
14344
14578
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -14392,6 +14626,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
14392
14626
|
type: "video";
|
|
14393
14627
|
url: string | null;
|
|
14394
14628
|
parameters: string;
|
|
14629
|
+
saveToSdCard: boolean;
|
|
14395
14630
|
} | {
|
|
14396
14631
|
type: "images";
|
|
14397
14632
|
url: string | null;
|
|
@@ -14415,6 +14650,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
14415
14650
|
type: "video";
|
|
14416
14651
|
url: string | null;
|
|
14417
14652
|
parameters: string;
|
|
14653
|
+
saveToSdCard: boolean;
|
|
14418
14654
|
} | {
|
|
14419
14655
|
type: "images";
|
|
14420
14656
|
url: string | null;
|
|
@@ -14535,6 +14771,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
14535
14771
|
type: "video";
|
|
14536
14772
|
url: string | null;
|
|
14537
14773
|
parameters: string;
|
|
14774
|
+
saveToSdCard: boolean;
|
|
14538
14775
|
} | {
|
|
14539
14776
|
type: "images";
|
|
14540
14777
|
url: string | null;
|
|
@@ -14610,6 +14847,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
14610
14847
|
type: "video";
|
|
14611
14848
|
url: string | null;
|
|
14612
14849
|
parameters: string;
|
|
14850
|
+
saveToSdCard: boolean;
|
|
14613
14851
|
} | {
|
|
14614
14852
|
type: "images";
|
|
14615
14853
|
url: string | null;
|
|
@@ -14757,14 +14995,17 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
14757
14995
|
type: z.ZodLiteral<"video">;
|
|
14758
14996
|
url: z.ZodNullable<z.ZodString>;
|
|
14759
14997
|
parameters: z.ZodString;
|
|
14998
|
+
saveToSdCard: z.ZodBoolean;
|
|
14760
14999
|
}, "strip", z.ZodTypeAny, {
|
|
14761
15000
|
type: "video";
|
|
14762
15001
|
url: string | null;
|
|
14763
15002
|
parameters: string;
|
|
15003
|
+
saveToSdCard: boolean;
|
|
14764
15004
|
}, {
|
|
14765
15005
|
type: "video";
|
|
14766
15006
|
url: string | null;
|
|
14767
15007
|
parameters: string;
|
|
15008
|
+
saveToSdCard: boolean;
|
|
14768
15009
|
}>, z.ZodObject<{
|
|
14769
15010
|
type: z.ZodLiteral<"images">;
|
|
14770
15011
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -14818,6 +15059,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
14818
15059
|
type: "video";
|
|
14819
15060
|
url: string | null;
|
|
14820
15061
|
parameters: string;
|
|
15062
|
+
saveToSdCard: boolean;
|
|
14821
15063
|
} | {
|
|
14822
15064
|
type: "images";
|
|
14823
15065
|
url: string | null;
|
|
@@ -14841,6 +15083,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
14841
15083
|
type: "video";
|
|
14842
15084
|
url: string | null;
|
|
14843
15085
|
parameters: string;
|
|
15086
|
+
saveToSdCard: boolean;
|
|
14844
15087
|
} | {
|
|
14845
15088
|
type: "images";
|
|
14846
15089
|
url: string | null;
|
|
@@ -14961,6 +15204,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
14961
15204
|
type: "video";
|
|
14962
15205
|
url: string | null;
|
|
14963
15206
|
parameters: string;
|
|
15207
|
+
saveToSdCard: boolean;
|
|
14964
15208
|
} | {
|
|
14965
15209
|
type: "images";
|
|
14966
15210
|
url: string | null;
|
|
@@ -15036,6 +15280,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
15036
15280
|
type: "video";
|
|
15037
15281
|
url: string | null;
|
|
15038
15282
|
parameters: string;
|
|
15283
|
+
saveToSdCard: boolean;
|
|
15039
15284
|
} | {
|
|
15040
15285
|
type: "images";
|
|
15041
15286
|
url: string | null;
|
|
@@ -15183,14 +15428,17 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
15183
15428
|
type: z.ZodLiteral<"video">;
|
|
15184
15429
|
url: z.ZodNullable<z.ZodString>;
|
|
15185
15430
|
parameters: z.ZodString;
|
|
15431
|
+
saveToSdCard: z.ZodBoolean;
|
|
15186
15432
|
}, "strip", z.ZodTypeAny, {
|
|
15187
15433
|
type: "video";
|
|
15188
15434
|
url: string | null;
|
|
15189
15435
|
parameters: string;
|
|
15436
|
+
saveToSdCard: boolean;
|
|
15190
15437
|
}, {
|
|
15191
15438
|
type: "video";
|
|
15192
15439
|
url: string | null;
|
|
15193
15440
|
parameters: string;
|
|
15441
|
+
saveToSdCard: boolean;
|
|
15194
15442
|
}>, z.ZodObject<{
|
|
15195
15443
|
type: z.ZodLiteral<"images">;
|
|
15196
15444
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -15244,6 +15492,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
15244
15492
|
type: "video";
|
|
15245
15493
|
url: string | null;
|
|
15246
15494
|
parameters: string;
|
|
15495
|
+
saveToSdCard: boolean;
|
|
15247
15496
|
} | {
|
|
15248
15497
|
type: "images";
|
|
15249
15498
|
url: string | null;
|
|
@@ -15267,6 +15516,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
15267
15516
|
type: "video";
|
|
15268
15517
|
url: string | null;
|
|
15269
15518
|
parameters: string;
|
|
15519
|
+
saveToSdCard: boolean;
|
|
15270
15520
|
} | {
|
|
15271
15521
|
type: "images";
|
|
15272
15522
|
url: string | null;
|
|
@@ -15387,6 +15637,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
15387
15637
|
type: "video";
|
|
15388
15638
|
url: string | null;
|
|
15389
15639
|
parameters: string;
|
|
15640
|
+
saveToSdCard: boolean;
|
|
15390
15641
|
} | {
|
|
15391
15642
|
type: "images";
|
|
15392
15643
|
url: string | null;
|
|
@@ -15462,6 +15713,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
15462
15713
|
type: "video";
|
|
15463
15714
|
url: string | null;
|
|
15464
15715
|
parameters: string;
|
|
15716
|
+
saveToSdCard: boolean;
|
|
15465
15717
|
} | {
|
|
15466
15718
|
type: "images";
|
|
15467
15719
|
url: string | null;
|
|
@@ -15609,14 +15861,17 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
15609
15861
|
type: z.ZodLiteral<"video">;
|
|
15610
15862
|
url: z.ZodNullable<z.ZodString>;
|
|
15611
15863
|
parameters: z.ZodString;
|
|
15864
|
+
saveToSdCard: z.ZodBoolean;
|
|
15612
15865
|
}, "strip", z.ZodTypeAny, {
|
|
15613
15866
|
type: "video";
|
|
15614
15867
|
url: string | null;
|
|
15615
15868
|
parameters: string;
|
|
15869
|
+
saveToSdCard: boolean;
|
|
15616
15870
|
}, {
|
|
15617
15871
|
type: "video";
|
|
15618
15872
|
url: string | null;
|
|
15619
15873
|
parameters: string;
|
|
15874
|
+
saveToSdCard: boolean;
|
|
15620
15875
|
}>, z.ZodObject<{
|
|
15621
15876
|
type: z.ZodLiteral<"images">;
|
|
15622
15877
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -15670,6 +15925,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
15670
15925
|
type: "video";
|
|
15671
15926
|
url: string | null;
|
|
15672
15927
|
parameters: string;
|
|
15928
|
+
saveToSdCard: boolean;
|
|
15673
15929
|
} | {
|
|
15674
15930
|
type: "images";
|
|
15675
15931
|
url: string | null;
|
|
@@ -15693,6 +15949,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
15693
15949
|
type: "video";
|
|
15694
15950
|
url: string | null;
|
|
15695
15951
|
parameters: string;
|
|
15952
|
+
saveToSdCard: boolean;
|
|
15696
15953
|
} | {
|
|
15697
15954
|
type: "images";
|
|
15698
15955
|
url: string | null;
|
|
@@ -15813,6 +16070,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
15813
16070
|
type: "video";
|
|
15814
16071
|
url: string | null;
|
|
15815
16072
|
parameters: string;
|
|
16073
|
+
saveToSdCard: boolean;
|
|
15816
16074
|
} | {
|
|
15817
16075
|
type: "images";
|
|
15818
16076
|
url: string | null;
|
|
@@ -15888,6 +16146,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
15888
16146
|
type: "video";
|
|
15889
16147
|
url: string | null;
|
|
15890
16148
|
parameters: string;
|
|
16149
|
+
saveToSdCard: boolean;
|
|
15891
16150
|
} | {
|
|
15892
16151
|
type: "images";
|
|
15893
16152
|
url: string | null;
|
|
@@ -16035,14 +16294,17 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
16035
16294
|
type: z.ZodLiteral<"video">;
|
|
16036
16295
|
url: z.ZodNullable<z.ZodString>;
|
|
16037
16296
|
parameters: z.ZodString;
|
|
16297
|
+
saveToSdCard: z.ZodBoolean;
|
|
16038
16298
|
}, "strip", z.ZodTypeAny, {
|
|
16039
16299
|
type: "video";
|
|
16040
16300
|
url: string | null;
|
|
16041
16301
|
parameters: string;
|
|
16302
|
+
saveToSdCard: boolean;
|
|
16042
16303
|
}, {
|
|
16043
16304
|
type: "video";
|
|
16044
16305
|
url: string | null;
|
|
16045
16306
|
parameters: string;
|
|
16307
|
+
saveToSdCard: boolean;
|
|
16046
16308
|
}>, z.ZodObject<{
|
|
16047
16309
|
type: z.ZodLiteral<"images">;
|
|
16048
16310
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -16096,6 +16358,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
16096
16358
|
type: "video";
|
|
16097
16359
|
url: string | null;
|
|
16098
16360
|
parameters: string;
|
|
16361
|
+
saveToSdCard: boolean;
|
|
16099
16362
|
} | {
|
|
16100
16363
|
type: "images";
|
|
16101
16364
|
url: string | null;
|
|
@@ -16119,6 +16382,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
16119
16382
|
type: "video";
|
|
16120
16383
|
url: string | null;
|
|
16121
16384
|
parameters: string;
|
|
16385
|
+
saveToSdCard: boolean;
|
|
16122
16386
|
} | {
|
|
16123
16387
|
type: "images";
|
|
16124
16388
|
url: string | null;
|
|
@@ -16239,6 +16503,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
16239
16503
|
type: "video";
|
|
16240
16504
|
url: string | null;
|
|
16241
16505
|
parameters: string;
|
|
16506
|
+
saveToSdCard: boolean;
|
|
16242
16507
|
} | {
|
|
16243
16508
|
type: "images";
|
|
16244
16509
|
url: string | null;
|
|
@@ -16314,6 +16579,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
16314
16579
|
type: "video";
|
|
16315
16580
|
url: string | null;
|
|
16316
16581
|
parameters: string;
|
|
16582
|
+
saveToSdCard: boolean;
|
|
16317
16583
|
} | {
|
|
16318
16584
|
type: "images";
|
|
16319
16585
|
url: string | null;
|
|
@@ -16461,14 +16727,17 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
16461
16727
|
type: z.ZodLiteral<"video">;
|
|
16462
16728
|
url: z.ZodNullable<z.ZodString>;
|
|
16463
16729
|
parameters: z.ZodString;
|
|
16730
|
+
saveToSdCard: z.ZodBoolean;
|
|
16464
16731
|
}, "strip", z.ZodTypeAny, {
|
|
16465
16732
|
type: "video";
|
|
16466
16733
|
url: string | null;
|
|
16467
16734
|
parameters: string;
|
|
16735
|
+
saveToSdCard: boolean;
|
|
16468
16736
|
}, {
|
|
16469
16737
|
type: "video";
|
|
16470
16738
|
url: string | null;
|
|
16471
16739
|
parameters: string;
|
|
16740
|
+
saveToSdCard: boolean;
|
|
16472
16741
|
}>, z.ZodObject<{
|
|
16473
16742
|
type: z.ZodLiteral<"images">;
|
|
16474
16743
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -16522,6 +16791,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
16522
16791
|
type: "video";
|
|
16523
16792
|
url: string | null;
|
|
16524
16793
|
parameters: string;
|
|
16794
|
+
saveToSdCard: boolean;
|
|
16525
16795
|
} | {
|
|
16526
16796
|
type: "images";
|
|
16527
16797
|
url: string | null;
|
|
@@ -16545,6 +16815,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
16545
16815
|
type: "video";
|
|
16546
16816
|
url: string | null;
|
|
16547
16817
|
parameters: string;
|
|
16818
|
+
saveToSdCard: boolean;
|
|
16548
16819
|
} | {
|
|
16549
16820
|
type: "images";
|
|
16550
16821
|
url: string | null;
|
|
@@ -16665,6 +16936,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
16665
16936
|
type: "video";
|
|
16666
16937
|
url: string | null;
|
|
16667
16938
|
parameters: string;
|
|
16939
|
+
saveToSdCard: boolean;
|
|
16668
16940
|
} | {
|
|
16669
16941
|
type: "images";
|
|
16670
16942
|
url: string | null;
|
|
@@ -16740,6 +17012,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
16740
17012
|
type: "video";
|
|
16741
17013
|
url: string | null;
|
|
16742
17014
|
parameters: string;
|
|
17015
|
+
saveToSdCard: boolean;
|
|
16743
17016
|
} | {
|
|
16744
17017
|
type: "images";
|
|
16745
17018
|
url: string | null;
|
|
@@ -16887,14 +17160,17 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
16887
17160
|
type: z.ZodLiteral<"video">;
|
|
16888
17161
|
url: z.ZodNullable<z.ZodString>;
|
|
16889
17162
|
parameters: z.ZodString;
|
|
17163
|
+
saveToSdCard: z.ZodBoolean;
|
|
16890
17164
|
}, "strip", z.ZodTypeAny, {
|
|
16891
17165
|
type: "video";
|
|
16892
17166
|
url: string | null;
|
|
16893
17167
|
parameters: string;
|
|
17168
|
+
saveToSdCard: boolean;
|
|
16894
17169
|
}, {
|
|
16895
17170
|
type: "video";
|
|
16896
17171
|
url: string | null;
|
|
16897
17172
|
parameters: string;
|
|
17173
|
+
saveToSdCard: boolean;
|
|
16898
17174
|
}>, z.ZodObject<{
|
|
16899
17175
|
type: z.ZodLiteral<"images">;
|
|
16900
17176
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -16948,6 +17224,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
16948
17224
|
type: "video";
|
|
16949
17225
|
url: string | null;
|
|
16950
17226
|
parameters: string;
|
|
17227
|
+
saveToSdCard: boolean;
|
|
16951
17228
|
} | {
|
|
16952
17229
|
type: "images";
|
|
16953
17230
|
url: string | null;
|
|
@@ -16971,6 +17248,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
16971
17248
|
type: "video";
|
|
16972
17249
|
url: string | null;
|
|
16973
17250
|
parameters: string;
|
|
17251
|
+
saveToSdCard: boolean;
|
|
16974
17252
|
} | {
|
|
16975
17253
|
type: "images";
|
|
16976
17254
|
url: string | null;
|
|
@@ -17091,6 +17369,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
17091
17369
|
type: "video";
|
|
17092
17370
|
url: string | null;
|
|
17093
17371
|
parameters: string;
|
|
17372
|
+
saveToSdCard: boolean;
|
|
17094
17373
|
} | {
|
|
17095
17374
|
type: "images";
|
|
17096
17375
|
url: string | null;
|
|
@@ -17166,6 +17445,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
17166
17445
|
type: "video";
|
|
17167
17446
|
url: string | null;
|
|
17168
17447
|
parameters: string;
|
|
17448
|
+
saveToSdCard: boolean;
|
|
17169
17449
|
} | {
|
|
17170
17450
|
type: "images";
|
|
17171
17451
|
url: string | null;
|
|
@@ -17250,6 +17530,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
17250
17530
|
type: "video";
|
|
17251
17531
|
url: string | null;
|
|
17252
17532
|
parameters: string;
|
|
17533
|
+
saveToSdCard: boolean;
|
|
17253
17534
|
} | {
|
|
17254
17535
|
type: "images";
|
|
17255
17536
|
url: string | null;
|
|
@@ -17328,6 +17609,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
17328
17609
|
type: "video";
|
|
17329
17610
|
url: string | null;
|
|
17330
17611
|
parameters: string;
|
|
17612
|
+
saveToSdCard: boolean;
|
|
17331
17613
|
} | {
|
|
17332
17614
|
type: "images";
|
|
17333
17615
|
url: string | null;
|
|
@@ -17403,6 +17685,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
17403
17685
|
type: "video";
|
|
17404
17686
|
url: string | null;
|
|
17405
17687
|
parameters: string;
|
|
17688
|
+
saveToSdCard: boolean;
|
|
17406
17689
|
} | {
|
|
17407
17690
|
type: "images";
|
|
17408
17691
|
url: string | null;
|
|
@@ -17490,6 +17773,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
17490
17773
|
type: "video";
|
|
17491
17774
|
url: string | null;
|
|
17492
17775
|
parameters: string;
|
|
17776
|
+
saveToSdCard: boolean;
|
|
17493
17777
|
} | {
|
|
17494
17778
|
type: "images";
|
|
17495
17779
|
url: string | null;
|
|
@@ -17565,6 +17849,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
17565
17849
|
type: "video";
|
|
17566
17850
|
url: string | null;
|
|
17567
17851
|
parameters: string;
|
|
17852
|
+
saveToSdCard: boolean;
|
|
17568
17853
|
} | {
|
|
17569
17854
|
type: "images";
|
|
17570
17855
|
url: string | null;
|
|
@@ -17640,6 +17925,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
17640
17925
|
type: "video";
|
|
17641
17926
|
url: string | null;
|
|
17642
17927
|
parameters: string;
|
|
17928
|
+
saveToSdCard: boolean;
|
|
17643
17929
|
} | {
|
|
17644
17930
|
type: "images";
|
|
17645
17931
|
url: string | null;
|
|
@@ -17715,6 +18001,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
17715
18001
|
type: "video";
|
|
17716
18002
|
url: string | null;
|
|
17717
18003
|
parameters: string;
|
|
18004
|
+
saveToSdCard: boolean;
|
|
17718
18005
|
} | {
|
|
17719
18006
|
type: "images";
|
|
17720
18007
|
url: string | null;
|
|
@@ -17790,6 +18077,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
17790
18077
|
type: "video";
|
|
17791
18078
|
url: string | null;
|
|
17792
18079
|
parameters: string;
|
|
18080
|
+
saveToSdCard: boolean;
|
|
17793
18081
|
} | {
|
|
17794
18082
|
type: "images";
|
|
17795
18083
|
url: string | null;
|
|
@@ -17865,6 +18153,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
17865
18153
|
type: "video";
|
|
17866
18154
|
url: string | null;
|
|
17867
18155
|
parameters: string;
|
|
18156
|
+
saveToSdCard: boolean;
|
|
17868
18157
|
} | {
|
|
17869
18158
|
type: "images";
|
|
17870
18159
|
url: string | null;
|
|
@@ -17940,6 +18229,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
17940
18229
|
type: "video";
|
|
17941
18230
|
url: string | null;
|
|
17942
18231
|
parameters: string;
|
|
18232
|
+
saveToSdCard: boolean;
|
|
17943
18233
|
} | {
|
|
17944
18234
|
type: "images";
|
|
17945
18235
|
url: string | null;
|
|
@@ -18015,6 +18305,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
18015
18305
|
type: "video";
|
|
18016
18306
|
url: string | null;
|
|
18017
18307
|
parameters: string;
|
|
18308
|
+
saveToSdCard: boolean;
|
|
18018
18309
|
} | {
|
|
18019
18310
|
type: "images";
|
|
18020
18311
|
url: string | null;
|
|
@@ -18090,6 +18381,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
18090
18381
|
type: "video";
|
|
18091
18382
|
url: string | null;
|
|
18092
18383
|
parameters: string;
|
|
18384
|
+
saveToSdCard: boolean;
|
|
18093
18385
|
} | {
|
|
18094
18386
|
type: "images";
|
|
18095
18387
|
url: string | null;
|
|
@@ -18165,6 +18457,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
18165
18457
|
type: "video";
|
|
18166
18458
|
url: string | null;
|
|
18167
18459
|
parameters: string;
|
|
18460
|
+
saveToSdCard: boolean;
|
|
18168
18461
|
} | {
|
|
18169
18462
|
type: "images";
|
|
18170
18463
|
url: string | null;
|
|
@@ -18240,6 +18533,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
18240
18533
|
type: "video";
|
|
18241
18534
|
url: string | null;
|
|
18242
18535
|
parameters: string;
|
|
18536
|
+
saveToSdCard: boolean;
|
|
18243
18537
|
} | {
|
|
18244
18538
|
type: "images";
|
|
18245
18539
|
url: string | null;
|
|
@@ -18315,6 +18609,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
18315
18609
|
type: "video";
|
|
18316
18610
|
url: string | null;
|
|
18317
18611
|
parameters: string;
|
|
18612
|
+
saveToSdCard: boolean;
|
|
18318
18613
|
} | {
|
|
18319
18614
|
type: "images";
|
|
18320
18615
|
url: string | null;
|
|
@@ -18390,6 +18685,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
18390
18685
|
type: "video";
|
|
18391
18686
|
url: string | null;
|
|
18392
18687
|
parameters: string;
|
|
18688
|
+
saveToSdCard: boolean;
|
|
18393
18689
|
} | {
|
|
18394
18690
|
type: "images";
|
|
18395
18691
|
url: string | null;
|
|
@@ -18465,6 +18761,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
18465
18761
|
type: "video";
|
|
18466
18762
|
url: string | null;
|
|
18467
18763
|
parameters: string;
|
|
18764
|
+
saveToSdCard: boolean;
|
|
18468
18765
|
} | {
|
|
18469
18766
|
type: "images";
|
|
18470
18767
|
url: string | null;
|
|
@@ -18540,6 +18837,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
18540
18837
|
type: "video";
|
|
18541
18838
|
url: string | null;
|
|
18542
18839
|
parameters: string;
|
|
18840
|
+
saveToSdCard: boolean;
|
|
18543
18841
|
} | {
|
|
18544
18842
|
type: "images";
|
|
18545
18843
|
url: string | null;
|
|
@@ -18615,6 +18913,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
18615
18913
|
type: "video";
|
|
18616
18914
|
url: string | null;
|
|
18617
18915
|
parameters: string;
|
|
18916
|
+
saveToSdCard: boolean;
|
|
18618
18917
|
} | {
|
|
18619
18918
|
type: "images";
|
|
18620
18919
|
url: string | null;
|
|
@@ -18690,6 +18989,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
18690
18989
|
type: "video";
|
|
18691
18990
|
url: string | null;
|
|
18692
18991
|
parameters: string;
|
|
18992
|
+
saveToSdCard: boolean;
|
|
18693
18993
|
} | {
|
|
18694
18994
|
type: "images";
|
|
18695
18995
|
url: string | null;
|
|
@@ -18774,6 +19074,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
18774
19074
|
type: "video";
|
|
18775
19075
|
url: string | null;
|
|
18776
19076
|
parameters: string;
|
|
19077
|
+
saveToSdCard: boolean;
|
|
18777
19078
|
} | {
|
|
18778
19079
|
type: "images";
|
|
18779
19080
|
url: string | null;
|
|
@@ -18852,6 +19153,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
18852
19153
|
type: "video";
|
|
18853
19154
|
url: string | null;
|
|
18854
19155
|
parameters: string;
|
|
19156
|
+
saveToSdCard: boolean;
|
|
18855
19157
|
} | {
|
|
18856
19158
|
type: "images";
|
|
18857
19159
|
url: string | null;
|
|
@@ -18927,6 +19229,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
18927
19229
|
type: "video";
|
|
18928
19230
|
url: string | null;
|
|
18929
19231
|
parameters: string;
|
|
19232
|
+
saveToSdCard: boolean;
|
|
18930
19233
|
} | {
|
|
18931
19234
|
type: "images";
|
|
18932
19235
|
url: string | null;
|
|
@@ -19014,6 +19317,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
19014
19317
|
type: "video";
|
|
19015
19318
|
url: string | null;
|
|
19016
19319
|
parameters: string;
|
|
19320
|
+
saveToSdCard: boolean;
|
|
19017
19321
|
} | {
|
|
19018
19322
|
type: "images";
|
|
19019
19323
|
url: string | null;
|
|
@@ -19089,6 +19393,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
19089
19393
|
type: "video";
|
|
19090
19394
|
url: string | null;
|
|
19091
19395
|
parameters: string;
|
|
19396
|
+
saveToSdCard: boolean;
|
|
19092
19397
|
} | {
|
|
19093
19398
|
type: "images";
|
|
19094
19399
|
url: string | null;
|
|
@@ -19164,6 +19469,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
19164
19469
|
type: "video";
|
|
19165
19470
|
url: string | null;
|
|
19166
19471
|
parameters: string;
|
|
19472
|
+
saveToSdCard: boolean;
|
|
19167
19473
|
} | {
|
|
19168
19474
|
type: "images";
|
|
19169
19475
|
url: string | null;
|
|
@@ -19239,6 +19545,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
19239
19545
|
type: "video";
|
|
19240
19546
|
url: string | null;
|
|
19241
19547
|
parameters: string;
|
|
19548
|
+
saveToSdCard: boolean;
|
|
19242
19549
|
} | {
|
|
19243
19550
|
type: "images";
|
|
19244
19551
|
url: string | null;
|
|
@@ -19314,6 +19621,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
19314
19621
|
type: "video";
|
|
19315
19622
|
url: string | null;
|
|
19316
19623
|
parameters: string;
|
|
19624
|
+
saveToSdCard: boolean;
|
|
19317
19625
|
} | {
|
|
19318
19626
|
type: "images";
|
|
19319
19627
|
url: string | null;
|
|
@@ -19389,6 +19697,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
19389
19697
|
type: "video";
|
|
19390
19698
|
url: string | null;
|
|
19391
19699
|
parameters: string;
|
|
19700
|
+
saveToSdCard: boolean;
|
|
19392
19701
|
} | {
|
|
19393
19702
|
type: "images";
|
|
19394
19703
|
url: string | null;
|
|
@@ -19464,6 +19773,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
19464
19773
|
type: "video";
|
|
19465
19774
|
url: string | null;
|
|
19466
19775
|
parameters: string;
|
|
19776
|
+
saveToSdCard: boolean;
|
|
19467
19777
|
} | {
|
|
19468
19778
|
type: "images";
|
|
19469
19779
|
url: string | null;
|
|
@@ -19539,6 +19849,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
19539
19849
|
type: "video";
|
|
19540
19850
|
url: string | null;
|
|
19541
19851
|
parameters: string;
|
|
19852
|
+
saveToSdCard: boolean;
|
|
19542
19853
|
} | {
|
|
19543
19854
|
type: "images";
|
|
19544
19855
|
url: string | null;
|
|
@@ -19614,6 +19925,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
19614
19925
|
type: "video";
|
|
19615
19926
|
url: string | null;
|
|
19616
19927
|
parameters: string;
|
|
19928
|
+
saveToSdCard: boolean;
|
|
19617
19929
|
} | {
|
|
19618
19930
|
type: "images";
|
|
19619
19931
|
url: string | null;
|
|
@@ -19689,6 +20001,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
19689
20001
|
type: "video";
|
|
19690
20002
|
url: string | null;
|
|
19691
20003
|
parameters: string;
|
|
20004
|
+
saveToSdCard: boolean;
|
|
19692
20005
|
} | {
|
|
19693
20006
|
type: "images";
|
|
19694
20007
|
url: string | null;
|
|
@@ -19764,6 +20077,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
19764
20077
|
type: "video";
|
|
19765
20078
|
url: string | null;
|
|
19766
20079
|
parameters: string;
|
|
20080
|
+
saveToSdCard: boolean;
|
|
19767
20081
|
} | {
|
|
19768
20082
|
type: "images";
|
|
19769
20083
|
url: string | null;
|
|
@@ -19839,6 +20153,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
19839
20153
|
type: "video";
|
|
19840
20154
|
url: string | null;
|
|
19841
20155
|
parameters: string;
|
|
20156
|
+
saveToSdCard: boolean;
|
|
19842
20157
|
} | {
|
|
19843
20158
|
type: "images";
|
|
19844
20159
|
url: string | null;
|
|
@@ -19914,6 +20229,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
19914
20229
|
type: "video";
|
|
19915
20230
|
url: string | null;
|
|
19916
20231
|
parameters: string;
|
|
20232
|
+
saveToSdCard: boolean;
|
|
19917
20233
|
} | {
|
|
19918
20234
|
type: "images";
|
|
19919
20235
|
url: string | null;
|
|
@@ -19989,6 +20305,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
19989
20305
|
type: "video";
|
|
19990
20306
|
url: string | null;
|
|
19991
20307
|
parameters: string;
|
|
20308
|
+
saveToSdCard: boolean;
|
|
19992
20309
|
} | {
|
|
19993
20310
|
type: "images";
|
|
19994
20311
|
url: string | null;
|
|
@@ -20064,6 +20381,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
20064
20381
|
type: "video";
|
|
20065
20382
|
url: string | null;
|
|
20066
20383
|
parameters: string;
|
|
20384
|
+
saveToSdCard: boolean;
|
|
20067
20385
|
} | {
|
|
20068
20386
|
type: "images";
|
|
20069
20387
|
url: string | null;
|
|
@@ -20139,6 +20457,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
20139
20457
|
type: "video";
|
|
20140
20458
|
url: string | null;
|
|
20141
20459
|
parameters: string;
|
|
20460
|
+
saveToSdCard: boolean;
|
|
20142
20461
|
} | {
|
|
20143
20462
|
type: "images";
|
|
20144
20463
|
url: string | null;
|
|
@@ -20214,6 +20533,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
20214
20533
|
type: "video";
|
|
20215
20534
|
url: string | null;
|
|
20216
20535
|
parameters: string;
|
|
20536
|
+
saveToSdCard: boolean;
|
|
20217
20537
|
} | {
|
|
20218
20538
|
type: "images";
|
|
20219
20539
|
url: string | null;
|
|
@@ -20300,6 +20620,7 @@ export declare const isFacebookStream: (stream: TStream) => stream is {
|
|
|
20300
20620
|
type: "video";
|
|
20301
20621
|
url: string | null;
|
|
20302
20622
|
parameters: string;
|
|
20623
|
+
saveToSdCard: boolean;
|
|
20303
20624
|
} | {
|
|
20304
20625
|
type: "images";
|
|
20305
20626
|
url: string | null;
|
|
@@ -20380,6 +20701,7 @@ export declare const isFacebookRtmpStream: (stream: TStream) => stream is {
|
|
|
20380
20701
|
type: "video";
|
|
20381
20702
|
url: string | null;
|
|
20382
20703
|
parameters: string;
|
|
20704
|
+
saveToSdCard: boolean;
|
|
20383
20705
|
} | {
|
|
20384
20706
|
type: "images";
|
|
20385
20707
|
url: string | null;
|
|
@@ -20457,6 +20779,7 @@ export declare const isMpegDvbStream: (stream: TStream) => stream is {
|
|
|
20457
20779
|
type: "video";
|
|
20458
20780
|
url: string | null;
|
|
20459
20781
|
parameters: string;
|
|
20782
|
+
saveToSdCard: boolean;
|
|
20460
20783
|
} | {
|
|
20461
20784
|
type: "images";
|
|
20462
20785
|
url: string | null;
|
|
@@ -20534,6 +20857,7 @@ export declare const isRtmpStream: (stream: TStream) => stream is {
|
|
|
20534
20857
|
type: "video";
|
|
20535
20858
|
url: string | null;
|
|
20536
20859
|
parameters: string;
|
|
20860
|
+
saveToSdCard: boolean;
|
|
20537
20861
|
} | {
|
|
20538
20862
|
type: "images";
|
|
20539
20863
|
url: string | null;
|
|
@@ -20611,6 +20935,7 @@ export declare const isSdCardStream: (stream: TStream) => stream is {
|
|
|
20611
20935
|
type: "video";
|
|
20612
20936
|
url: string | null;
|
|
20613
20937
|
parameters: string;
|
|
20938
|
+
saveToSdCard: boolean;
|
|
20614
20939
|
} | {
|
|
20615
20940
|
type: "images";
|
|
20616
20941
|
url: string | null;
|
|
@@ -20688,6 +21013,7 @@ export declare const isWindyStream: (stream: TStream) => stream is {
|
|
|
20688
21013
|
type: "video";
|
|
20689
21014
|
url: string | null;
|
|
20690
21015
|
parameters: string;
|
|
21016
|
+
saveToSdCard: boolean;
|
|
20691
21017
|
} | {
|
|
20692
21018
|
type: "images";
|
|
20693
21019
|
url: string | null;
|
|
@@ -20765,6 +21091,7 @@ export declare const isYouTubeStream: (stream: TStream) => stream is {
|
|
|
20765
21091
|
type: "video";
|
|
20766
21092
|
url: string | null;
|
|
20767
21093
|
parameters: string;
|
|
21094
|
+
saveToSdCard: boolean;
|
|
20768
21095
|
} | {
|
|
20769
21096
|
type: "images";
|
|
20770
21097
|
url: string | null;
|
|
@@ -20854,6 +21181,7 @@ export declare const isVimeoStream: (stream: TStream) => stream is {
|
|
|
20854
21181
|
type: "video";
|
|
20855
21182
|
url: string | null;
|
|
20856
21183
|
parameters: string;
|
|
21184
|
+
saveToSdCard: boolean;
|
|
20857
21185
|
} | {
|
|
20858
21186
|
type: "images";
|
|
20859
21187
|
url: string | null;
|
|
@@ -20931,6 +21259,7 @@ export declare const isTwitchStream: (stream: TStream) => stream is {
|
|
|
20931
21259
|
type: "video";
|
|
20932
21260
|
url: string | null;
|
|
20933
21261
|
parameters: string;
|
|
21262
|
+
saveToSdCard: boolean;
|
|
20934
21263
|
} | {
|
|
20935
21264
|
type: "images";
|
|
20936
21265
|
url: string | null;
|
|
@@ -21008,6 +21337,7 @@ export declare const isSrtStream: (stream: TStream) => stream is {
|
|
|
21008
21337
|
type: "video";
|
|
21009
21338
|
url: string | null;
|
|
21010
21339
|
parameters: string;
|
|
21340
|
+
saveToSdCard: boolean;
|
|
21011
21341
|
} | {
|
|
21012
21342
|
type: "images";
|
|
21013
21343
|
url: string | null;
|
|
@@ -21085,6 +21415,7 @@ export declare const isDaCastStream: (stream: TStream) => stream is {
|
|
|
21085
21415
|
type: "video";
|
|
21086
21416
|
url: string | null;
|
|
21087
21417
|
parameters: string;
|
|
21418
|
+
saveToSdCard: boolean;
|
|
21088
21419
|
} | {
|
|
21089
21420
|
type: "images";
|
|
21090
21421
|
url: string | null;
|
|
@@ -21162,6 +21493,7 @@ export declare const isHlsPullStream: (stream: TStream) => stream is {
|
|
|
21162
21493
|
type: "video";
|
|
21163
21494
|
url: string | null;
|
|
21164
21495
|
parameters: string;
|
|
21496
|
+
saveToSdCard: boolean;
|
|
21165
21497
|
} | {
|
|
21166
21498
|
type: "images";
|
|
21167
21499
|
url: string | null;
|
|
@@ -21239,6 +21571,7 @@ export declare const isHlsPushStream: (stream: TStream) => stream is {
|
|
|
21239
21571
|
type: "video";
|
|
21240
21572
|
url: string | null;
|
|
21241
21573
|
parameters: string;
|
|
21574
|
+
saveToSdCard: boolean;
|
|
21242
21575
|
} | {
|
|
21243
21576
|
type: "images";
|
|
21244
21577
|
url: string | null;
|
|
@@ -21316,6 +21649,7 @@ export declare const isWowzaStream: (stream: TStream) => stream is {
|
|
|
21316
21649
|
type: "video";
|
|
21317
21650
|
url: string | null;
|
|
21318
21651
|
parameters: string;
|
|
21652
|
+
saveToSdCard: boolean;
|
|
21319
21653
|
} | {
|
|
21320
21654
|
type: "images";
|
|
21321
21655
|
url: string | null;
|
|
@@ -21393,6 +21727,7 @@ export declare const isDailymotionStream: (stream: TStream) => stream is {
|
|
|
21393
21727
|
type: "video";
|
|
21394
21728
|
url: string | null;
|
|
21395
21729
|
parameters: string;
|
|
21730
|
+
saveToSdCard: boolean;
|
|
21396
21731
|
} | {
|
|
21397
21732
|
type: "images";
|
|
21398
21733
|
url: string | null;
|
|
@@ -21470,6 +21805,7 @@ export declare const isIbmStream: (stream: TStream) => stream is {
|
|
|
21470
21805
|
type: "video";
|
|
21471
21806
|
url: string | null;
|
|
21472
21807
|
parameters: string;
|
|
21808
|
+
saveToSdCard: boolean;
|
|
21473
21809
|
} | {
|
|
21474
21810
|
type: "images";
|
|
21475
21811
|
url: string | null;
|
|
@@ -21547,6 +21883,7 @@ export declare const isMicrosoftAzureStream: (stream: TStream) => stream is {
|
|
|
21547
21883
|
type: "video";
|
|
21548
21884
|
url: string | null;
|
|
21549
21885
|
parameters: string;
|
|
21886
|
+
saveToSdCard: boolean;
|
|
21550
21887
|
} | {
|
|
21551
21888
|
type: "images";
|
|
21552
21889
|
url: string | null;
|
|
@@ -21624,6 +21961,7 @@ export declare const isMicrosoftStream: (stream: TStream) => stream is {
|
|
|
21624
21961
|
type: "video";
|
|
21625
21962
|
url: string | null;
|
|
21626
21963
|
parameters: string;
|
|
21964
|
+
saveToSdCard: boolean;
|
|
21627
21965
|
} | {
|
|
21628
21966
|
type: "images";
|
|
21629
21967
|
url: string | null;
|
|
@@ -21701,6 +22039,7 @@ export declare const isGameChangerStream: (stream: TStream) => stream is {
|
|
|
21701
22039
|
type: "video";
|
|
21702
22040
|
url: string | null;
|
|
21703
22041
|
parameters: string;
|
|
22042
|
+
saveToSdCard: boolean;
|
|
21704
22043
|
} | {
|
|
21705
22044
|
type: "images";
|
|
21706
22045
|
url: string | null;
|
|
@@ -21778,6 +22117,7 @@ export declare const isYoutubeRtmpStream: (stream: TStream) => stream is {
|
|
|
21778
22117
|
type: "video";
|
|
21779
22118
|
url: string | null;
|
|
21780
22119
|
parameters: string;
|
|
22120
|
+
saveToSdCard: boolean;
|
|
21781
22121
|
} | {
|
|
21782
22122
|
type: "images";
|
|
21783
22123
|
url: string | null;
|