camstreamerlib 4.0.0-beta.162 → 4.0.0-beta.164
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/README.md +43 -14
- package/cjs/CamStreamerAPI.d.ts +40 -0
- package/cjs/VapixAPI.d.ts +9 -9
- package/cjs/VapixAPI.js +59 -59
- package/cjs/types/CamStreamerAPI/CamStreamerAPI.d.ts +180 -0
- package/cjs/types/CamStreamerAPI/facebookSchema.d.ts +3 -0
- package/cjs/types/CamStreamerAPI/oldStreamSchema.d.ts +6 -6
- package/cjs/types/CamStreamerAPI/streamCommonTypes.d.ts +3 -0
- package/cjs/types/CamStreamerAPI/streamCommonTypes.js +1 -0
- package/cjs/types/CamStreamerAPI/streamsSchema.d.ts +51 -0
- package/cjs/types/CamStreamerAPI/windySchema.d.ts +3 -0
- package/cjs/types/CamStreamerAPI/youtubeSchema.d.ts +3 -0
- package/esm/VapixAPI.js +59 -59
- package/esm/types/CamStreamerAPI/streamCommonTypes.js +1 -0
- package/package.json +1 -1
- package/types/CamStreamerAPI.d.ts +40 -0
- package/types/VapixAPI.d.ts +9 -9
- package/types/types/CamStreamerAPI/CamStreamerAPI.d.ts +180 -0
- package/types/types/CamStreamerAPI/facebookSchema.d.ts +3 -0
- package/types/types/CamStreamerAPI/oldStreamSchema.d.ts +6 -6
- package/types/types/CamStreamerAPI/streamCommonTypes.d.ts +3 -0
- package/types/types/CamStreamerAPI/streamsSchema.d.ts +51 -0
- package/types/types/CamStreamerAPI/windySchema.d.ts +3 -0
- package/types/types/CamStreamerAPI/youtubeSchema.d.ts +3 -0
|
@@ -27,6 +27,7 @@ export declare const facebookSchema: z.ZodObject<{
|
|
|
27
27
|
enabled: z.ZodBoolean;
|
|
28
28
|
active: z.ZodBoolean;
|
|
29
29
|
title: z.ZodString;
|
|
30
|
+
callApi: z.ZodBoolean;
|
|
30
31
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
31
32
|
type: z.ZodLiteral<"manual">;
|
|
32
33
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -401,6 +402,7 @@ export declare const facebookSchema: z.ZodObject<{
|
|
|
401
402
|
enabled: boolean;
|
|
402
403
|
active: boolean;
|
|
403
404
|
title: string;
|
|
405
|
+
callApi: boolean;
|
|
404
406
|
trigger: {
|
|
405
407
|
type: "manual";
|
|
406
408
|
port?: number | undefined;
|
|
@@ -497,6 +499,7 @@ export declare const facebookSchema: z.ZodObject<{
|
|
|
497
499
|
enabled: boolean;
|
|
498
500
|
active: boolean;
|
|
499
501
|
title: string;
|
|
502
|
+
callApi: boolean;
|
|
500
503
|
trigger: {
|
|
501
504
|
type: "manual";
|
|
502
505
|
port?: number | undefined;
|
|
@@ -24,6 +24,7 @@ export declare const oldStringStreamSchema: z.ZodObject<{
|
|
|
24
24
|
}, "strip", z.ZodTypeAny, {
|
|
25
25
|
enabled: string;
|
|
26
26
|
active: string;
|
|
27
|
+
callApi: string;
|
|
27
28
|
trigger: string;
|
|
28
29
|
startTime: string;
|
|
29
30
|
stopTime: string;
|
|
@@ -41,11 +42,11 @@ export declare const oldStringStreamSchema: z.ZodObject<{
|
|
|
41
42
|
streamDelay: string;
|
|
42
43
|
statusLed: string;
|
|
43
44
|
statusPort: string;
|
|
44
|
-
callApi: string;
|
|
45
45
|
prepareAhead: string;
|
|
46
46
|
}, {
|
|
47
47
|
enabled: string;
|
|
48
48
|
active: string;
|
|
49
|
+
callApi: string;
|
|
49
50
|
trigger: string;
|
|
50
51
|
startTime: string;
|
|
51
52
|
stopTime: string;
|
|
@@ -63,7 +64,6 @@ export declare const oldStringStreamSchema: z.ZodObject<{
|
|
|
63
64
|
streamDelay: string;
|
|
64
65
|
statusLed: string;
|
|
65
66
|
statusPort: string;
|
|
66
|
-
callApi: string;
|
|
67
67
|
prepareAhead: string;
|
|
68
68
|
}>;
|
|
69
69
|
export declare const oldStringStreamSchemaWithId: z.ZodObject<{
|
|
@@ -94,6 +94,7 @@ export declare const oldStringStreamSchemaWithId: z.ZodObject<{
|
|
|
94
94
|
streamId: string;
|
|
95
95
|
enabled: string;
|
|
96
96
|
active: string;
|
|
97
|
+
callApi: string;
|
|
97
98
|
trigger: string;
|
|
98
99
|
startTime: string;
|
|
99
100
|
stopTime: string;
|
|
@@ -111,12 +112,12 @@ export declare const oldStringStreamSchemaWithId: z.ZodObject<{
|
|
|
111
112
|
streamDelay: string;
|
|
112
113
|
statusLed: string;
|
|
113
114
|
statusPort: string;
|
|
114
|
-
callApi: string;
|
|
115
115
|
prepareAhead: string;
|
|
116
116
|
}, {
|
|
117
117
|
streamId: string;
|
|
118
118
|
enabled: string;
|
|
119
119
|
active: string;
|
|
120
|
+
callApi: string;
|
|
120
121
|
trigger: string;
|
|
121
122
|
startTime: string;
|
|
122
123
|
stopTime: string;
|
|
@@ -134,7 +135,6 @@ export declare const oldStringStreamSchemaWithId: z.ZodObject<{
|
|
|
134
135
|
streamDelay: string;
|
|
135
136
|
statusLed: string;
|
|
136
137
|
statusPort: string;
|
|
137
|
-
callApi: string;
|
|
138
138
|
prepareAhead: string;
|
|
139
139
|
}>;
|
|
140
140
|
export type TOldStringStream = z.infer<typeof oldStringStreamSchema>;
|
|
@@ -163,6 +163,7 @@ export declare const oldStreamSchema: z.ZodObject<{
|
|
|
163
163
|
}, "strip", z.ZodTypeAny, {
|
|
164
164
|
enabled: 0 | 1;
|
|
165
165
|
active: 0 | 1;
|
|
166
|
+
callApi: number;
|
|
166
167
|
trigger: string;
|
|
167
168
|
startTime: number | null;
|
|
168
169
|
stopTime: number | null;
|
|
@@ -180,11 +181,11 @@ export declare const oldStreamSchema: z.ZodObject<{
|
|
|
180
181
|
streamDelay: number | null;
|
|
181
182
|
statusLed: number;
|
|
182
183
|
statusPort: string;
|
|
183
|
-
callApi: number;
|
|
184
184
|
prepareAhead: number;
|
|
185
185
|
}, {
|
|
186
186
|
enabled: 0 | 1;
|
|
187
187
|
active: 0 | 1;
|
|
188
|
+
callApi: number;
|
|
188
189
|
trigger: string;
|
|
189
190
|
startTime: number | null;
|
|
190
191
|
stopTime: number | null;
|
|
@@ -202,7 +203,6 @@ export declare const oldStreamSchema: z.ZodObject<{
|
|
|
202
203
|
streamDelay: number | null;
|
|
203
204
|
statusLed: number;
|
|
204
205
|
statusPort: string;
|
|
205
|
-
callApi: number;
|
|
206
206
|
prepareAhead: number;
|
|
207
207
|
}>;
|
|
208
208
|
export type TOldStream = z.infer<typeof oldStreamSchema>;
|
|
@@ -4,6 +4,7 @@ export declare const streamCommonSchema: z.ZodObject<{
|
|
|
4
4
|
enabled: z.ZodBoolean;
|
|
5
5
|
active: z.ZodBoolean;
|
|
6
6
|
title: z.ZodString;
|
|
7
|
+
callApi: z.ZodBoolean;
|
|
7
8
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
8
9
|
type: z.ZodLiteral<"manual">;
|
|
9
10
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -347,6 +348,7 @@ export declare const streamCommonSchema: z.ZodObject<{
|
|
|
347
348
|
enabled: boolean;
|
|
348
349
|
active: boolean;
|
|
349
350
|
title: string;
|
|
351
|
+
callApi: boolean;
|
|
350
352
|
trigger: {
|
|
351
353
|
type: "manual";
|
|
352
354
|
port?: number | undefined;
|
|
@@ -432,6 +434,7 @@ export declare const streamCommonSchema: z.ZodObject<{
|
|
|
432
434
|
enabled: boolean;
|
|
433
435
|
active: boolean;
|
|
434
436
|
title: string;
|
|
437
|
+
callApi: boolean;
|
|
435
438
|
trigger: {
|
|
436
439
|
type: "manual";
|
|
437
440
|
port?: number | undefined;
|
|
@@ -8,6 +8,7 @@ exports.streamCommonSchema = zod_1.z.object({
|
|
|
8
8
|
enabled: zod_1.z.boolean(),
|
|
9
9
|
active: zod_1.z.boolean(),
|
|
10
10
|
title: zod_1.z.string(),
|
|
11
|
+
callApi: zod_1.z.boolean(),
|
|
11
12
|
trigger: zod_1.z.discriminatedUnion('type', [
|
|
12
13
|
zod_1.z.object({
|
|
13
14
|
type: zod_1.z.literal('manual'),
|
|
@@ -26,6 +26,7 @@ export declare const daCastSchema: z.ZodObject<{
|
|
|
26
26
|
enabled: z.ZodBoolean;
|
|
27
27
|
active: z.ZodBoolean;
|
|
28
28
|
title: z.ZodString;
|
|
29
|
+
callApi: z.ZodBoolean;
|
|
29
30
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
30
31
|
type: z.ZodLiteral<"manual">;
|
|
31
32
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -371,6 +372,7 @@ export declare const daCastSchema: z.ZodObject<{
|
|
|
371
372
|
enabled: boolean;
|
|
372
373
|
active: boolean;
|
|
373
374
|
title: string;
|
|
375
|
+
callApi: boolean;
|
|
374
376
|
trigger: {
|
|
375
377
|
type: "manual";
|
|
376
378
|
port?: number | undefined;
|
|
@@ -457,6 +459,7 @@ export declare const daCastSchema: z.ZodObject<{
|
|
|
457
459
|
enabled: boolean;
|
|
458
460
|
active: boolean;
|
|
459
461
|
title: string;
|
|
462
|
+
callApi: boolean;
|
|
460
463
|
trigger: {
|
|
461
464
|
type: "manual";
|
|
462
465
|
port?: number | undefined;
|
|
@@ -540,6 +543,7 @@ export declare const dailymotionSchema: z.ZodObject<{
|
|
|
540
543
|
enabled: z.ZodBoolean;
|
|
541
544
|
active: z.ZodBoolean;
|
|
542
545
|
title: z.ZodString;
|
|
546
|
+
callApi: z.ZodBoolean;
|
|
543
547
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
544
548
|
type: z.ZodLiteral<"manual">;
|
|
545
549
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -885,6 +889,7 @@ export declare const dailymotionSchema: z.ZodObject<{
|
|
|
885
889
|
enabled: boolean;
|
|
886
890
|
active: boolean;
|
|
887
891
|
title: string;
|
|
892
|
+
callApi: boolean;
|
|
888
893
|
trigger: {
|
|
889
894
|
type: "manual";
|
|
890
895
|
port?: number | undefined;
|
|
@@ -971,6 +976,7 @@ export declare const dailymotionSchema: z.ZodObject<{
|
|
|
971
976
|
enabled: boolean;
|
|
972
977
|
active: boolean;
|
|
973
978
|
title: string;
|
|
979
|
+
callApi: boolean;
|
|
974
980
|
trigger: {
|
|
975
981
|
type: "manual";
|
|
976
982
|
port?: number | undefined;
|
|
@@ -1054,6 +1060,7 @@ export declare const facebookRtmpSchema: z.ZodObject<{
|
|
|
1054
1060
|
enabled: z.ZodBoolean;
|
|
1055
1061
|
active: z.ZodBoolean;
|
|
1056
1062
|
title: z.ZodString;
|
|
1063
|
+
callApi: z.ZodBoolean;
|
|
1057
1064
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
1058
1065
|
type: z.ZodLiteral<"manual">;
|
|
1059
1066
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1399,6 +1406,7 @@ export declare const facebookRtmpSchema: z.ZodObject<{
|
|
|
1399
1406
|
enabled: boolean;
|
|
1400
1407
|
active: boolean;
|
|
1401
1408
|
title: string;
|
|
1409
|
+
callApi: boolean;
|
|
1402
1410
|
trigger: {
|
|
1403
1411
|
type: "manual";
|
|
1404
1412
|
port?: number | undefined;
|
|
@@ -1485,6 +1493,7 @@ export declare const facebookRtmpSchema: z.ZodObject<{
|
|
|
1485
1493
|
enabled: boolean;
|
|
1486
1494
|
active: boolean;
|
|
1487
1495
|
title: string;
|
|
1496
|
+
callApi: boolean;
|
|
1488
1497
|
trigger: {
|
|
1489
1498
|
type: "manual";
|
|
1490
1499
|
port?: number | undefined;
|
|
@@ -1568,6 +1577,7 @@ export declare const gameChangerSchema: z.ZodObject<{
|
|
|
1568
1577
|
enabled: z.ZodBoolean;
|
|
1569
1578
|
active: z.ZodBoolean;
|
|
1570
1579
|
title: z.ZodString;
|
|
1580
|
+
callApi: z.ZodBoolean;
|
|
1571
1581
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
1572
1582
|
type: z.ZodLiteral<"manual">;
|
|
1573
1583
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1913,6 +1923,7 @@ export declare const gameChangerSchema: z.ZodObject<{
|
|
|
1913
1923
|
enabled: boolean;
|
|
1914
1924
|
active: boolean;
|
|
1915
1925
|
title: string;
|
|
1926
|
+
callApi: boolean;
|
|
1916
1927
|
trigger: {
|
|
1917
1928
|
type: "manual";
|
|
1918
1929
|
port?: number | undefined;
|
|
@@ -1999,6 +2010,7 @@ export declare const gameChangerSchema: z.ZodObject<{
|
|
|
1999
2010
|
enabled: boolean;
|
|
2000
2011
|
active: boolean;
|
|
2001
2012
|
title: string;
|
|
2013
|
+
callApi: boolean;
|
|
2002
2014
|
trigger: {
|
|
2003
2015
|
type: "manual";
|
|
2004
2016
|
port?: number | undefined;
|
|
@@ -2082,6 +2094,7 @@ export declare const hlsPullSchema: z.ZodObject<{
|
|
|
2082
2094
|
enabled: z.ZodBoolean;
|
|
2083
2095
|
active: z.ZodBoolean;
|
|
2084
2096
|
title: z.ZodString;
|
|
2097
|
+
callApi: z.ZodBoolean;
|
|
2085
2098
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
2086
2099
|
type: z.ZodLiteral<"manual">;
|
|
2087
2100
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2427,6 +2440,7 @@ export declare const hlsPullSchema: z.ZodObject<{
|
|
|
2427
2440
|
enabled: boolean;
|
|
2428
2441
|
active: boolean;
|
|
2429
2442
|
title: string;
|
|
2443
|
+
callApi: boolean;
|
|
2430
2444
|
trigger: {
|
|
2431
2445
|
type: "manual";
|
|
2432
2446
|
port?: number | undefined;
|
|
@@ -2513,6 +2527,7 @@ export declare const hlsPullSchema: z.ZodObject<{
|
|
|
2513
2527
|
enabled: boolean;
|
|
2514
2528
|
active: boolean;
|
|
2515
2529
|
title: string;
|
|
2530
|
+
callApi: boolean;
|
|
2516
2531
|
trigger: {
|
|
2517
2532
|
type: "manual";
|
|
2518
2533
|
port?: number | undefined;
|
|
@@ -2596,6 +2611,7 @@ export declare const hlsPushSchema: z.ZodObject<{
|
|
|
2596
2611
|
enabled: z.ZodBoolean;
|
|
2597
2612
|
active: z.ZodBoolean;
|
|
2598
2613
|
title: z.ZodString;
|
|
2614
|
+
callApi: z.ZodBoolean;
|
|
2599
2615
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
2600
2616
|
type: z.ZodLiteral<"manual">;
|
|
2601
2617
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2941,6 +2957,7 @@ export declare const hlsPushSchema: z.ZodObject<{
|
|
|
2941
2957
|
enabled: boolean;
|
|
2942
2958
|
active: boolean;
|
|
2943
2959
|
title: string;
|
|
2960
|
+
callApi: boolean;
|
|
2944
2961
|
trigger: {
|
|
2945
2962
|
type: "manual";
|
|
2946
2963
|
port?: number | undefined;
|
|
@@ -3027,6 +3044,7 @@ export declare const hlsPushSchema: z.ZodObject<{
|
|
|
3027
3044
|
enabled: boolean;
|
|
3028
3045
|
active: boolean;
|
|
3029
3046
|
title: string;
|
|
3047
|
+
callApi: boolean;
|
|
3030
3048
|
trigger: {
|
|
3031
3049
|
type: "manual";
|
|
3032
3050
|
port?: number | undefined;
|
|
@@ -3110,6 +3128,7 @@ export declare const ibmSchema: z.ZodObject<{
|
|
|
3110
3128
|
enabled: z.ZodBoolean;
|
|
3111
3129
|
active: z.ZodBoolean;
|
|
3112
3130
|
title: z.ZodString;
|
|
3131
|
+
callApi: z.ZodBoolean;
|
|
3113
3132
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
3114
3133
|
type: z.ZodLiteral<"manual">;
|
|
3115
3134
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3455,6 +3474,7 @@ export declare const ibmSchema: z.ZodObject<{
|
|
|
3455
3474
|
enabled: boolean;
|
|
3456
3475
|
active: boolean;
|
|
3457
3476
|
title: string;
|
|
3477
|
+
callApi: boolean;
|
|
3458
3478
|
trigger: {
|
|
3459
3479
|
type: "manual";
|
|
3460
3480
|
port?: number | undefined;
|
|
@@ -3541,6 +3561,7 @@ export declare const ibmSchema: z.ZodObject<{
|
|
|
3541
3561
|
enabled: boolean;
|
|
3542
3562
|
active: boolean;
|
|
3543
3563
|
title: string;
|
|
3564
|
+
callApi: boolean;
|
|
3544
3565
|
trigger: {
|
|
3545
3566
|
type: "manual";
|
|
3546
3567
|
port?: number | undefined;
|
|
@@ -3624,6 +3645,7 @@ export declare const mpegDvbSchema: z.ZodObject<{
|
|
|
3624
3645
|
enabled: z.ZodBoolean;
|
|
3625
3646
|
active: z.ZodBoolean;
|
|
3626
3647
|
title: z.ZodString;
|
|
3648
|
+
callApi: z.ZodBoolean;
|
|
3627
3649
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
3628
3650
|
type: z.ZodLiteral<"manual">;
|
|
3629
3651
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3969,6 +3991,7 @@ export declare const mpegDvbSchema: z.ZodObject<{
|
|
|
3969
3991
|
enabled: boolean;
|
|
3970
3992
|
active: boolean;
|
|
3971
3993
|
title: string;
|
|
3994
|
+
callApi: boolean;
|
|
3972
3995
|
trigger: {
|
|
3973
3996
|
type: "manual";
|
|
3974
3997
|
port?: number | undefined;
|
|
@@ -4055,6 +4078,7 @@ export declare const mpegDvbSchema: z.ZodObject<{
|
|
|
4055
4078
|
enabled: boolean;
|
|
4056
4079
|
active: boolean;
|
|
4057
4080
|
title: string;
|
|
4081
|
+
callApi: boolean;
|
|
4058
4082
|
trigger: {
|
|
4059
4083
|
type: "manual";
|
|
4060
4084
|
port?: number | undefined;
|
|
@@ -4138,6 +4162,7 @@ export declare const microsoftAzureSchema: z.ZodObject<{
|
|
|
4138
4162
|
enabled: z.ZodBoolean;
|
|
4139
4163
|
active: z.ZodBoolean;
|
|
4140
4164
|
title: z.ZodString;
|
|
4165
|
+
callApi: z.ZodBoolean;
|
|
4141
4166
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
4142
4167
|
type: z.ZodLiteral<"manual">;
|
|
4143
4168
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4483,6 +4508,7 @@ export declare const microsoftAzureSchema: z.ZodObject<{
|
|
|
4483
4508
|
enabled: boolean;
|
|
4484
4509
|
active: boolean;
|
|
4485
4510
|
title: string;
|
|
4511
|
+
callApi: boolean;
|
|
4486
4512
|
trigger: {
|
|
4487
4513
|
type: "manual";
|
|
4488
4514
|
port?: number | undefined;
|
|
@@ -4569,6 +4595,7 @@ export declare const microsoftAzureSchema: z.ZodObject<{
|
|
|
4569
4595
|
enabled: boolean;
|
|
4570
4596
|
active: boolean;
|
|
4571
4597
|
title: string;
|
|
4598
|
+
callApi: boolean;
|
|
4572
4599
|
trigger: {
|
|
4573
4600
|
type: "manual";
|
|
4574
4601
|
port?: number | undefined;
|
|
@@ -4652,6 +4679,7 @@ export declare const microsoftStreamSchema: z.ZodObject<{
|
|
|
4652
4679
|
enabled: z.ZodBoolean;
|
|
4653
4680
|
active: z.ZodBoolean;
|
|
4654
4681
|
title: z.ZodString;
|
|
4682
|
+
callApi: z.ZodBoolean;
|
|
4655
4683
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
4656
4684
|
type: z.ZodLiteral<"manual">;
|
|
4657
4685
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4997,6 +5025,7 @@ export declare const microsoftStreamSchema: z.ZodObject<{
|
|
|
4997
5025
|
enabled: boolean;
|
|
4998
5026
|
active: boolean;
|
|
4999
5027
|
title: string;
|
|
5028
|
+
callApi: boolean;
|
|
5000
5029
|
trigger: {
|
|
5001
5030
|
type: "manual";
|
|
5002
5031
|
port?: number | undefined;
|
|
@@ -5083,6 +5112,7 @@ export declare const microsoftStreamSchema: z.ZodObject<{
|
|
|
5083
5112
|
enabled: boolean;
|
|
5084
5113
|
active: boolean;
|
|
5085
5114
|
title: string;
|
|
5115
|
+
callApi: boolean;
|
|
5086
5116
|
trigger: {
|
|
5087
5117
|
type: "manual";
|
|
5088
5118
|
port?: number | undefined;
|
|
@@ -5166,6 +5196,7 @@ export declare const rtmpSchema: z.ZodObject<{
|
|
|
5166
5196
|
enabled: z.ZodBoolean;
|
|
5167
5197
|
active: z.ZodBoolean;
|
|
5168
5198
|
title: z.ZodString;
|
|
5199
|
+
callApi: z.ZodBoolean;
|
|
5169
5200
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
5170
5201
|
type: z.ZodLiteral<"manual">;
|
|
5171
5202
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5511,6 +5542,7 @@ export declare const rtmpSchema: z.ZodObject<{
|
|
|
5511
5542
|
enabled: boolean;
|
|
5512
5543
|
active: boolean;
|
|
5513
5544
|
title: string;
|
|
5545
|
+
callApi: boolean;
|
|
5514
5546
|
trigger: {
|
|
5515
5547
|
type: "manual";
|
|
5516
5548
|
port?: number | undefined;
|
|
@@ -5597,6 +5629,7 @@ export declare const rtmpSchema: z.ZodObject<{
|
|
|
5597
5629
|
enabled: boolean;
|
|
5598
5630
|
active: boolean;
|
|
5599
5631
|
title: string;
|
|
5632
|
+
callApi: boolean;
|
|
5600
5633
|
trigger: {
|
|
5601
5634
|
type: "manual";
|
|
5602
5635
|
port?: number | undefined;
|
|
@@ -5680,6 +5713,7 @@ export declare const sdCardSchema: z.ZodObject<{
|
|
|
5680
5713
|
enabled: z.ZodBoolean;
|
|
5681
5714
|
active: z.ZodBoolean;
|
|
5682
5715
|
title: z.ZodString;
|
|
5716
|
+
callApi: z.ZodBoolean;
|
|
5683
5717
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
5684
5718
|
type: z.ZodLiteral<"manual">;
|
|
5685
5719
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6025,6 +6059,7 @@ export declare const sdCardSchema: z.ZodObject<{
|
|
|
6025
6059
|
enabled: boolean;
|
|
6026
6060
|
active: boolean;
|
|
6027
6061
|
title: string;
|
|
6062
|
+
callApi: boolean;
|
|
6028
6063
|
trigger: {
|
|
6029
6064
|
type: "manual";
|
|
6030
6065
|
port?: number | undefined;
|
|
@@ -6111,6 +6146,7 @@ export declare const sdCardSchema: z.ZodObject<{
|
|
|
6111
6146
|
enabled: boolean;
|
|
6112
6147
|
active: boolean;
|
|
6113
6148
|
title: string;
|
|
6149
|
+
callApi: boolean;
|
|
6114
6150
|
trigger: {
|
|
6115
6151
|
type: "manual";
|
|
6116
6152
|
port?: number | undefined;
|
|
@@ -6194,6 +6230,7 @@ export declare const srtSchema: z.ZodObject<{
|
|
|
6194
6230
|
enabled: z.ZodBoolean;
|
|
6195
6231
|
active: z.ZodBoolean;
|
|
6196
6232
|
title: z.ZodString;
|
|
6233
|
+
callApi: z.ZodBoolean;
|
|
6197
6234
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
6198
6235
|
type: z.ZodLiteral<"manual">;
|
|
6199
6236
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6539,6 +6576,7 @@ export declare const srtSchema: z.ZodObject<{
|
|
|
6539
6576
|
enabled: boolean;
|
|
6540
6577
|
active: boolean;
|
|
6541
6578
|
title: string;
|
|
6579
|
+
callApi: boolean;
|
|
6542
6580
|
trigger: {
|
|
6543
6581
|
type: "manual";
|
|
6544
6582
|
port?: number | undefined;
|
|
@@ -6625,6 +6663,7 @@ export declare const srtSchema: z.ZodObject<{
|
|
|
6625
6663
|
enabled: boolean;
|
|
6626
6664
|
active: boolean;
|
|
6627
6665
|
title: string;
|
|
6666
|
+
callApi: boolean;
|
|
6628
6667
|
trigger: {
|
|
6629
6668
|
type: "manual";
|
|
6630
6669
|
port?: number | undefined;
|
|
@@ -6708,6 +6747,7 @@ export declare const twitchSchema: z.ZodObject<{
|
|
|
6708
6747
|
enabled: z.ZodBoolean;
|
|
6709
6748
|
active: z.ZodBoolean;
|
|
6710
6749
|
title: z.ZodString;
|
|
6750
|
+
callApi: z.ZodBoolean;
|
|
6711
6751
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
6712
6752
|
type: z.ZodLiteral<"manual">;
|
|
6713
6753
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -7053,6 +7093,7 @@ export declare const twitchSchema: z.ZodObject<{
|
|
|
7053
7093
|
enabled: boolean;
|
|
7054
7094
|
active: boolean;
|
|
7055
7095
|
title: string;
|
|
7096
|
+
callApi: boolean;
|
|
7056
7097
|
trigger: {
|
|
7057
7098
|
type: "manual";
|
|
7058
7099
|
port?: number | undefined;
|
|
@@ -7139,6 +7180,7 @@ export declare const twitchSchema: z.ZodObject<{
|
|
|
7139
7180
|
enabled: boolean;
|
|
7140
7181
|
active: boolean;
|
|
7141
7182
|
title: string;
|
|
7183
|
+
callApi: boolean;
|
|
7142
7184
|
trigger: {
|
|
7143
7185
|
type: "manual";
|
|
7144
7186
|
port?: number | undefined;
|
|
@@ -7222,6 +7264,7 @@ export declare const vimeoSchema: z.ZodObject<{
|
|
|
7222
7264
|
enabled: z.ZodBoolean;
|
|
7223
7265
|
active: z.ZodBoolean;
|
|
7224
7266
|
title: z.ZodString;
|
|
7267
|
+
callApi: z.ZodBoolean;
|
|
7225
7268
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
7226
7269
|
type: z.ZodLiteral<"manual">;
|
|
7227
7270
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -7567,6 +7610,7 @@ export declare const vimeoSchema: z.ZodObject<{
|
|
|
7567
7610
|
enabled: boolean;
|
|
7568
7611
|
active: boolean;
|
|
7569
7612
|
title: string;
|
|
7613
|
+
callApi: boolean;
|
|
7570
7614
|
trigger: {
|
|
7571
7615
|
type: "manual";
|
|
7572
7616
|
port?: number | undefined;
|
|
@@ -7653,6 +7697,7 @@ export declare const vimeoSchema: z.ZodObject<{
|
|
|
7653
7697
|
enabled: boolean;
|
|
7654
7698
|
active: boolean;
|
|
7655
7699
|
title: string;
|
|
7700
|
+
callApi: boolean;
|
|
7656
7701
|
trigger: {
|
|
7657
7702
|
type: "manual";
|
|
7658
7703
|
port?: number | undefined;
|
|
@@ -7736,6 +7781,7 @@ export declare const wowzaSchema: z.ZodObject<{
|
|
|
7736
7781
|
enabled: z.ZodBoolean;
|
|
7737
7782
|
active: z.ZodBoolean;
|
|
7738
7783
|
title: z.ZodString;
|
|
7784
|
+
callApi: z.ZodBoolean;
|
|
7739
7785
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
7740
7786
|
type: z.ZodLiteral<"manual">;
|
|
7741
7787
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8081,6 +8127,7 @@ export declare const wowzaSchema: z.ZodObject<{
|
|
|
8081
8127
|
enabled: boolean;
|
|
8082
8128
|
active: boolean;
|
|
8083
8129
|
title: string;
|
|
8130
|
+
callApi: boolean;
|
|
8084
8131
|
trigger: {
|
|
8085
8132
|
type: "manual";
|
|
8086
8133
|
port?: number | undefined;
|
|
@@ -8167,6 +8214,7 @@ export declare const wowzaSchema: z.ZodObject<{
|
|
|
8167
8214
|
enabled: boolean;
|
|
8168
8215
|
active: boolean;
|
|
8169
8216
|
title: string;
|
|
8217
|
+
callApi: boolean;
|
|
8170
8218
|
trigger: {
|
|
8171
8219
|
type: "manual";
|
|
8172
8220
|
port?: number | undefined;
|
|
@@ -8250,6 +8298,7 @@ export declare const youtubeRtmpSchema: z.ZodObject<{
|
|
|
8250
8298
|
enabled: z.ZodBoolean;
|
|
8251
8299
|
active: z.ZodBoolean;
|
|
8252
8300
|
title: z.ZodString;
|
|
8301
|
+
callApi: z.ZodBoolean;
|
|
8253
8302
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
8254
8303
|
type: z.ZodLiteral<"manual">;
|
|
8255
8304
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8595,6 +8644,7 @@ export declare const youtubeRtmpSchema: z.ZodObject<{
|
|
|
8595
8644
|
enabled: boolean;
|
|
8596
8645
|
active: boolean;
|
|
8597
8646
|
title: string;
|
|
8647
|
+
callApi: boolean;
|
|
8598
8648
|
trigger: {
|
|
8599
8649
|
type: "manual";
|
|
8600
8650
|
port?: number | undefined;
|
|
@@ -8681,6 +8731,7 @@ export declare const youtubeRtmpSchema: z.ZodObject<{
|
|
|
8681
8731
|
enabled: boolean;
|
|
8682
8732
|
active: boolean;
|
|
8683
8733
|
title: string;
|
|
8734
|
+
callApi: boolean;
|
|
8684
8735
|
trigger: {
|
|
8685
8736
|
type: "manual";
|
|
8686
8737
|
port?: number | undefined;
|
|
@@ -4,6 +4,7 @@ export declare const windySchema: z.ZodObject<{
|
|
|
4
4
|
enabled: z.ZodBoolean;
|
|
5
5
|
active: z.ZodBoolean;
|
|
6
6
|
title: z.ZodString;
|
|
7
|
+
callApi: z.ZodBoolean;
|
|
7
8
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
8
9
|
type: z.ZodLiteral<"manual">;
|
|
9
10
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -357,6 +358,7 @@ export declare const windySchema: z.ZodObject<{
|
|
|
357
358
|
enabled: boolean;
|
|
358
359
|
active: boolean;
|
|
359
360
|
title: string;
|
|
361
|
+
callApi: boolean;
|
|
360
362
|
trigger: {
|
|
361
363
|
type: "manual";
|
|
362
364
|
port?: number | undefined;
|
|
@@ -451,6 +453,7 @@ export declare const windySchema: z.ZodObject<{
|
|
|
451
453
|
enabled: boolean;
|
|
452
454
|
active: boolean;
|
|
453
455
|
title: string;
|
|
456
|
+
callApi: boolean;
|
|
454
457
|
trigger: {
|
|
455
458
|
type: "manual";
|
|
456
459
|
port?: number | undefined;
|
|
@@ -4,6 +4,7 @@ export declare const youtubeSchema: z.ZodObject<{
|
|
|
4
4
|
enabled: z.ZodBoolean;
|
|
5
5
|
active: z.ZodBoolean;
|
|
6
6
|
title: z.ZodString;
|
|
7
|
+
callApi: z.ZodBoolean;
|
|
7
8
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
8
9
|
type: z.ZodLiteral<"manual">;
|
|
9
10
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -360,6 +361,7 @@ export declare const youtubeSchema: z.ZodObject<{
|
|
|
360
361
|
enabled: boolean;
|
|
361
362
|
active: boolean;
|
|
362
363
|
title: string;
|
|
364
|
+
callApi: boolean;
|
|
363
365
|
trigger: {
|
|
364
366
|
type: "manual";
|
|
365
367
|
port?: number | undefined;
|
|
@@ -457,6 +459,7 @@ export declare const youtubeSchema: z.ZodObject<{
|
|
|
457
459
|
enabled: boolean;
|
|
458
460
|
active: boolean;
|
|
459
461
|
title: string;
|
|
462
|
+
callApi: boolean;
|
|
460
463
|
trigger: {
|
|
461
464
|
type: "manual";
|
|
462
465
|
port?: number | undefined;
|