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
|
@@ -9,6 +9,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
9
9
|
enabled: z.ZodBoolean;
|
|
10
10
|
active: z.ZodBoolean;
|
|
11
11
|
title: z.ZodString;
|
|
12
|
+
callApi: z.ZodBoolean;
|
|
12
13
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
13
14
|
type: z.ZodLiteral<"manual">;
|
|
14
15
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -383,6 +384,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
383
384
|
enabled: boolean;
|
|
384
385
|
active: boolean;
|
|
385
386
|
title: string;
|
|
387
|
+
callApi: boolean;
|
|
386
388
|
trigger: {
|
|
387
389
|
type: "manual";
|
|
388
390
|
port?: number | undefined;
|
|
@@ -479,6 +481,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
479
481
|
enabled: boolean;
|
|
480
482
|
active: boolean;
|
|
481
483
|
title: string;
|
|
484
|
+
callApi: boolean;
|
|
482
485
|
trigger: {
|
|
483
486
|
type: "manual";
|
|
484
487
|
port?: number | undefined;
|
|
@@ -564,6 +567,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
564
567
|
enabled: z.ZodBoolean;
|
|
565
568
|
active: z.ZodBoolean;
|
|
566
569
|
title: z.ZodString;
|
|
570
|
+
callApi: z.ZodBoolean;
|
|
567
571
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
568
572
|
type: z.ZodLiteral<"manual">;
|
|
569
573
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -909,6 +913,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
909
913
|
enabled: boolean;
|
|
910
914
|
active: boolean;
|
|
911
915
|
title: string;
|
|
916
|
+
callApi: boolean;
|
|
912
917
|
trigger: {
|
|
913
918
|
type: "manual";
|
|
914
919
|
port?: number | undefined;
|
|
@@ -995,6 +1000,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
995
1000
|
enabled: boolean;
|
|
996
1001
|
active: boolean;
|
|
997
1002
|
title: string;
|
|
1003
|
+
callApi: boolean;
|
|
998
1004
|
trigger: {
|
|
999
1005
|
type: "manual";
|
|
1000
1006
|
port?: number | undefined;
|
|
@@ -1077,6 +1083,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
1077
1083
|
enabled: z.ZodBoolean;
|
|
1078
1084
|
active: z.ZodBoolean;
|
|
1079
1085
|
title: z.ZodString;
|
|
1086
|
+
callApi: z.ZodBoolean;
|
|
1080
1087
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
1081
1088
|
type: z.ZodLiteral<"manual">;
|
|
1082
1089
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1422,6 +1429,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
1422
1429
|
enabled: boolean;
|
|
1423
1430
|
active: boolean;
|
|
1424
1431
|
title: string;
|
|
1432
|
+
callApi: boolean;
|
|
1425
1433
|
trigger: {
|
|
1426
1434
|
type: "manual";
|
|
1427
1435
|
port?: number | undefined;
|
|
@@ -1508,6 +1516,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
1508
1516
|
enabled: boolean;
|
|
1509
1517
|
active: boolean;
|
|
1510
1518
|
title: string;
|
|
1519
|
+
callApi: boolean;
|
|
1511
1520
|
trigger: {
|
|
1512
1521
|
type: "manual";
|
|
1513
1522
|
port?: number | undefined;
|
|
@@ -1590,6 +1599,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
1590
1599
|
enabled: z.ZodBoolean;
|
|
1591
1600
|
active: z.ZodBoolean;
|
|
1592
1601
|
title: z.ZodString;
|
|
1602
|
+
callApi: z.ZodBoolean;
|
|
1593
1603
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
1594
1604
|
type: z.ZodLiteral<"manual">;
|
|
1595
1605
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1935,6 +1945,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
1935
1945
|
enabled: boolean;
|
|
1936
1946
|
active: boolean;
|
|
1937
1947
|
title: string;
|
|
1948
|
+
callApi: boolean;
|
|
1938
1949
|
trigger: {
|
|
1939
1950
|
type: "manual";
|
|
1940
1951
|
port?: number | undefined;
|
|
@@ -2021,6 +2032,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
2021
2032
|
enabled: boolean;
|
|
2022
2033
|
active: boolean;
|
|
2023
2034
|
title: string;
|
|
2035
|
+
callApi: boolean;
|
|
2024
2036
|
trigger: {
|
|
2025
2037
|
type: "manual";
|
|
2026
2038
|
port?: number | undefined;
|
|
@@ -2103,6 +2115,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
2103
2115
|
enabled: z.ZodBoolean;
|
|
2104
2116
|
active: z.ZodBoolean;
|
|
2105
2117
|
title: z.ZodString;
|
|
2118
|
+
callApi: z.ZodBoolean;
|
|
2106
2119
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
2107
2120
|
type: z.ZodLiteral<"manual">;
|
|
2108
2121
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2448,6 +2461,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
2448
2461
|
enabled: boolean;
|
|
2449
2462
|
active: boolean;
|
|
2450
2463
|
title: string;
|
|
2464
|
+
callApi: boolean;
|
|
2451
2465
|
trigger: {
|
|
2452
2466
|
type: "manual";
|
|
2453
2467
|
port?: number | undefined;
|
|
@@ -2534,6 +2548,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
2534
2548
|
enabled: boolean;
|
|
2535
2549
|
active: boolean;
|
|
2536
2550
|
title: string;
|
|
2551
|
+
callApi: boolean;
|
|
2537
2552
|
trigger: {
|
|
2538
2553
|
type: "manual";
|
|
2539
2554
|
port?: number | undefined;
|
|
@@ -2616,6 +2631,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
2616
2631
|
enabled: z.ZodBoolean;
|
|
2617
2632
|
active: z.ZodBoolean;
|
|
2618
2633
|
title: z.ZodString;
|
|
2634
|
+
callApi: z.ZodBoolean;
|
|
2619
2635
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
2620
2636
|
type: z.ZodLiteral<"manual">;
|
|
2621
2637
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2969,6 +2985,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
2969
2985
|
enabled: boolean;
|
|
2970
2986
|
active: boolean;
|
|
2971
2987
|
title: string;
|
|
2988
|
+
callApi: boolean;
|
|
2972
2989
|
trigger: {
|
|
2973
2990
|
type: "manual";
|
|
2974
2991
|
port?: number | undefined;
|
|
@@ -3063,6 +3080,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
3063
3080
|
enabled: boolean;
|
|
3064
3081
|
active: boolean;
|
|
3065
3082
|
title: string;
|
|
3083
|
+
callApi: boolean;
|
|
3066
3084
|
trigger: {
|
|
3067
3085
|
type: "manual";
|
|
3068
3086
|
port?: number | undefined;
|
|
@@ -3153,6 +3171,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
3153
3171
|
enabled: z.ZodBoolean;
|
|
3154
3172
|
active: z.ZodBoolean;
|
|
3155
3173
|
title: z.ZodString;
|
|
3174
|
+
callApi: z.ZodBoolean;
|
|
3156
3175
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
3157
3176
|
type: z.ZodLiteral<"manual">;
|
|
3158
3177
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3509,6 +3528,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
3509
3528
|
enabled: boolean;
|
|
3510
3529
|
active: boolean;
|
|
3511
3530
|
title: string;
|
|
3531
|
+
callApi: boolean;
|
|
3512
3532
|
trigger: {
|
|
3513
3533
|
type: "manual";
|
|
3514
3534
|
port?: number | undefined;
|
|
@@ -3606,6 +3626,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
3606
3626
|
enabled: boolean;
|
|
3607
3627
|
active: boolean;
|
|
3608
3628
|
title: string;
|
|
3629
|
+
callApi: boolean;
|
|
3609
3630
|
trigger: {
|
|
3610
3631
|
type: "manual";
|
|
3611
3632
|
port?: number | undefined;
|
|
@@ -3699,6 +3720,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
3699
3720
|
enabled: z.ZodBoolean;
|
|
3700
3721
|
active: z.ZodBoolean;
|
|
3701
3722
|
title: z.ZodString;
|
|
3723
|
+
callApi: z.ZodBoolean;
|
|
3702
3724
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
3703
3725
|
type: z.ZodLiteral<"manual">;
|
|
3704
3726
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4044,6 +4066,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
4044
4066
|
enabled: boolean;
|
|
4045
4067
|
active: boolean;
|
|
4046
4068
|
title: string;
|
|
4069
|
+
callApi: boolean;
|
|
4047
4070
|
trigger: {
|
|
4048
4071
|
type: "manual";
|
|
4049
4072
|
port?: number | undefined;
|
|
@@ -4130,6 +4153,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
4130
4153
|
enabled: boolean;
|
|
4131
4154
|
active: boolean;
|
|
4132
4155
|
title: string;
|
|
4156
|
+
callApi: boolean;
|
|
4133
4157
|
trigger: {
|
|
4134
4158
|
type: "manual";
|
|
4135
4159
|
port?: number | undefined;
|
|
@@ -4212,6 +4236,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
4212
4236
|
enabled: z.ZodBoolean;
|
|
4213
4237
|
active: z.ZodBoolean;
|
|
4214
4238
|
title: z.ZodString;
|
|
4239
|
+
callApi: z.ZodBoolean;
|
|
4215
4240
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
4216
4241
|
type: z.ZodLiteral<"manual">;
|
|
4217
4242
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4557,6 +4582,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
4557
4582
|
enabled: boolean;
|
|
4558
4583
|
active: boolean;
|
|
4559
4584
|
title: string;
|
|
4585
|
+
callApi: boolean;
|
|
4560
4586
|
trigger: {
|
|
4561
4587
|
type: "manual";
|
|
4562
4588
|
port?: number | undefined;
|
|
@@ -4643,6 +4669,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
4643
4669
|
enabled: boolean;
|
|
4644
4670
|
active: boolean;
|
|
4645
4671
|
title: string;
|
|
4672
|
+
callApi: boolean;
|
|
4646
4673
|
trigger: {
|
|
4647
4674
|
type: "manual";
|
|
4648
4675
|
port?: number | undefined;
|
|
@@ -4725,6 +4752,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
4725
4752
|
enabled: z.ZodBoolean;
|
|
4726
4753
|
active: z.ZodBoolean;
|
|
4727
4754
|
title: z.ZodString;
|
|
4755
|
+
callApi: z.ZodBoolean;
|
|
4728
4756
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
4729
4757
|
type: z.ZodLiteral<"manual">;
|
|
4730
4758
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5070,6 +5098,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
5070
5098
|
enabled: boolean;
|
|
5071
5099
|
active: boolean;
|
|
5072
5100
|
title: string;
|
|
5101
|
+
callApi: boolean;
|
|
5073
5102
|
trigger: {
|
|
5074
5103
|
type: "manual";
|
|
5075
5104
|
port?: number | undefined;
|
|
@@ -5156,6 +5185,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
5156
5185
|
enabled: boolean;
|
|
5157
5186
|
active: boolean;
|
|
5158
5187
|
title: string;
|
|
5188
|
+
callApi: boolean;
|
|
5159
5189
|
trigger: {
|
|
5160
5190
|
type: "manual";
|
|
5161
5191
|
port?: number | undefined;
|
|
@@ -5238,6 +5268,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
5238
5268
|
enabled: z.ZodBoolean;
|
|
5239
5269
|
active: z.ZodBoolean;
|
|
5240
5270
|
title: z.ZodString;
|
|
5271
|
+
callApi: z.ZodBoolean;
|
|
5241
5272
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
5242
5273
|
type: z.ZodLiteral<"manual">;
|
|
5243
5274
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5583,6 +5614,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
5583
5614
|
enabled: boolean;
|
|
5584
5615
|
active: boolean;
|
|
5585
5616
|
title: string;
|
|
5617
|
+
callApi: boolean;
|
|
5586
5618
|
trigger: {
|
|
5587
5619
|
type: "manual";
|
|
5588
5620
|
port?: number | undefined;
|
|
@@ -5669,6 +5701,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
5669
5701
|
enabled: boolean;
|
|
5670
5702
|
active: boolean;
|
|
5671
5703
|
title: string;
|
|
5704
|
+
callApi: boolean;
|
|
5672
5705
|
trigger: {
|
|
5673
5706
|
type: "manual";
|
|
5674
5707
|
port?: number | undefined;
|
|
@@ -5751,6 +5784,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
5751
5784
|
enabled: z.ZodBoolean;
|
|
5752
5785
|
active: z.ZodBoolean;
|
|
5753
5786
|
title: z.ZodString;
|
|
5787
|
+
callApi: z.ZodBoolean;
|
|
5754
5788
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
5755
5789
|
type: z.ZodLiteral<"manual">;
|
|
5756
5790
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6096,6 +6130,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
6096
6130
|
enabled: boolean;
|
|
6097
6131
|
active: boolean;
|
|
6098
6132
|
title: string;
|
|
6133
|
+
callApi: boolean;
|
|
6099
6134
|
trigger: {
|
|
6100
6135
|
type: "manual";
|
|
6101
6136
|
port?: number | undefined;
|
|
@@ -6182,6 +6217,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
6182
6217
|
enabled: boolean;
|
|
6183
6218
|
active: boolean;
|
|
6184
6219
|
title: string;
|
|
6220
|
+
callApi: boolean;
|
|
6185
6221
|
trigger: {
|
|
6186
6222
|
type: "manual";
|
|
6187
6223
|
port?: number | undefined;
|
|
@@ -6264,6 +6300,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
6264
6300
|
enabled: z.ZodBoolean;
|
|
6265
6301
|
active: z.ZodBoolean;
|
|
6266
6302
|
title: z.ZodString;
|
|
6303
|
+
callApi: z.ZodBoolean;
|
|
6267
6304
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
6268
6305
|
type: z.ZodLiteral<"manual">;
|
|
6269
6306
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6609,6 +6646,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
6609
6646
|
enabled: boolean;
|
|
6610
6647
|
active: boolean;
|
|
6611
6648
|
title: string;
|
|
6649
|
+
callApi: boolean;
|
|
6612
6650
|
trigger: {
|
|
6613
6651
|
type: "manual";
|
|
6614
6652
|
port?: number | undefined;
|
|
@@ -6695,6 +6733,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
6695
6733
|
enabled: boolean;
|
|
6696
6734
|
active: boolean;
|
|
6697
6735
|
title: string;
|
|
6736
|
+
callApi: boolean;
|
|
6698
6737
|
trigger: {
|
|
6699
6738
|
type: "manual";
|
|
6700
6739
|
port?: number | undefined;
|
|
@@ -6777,6 +6816,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
6777
6816
|
enabled: z.ZodBoolean;
|
|
6778
6817
|
active: z.ZodBoolean;
|
|
6779
6818
|
title: z.ZodString;
|
|
6819
|
+
callApi: z.ZodBoolean;
|
|
6780
6820
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
6781
6821
|
type: z.ZodLiteral<"manual">;
|
|
6782
6822
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -7122,6 +7162,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
7122
7162
|
enabled: boolean;
|
|
7123
7163
|
active: boolean;
|
|
7124
7164
|
title: string;
|
|
7165
|
+
callApi: boolean;
|
|
7125
7166
|
trigger: {
|
|
7126
7167
|
type: "manual";
|
|
7127
7168
|
port?: number | undefined;
|
|
@@ -7208,6 +7249,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
7208
7249
|
enabled: boolean;
|
|
7209
7250
|
active: boolean;
|
|
7210
7251
|
title: string;
|
|
7252
|
+
callApi: boolean;
|
|
7211
7253
|
trigger: {
|
|
7212
7254
|
type: "manual";
|
|
7213
7255
|
port?: number | undefined;
|
|
@@ -7290,6 +7332,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
7290
7332
|
enabled: z.ZodBoolean;
|
|
7291
7333
|
active: z.ZodBoolean;
|
|
7292
7334
|
title: z.ZodString;
|
|
7335
|
+
callApi: z.ZodBoolean;
|
|
7293
7336
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
7294
7337
|
type: z.ZodLiteral<"manual">;
|
|
7295
7338
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -7635,6 +7678,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
7635
7678
|
enabled: boolean;
|
|
7636
7679
|
active: boolean;
|
|
7637
7680
|
title: string;
|
|
7681
|
+
callApi: boolean;
|
|
7638
7682
|
trigger: {
|
|
7639
7683
|
type: "manual";
|
|
7640
7684
|
port?: number | undefined;
|
|
@@ -7721,6 +7765,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
7721
7765
|
enabled: boolean;
|
|
7722
7766
|
active: boolean;
|
|
7723
7767
|
title: string;
|
|
7768
|
+
callApi: boolean;
|
|
7724
7769
|
trigger: {
|
|
7725
7770
|
type: "manual";
|
|
7726
7771
|
port?: number | undefined;
|
|
@@ -7803,6 +7848,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
7803
7848
|
enabled: z.ZodBoolean;
|
|
7804
7849
|
active: z.ZodBoolean;
|
|
7805
7850
|
title: z.ZodString;
|
|
7851
|
+
callApi: z.ZodBoolean;
|
|
7806
7852
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
7807
7853
|
type: z.ZodLiteral<"manual">;
|
|
7808
7854
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8148,6 +8194,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
8148
8194
|
enabled: boolean;
|
|
8149
8195
|
active: boolean;
|
|
8150
8196
|
title: string;
|
|
8197
|
+
callApi: boolean;
|
|
8151
8198
|
trigger: {
|
|
8152
8199
|
type: "manual";
|
|
8153
8200
|
port?: number | undefined;
|
|
@@ -8234,6 +8281,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
8234
8281
|
enabled: boolean;
|
|
8235
8282
|
active: boolean;
|
|
8236
8283
|
title: string;
|
|
8284
|
+
callApi: boolean;
|
|
8237
8285
|
trigger: {
|
|
8238
8286
|
type: "manual";
|
|
8239
8287
|
port?: number | undefined;
|
|
@@ -8316,6 +8364,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
8316
8364
|
enabled: z.ZodBoolean;
|
|
8317
8365
|
active: z.ZodBoolean;
|
|
8318
8366
|
title: z.ZodString;
|
|
8367
|
+
callApi: z.ZodBoolean;
|
|
8319
8368
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
8320
8369
|
type: z.ZodLiteral<"manual">;
|
|
8321
8370
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8661,6 +8710,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
8661
8710
|
enabled: boolean;
|
|
8662
8711
|
active: boolean;
|
|
8663
8712
|
title: string;
|
|
8713
|
+
callApi: boolean;
|
|
8664
8714
|
trigger: {
|
|
8665
8715
|
type: "manual";
|
|
8666
8716
|
port?: number | undefined;
|
|
@@ -8747,6 +8797,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
8747
8797
|
enabled: boolean;
|
|
8748
8798
|
active: boolean;
|
|
8749
8799
|
title: string;
|
|
8800
|
+
callApi: boolean;
|
|
8750
8801
|
trigger: {
|
|
8751
8802
|
type: "manual";
|
|
8752
8803
|
port?: number | undefined;
|
|
@@ -8829,6 +8880,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
8829
8880
|
enabled: z.ZodBoolean;
|
|
8830
8881
|
active: z.ZodBoolean;
|
|
8831
8882
|
title: z.ZodString;
|
|
8883
|
+
callApi: z.ZodBoolean;
|
|
8832
8884
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
8833
8885
|
type: z.ZodLiteral<"manual">;
|
|
8834
8886
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9174,6 +9226,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
9174
9226
|
enabled: boolean;
|
|
9175
9227
|
active: boolean;
|
|
9176
9228
|
title: string;
|
|
9229
|
+
callApi: boolean;
|
|
9177
9230
|
trigger: {
|
|
9178
9231
|
type: "manual";
|
|
9179
9232
|
port?: number | undefined;
|
|
@@ -9260,6 +9313,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
9260
9313
|
enabled: boolean;
|
|
9261
9314
|
active: boolean;
|
|
9262
9315
|
title: string;
|
|
9316
|
+
callApi: boolean;
|
|
9263
9317
|
trigger: {
|
|
9264
9318
|
type: "manual";
|
|
9265
9319
|
port?: number | undefined;
|
|
@@ -9342,6 +9396,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
9342
9396
|
enabled: z.ZodBoolean;
|
|
9343
9397
|
active: z.ZodBoolean;
|
|
9344
9398
|
title: z.ZodString;
|
|
9399
|
+
callApi: z.ZodBoolean;
|
|
9345
9400
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
9346
9401
|
type: z.ZodLiteral<"manual">;
|
|
9347
9402
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9687,6 +9742,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
9687
9742
|
enabled: boolean;
|
|
9688
9743
|
active: boolean;
|
|
9689
9744
|
title: string;
|
|
9745
|
+
callApi: boolean;
|
|
9690
9746
|
trigger: {
|
|
9691
9747
|
type: "manual";
|
|
9692
9748
|
port?: number | undefined;
|
|
@@ -9773,6 +9829,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
9773
9829
|
enabled: boolean;
|
|
9774
9830
|
active: boolean;
|
|
9775
9831
|
title: string;
|
|
9832
|
+
callApi: boolean;
|
|
9776
9833
|
trigger: {
|
|
9777
9834
|
type: "manual";
|
|
9778
9835
|
port?: number | undefined;
|
|
@@ -9855,6 +9912,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
9855
9912
|
enabled: z.ZodBoolean;
|
|
9856
9913
|
active: z.ZodBoolean;
|
|
9857
9914
|
title: z.ZodString;
|
|
9915
|
+
callApi: z.ZodBoolean;
|
|
9858
9916
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
9859
9917
|
type: z.ZodLiteral<"manual">;
|
|
9860
9918
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -10200,6 +10258,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
10200
10258
|
enabled: boolean;
|
|
10201
10259
|
active: boolean;
|
|
10202
10260
|
title: string;
|
|
10261
|
+
callApi: boolean;
|
|
10203
10262
|
trigger: {
|
|
10204
10263
|
type: "manual";
|
|
10205
10264
|
port?: number | undefined;
|
|
@@ -10286,6 +10345,7 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"platform", [z.ZodObj
|
|
|
10286
10345
|
enabled: boolean;
|
|
10287
10346
|
active: boolean;
|
|
10288
10347
|
title: string;
|
|
10348
|
+
callApi: boolean;
|
|
10289
10349
|
trigger: {
|
|
10290
10350
|
type: "manual";
|
|
10291
10351
|
port?: number | undefined;
|
|
@@ -10372,6 +10432,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10372
10432
|
enabled: z.ZodBoolean;
|
|
10373
10433
|
active: z.ZodBoolean;
|
|
10374
10434
|
title: z.ZodString;
|
|
10435
|
+
callApi: z.ZodBoolean;
|
|
10375
10436
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
10376
10437
|
type: z.ZodLiteral<"manual">;
|
|
10377
10438
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -10746,6 +10807,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10746
10807
|
enabled: boolean;
|
|
10747
10808
|
active: boolean;
|
|
10748
10809
|
title: string;
|
|
10810
|
+
callApi: boolean;
|
|
10749
10811
|
trigger: {
|
|
10750
10812
|
type: "manual";
|
|
10751
10813
|
port?: number | undefined;
|
|
@@ -10842,6 +10904,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10842
10904
|
enabled: boolean;
|
|
10843
10905
|
active: boolean;
|
|
10844
10906
|
title: string;
|
|
10907
|
+
callApi: boolean;
|
|
10845
10908
|
trigger: {
|
|
10846
10909
|
type: "manual";
|
|
10847
10910
|
port?: number | undefined;
|
|
@@ -10927,6 +10990,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10927
10990
|
enabled: z.ZodBoolean;
|
|
10928
10991
|
active: z.ZodBoolean;
|
|
10929
10992
|
title: z.ZodString;
|
|
10993
|
+
callApi: z.ZodBoolean;
|
|
10930
10994
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
10931
10995
|
type: z.ZodLiteral<"manual">;
|
|
10932
10996
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -11272,6 +11336,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11272
11336
|
enabled: boolean;
|
|
11273
11337
|
active: boolean;
|
|
11274
11338
|
title: string;
|
|
11339
|
+
callApi: boolean;
|
|
11275
11340
|
trigger: {
|
|
11276
11341
|
type: "manual";
|
|
11277
11342
|
port?: number | undefined;
|
|
@@ -11358,6 +11423,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11358
11423
|
enabled: boolean;
|
|
11359
11424
|
active: boolean;
|
|
11360
11425
|
title: string;
|
|
11426
|
+
callApi: boolean;
|
|
11361
11427
|
trigger: {
|
|
11362
11428
|
type: "manual";
|
|
11363
11429
|
port?: number | undefined;
|
|
@@ -11440,6 +11506,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11440
11506
|
enabled: z.ZodBoolean;
|
|
11441
11507
|
active: z.ZodBoolean;
|
|
11442
11508
|
title: z.ZodString;
|
|
11509
|
+
callApi: z.ZodBoolean;
|
|
11443
11510
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
11444
11511
|
type: z.ZodLiteral<"manual">;
|
|
11445
11512
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -11785,6 +11852,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11785
11852
|
enabled: boolean;
|
|
11786
11853
|
active: boolean;
|
|
11787
11854
|
title: string;
|
|
11855
|
+
callApi: boolean;
|
|
11788
11856
|
trigger: {
|
|
11789
11857
|
type: "manual";
|
|
11790
11858
|
port?: number | undefined;
|
|
@@ -11871,6 +11939,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11871
11939
|
enabled: boolean;
|
|
11872
11940
|
active: boolean;
|
|
11873
11941
|
title: string;
|
|
11942
|
+
callApi: boolean;
|
|
11874
11943
|
trigger: {
|
|
11875
11944
|
type: "manual";
|
|
11876
11945
|
port?: number | undefined;
|
|
@@ -11953,6 +12022,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11953
12022
|
enabled: z.ZodBoolean;
|
|
11954
12023
|
active: z.ZodBoolean;
|
|
11955
12024
|
title: z.ZodString;
|
|
12025
|
+
callApi: z.ZodBoolean;
|
|
11956
12026
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
11957
12027
|
type: z.ZodLiteral<"manual">;
|
|
11958
12028
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -12298,6 +12368,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12298
12368
|
enabled: boolean;
|
|
12299
12369
|
active: boolean;
|
|
12300
12370
|
title: string;
|
|
12371
|
+
callApi: boolean;
|
|
12301
12372
|
trigger: {
|
|
12302
12373
|
type: "manual";
|
|
12303
12374
|
port?: number | undefined;
|
|
@@ -12384,6 +12455,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12384
12455
|
enabled: boolean;
|
|
12385
12456
|
active: boolean;
|
|
12386
12457
|
title: string;
|
|
12458
|
+
callApi: boolean;
|
|
12387
12459
|
trigger: {
|
|
12388
12460
|
type: "manual";
|
|
12389
12461
|
port?: number | undefined;
|
|
@@ -12466,6 +12538,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12466
12538
|
enabled: z.ZodBoolean;
|
|
12467
12539
|
active: z.ZodBoolean;
|
|
12468
12540
|
title: z.ZodString;
|
|
12541
|
+
callApi: z.ZodBoolean;
|
|
12469
12542
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
12470
12543
|
type: z.ZodLiteral<"manual">;
|
|
12471
12544
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -12811,6 +12884,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12811
12884
|
enabled: boolean;
|
|
12812
12885
|
active: boolean;
|
|
12813
12886
|
title: string;
|
|
12887
|
+
callApi: boolean;
|
|
12814
12888
|
trigger: {
|
|
12815
12889
|
type: "manual";
|
|
12816
12890
|
port?: number | undefined;
|
|
@@ -12897,6 +12971,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12897
12971
|
enabled: boolean;
|
|
12898
12972
|
active: boolean;
|
|
12899
12973
|
title: string;
|
|
12974
|
+
callApi: boolean;
|
|
12900
12975
|
trigger: {
|
|
12901
12976
|
type: "manual";
|
|
12902
12977
|
port?: number | undefined;
|
|
@@ -12979,6 +13054,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12979
13054
|
enabled: z.ZodBoolean;
|
|
12980
13055
|
active: z.ZodBoolean;
|
|
12981
13056
|
title: z.ZodString;
|
|
13057
|
+
callApi: z.ZodBoolean;
|
|
12982
13058
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
12983
13059
|
type: z.ZodLiteral<"manual">;
|
|
12984
13060
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -13332,6 +13408,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
13332
13408
|
enabled: boolean;
|
|
13333
13409
|
active: boolean;
|
|
13334
13410
|
title: string;
|
|
13411
|
+
callApi: boolean;
|
|
13335
13412
|
trigger: {
|
|
13336
13413
|
type: "manual";
|
|
13337
13414
|
port?: number | undefined;
|
|
@@ -13426,6 +13503,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
13426
13503
|
enabled: boolean;
|
|
13427
13504
|
active: boolean;
|
|
13428
13505
|
title: string;
|
|
13506
|
+
callApi: boolean;
|
|
13429
13507
|
trigger: {
|
|
13430
13508
|
type: "manual";
|
|
13431
13509
|
port?: number | undefined;
|
|
@@ -13516,6 +13594,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
13516
13594
|
enabled: z.ZodBoolean;
|
|
13517
13595
|
active: z.ZodBoolean;
|
|
13518
13596
|
title: z.ZodString;
|
|
13597
|
+
callApi: z.ZodBoolean;
|
|
13519
13598
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
13520
13599
|
type: z.ZodLiteral<"manual">;
|
|
13521
13600
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -13872,6 +13951,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
13872
13951
|
enabled: boolean;
|
|
13873
13952
|
active: boolean;
|
|
13874
13953
|
title: string;
|
|
13954
|
+
callApi: boolean;
|
|
13875
13955
|
trigger: {
|
|
13876
13956
|
type: "manual";
|
|
13877
13957
|
port?: number | undefined;
|
|
@@ -13969,6 +14049,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
13969
14049
|
enabled: boolean;
|
|
13970
14050
|
active: boolean;
|
|
13971
14051
|
title: string;
|
|
14052
|
+
callApi: boolean;
|
|
13972
14053
|
trigger: {
|
|
13973
14054
|
type: "manual";
|
|
13974
14055
|
port?: number | undefined;
|
|
@@ -14062,6 +14143,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
14062
14143
|
enabled: z.ZodBoolean;
|
|
14063
14144
|
active: z.ZodBoolean;
|
|
14064
14145
|
title: z.ZodString;
|
|
14146
|
+
callApi: z.ZodBoolean;
|
|
14065
14147
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
14066
14148
|
type: z.ZodLiteral<"manual">;
|
|
14067
14149
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -14407,6 +14489,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
14407
14489
|
enabled: boolean;
|
|
14408
14490
|
active: boolean;
|
|
14409
14491
|
title: string;
|
|
14492
|
+
callApi: boolean;
|
|
14410
14493
|
trigger: {
|
|
14411
14494
|
type: "manual";
|
|
14412
14495
|
port?: number | undefined;
|
|
@@ -14493,6 +14576,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
14493
14576
|
enabled: boolean;
|
|
14494
14577
|
active: boolean;
|
|
14495
14578
|
title: string;
|
|
14579
|
+
callApi: boolean;
|
|
14496
14580
|
trigger: {
|
|
14497
14581
|
type: "manual";
|
|
14498
14582
|
port?: number | undefined;
|
|
@@ -14575,6 +14659,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
14575
14659
|
enabled: z.ZodBoolean;
|
|
14576
14660
|
active: z.ZodBoolean;
|
|
14577
14661
|
title: z.ZodString;
|
|
14662
|
+
callApi: z.ZodBoolean;
|
|
14578
14663
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
14579
14664
|
type: z.ZodLiteral<"manual">;
|
|
14580
14665
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -14920,6 +15005,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
14920
15005
|
enabled: boolean;
|
|
14921
15006
|
active: boolean;
|
|
14922
15007
|
title: string;
|
|
15008
|
+
callApi: boolean;
|
|
14923
15009
|
trigger: {
|
|
14924
15010
|
type: "manual";
|
|
14925
15011
|
port?: number | undefined;
|
|
@@ -15006,6 +15092,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
15006
15092
|
enabled: boolean;
|
|
15007
15093
|
active: boolean;
|
|
15008
15094
|
title: string;
|
|
15095
|
+
callApi: boolean;
|
|
15009
15096
|
trigger: {
|
|
15010
15097
|
type: "manual";
|
|
15011
15098
|
port?: number | undefined;
|
|
@@ -15088,6 +15175,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
15088
15175
|
enabled: z.ZodBoolean;
|
|
15089
15176
|
active: z.ZodBoolean;
|
|
15090
15177
|
title: z.ZodString;
|
|
15178
|
+
callApi: z.ZodBoolean;
|
|
15091
15179
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
15092
15180
|
type: z.ZodLiteral<"manual">;
|
|
15093
15181
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -15433,6 +15521,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
15433
15521
|
enabled: boolean;
|
|
15434
15522
|
active: boolean;
|
|
15435
15523
|
title: string;
|
|
15524
|
+
callApi: boolean;
|
|
15436
15525
|
trigger: {
|
|
15437
15526
|
type: "manual";
|
|
15438
15527
|
port?: number | undefined;
|
|
@@ -15519,6 +15608,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
15519
15608
|
enabled: boolean;
|
|
15520
15609
|
active: boolean;
|
|
15521
15610
|
title: string;
|
|
15611
|
+
callApi: boolean;
|
|
15522
15612
|
trigger: {
|
|
15523
15613
|
type: "manual";
|
|
15524
15614
|
port?: number | undefined;
|
|
@@ -15601,6 +15691,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
15601
15691
|
enabled: z.ZodBoolean;
|
|
15602
15692
|
active: z.ZodBoolean;
|
|
15603
15693
|
title: z.ZodString;
|
|
15694
|
+
callApi: z.ZodBoolean;
|
|
15604
15695
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
15605
15696
|
type: z.ZodLiteral<"manual">;
|
|
15606
15697
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -15946,6 +16037,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
15946
16037
|
enabled: boolean;
|
|
15947
16038
|
active: boolean;
|
|
15948
16039
|
title: string;
|
|
16040
|
+
callApi: boolean;
|
|
15949
16041
|
trigger: {
|
|
15950
16042
|
type: "manual";
|
|
15951
16043
|
port?: number | undefined;
|
|
@@ -16032,6 +16124,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
16032
16124
|
enabled: boolean;
|
|
16033
16125
|
active: boolean;
|
|
16034
16126
|
title: string;
|
|
16127
|
+
callApi: boolean;
|
|
16035
16128
|
trigger: {
|
|
16036
16129
|
type: "manual";
|
|
16037
16130
|
port?: number | undefined;
|
|
@@ -16114,6 +16207,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
16114
16207
|
enabled: z.ZodBoolean;
|
|
16115
16208
|
active: z.ZodBoolean;
|
|
16116
16209
|
title: z.ZodString;
|
|
16210
|
+
callApi: z.ZodBoolean;
|
|
16117
16211
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
16118
16212
|
type: z.ZodLiteral<"manual">;
|
|
16119
16213
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -16459,6 +16553,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
16459
16553
|
enabled: boolean;
|
|
16460
16554
|
active: boolean;
|
|
16461
16555
|
title: string;
|
|
16556
|
+
callApi: boolean;
|
|
16462
16557
|
trigger: {
|
|
16463
16558
|
type: "manual";
|
|
16464
16559
|
port?: number | undefined;
|
|
@@ -16545,6 +16640,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
16545
16640
|
enabled: boolean;
|
|
16546
16641
|
active: boolean;
|
|
16547
16642
|
title: string;
|
|
16643
|
+
callApi: boolean;
|
|
16548
16644
|
trigger: {
|
|
16549
16645
|
type: "manual";
|
|
16550
16646
|
port?: number | undefined;
|
|
@@ -16627,6 +16723,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
16627
16723
|
enabled: z.ZodBoolean;
|
|
16628
16724
|
active: z.ZodBoolean;
|
|
16629
16725
|
title: z.ZodString;
|
|
16726
|
+
callApi: z.ZodBoolean;
|
|
16630
16727
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
16631
16728
|
type: z.ZodLiteral<"manual">;
|
|
16632
16729
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -16972,6 +17069,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
16972
17069
|
enabled: boolean;
|
|
16973
17070
|
active: boolean;
|
|
16974
17071
|
title: string;
|
|
17072
|
+
callApi: boolean;
|
|
16975
17073
|
trigger: {
|
|
16976
17074
|
type: "manual";
|
|
16977
17075
|
port?: number | undefined;
|
|
@@ -17058,6 +17156,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
17058
17156
|
enabled: boolean;
|
|
17059
17157
|
active: boolean;
|
|
17060
17158
|
title: string;
|
|
17159
|
+
callApi: boolean;
|
|
17061
17160
|
trigger: {
|
|
17062
17161
|
type: "manual";
|
|
17063
17162
|
port?: number | undefined;
|
|
@@ -17140,6 +17239,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
17140
17239
|
enabled: z.ZodBoolean;
|
|
17141
17240
|
active: z.ZodBoolean;
|
|
17142
17241
|
title: z.ZodString;
|
|
17242
|
+
callApi: z.ZodBoolean;
|
|
17143
17243
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
17144
17244
|
type: z.ZodLiteral<"manual">;
|
|
17145
17245
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -17485,6 +17585,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
17485
17585
|
enabled: boolean;
|
|
17486
17586
|
active: boolean;
|
|
17487
17587
|
title: string;
|
|
17588
|
+
callApi: boolean;
|
|
17488
17589
|
trigger: {
|
|
17489
17590
|
type: "manual";
|
|
17490
17591
|
port?: number | undefined;
|
|
@@ -17571,6 +17672,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
17571
17672
|
enabled: boolean;
|
|
17572
17673
|
active: boolean;
|
|
17573
17674
|
title: string;
|
|
17675
|
+
callApi: boolean;
|
|
17574
17676
|
trigger: {
|
|
17575
17677
|
type: "manual";
|
|
17576
17678
|
port?: number | undefined;
|
|
@@ -17653,6 +17755,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
17653
17755
|
enabled: z.ZodBoolean;
|
|
17654
17756
|
active: z.ZodBoolean;
|
|
17655
17757
|
title: z.ZodString;
|
|
17758
|
+
callApi: z.ZodBoolean;
|
|
17656
17759
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
17657
17760
|
type: z.ZodLiteral<"manual">;
|
|
17658
17761
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -17998,6 +18101,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
17998
18101
|
enabled: boolean;
|
|
17999
18102
|
active: boolean;
|
|
18000
18103
|
title: string;
|
|
18104
|
+
callApi: boolean;
|
|
18001
18105
|
trigger: {
|
|
18002
18106
|
type: "manual";
|
|
18003
18107
|
port?: number | undefined;
|
|
@@ -18084,6 +18188,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
18084
18188
|
enabled: boolean;
|
|
18085
18189
|
active: boolean;
|
|
18086
18190
|
title: string;
|
|
18191
|
+
callApi: boolean;
|
|
18087
18192
|
trigger: {
|
|
18088
18193
|
type: "manual";
|
|
18089
18194
|
port?: number | undefined;
|
|
@@ -18166,6 +18271,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
18166
18271
|
enabled: z.ZodBoolean;
|
|
18167
18272
|
active: z.ZodBoolean;
|
|
18168
18273
|
title: z.ZodString;
|
|
18274
|
+
callApi: z.ZodBoolean;
|
|
18169
18275
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
18170
18276
|
type: z.ZodLiteral<"manual">;
|
|
18171
18277
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -18511,6 +18617,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
18511
18617
|
enabled: boolean;
|
|
18512
18618
|
active: boolean;
|
|
18513
18619
|
title: string;
|
|
18620
|
+
callApi: boolean;
|
|
18514
18621
|
trigger: {
|
|
18515
18622
|
type: "manual";
|
|
18516
18623
|
port?: number | undefined;
|
|
@@ -18597,6 +18704,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
18597
18704
|
enabled: boolean;
|
|
18598
18705
|
active: boolean;
|
|
18599
18706
|
title: string;
|
|
18707
|
+
callApi: boolean;
|
|
18600
18708
|
trigger: {
|
|
18601
18709
|
type: "manual";
|
|
18602
18710
|
port?: number | undefined;
|
|
@@ -18679,6 +18787,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
18679
18787
|
enabled: z.ZodBoolean;
|
|
18680
18788
|
active: z.ZodBoolean;
|
|
18681
18789
|
title: z.ZodString;
|
|
18790
|
+
callApi: z.ZodBoolean;
|
|
18682
18791
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
18683
18792
|
type: z.ZodLiteral<"manual">;
|
|
18684
18793
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -19024,6 +19133,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
19024
19133
|
enabled: boolean;
|
|
19025
19134
|
active: boolean;
|
|
19026
19135
|
title: string;
|
|
19136
|
+
callApi: boolean;
|
|
19027
19137
|
trigger: {
|
|
19028
19138
|
type: "manual";
|
|
19029
19139
|
port?: number | undefined;
|
|
@@ -19110,6 +19220,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
19110
19220
|
enabled: boolean;
|
|
19111
19221
|
active: boolean;
|
|
19112
19222
|
title: string;
|
|
19223
|
+
callApi: boolean;
|
|
19113
19224
|
trigger: {
|
|
19114
19225
|
type: "manual";
|
|
19115
19226
|
port?: number | undefined;
|
|
@@ -19192,6 +19303,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
19192
19303
|
enabled: z.ZodBoolean;
|
|
19193
19304
|
active: z.ZodBoolean;
|
|
19194
19305
|
title: z.ZodString;
|
|
19306
|
+
callApi: z.ZodBoolean;
|
|
19195
19307
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
19196
19308
|
type: z.ZodLiteral<"manual">;
|
|
19197
19309
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -19537,6 +19649,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
19537
19649
|
enabled: boolean;
|
|
19538
19650
|
active: boolean;
|
|
19539
19651
|
title: string;
|
|
19652
|
+
callApi: boolean;
|
|
19540
19653
|
trigger: {
|
|
19541
19654
|
type: "manual";
|
|
19542
19655
|
port?: number | undefined;
|
|
@@ -19623,6 +19736,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
19623
19736
|
enabled: boolean;
|
|
19624
19737
|
active: boolean;
|
|
19625
19738
|
title: string;
|
|
19739
|
+
callApi: boolean;
|
|
19626
19740
|
trigger: {
|
|
19627
19741
|
type: "manual";
|
|
19628
19742
|
port?: number | undefined;
|
|
@@ -19705,6 +19819,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
19705
19819
|
enabled: z.ZodBoolean;
|
|
19706
19820
|
active: z.ZodBoolean;
|
|
19707
19821
|
title: z.ZodString;
|
|
19822
|
+
callApi: z.ZodBoolean;
|
|
19708
19823
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
19709
19824
|
type: z.ZodLiteral<"manual">;
|
|
19710
19825
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -20050,6 +20165,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
20050
20165
|
enabled: boolean;
|
|
20051
20166
|
active: boolean;
|
|
20052
20167
|
title: string;
|
|
20168
|
+
callApi: boolean;
|
|
20053
20169
|
trigger: {
|
|
20054
20170
|
type: "manual";
|
|
20055
20171
|
port?: number | undefined;
|
|
@@ -20136,6 +20252,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
20136
20252
|
enabled: boolean;
|
|
20137
20253
|
active: boolean;
|
|
20138
20254
|
title: string;
|
|
20255
|
+
callApi: boolean;
|
|
20139
20256
|
trigger: {
|
|
20140
20257
|
type: "manual";
|
|
20141
20258
|
port?: number | undefined;
|
|
@@ -20218,6 +20335,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
20218
20335
|
enabled: z.ZodBoolean;
|
|
20219
20336
|
active: z.ZodBoolean;
|
|
20220
20337
|
title: z.ZodString;
|
|
20338
|
+
callApi: z.ZodBoolean;
|
|
20221
20339
|
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
20222
20340
|
type: z.ZodLiteral<"manual">;
|
|
20223
20341
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -20563,6 +20681,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
20563
20681
|
enabled: boolean;
|
|
20564
20682
|
active: boolean;
|
|
20565
20683
|
title: string;
|
|
20684
|
+
callApi: boolean;
|
|
20566
20685
|
trigger: {
|
|
20567
20686
|
type: "manual";
|
|
20568
20687
|
port?: number | undefined;
|
|
@@ -20649,6 +20768,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
20649
20768
|
enabled: boolean;
|
|
20650
20769
|
active: boolean;
|
|
20651
20770
|
title: string;
|
|
20771
|
+
callApi: boolean;
|
|
20652
20772
|
trigger: {
|
|
20653
20773
|
type: "manual";
|
|
20654
20774
|
port?: number | undefined;
|
|
@@ -20744,6 +20864,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
20744
20864
|
enabled: boolean;
|
|
20745
20865
|
active: boolean;
|
|
20746
20866
|
title: string;
|
|
20867
|
+
callApi: boolean;
|
|
20747
20868
|
trigger: {
|
|
20748
20869
|
type: "manual";
|
|
20749
20870
|
port?: number | undefined;
|
|
@@ -20833,6 +20954,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
20833
20954
|
enabled: boolean;
|
|
20834
20955
|
active: boolean;
|
|
20835
20956
|
title: string;
|
|
20957
|
+
callApi: boolean;
|
|
20836
20958
|
trigger: {
|
|
20837
20959
|
type: "manual";
|
|
20838
20960
|
port?: number | undefined;
|
|
@@ -20927,6 +21049,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
20927
21049
|
enabled: boolean;
|
|
20928
21050
|
active: boolean;
|
|
20929
21051
|
title: string;
|
|
21052
|
+
callApi: boolean;
|
|
20930
21053
|
trigger: {
|
|
20931
21054
|
type: "manual";
|
|
20932
21055
|
port?: number | undefined;
|
|
@@ -21024,6 +21147,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
21024
21147
|
enabled: boolean;
|
|
21025
21148
|
active: boolean;
|
|
21026
21149
|
title: string;
|
|
21150
|
+
callApi: boolean;
|
|
21027
21151
|
trigger: {
|
|
21028
21152
|
type: "manual";
|
|
21029
21153
|
port?: number | undefined;
|
|
@@ -21110,6 +21234,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
21110
21234
|
enabled: boolean;
|
|
21111
21235
|
active: boolean;
|
|
21112
21236
|
title: string;
|
|
21237
|
+
callApi: boolean;
|
|
21113
21238
|
trigger: {
|
|
21114
21239
|
type: "manual";
|
|
21115
21240
|
port?: number | undefined;
|
|
@@ -21196,6 +21321,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
21196
21321
|
enabled: boolean;
|
|
21197
21322
|
active: boolean;
|
|
21198
21323
|
title: string;
|
|
21324
|
+
callApi: boolean;
|
|
21199
21325
|
trigger: {
|
|
21200
21326
|
type: "manual";
|
|
21201
21327
|
port?: number | undefined;
|
|
@@ -21282,6 +21408,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
21282
21408
|
enabled: boolean;
|
|
21283
21409
|
active: boolean;
|
|
21284
21410
|
title: string;
|
|
21411
|
+
callApi: boolean;
|
|
21285
21412
|
trigger: {
|
|
21286
21413
|
type: "manual";
|
|
21287
21414
|
port?: number | undefined;
|
|
@@ -21368,6 +21495,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
21368
21495
|
enabled: boolean;
|
|
21369
21496
|
active: boolean;
|
|
21370
21497
|
title: string;
|
|
21498
|
+
callApi: boolean;
|
|
21371
21499
|
trigger: {
|
|
21372
21500
|
type: "manual";
|
|
21373
21501
|
port?: number | undefined;
|
|
@@ -21454,6 +21582,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
21454
21582
|
enabled: boolean;
|
|
21455
21583
|
active: boolean;
|
|
21456
21584
|
title: string;
|
|
21585
|
+
callApi: boolean;
|
|
21457
21586
|
trigger: {
|
|
21458
21587
|
type: "manual";
|
|
21459
21588
|
port?: number | undefined;
|
|
@@ -21540,6 +21669,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
21540
21669
|
enabled: boolean;
|
|
21541
21670
|
active: boolean;
|
|
21542
21671
|
title: string;
|
|
21672
|
+
callApi: boolean;
|
|
21543
21673
|
trigger: {
|
|
21544
21674
|
type: "manual";
|
|
21545
21675
|
port?: number | undefined;
|
|
@@ -21626,6 +21756,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
21626
21756
|
enabled: boolean;
|
|
21627
21757
|
active: boolean;
|
|
21628
21758
|
title: string;
|
|
21759
|
+
callApi: boolean;
|
|
21629
21760
|
trigger: {
|
|
21630
21761
|
type: "manual";
|
|
21631
21762
|
port?: number | undefined;
|
|
@@ -21712,6 +21843,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
21712
21843
|
enabled: boolean;
|
|
21713
21844
|
active: boolean;
|
|
21714
21845
|
title: string;
|
|
21846
|
+
callApi: boolean;
|
|
21715
21847
|
trigger: {
|
|
21716
21848
|
type: "manual";
|
|
21717
21849
|
port?: number | undefined;
|
|
@@ -21798,6 +21930,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
21798
21930
|
enabled: boolean;
|
|
21799
21931
|
active: boolean;
|
|
21800
21932
|
title: string;
|
|
21933
|
+
callApi: boolean;
|
|
21801
21934
|
trigger: {
|
|
21802
21935
|
type: "manual";
|
|
21803
21936
|
port?: number | undefined;
|
|
@@ -21884,6 +22017,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
21884
22017
|
enabled: boolean;
|
|
21885
22018
|
active: boolean;
|
|
21886
22019
|
title: string;
|
|
22020
|
+
callApi: boolean;
|
|
21887
22021
|
trigger: {
|
|
21888
22022
|
type: "manual";
|
|
21889
22023
|
port?: number | undefined;
|
|
@@ -21970,6 +22104,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
21970
22104
|
enabled: boolean;
|
|
21971
22105
|
active: boolean;
|
|
21972
22106
|
title: string;
|
|
22107
|
+
callApi: boolean;
|
|
21973
22108
|
trigger: {
|
|
21974
22109
|
type: "manual";
|
|
21975
22110
|
port?: number | undefined;
|
|
@@ -22056,6 +22191,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
22056
22191
|
enabled: boolean;
|
|
22057
22192
|
active: boolean;
|
|
22058
22193
|
title: string;
|
|
22194
|
+
callApi: boolean;
|
|
22059
22195
|
trigger: {
|
|
22060
22196
|
type: "manual";
|
|
22061
22197
|
port?: number | undefined;
|
|
@@ -22142,6 +22278,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
22142
22278
|
enabled: boolean;
|
|
22143
22279
|
active: boolean;
|
|
22144
22280
|
title: string;
|
|
22281
|
+
callApi: boolean;
|
|
22145
22282
|
trigger: {
|
|
22146
22283
|
type: "manual";
|
|
22147
22284
|
port?: number | undefined;
|
|
@@ -22228,6 +22365,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
22228
22365
|
enabled: boolean;
|
|
22229
22366
|
active: boolean;
|
|
22230
22367
|
title: string;
|
|
22368
|
+
callApi: boolean;
|
|
22231
22369
|
trigger: {
|
|
22232
22370
|
type: "manual";
|
|
22233
22371
|
port?: number | undefined;
|
|
@@ -22314,6 +22452,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
22314
22452
|
enabled: boolean;
|
|
22315
22453
|
active: boolean;
|
|
22316
22454
|
title: string;
|
|
22455
|
+
callApi: boolean;
|
|
22317
22456
|
trigger: {
|
|
22318
22457
|
type: "manual";
|
|
22319
22458
|
port?: number | undefined;
|
|
@@ -22400,6 +22539,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
22400
22539
|
enabled: boolean;
|
|
22401
22540
|
active: boolean;
|
|
22402
22541
|
title: string;
|
|
22542
|
+
callApi: boolean;
|
|
22403
22543
|
trigger: {
|
|
22404
22544
|
type: "manual";
|
|
22405
22545
|
port?: number | undefined;
|
|
@@ -22495,6 +22635,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
22495
22635
|
enabled: boolean;
|
|
22496
22636
|
active: boolean;
|
|
22497
22637
|
title: string;
|
|
22638
|
+
callApi: boolean;
|
|
22498
22639
|
trigger: {
|
|
22499
22640
|
type: "manual";
|
|
22500
22641
|
port?: number | undefined;
|
|
@@ -22584,6 +22725,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
22584
22725
|
enabled: boolean;
|
|
22585
22726
|
active: boolean;
|
|
22586
22727
|
title: string;
|
|
22728
|
+
callApi: boolean;
|
|
22587
22729
|
trigger: {
|
|
22588
22730
|
type: "manual";
|
|
22589
22731
|
port?: number | undefined;
|
|
@@ -22678,6 +22820,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
22678
22820
|
enabled: boolean;
|
|
22679
22821
|
active: boolean;
|
|
22680
22822
|
title: string;
|
|
22823
|
+
callApi: boolean;
|
|
22681
22824
|
trigger: {
|
|
22682
22825
|
type: "manual";
|
|
22683
22826
|
port?: number | undefined;
|
|
@@ -22775,6 +22918,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
22775
22918
|
enabled: boolean;
|
|
22776
22919
|
active: boolean;
|
|
22777
22920
|
title: string;
|
|
22921
|
+
callApi: boolean;
|
|
22778
22922
|
trigger: {
|
|
22779
22923
|
type: "manual";
|
|
22780
22924
|
port?: number | undefined;
|
|
@@ -22861,6 +23005,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
22861
23005
|
enabled: boolean;
|
|
22862
23006
|
active: boolean;
|
|
22863
23007
|
title: string;
|
|
23008
|
+
callApi: boolean;
|
|
22864
23009
|
trigger: {
|
|
22865
23010
|
type: "manual";
|
|
22866
23011
|
port?: number | undefined;
|
|
@@ -22947,6 +23092,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
22947
23092
|
enabled: boolean;
|
|
22948
23093
|
active: boolean;
|
|
22949
23094
|
title: string;
|
|
23095
|
+
callApi: boolean;
|
|
22950
23096
|
trigger: {
|
|
22951
23097
|
type: "manual";
|
|
22952
23098
|
port?: number | undefined;
|
|
@@ -23033,6 +23179,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
23033
23179
|
enabled: boolean;
|
|
23034
23180
|
active: boolean;
|
|
23035
23181
|
title: string;
|
|
23182
|
+
callApi: boolean;
|
|
23036
23183
|
trigger: {
|
|
23037
23184
|
type: "manual";
|
|
23038
23185
|
port?: number | undefined;
|
|
@@ -23119,6 +23266,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
23119
23266
|
enabled: boolean;
|
|
23120
23267
|
active: boolean;
|
|
23121
23268
|
title: string;
|
|
23269
|
+
callApi: boolean;
|
|
23122
23270
|
trigger: {
|
|
23123
23271
|
type: "manual";
|
|
23124
23272
|
port?: number | undefined;
|
|
@@ -23205,6 +23353,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
23205
23353
|
enabled: boolean;
|
|
23206
23354
|
active: boolean;
|
|
23207
23355
|
title: string;
|
|
23356
|
+
callApi: boolean;
|
|
23208
23357
|
trigger: {
|
|
23209
23358
|
type: "manual";
|
|
23210
23359
|
port?: number | undefined;
|
|
@@ -23291,6 +23440,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
23291
23440
|
enabled: boolean;
|
|
23292
23441
|
active: boolean;
|
|
23293
23442
|
title: string;
|
|
23443
|
+
callApi: boolean;
|
|
23294
23444
|
trigger: {
|
|
23295
23445
|
type: "manual";
|
|
23296
23446
|
port?: number | undefined;
|
|
@@ -23377,6 +23527,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
23377
23527
|
enabled: boolean;
|
|
23378
23528
|
active: boolean;
|
|
23379
23529
|
title: string;
|
|
23530
|
+
callApi: boolean;
|
|
23380
23531
|
trigger: {
|
|
23381
23532
|
type: "manual";
|
|
23382
23533
|
port?: number | undefined;
|
|
@@ -23463,6 +23614,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
23463
23614
|
enabled: boolean;
|
|
23464
23615
|
active: boolean;
|
|
23465
23616
|
title: string;
|
|
23617
|
+
callApi: boolean;
|
|
23466
23618
|
trigger: {
|
|
23467
23619
|
type: "manual";
|
|
23468
23620
|
port?: number | undefined;
|
|
@@ -23549,6 +23701,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
23549
23701
|
enabled: boolean;
|
|
23550
23702
|
active: boolean;
|
|
23551
23703
|
title: string;
|
|
23704
|
+
callApi: boolean;
|
|
23552
23705
|
trigger: {
|
|
23553
23706
|
type: "manual";
|
|
23554
23707
|
port?: number | undefined;
|
|
@@ -23635,6 +23788,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
23635
23788
|
enabled: boolean;
|
|
23636
23789
|
active: boolean;
|
|
23637
23790
|
title: string;
|
|
23791
|
+
callApi: boolean;
|
|
23638
23792
|
trigger: {
|
|
23639
23793
|
type: "manual";
|
|
23640
23794
|
port?: number | undefined;
|
|
@@ -23721,6 +23875,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
23721
23875
|
enabled: boolean;
|
|
23722
23876
|
active: boolean;
|
|
23723
23877
|
title: string;
|
|
23878
|
+
callApi: boolean;
|
|
23724
23879
|
trigger: {
|
|
23725
23880
|
type: "manual";
|
|
23726
23881
|
port?: number | undefined;
|
|
@@ -23807,6 +23962,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
23807
23962
|
enabled: boolean;
|
|
23808
23963
|
active: boolean;
|
|
23809
23964
|
title: string;
|
|
23965
|
+
callApi: boolean;
|
|
23810
23966
|
trigger: {
|
|
23811
23967
|
type: "manual";
|
|
23812
23968
|
port?: number | undefined;
|
|
@@ -23893,6 +24049,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
23893
24049
|
enabled: boolean;
|
|
23894
24050
|
active: boolean;
|
|
23895
24051
|
title: string;
|
|
24052
|
+
callApi: boolean;
|
|
23896
24053
|
trigger: {
|
|
23897
24054
|
type: "manual";
|
|
23898
24055
|
port?: number | undefined;
|
|
@@ -23979,6 +24136,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
23979
24136
|
enabled: boolean;
|
|
23980
24137
|
active: boolean;
|
|
23981
24138
|
title: string;
|
|
24139
|
+
callApi: boolean;
|
|
23982
24140
|
trigger: {
|
|
23983
24141
|
type: "manual";
|
|
23984
24142
|
port?: number | undefined;
|
|
@@ -24065,6 +24223,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
24065
24223
|
enabled: boolean;
|
|
24066
24224
|
active: boolean;
|
|
24067
24225
|
title: string;
|
|
24226
|
+
callApi: boolean;
|
|
24068
24227
|
trigger: {
|
|
24069
24228
|
type: "manual";
|
|
24070
24229
|
port?: number | undefined;
|
|
@@ -24151,6 +24310,7 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
24151
24310
|
enabled: boolean;
|
|
24152
24311
|
active: boolean;
|
|
24153
24312
|
title: string;
|
|
24313
|
+
callApi: boolean;
|
|
24154
24314
|
trigger: {
|
|
24155
24315
|
type: "manual";
|
|
24156
24316
|
port?: number | undefined;
|
|
@@ -24248,6 +24408,7 @@ export declare const isFacebookStream: (stream: TStream) => stream is {
|
|
|
24248
24408
|
enabled: boolean;
|
|
24249
24409
|
active: boolean;
|
|
24250
24410
|
title: string;
|
|
24411
|
+
callApi: boolean;
|
|
24251
24412
|
trigger: {
|
|
24252
24413
|
type: "manual";
|
|
24253
24414
|
port?: number | undefined;
|
|
@@ -24339,6 +24500,7 @@ export declare const isFacebookRtmpStream: (stream: TStream) => stream is {
|
|
|
24339
24500
|
enabled: boolean;
|
|
24340
24501
|
active: boolean;
|
|
24341
24502
|
title: string;
|
|
24503
|
+
callApi: boolean;
|
|
24342
24504
|
trigger: {
|
|
24343
24505
|
type: "manual";
|
|
24344
24506
|
port?: number | undefined;
|
|
@@ -24427,6 +24589,7 @@ export declare const isMpegDvbStream: (stream: TStream) => stream is {
|
|
|
24427
24589
|
enabled: boolean;
|
|
24428
24590
|
active: boolean;
|
|
24429
24591
|
title: string;
|
|
24592
|
+
callApi: boolean;
|
|
24430
24593
|
trigger: {
|
|
24431
24594
|
type: "manual";
|
|
24432
24595
|
port?: number | undefined;
|
|
@@ -24515,6 +24678,7 @@ export declare const isRtmpStream: (stream: TStream) => stream is {
|
|
|
24515
24678
|
enabled: boolean;
|
|
24516
24679
|
active: boolean;
|
|
24517
24680
|
title: string;
|
|
24681
|
+
callApi: boolean;
|
|
24518
24682
|
trigger: {
|
|
24519
24683
|
type: "manual";
|
|
24520
24684
|
port?: number | undefined;
|
|
@@ -24603,6 +24767,7 @@ export declare const isSdCardStream: (stream: TStream) => stream is {
|
|
|
24603
24767
|
enabled: boolean;
|
|
24604
24768
|
active: boolean;
|
|
24605
24769
|
title: string;
|
|
24770
|
+
callApi: boolean;
|
|
24606
24771
|
trigger: {
|
|
24607
24772
|
type: "manual";
|
|
24608
24773
|
port?: number | undefined;
|
|
@@ -24691,6 +24856,7 @@ export declare const isWindyStream: (stream: TStream) => stream is {
|
|
|
24691
24856
|
enabled: boolean;
|
|
24692
24857
|
active: boolean;
|
|
24693
24858
|
title: string;
|
|
24859
|
+
callApi: boolean;
|
|
24694
24860
|
trigger: {
|
|
24695
24861
|
type: "manual";
|
|
24696
24862
|
port?: number | undefined;
|
|
@@ -24787,6 +24953,7 @@ export declare const isYouTubeStream: (stream: TStream) => stream is {
|
|
|
24787
24953
|
enabled: boolean;
|
|
24788
24954
|
active: boolean;
|
|
24789
24955
|
title: string;
|
|
24956
|
+
callApi: boolean;
|
|
24790
24957
|
trigger: {
|
|
24791
24958
|
type: "manual";
|
|
24792
24959
|
port?: number | undefined;
|
|
@@ -24886,6 +25053,7 @@ export declare const isVimeoStream: (stream: TStream) => stream is {
|
|
|
24886
25053
|
enabled: boolean;
|
|
24887
25054
|
active: boolean;
|
|
24888
25055
|
title: string;
|
|
25056
|
+
callApi: boolean;
|
|
24889
25057
|
trigger: {
|
|
24890
25058
|
type: "manual";
|
|
24891
25059
|
port?: number | undefined;
|
|
@@ -24974,6 +25142,7 @@ export declare const isTwitchStream: (stream: TStream) => stream is {
|
|
|
24974
25142
|
enabled: boolean;
|
|
24975
25143
|
active: boolean;
|
|
24976
25144
|
title: string;
|
|
25145
|
+
callApi: boolean;
|
|
24977
25146
|
trigger: {
|
|
24978
25147
|
type: "manual";
|
|
24979
25148
|
port?: number | undefined;
|
|
@@ -25062,6 +25231,7 @@ export declare const isSrtStream: (stream: TStream) => stream is {
|
|
|
25062
25231
|
enabled: boolean;
|
|
25063
25232
|
active: boolean;
|
|
25064
25233
|
title: string;
|
|
25234
|
+
callApi: boolean;
|
|
25065
25235
|
trigger: {
|
|
25066
25236
|
type: "manual";
|
|
25067
25237
|
port?: number | undefined;
|
|
@@ -25150,6 +25320,7 @@ export declare const isDaCastStream: (stream: TStream) => stream is {
|
|
|
25150
25320
|
enabled: boolean;
|
|
25151
25321
|
active: boolean;
|
|
25152
25322
|
title: string;
|
|
25323
|
+
callApi: boolean;
|
|
25153
25324
|
trigger: {
|
|
25154
25325
|
type: "manual";
|
|
25155
25326
|
port?: number | undefined;
|
|
@@ -25238,6 +25409,7 @@ export declare const isHlsPullStream: (stream: TStream) => stream is {
|
|
|
25238
25409
|
enabled: boolean;
|
|
25239
25410
|
active: boolean;
|
|
25240
25411
|
title: string;
|
|
25412
|
+
callApi: boolean;
|
|
25241
25413
|
trigger: {
|
|
25242
25414
|
type: "manual";
|
|
25243
25415
|
port?: number | undefined;
|
|
@@ -25326,6 +25498,7 @@ export declare const isHlsPushStream: (stream: TStream) => stream is {
|
|
|
25326
25498
|
enabled: boolean;
|
|
25327
25499
|
active: boolean;
|
|
25328
25500
|
title: string;
|
|
25501
|
+
callApi: boolean;
|
|
25329
25502
|
trigger: {
|
|
25330
25503
|
type: "manual";
|
|
25331
25504
|
port?: number | undefined;
|
|
@@ -25414,6 +25587,7 @@ export declare const isWowzaStream: (stream: TStream) => stream is {
|
|
|
25414
25587
|
enabled: boolean;
|
|
25415
25588
|
active: boolean;
|
|
25416
25589
|
title: string;
|
|
25590
|
+
callApi: boolean;
|
|
25417
25591
|
trigger: {
|
|
25418
25592
|
type: "manual";
|
|
25419
25593
|
port?: number | undefined;
|
|
@@ -25502,6 +25676,7 @@ export declare const isDailymotionStream: (stream: TStream) => stream is {
|
|
|
25502
25676
|
enabled: boolean;
|
|
25503
25677
|
active: boolean;
|
|
25504
25678
|
title: string;
|
|
25679
|
+
callApi: boolean;
|
|
25505
25680
|
trigger: {
|
|
25506
25681
|
type: "manual";
|
|
25507
25682
|
port?: number | undefined;
|
|
@@ -25590,6 +25765,7 @@ export declare const isIbmStream: (stream: TStream) => stream is {
|
|
|
25590
25765
|
enabled: boolean;
|
|
25591
25766
|
active: boolean;
|
|
25592
25767
|
title: string;
|
|
25768
|
+
callApi: boolean;
|
|
25593
25769
|
trigger: {
|
|
25594
25770
|
type: "manual";
|
|
25595
25771
|
port?: number | undefined;
|
|
@@ -25678,6 +25854,7 @@ export declare const isMicrosoftAzureStream: (stream: TStream) => stream is {
|
|
|
25678
25854
|
enabled: boolean;
|
|
25679
25855
|
active: boolean;
|
|
25680
25856
|
title: string;
|
|
25857
|
+
callApi: boolean;
|
|
25681
25858
|
trigger: {
|
|
25682
25859
|
type: "manual";
|
|
25683
25860
|
port?: number | undefined;
|
|
@@ -25766,6 +25943,7 @@ export declare const isMicrosoftStream: (stream: TStream) => stream is {
|
|
|
25766
25943
|
enabled: boolean;
|
|
25767
25944
|
active: boolean;
|
|
25768
25945
|
title: string;
|
|
25946
|
+
callApi: boolean;
|
|
25769
25947
|
trigger: {
|
|
25770
25948
|
type: "manual";
|
|
25771
25949
|
port?: number | undefined;
|
|
@@ -25854,6 +26032,7 @@ export declare const isGameChangerStream: (stream: TStream) => stream is {
|
|
|
25854
26032
|
enabled: boolean;
|
|
25855
26033
|
active: boolean;
|
|
25856
26034
|
title: string;
|
|
26035
|
+
callApi: boolean;
|
|
25857
26036
|
trigger: {
|
|
25858
26037
|
type: "manual";
|
|
25859
26038
|
port?: number | undefined;
|
|
@@ -25942,6 +26121,7 @@ export declare const isYoutubeRtmpStream: (stream: TStream) => stream is {
|
|
|
25942
26121
|
enabled: boolean;
|
|
25943
26122
|
active: boolean;
|
|
25944
26123
|
title: string;
|
|
26124
|
+
callApi: boolean;
|
|
25945
26125
|
trigger: {
|
|
25946
26126
|
type: "manual";
|
|
25947
26127
|
port?: number | undefined;
|