camstreamerlib 4.0.0-beta.95 → 4.0.0-beta.96

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/cjs/CamOverlayAPI.d.ts +4 -4
  2. package/cjs/CamStreamerAPI.d.ts +210 -30
  3. package/cjs/types/CamOverlayAPI/CamOverlayAPI.d.ts +22 -22
  4. package/cjs/types/CamOverlayAPI/customGraphicsSchema.d.ts +12 -12
  5. package/cjs/types/CamOverlayAPI/scoreBoardSchema.d.ts +2 -2
  6. package/cjs/types/CamStreamerAPI/CamStreamerAPI.d.ts +1337 -135
  7. package/cjs/types/CamStreamerAPI/facebookSchema.d.ts +73 -0
  8. package/cjs/types/CamStreamerAPI/hlsSchema.d.ts +73 -0
  9. package/cjs/types/CamStreamerAPI/mpegDvbSchema.d.ts +73 -0
  10. package/cjs/types/CamStreamerAPI/oldStreamSchema.d.ts +6 -6
  11. package/cjs/types/CamStreamerAPI/rtmpSchema.d.ts +73 -0
  12. package/cjs/types/CamStreamerAPI/sdCardSchema.d.ts +73 -0
  13. package/cjs/types/CamStreamerAPI/streamCommonTypes.d.ts +118 -0
  14. package/cjs/types/CamStreamerAPI/streamCommonTypes.js +19 -1
  15. package/cjs/types/CamStreamerAPI/windySchema.d.ts +73 -0
  16. package/cjs/types/CamStreamerAPI/youtubeSchema.d.ts +73 -45
  17. package/cjs/types/CamStreamerAPI/youtubeSchema.js +0 -15
  18. package/esm/types/CamStreamerAPI/streamCommonTypes.js +18 -0
  19. package/esm/types/CamStreamerAPI/youtubeSchema.js +0 -15
  20. package/package.json +1 -1
  21. package/types/CamOverlayAPI.d.ts +4 -4
  22. package/types/CamStreamerAPI.d.ts +210 -30
  23. package/types/types/CamOverlayAPI/CamOverlayAPI.d.ts +22 -22
  24. package/types/types/CamOverlayAPI/customGraphicsSchema.d.ts +12 -12
  25. package/types/types/CamOverlayAPI/scoreBoardSchema.d.ts +2 -2
  26. package/types/types/CamStreamerAPI/CamStreamerAPI.d.ts +1337 -135
  27. package/types/types/CamStreamerAPI/facebookSchema.d.ts +73 -0
  28. package/types/types/CamStreamerAPI/hlsSchema.d.ts +73 -0
  29. package/types/types/CamStreamerAPI/mpegDvbSchema.d.ts +73 -0
  30. package/types/types/CamStreamerAPI/oldStreamSchema.d.ts +6 -6
  31. package/types/types/CamStreamerAPI/rtmpSchema.d.ts +73 -0
  32. package/types/types/CamStreamerAPI/sdCardSchema.d.ts +73 -0
  33. package/types/types/CamStreamerAPI/streamCommonTypes.d.ts +118 -0
  34. package/types/types/CamStreamerAPI/windySchema.d.ts +73 -0
  35. package/types/types/CamStreamerAPI/youtubeSchema.d.ts +73 -45
@@ -259,10 +259,10 @@ export declare class CamOverlayAPI<Client extends IClient<TResponse, any>> {
259
259
  textAlign: "A_LEFT" | "A_CENTER" | "A_RIGHT";
260
260
  textVerticalAlign: "VA_TOP" | "VA_CENTER" | "VA_BOTTOM";
261
261
  settings: {
262
- countdown: boolean;
263
262
  loop: boolean;
264
263
  startDate: number;
265
264
  targetDate: number;
265
+ countdown: boolean;
266
266
  countup: boolean;
267
267
  displayDay: boolean;
268
268
  displayHour: boolean;
@@ -420,7 +420,6 @@ export declare class CamOverlayAPI<Client extends IClient<TResponse, any>> {
420
420
  id: number;
421
421
  width: number;
422
422
  height: number;
423
- description: string;
424
423
  cameraList: number[];
425
424
  zIndex: number;
426
425
  pos_x: number;
@@ -438,6 +437,7 @@ export declare class CamOverlayAPI<Client extends IClient<TResponse, any>> {
438
437
  teamHomeName: string;
439
438
  teamGuestName: string;
440
439
  scoreVisible: boolean;
440
+ description: string;
441
441
  textFont: string;
442
442
  scoreFont: "classic";
443
443
  }>;
@@ -669,10 +669,10 @@ export declare class CamOverlayAPI<Client extends IClient<TResponse, any>> {
669
669
  textAlign: "A_LEFT" | "A_CENTER" | "A_RIGHT";
670
670
  textVerticalAlign: "VA_TOP" | "VA_CENTER" | "VA_BOTTOM";
671
671
  settings: {
672
- countdown: boolean;
673
672
  loop: boolean;
674
673
  startDate: number;
675
674
  targetDate: number;
675
+ countdown: boolean;
676
676
  countup: boolean;
677
677
  displayDay: boolean;
678
678
  displayHour: boolean;
@@ -830,7 +830,6 @@ export declare class CamOverlayAPI<Client extends IClient<TResponse, any>> {
830
830
  id: number;
831
831
  width: number;
832
832
  height: number;
833
- description: string;
834
833
  cameraList: number[];
835
834
  zIndex: number;
836
835
  pos_x: number;
@@ -848,6 +847,7 @@ export declare class CamOverlayAPI<Client extends IClient<TResponse, any>> {
848
847
  teamHomeName: string;
849
848
  teamGuestName: string;
850
849
  scoreVisible: boolean;
850
+ description: string;
851
851
  textFont: string;
852
852
  scoreFont: "classic";
853
853
  })[]>;
@@ -12,6 +12,21 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
12
12
  getUtcTime(options?: THttpRequestOptions): Promise<number>;
13
13
  getStreamList(options?: THttpRequestOptions): Promise<({
14
14
  type: "facebook";
15
+ audio: {
16
+ source: "none";
17
+ } | {
18
+ channel: number;
19
+ source: "microphone";
20
+ } | {
21
+ source: "file";
22
+ fileName: string;
23
+ filePath: string;
24
+ } | {
25
+ source: "url";
26
+ fileName: string;
27
+ fileUrl: string;
28
+ avSyncMsec: number;
29
+ };
15
30
  enabled: boolean;
16
31
  id: number;
17
32
  active: boolean;
@@ -39,6 +54,21 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
39
54
  };
40
55
  } | {
41
56
  type: "hls";
57
+ audio: {
58
+ source: "none";
59
+ } | {
60
+ channel: number;
61
+ source: "microphone";
62
+ } | {
63
+ source: "file";
64
+ fileName: string;
65
+ filePath: string;
66
+ } | {
67
+ source: "url";
68
+ fileName: string;
69
+ fileUrl: string;
70
+ avSyncMsec: number;
71
+ };
42
72
  enabled: boolean;
43
73
  id: number;
44
74
  active: boolean;
@@ -66,6 +96,21 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
66
96
  };
67
97
  } | {
68
98
  type: "mpeg_dvb";
99
+ audio: {
100
+ source: "none";
101
+ } | {
102
+ channel: number;
103
+ source: "microphone";
104
+ } | {
105
+ source: "file";
106
+ fileName: string;
107
+ filePath: string;
108
+ } | {
109
+ source: "url";
110
+ fileName: string;
111
+ fileUrl: string;
112
+ avSyncMsec: number;
113
+ };
69
114
  port: number;
70
115
  enabled: boolean;
71
116
  id: number;
@@ -109,6 +154,21 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
109
154
  saveToSdCard: boolean;
110
155
  } | {
111
156
  type: "rtmp";
157
+ audio: {
158
+ source: "none";
159
+ } | {
160
+ channel: number;
161
+ source: "microphone";
162
+ } | {
163
+ source: "file";
164
+ fileName: string;
165
+ filePath: string;
166
+ } | {
167
+ source: "url";
168
+ fileName: string;
169
+ fileUrl: string;
170
+ avSyncMsec: number;
171
+ };
112
172
  enabled: boolean;
113
173
  id: number;
114
174
  active: boolean;
@@ -139,6 +199,21 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
139
199
  streamIdentifier?: string | undefined;
140
200
  } | {
141
201
  type: "sd_card";
202
+ audio: {
203
+ source: "none";
204
+ } | {
205
+ channel: number;
206
+ source: "microphone";
207
+ } | {
208
+ source: "file";
209
+ fileName: string;
210
+ filePath: string;
211
+ } | {
212
+ source: "url";
213
+ fileName: string;
214
+ fileUrl: string;
215
+ avSyncMsec: number;
216
+ };
142
217
  enabled: boolean;
143
218
  id: number;
144
219
  active: boolean;
@@ -166,6 +241,21 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
166
241
  };
167
242
  } | {
168
243
  type: "windy";
244
+ audio: {
245
+ source: "none";
246
+ } | {
247
+ channel: number;
248
+ source: "microphone";
249
+ } | {
250
+ source: "file";
251
+ fileName: string;
252
+ filePath: string;
253
+ } | {
254
+ source: "url";
255
+ fileName: string;
256
+ fileUrl: string;
257
+ avSyncMsec: number;
258
+ };
169
259
  enabled: boolean;
170
260
  id: number;
171
261
  active: boolean;
@@ -193,6 +283,21 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
193
283
  };
194
284
  } | {
195
285
  type: "youtube";
286
+ audio: {
287
+ source: "none";
288
+ } | {
289
+ channel: number;
290
+ source: "microphone";
291
+ } | {
292
+ source: "file";
293
+ fileName: string;
294
+ filePath: string;
295
+ } | {
296
+ source: "url";
297
+ fileName: string;
298
+ fileUrl: string;
299
+ avSyncMsec: number;
300
+ };
196
301
  enabled: boolean;
197
302
  id: number;
198
303
  active: boolean;
@@ -218,25 +323,25 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
218
323
  isActive: boolean;
219
324
  }[];
220
325
  };
221
- statusCameraLed: boolean;
222
- statusCameraOutput: string;
223
- saveToSdCard: boolean;
224
- tags: string[];
225
- streamPrivacy: "public" | "unlisted" | "private";
226
- latency: "normal" | "low" | "ultra_low";
227
- afterEndStatus: "public" | "unlisted" | "private" | "no_change";
228
- cameraLedStatus: boolean;
229
- dvr: boolean;
230
- hasWatchdogs: boolean;
231
- countdown: boolean;
232
- enableManualControl: boolean;
233
- playlist?: string | undefined;
234
- description?: string | undefined;
235
- notificationEmail?: string[] | undefined;
236
326
  })[]>;
237
327
  setStreamList(streamList: TStreamList['streamList'], options?: THttpRequestOptions): Promise<void>;
238
328
  getStream(streamId: number, options?: THttpRequestOptions): Promise<{
239
329
  type: "facebook";
330
+ audio: {
331
+ source: "none";
332
+ } | {
333
+ channel: number;
334
+ source: "microphone";
335
+ } | {
336
+ source: "file";
337
+ fileName: string;
338
+ filePath: string;
339
+ } | {
340
+ source: "url";
341
+ fileName: string;
342
+ fileUrl: string;
343
+ avSyncMsec: number;
344
+ };
240
345
  enabled: boolean;
241
346
  id: number;
242
347
  active: boolean;
@@ -264,6 +369,21 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
264
369
  };
265
370
  } | {
266
371
  type: "hls";
372
+ audio: {
373
+ source: "none";
374
+ } | {
375
+ channel: number;
376
+ source: "microphone";
377
+ } | {
378
+ source: "file";
379
+ fileName: string;
380
+ filePath: string;
381
+ } | {
382
+ source: "url";
383
+ fileName: string;
384
+ fileUrl: string;
385
+ avSyncMsec: number;
386
+ };
267
387
  enabled: boolean;
268
388
  id: number;
269
389
  active: boolean;
@@ -291,6 +411,21 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
291
411
  };
292
412
  } | {
293
413
  type: "mpeg_dvb";
414
+ audio: {
415
+ source: "none";
416
+ } | {
417
+ channel: number;
418
+ source: "microphone";
419
+ } | {
420
+ source: "file";
421
+ fileName: string;
422
+ filePath: string;
423
+ } | {
424
+ source: "url";
425
+ fileName: string;
426
+ fileUrl: string;
427
+ avSyncMsec: number;
428
+ };
294
429
  port: number;
295
430
  enabled: boolean;
296
431
  id: number;
@@ -334,6 +469,21 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
334
469
  saveToSdCard: boolean;
335
470
  } | {
336
471
  type: "rtmp";
472
+ audio: {
473
+ source: "none";
474
+ } | {
475
+ channel: number;
476
+ source: "microphone";
477
+ } | {
478
+ source: "file";
479
+ fileName: string;
480
+ filePath: string;
481
+ } | {
482
+ source: "url";
483
+ fileName: string;
484
+ fileUrl: string;
485
+ avSyncMsec: number;
486
+ };
337
487
  enabled: boolean;
338
488
  id: number;
339
489
  active: boolean;
@@ -364,6 +514,21 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
364
514
  streamIdentifier?: string | undefined;
365
515
  } | {
366
516
  type: "sd_card";
517
+ audio: {
518
+ source: "none";
519
+ } | {
520
+ channel: number;
521
+ source: "microphone";
522
+ } | {
523
+ source: "file";
524
+ fileName: string;
525
+ filePath: string;
526
+ } | {
527
+ source: "url";
528
+ fileName: string;
529
+ fileUrl: string;
530
+ avSyncMsec: number;
531
+ };
367
532
  enabled: boolean;
368
533
  id: number;
369
534
  active: boolean;
@@ -391,6 +556,21 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
391
556
  };
392
557
  } | {
393
558
  type: "windy";
559
+ audio: {
560
+ source: "none";
561
+ } | {
562
+ channel: number;
563
+ source: "microphone";
564
+ } | {
565
+ source: "file";
566
+ fileName: string;
567
+ filePath: string;
568
+ } | {
569
+ source: "url";
570
+ fileName: string;
571
+ fileUrl: string;
572
+ avSyncMsec: number;
573
+ };
394
574
  enabled: boolean;
395
575
  id: number;
396
576
  active: boolean;
@@ -418,6 +598,21 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
418
598
  };
419
599
  } | {
420
600
  type: "youtube";
601
+ audio: {
602
+ source: "none";
603
+ } | {
604
+ channel: number;
605
+ source: "microphone";
606
+ } | {
607
+ source: "file";
608
+ fileName: string;
609
+ filePath: string;
610
+ } | {
611
+ source: "url";
612
+ fileName: string;
613
+ fileUrl: string;
614
+ avSyncMsec: number;
615
+ };
421
616
  enabled: boolean;
422
617
  id: number;
423
618
  active: boolean;
@@ -443,21 +638,6 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
443
638
  isActive: boolean;
444
639
  }[];
445
640
  };
446
- statusCameraLed: boolean;
447
- statusCameraOutput: string;
448
- saveToSdCard: boolean;
449
- tags: string[];
450
- streamPrivacy: "public" | "unlisted" | "private";
451
- latency: "normal" | "low" | "ultra_low";
452
- afterEndStatus: "public" | "unlisted" | "private" | "no_change";
453
- cameraLedStatus: boolean;
454
- dvr: boolean;
455
- hasWatchdogs: boolean;
456
- countdown: boolean;
457
- enableManualControl: boolean;
458
- playlist?: string | undefined;
459
- description?: string | undefined;
460
- notificationEmail?: string[] | undefined;
461
641
  }>;
462
642
  setStream(streamId: number, streamData: Partial<TStream>, options?: THttpRequestOptions): Promise<void>;
463
643
  isStreaming(streamId: number, options?: THttpRequestOptions): Promise<boolean>;
@@ -753,10 +753,10 @@ export declare const servicesSchema: z.ZodDiscriminatedUnion<"name", [z.ZodObjec
753
753
  loopPeriod: z.ZodNumber;
754
754
  waitingPeriod: z.ZodNumber;
755
755
  }, "strip", z.ZodTypeAny, {
756
- countdown: boolean;
757
756
  loop: boolean;
758
757
  startDate: number;
759
758
  targetDate: number;
759
+ countdown: boolean;
760
760
  countup: boolean;
761
761
  displayDay: boolean;
762
762
  displayHour: boolean;
@@ -772,10 +772,10 @@ export declare const servicesSchema: z.ZodDiscriminatedUnion<"name", [z.ZodObjec
772
772
  loopPeriod: number;
773
773
  waitingPeriod: number;
774
774
  }, {
775
- countdown: boolean;
776
775
  loop: boolean;
777
776
  startDate: number;
778
777
  targetDate: number;
778
+ countdown: boolean;
779
779
  countup: boolean;
780
780
  displayDay: boolean;
781
781
  displayHour: boolean;
@@ -806,10 +806,10 @@ export declare const servicesSchema: z.ZodDiscriminatedUnion<"name", [z.ZodObjec
806
806
  textAlign: "A_LEFT" | "A_CENTER" | "A_RIGHT";
807
807
  textVerticalAlign: "VA_TOP" | "VA_CENTER" | "VA_BOTTOM";
808
808
  settings: {
809
- countdown: boolean;
810
809
  loop: boolean;
811
810
  startDate: number;
812
811
  targetDate: number;
812
+ countdown: boolean;
813
813
  countup: boolean;
814
814
  displayDay: boolean;
815
815
  displayHour: boolean;
@@ -844,10 +844,10 @@ export declare const servicesSchema: z.ZodDiscriminatedUnion<"name", [z.ZodObjec
844
844
  textAlign: "A_LEFT" | "A_CENTER" | "A_RIGHT";
845
845
  textVerticalAlign: "VA_TOP" | "VA_CENTER" | "VA_BOTTOM";
846
846
  settings: {
847
- countdown: boolean;
848
847
  loop: boolean;
849
848
  startDate: number;
850
849
  targetDate: number;
850
+ countdown: boolean;
851
851
  countup: boolean;
852
852
  displayDay: boolean;
853
853
  displayHour: boolean;
@@ -920,10 +920,10 @@ export declare const servicesSchema: z.ZodDiscriminatedUnion<"name", [z.ZodObjec
920
920
  textAlign: "A_LEFT" | "A_CENTER" | "A_RIGHT";
921
921
  textVerticalAlign: "VA_TOP" | "VA_CENTER" | "VA_BOTTOM";
922
922
  settings: {
923
- countdown: boolean;
924
923
  loop: boolean;
925
924
  startDate: number;
926
925
  targetDate: number;
926
+ countdown: boolean;
927
927
  countup: boolean;
928
928
  displayDay: boolean;
929
929
  displayHour: boolean;
@@ -999,10 +999,10 @@ export declare const servicesSchema: z.ZodDiscriminatedUnion<"name", [z.ZodObjec
999
999
  textAlign: "A_LEFT" | "A_CENTER" | "A_RIGHT";
1000
1000
  textVerticalAlign: "VA_TOP" | "VA_CENTER" | "VA_BOTTOM";
1001
1001
  settings: {
1002
- countdown: boolean;
1003
1002
  loop: boolean;
1004
1003
  startDate: number;
1005
1004
  targetDate: number;
1005
+ countdown: boolean;
1006
1006
  countup: boolean;
1007
1007
  displayDay: boolean;
1008
1008
  displayHour: boolean;
@@ -1445,7 +1445,6 @@ export declare const servicesSchema: z.ZodDiscriminatedUnion<"name", [z.ZodObjec
1445
1445
  id: number;
1446
1446
  width: number;
1447
1447
  height: number;
1448
- description: string;
1449
1448
  cameraList: number[];
1450
1449
  zIndex: number;
1451
1450
  pos_x: number;
@@ -1463,6 +1462,7 @@ export declare const servicesSchema: z.ZodDiscriminatedUnion<"name", [z.ZodObjec
1463
1462
  teamHomeName: string;
1464
1463
  teamGuestName: string;
1465
1464
  scoreVisible: boolean;
1465
+ description: string;
1466
1466
  textFont: string;
1467
1467
  scoreFont: "classic";
1468
1468
  }, {
@@ -1471,7 +1471,6 @@ export declare const servicesSchema: z.ZodDiscriminatedUnion<"name", [z.ZodObjec
1471
1471
  id: number;
1472
1472
  width: number;
1473
1473
  height: number;
1474
- description: string;
1475
1474
  cameraList: number[];
1476
1475
  zIndex: number;
1477
1476
  pos_x: number;
@@ -1489,6 +1488,7 @@ export declare const servicesSchema: z.ZodDiscriminatedUnion<"name", [z.ZodObjec
1489
1488
  teamHomeName: string;
1490
1489
  teamGuestName: string;
1491
1490
  scoreVisible: boolean;
1491
+ description: string;
1492
1492
  scoreFont: "classic";
1493
1493
  textFont?: string | undefined;
1494
1494
  }>]>;
@@ -2226,10 +2226,10 @@ export declare const serviceListSchema: z.ZodObject<{
2226
2226
  loopPeriod: z.ZodNumber;
2227
2227
  waitingPeriod: z.ZodNumber;
2228
2228
  }, "strip", z.ZodTypeAny, {
2229
- countdown: boolean;
2230
2229
  loop: boolean;
2231
2230
  startDate: number;
2232
2231
  targetDate: number;
2232
+ countdown: boolean;
2233
2233
  countup: boolean;
2234
2234
  displayDay: boolean;
2235
2235
  displayHour: boolean;
@@ -2245,10 +2245,10 @@ export declare const serviceListSchema: z.ZodObject<{
2245
2245
  loopPeriod: number;
2246
2246
  waitingPeriod: number;
2247
2247
  }, {
2248
- countdown: boolean;
2249
2248
  loop: boolean;
2250
2249
  startDate: number;
2251
2250
  targetDate: number;
2251
+ countdown: boolean;
2252
2252
  countup: boolean;
2253
2253
  displayDay: boolean;
2254
2254
  displayHour: boolean;
@@ -2279,10 +2279,10 @@ export declare const serviceListSchema: z.ZodObject<{
2279
2279
  textAlign: "A_LEFT" | "A_CENTER" | "A_RIGHT";
2280
2280
  textVerticalAlign: "VA_TOP" | "VA_CENTER" | "VA_BOTTOM";
2281
2281
  settings: {
2282
- countdown: boolean;
2283
2282
  loop: boolean;
2284
2283
  startDate: number;
2285
2284
  targetDate: number;
2285
+ countdown: boolean;
2286
2286
  countup: boolean;
2287
2287
  displayDay: boolean;
2288
2288
  displayHour: boolean;
@@ -2317,10 +2317,10 @@ export declare const serviceListSchema: z.ZodObject<{
2317
2317
  textAlign: "A_LEFT" | "A_CENTER" | "A_RIGHT";
2318
2318
  textVerticalAlign: "VA_TOP" | "VA_CENTER" | "VA_BOTTOM";
2319
2319
  settings: {
2320
- countdown: boolean;
2321
2320
  loop: boolean;
2322
2321
  startDate: number;
2323
2322
  targetDate: number;
2323
+ countdown: boolean;
2324
2324
  countup: boolean;
2325
2325
  displayDay: boolean;
2326
2326
  displayHour: boolean;
@@ -2393,10 +2393,10 @@ export declare const serviceListSchema: z.ZodObject<{
2393
2393
  textAlign: "A_LEFT" | "A_CENTER" | "A_RIGHT";
2394
2394
  textVerticalAlign: "VA_TOP" | "VA_CENTER" | "VA_BOTTOM";
2395
2395
  settings: {
2396
- countdown: boolean;
2397
2396
  loop: boolean;
2398
2397
  startDate: number;
2399
2398
  targetDate: number;
2399
+ countdown: boolean;
2400
2400
  countup: boolean;
2401
2401
  displayDay: boolean;
2402
2402
  displayHour: boolean;
@@ -2472,10 +2472,10 @@ export declare const serviceListSchema: z.ZodObject<{
2472
2472
  textAlign: "A_LEFT" | "A_CENTER" | "A_RIGHT";
2473
2473
  textVerticalAlign: "VA_TOP" | "VA_CENTER" | "VA_BOTTOM";
2474
2474
  settings: {
2475
- countdown: boolean;
2476
2475
  loop: boolean;
2477
2476
  startDate: number;
2478
2477
  targetDate: number;
2478
+ countdown: boolean;
2479
2479
  countup: boolean;
2480
2480
  displayDay: boolean;
2481
2481
  displayHour: boolean;
@@ -2918,7 +2918,6 @@ export declare const serviceListSchema: z.ZodObject<{
2918
2918
  id: number;
2919
2919
  width: number;
2920
2920
  height: number;
2921
- description: string;
2922
2921
  cameraList: number[];
2923
2922
  zIndex: number;
2924
2923
  pos_x: number;
@@ -2936,6 +2935,7 @@ export declare const serviceListSchema: z.ZodObject<{
2936
2935
  teamHomeName: string;
2937
2936
  teamGuestName: string;
2938
2937
  scoreVisible: boolean;
2938
+ description: string;
2939
2939
  textFont: string;
2940
2940
  scoreFont: "classic";
2941
2941
  }, {
@@ -2944,7 +2944,6 @@ export declare const serviceListSchema: z.ZodObject<{
2944
2944
  id: number;
2945
2945
  width: number;
2946
2946
  height: number;
2947
- description: string;
2948
2947
  cameraList: number[];
2949
2948
  zIndex: number;
2950
2949
  pos_x: number;
@@ -2962,6 +2961,7 @@ export declare const serviceListSchema: z.ZodObject<{
2962
2961
  teamHomeName: string;
2963
2962
  teamGuestName: string;
2964
2963
  scoreVisible: boolean;
2964
+ description: string;
2965
2965
  scoreFont: "classic";
2966
2966
  textFont?: string | undefined;
2967
2967
  }>]>, "many">;
@@ -3194,10 +3194,10 @@ export declare const serviceListSchema: z.ZodObject<{
3194
3194
  textAlign: "A_LEFT" | "A_CENTER" | "A_RIGHT";
3195
3195
  textVerticalAlign: "VA_TOP" | "VA_CENTER" | "VA_BOTTOM";
3196
3196
  settings: {
3197
- countdown: boolean;
3198
3197
  loop: boolean;
3199
3198
  startDate: number;
3200
3199
  targetDate: number;
3200
+ countdown: boolean;
3201
3201
  countup: boolean;
3202
3202
  displayDay: boolean;
3203
3203
  displayHour: boolean;
@@ -3355,7 +3355,6 @@ export declare const serviceListSchema: z.ZodObject<{
3355
3355
  id: number;
3356
3356
  width: number;
3357
3357
  height: number;
3358
- description: string;
3359
3358
  cameraList: number[];
3360
3359
  zIndex: number;
3361
3360
  pos_x: number;
@@ -3373,6 +3372,7 @@ export declare const serviceListSchema: z.ZodObject<{
3373
3372
  teamHomeName: string;
3374
3373
  teamGuestName: string;
3375
3374
  scoreVisible: boolean;
3375
+ description: string;
3376
3376
  textFont: string;
3377
3377
  scoreFont: "classic";
3378
3378
  })[];
@@ -3604,10 +3604,10 @@ export declare const serviceListSchema: z.ZodObject<{
3604
3604
  textAlign: "A_LEFT" | "A_CENTER" | "A_RIGHT";
3605
3605
  textVerticalAlign: "VA_TOP" | "VA_CENTER" | "VA_BOTTOM";
3606
3606
  settings: {
3607
- countdown: boolean;
3608
3607
  loop: boolean;
3609
3608
  startDate: number;
3610
3609
  targetDate: number;
3610
+ countdown: boolean;
3611
3611
  countup: boolean;
3612
3612
  displayDay: boolean;
3613
3613
  displayHour: boolean;
@@ -3766,7 +3766,6 @@ export declare const serviceListSchema: z.ZodObject<{
3766
3766
  id: number;
3767
3767
  width: number;
3768
3768
  height: number;
3769
- description: string;
3770
3769
  cameraList: number[];
3771
3770
  zIndex: number;
3772
3771
  pos_x: number;
@@ -3784,6 +3783,7 @@ export declare const serviceListSchema: z.ZodObject<{
3784
3783
  teamHomeName: string;
3785
3784
  teamGuestName: string;
3786
3785
  scoreVisible: boolean;
3786
+ description: string;
3787
3787
  scoreFont: "classic";
3788
3788
  textFont?: string | undefined;
3789
3789
  })[];
@@ -3871,10 +3871,10 @@ export declare const isCustomGraphics: (service: TService) => service is {
3871
3871
  textAlign: "A_LEFT" | "A_CENTER" | "A_RIGHT";
3872
3872
  textVerticalAlign: "VA_TOP" | "VA_CENTER" | "VA_BOTTOM";
3873
3873
  settings: {
3874
- countdown: boolean;
3875
3874
  loop: boolean;
3876
3875
  startDate: number;
3877
3876
  targetDate: number;
3877
+ countdown: boolean;
3878
3878
  countup: boolean;
3879
3879
  displayDay: boolean;
3880
3880
  displayHour: boolean;
@@ -4203,7 +4203,6 @@ export declare const isScoreOverview: (service: TService) => service is {
4203
4203
  id: number;
4204
4204
  width: number;
4205
4205
  height: number;
4206
- description: string;
4207
4206
  cameraList: number[];
4208
4207
  zIndex: number;
4209
4208
  pos_x: number;
@@ -4221,6 +4220,7 @@ export declare const isScoreOverview: (service: TService) => service is {
4221
4220
  teamHomeName: string;
4222
4221
  teamGuestName: string;
4223
4222
  scoreVisible: boolean;
4223
+ description: string;
4224
4224
  textFont: string;
4225
4225
  scoreFont: "classic";
4226
4226
  };