camstreamerlib 4.0.0-beta.2 → 4.0.0-beta.3

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 (162) hide show
  1. package/README.md +3 -1
  2. package/cjs/CamOverlayAPI.js +176 -0
  3. package/cjs/CamOverlayDrawingAPI.js +232 -0
  4. package/cjs/CamOverlayPainter/Frame.js +301 -0
  5. package/cjs/CamOverlayPainter/Painter.js +168 -0
  6. package/cjs/CamOverlayPainter/ResourceManager.js +50 -0
  7. package/cjs/CamScripterAPI.js +70 -0
  8. package/cjs/CamScripterAPICameraEventsGenerator.js +159 -0
  9. package/cjs/CamStreamerAPI.js +65 -0
  10. package/{CamSwitcherAPI.d.ts → cjs/CamSwitcherAPI.d.ts} +3 -3
  11. package/cjs/CamSwitcherAPI.js +354 -0
  12. package/{CamSwitcherEvents.d.ts → cjs/CamSwitcherEvents.d.ts} +1 -1
  13. package/cjs/CamSwitcherEvents.js +67 -0
  14. package/cjs/CreatePackage.js +106 -0
  15. package/cjs/VapixAPI.js +458 -0
  16. package/cjs/VapixEvents.js +88 -0
  17. package/cjs/errors/errors.js +79 -0
  18. package/cjs/events/AxisCameraStationEvents.js +48 -0
  19. package/cjs/events/GenetecAgent.js +123 -0
  20. package/cjs/index.d.ts +11 -0
  21. package/cjs/index.js +31 -0
  22. package/cjs/internal/Digest.js +42 -0
  23. package/cjs/internal/ProxyClient.js +44 -0
  24. package/{internal → cjs/internal}/common.d.ts +0 -1
  25. package/cjs/internal/common.js +27 -0
  26. package/cjs/internal/constants.js +4 -0
  27. package/cjs/internal/transformers.js +32 -0
  28. package/cjs/internal/utils.js +46 -0
  29. package/cjs/internal/versionCompare.js +53 -0
  30. package/cjs/node/DefaultClient.js +54 -0
  31. package/cjs/node/HttpRequestSender.js +89 -0
  32. package/cjs/node/HttpServer.js +96 -0
  33. package/cjs/node/WsClient.js +149 -0
  34. package/cjs/node/WsEventClient.js +22 -0
  35. package/cjs/node/index.d.ts +2 -0
  36. package/cjs/node/index.js +7 -0
  37. package/cjs/types/CamOverlayAPI.js +47 -0
  38. package/cjs/types/CamScripterAPI.js +20 -0
  39. package/cjs/types/CamStreamerAPI.js +28 -0
  40. package/cjs/types/CamSwitcherAPI.js +137 -0
  41. package/cjs/types/CamSwitcherEvents.js +62 -0
  42. package/cjs/types/VapixAPI.js +132 -0
  43. package/cjs/types/common.js +14 -0
  44. package/cjs/web/DefaultClient.js +20 -0
  45. package/cjs/web/WsClient.js +62 -0
  46. package/cjs/web/index.d.ts +2 -0
  47. package/cjs/web/index.js +7 -0
  48. package/esm/CamOverlayAPI.d.ts +31 -0
  49. package/esm/CamOverlayDrawingAPI.d.ts +86 -0
  50. package/esm/CamOverlayPainter/Frame.d.ts +96 -0
  51. package/esm/CamOverlayPainter/Painter.d.ts +37 -0
  52. package/esm/CamOverlayPainter/ResourceManager.d.ts +14 -0
  53. package/esm/CamScripterAPI.d.ts +19 -0
  54. package/esm/CamScripterAPICameraEventsGenerator.d.ts +74 -0
  55. package/esm/CamStreamerAPI.d.ts +16 -0
  56. package/esm/CamSwitcherAPI.d.ts +48 -0
  57. package/{CamSwitcherAPI.js → esm/CamSwitcherAPI.js} +3 -3
  58. package/esm/CamSwitcherEvents.d.ts +18 -0
  59. package/{CamSwitcherEvents.js → esm/CamSwitcherEvents.js} +1 -1
  60. package/esm/CreatePackage.d.ts +1 -0
  61. package/esm/VapixAPI.d.ts +66 -0
  62. package/esm/VapixEvents.d.ts +43 -0
  63. package/esm/errors/errors.d.ts +34 -0
  64. package/esm/events/AxisCameraStationEvents.d.ts +9 -0
  65. package/esm/events/GenetecAgent.d.ts +174 -0
  66. package/esm/index.d.ts +11 -0
  67. package/esm/index.js +11 -0
  68. package/esm/internal/Digest.d.ts +4 -0
  69. package/esm/internal/ProxyClient.d.ts +11 -0
  70. package/esm/internal/common.d.ts +39 -0
  71. package/{internal → esm/internal}/common.js +0 -3
  72. package/esm/internal/constants.d.ts +1 -0
  73. package/esm/internal/transformers.d.ts +5 -0
  74. package/esm/internal/utils.d.ts +11 -0
  75. package/esm/internal/versionCompare.d.ts +6 -0
  76. package/esm/node/DefaultClient.d.ts +15 -0
  77. package/esm/node/HttpRequestSender.d.ts +28 -0
  78. package/esm/node/HttpServer.d.ts +21 -0
  79. package/esm/node/WsClient.d.ts +39 -0
  80. package/esm/node/WsEventClient.d.ts +13 -0
  81. package/esm/node/index.d.ts +2 -0
  82. package/esm/node/index.js +2 -0
  83. package/esm/types/CamOverlayAPI.d.ts +188 -0
  84. package/esm/types/CamScripterAPI.d.ts +67 -0
  85. package/esm/types/CamStreamerAPI.d.ts +139 -0
  86. package/esm/types/CamSwitcherAPI.d.ts +814 -0
  87. package/esm/types/CamSwitcherEvents.d.ts +491 -0
  88. package/esm/types/VapixAPI.d.ts +1704 -0
  89. package/esm/types/common.d.ts +37 -0
  90. package/esm/web/DefaultClient.d.ts +6 -0
  91. package/esm/web/WsClient.d.ts +13 -0
  92. package/esm/web/index.d.ts +2 -0
  93. package/esm/web/index.js +2 -0
  94. package/package.json +4 -4
  95. /package/{CamOverlayAPI.d.ts → cjs/CamOverlayAPI.d.ts} +0 -0
  96. /package/{CamOverlayDrawingAPI.d.ts → cjs/CamOverlayDrawingAPI.d.ts} +0 -0
  97. /package/{CamOverlayPainter → cjs/CamOverlayPainter}/Frame.d.ts +0 -0
  98. /package/{CamOverlayPainter → cjs/CamOverlayPainter}/Painter.d.ts +0 -0
  99. /package/{CamOverlayPainter → cjs/CamOverlayPainter}/ResourceManager.d.ts +0 -0
  100. /package/{CamScripterAPI.d.ts → cjs/CamScripterAPI.d.ts} +0 -0
  101. /package/{CamScripterAPICameraEventsGenerator.d.ts → cjs/CamScripterAPICameraEventsGenerator.d.ts} +0 -0
  102. /package/{CamStreamerAPI.d.ts → cjs/CamStreamerAPI.d.ts} +0 -0
  103. /package/{CreatePackage.d.ts → cjs/CreatePackage.d.ts} +0 -0
  104. /package/{VapixAPI.d.ts → cjs/VapixAPI.d.ts} +0 -0
  105. /package/{VapixEvents.d.ts → cjs/VapixEvents.d.ts} +0 -0
  106. /package/{errors → cjs/errors}/errors.d.ts +0 -0
  107. /package/{events → cjs/events}/AxisCameraStationEvents.d.ts +0 -0
  108. /package/{events → cjs/events}/GenetecAgent.d.ts +0 -0
  109. /package/{internal → cjs/internal}/Digest.d.ts +0 -0
  110. /package/{internal → cjs/internal}/ProxyClient.d.ts +0 -0
  111. /package/{internal → cjs/internal}/constants.d.ts +0 -0
  112. /package/{internal → cjs/internal}/transformers.d.ts +0 -0
  113. /package/{internal → cjs/internal}/utils.d.ts +0 -0
  114. /package/{internal → cjs/internal}/versionCompare.d.ts +0 -0
  115. /package/{node → cjs/node}/DefaultClient.d.ts +0 -0
  116. /package/{node → cjs/node}/HttpRequestSender.d.ts +0 -0
  117. /package/{node → cjs/node}/HttpServer.d.ts +0 -0
  118. /package/{node → cjs/node}/WsClient.d.ts +0 -0
  119. /package/{node → cjs/node}/WsEventClient.d.ts +0 -0
  120. /package/{types → cjs/types}/CamOverlayAPI.d.ts +0 -0
  121. /package/{types → cjs/types}/CamScripterAPI.d.ts +0 -0
  122. /package/{types → cjs/types}/CamStreamerAPI.d.ts +0 -0
  123. /package/{types → cjs/types}/CamSwitcherAPI.d.ts +0 -0
  124. /package/{types/CamswitcherEvents.d.ts → cjs/types/CamSwitcherEvents.d.ts} +0 -0
  125. /package/{types → cjs/types}/VapixAPI.d.ts +0 -0
  126. /package/{types → cjs/types}/common.d.ts +0 -0
  127. /package/{web → cjs/web}/DefaultClient.d.ts +0 -0
  128. /package/{web → cjs/web}/WsClient.d.ts +0 -0
  129. /package/{CamOverlayAPI.js → esm/CamOverlayAPI.js} +0 -0
  130. /package/{CamOverlayDrawingAPI.js → esm/CamOverlayDrawingAPI.js} +0 -0
  131. /package/{CamOverlayPainter → esm/CamOverlayPainter}/Frame.js +0 -0
  132. /package/{CamOverlayPainter → esm/CamOverlayPainter}/Painter.js +0 -0
  133. /package/{CamOverlayPainter → esm/CamOverlayPainter}/ResourceManager.js +0 -0
  134. /package/{CamScripterAPI.js → esm/CamScripterAPI.js} +0 -0
  135. /package/{CamScripterAPICameraEventsGenerator.js → esm/CamScripterAPICameraEventsGenerator.js} +0 -0
  136. /package/{CamStreamerAPI.js → esm/CamStreamerAPI.js} +0 -0
  137. /package/{CreatePackage.js → esm/CreatePackage.js} +0 -0
  138. /package/{VapixAPI.js → esm/VapixAPI.js} +0 -0
  139. /package/{VapixEvents.js → esm/VapixEvents.js} +0 -0
  140. /package/{errors → esm/errors}/errors.js +0 -0
  141. /package/{events → esm/events}/AxisCameraStationEvents.js +0 -0
  142. /package/{events → esm/events}/GenetecAgent.js +0 -0
  143. /package/{internal → esm/internal}/Digest.js +0 -0
  144. /package/{internal → esm/internal}/ProxyClient.js +0 -0
  145. /package/{internal → esm/internal}/constants.js +0 -0
  146. /package/{internal → esm/internal}/transformers.js +0 -0
  147. /package/{internal → esm/internal}/utils.js +0 -0
  148. /package/{internal → esm/internal}/versionCompare.js +0 -0
  149. /package/{node → esm/node}/DefaultClient.js +0 -0
  150. /package/{node → esm/node}/HttpRequestSender.js +0 -0
  151. /package/{node → esm/node}/HttpServer.js +0 -0
  152. /package/{node → esm/node}/WsClient.js +0 -0
  153. /package/{node → esm/node}/WsEventClient.js +0 -0
  154. /package/{types → esm/types}/CamOverlayAPI.js +0 -0
  155. /package/{types → esm/types}/CamScripterAPI.js +0 -0
  156. /package/{types → esm/types}/CamStreamerAPI.js +0 -0
  157. /package/{types → esm/types}/CamSwitcherAPI.js +0 -0
  158. /package/{types/CamswitcherEvents.js → esm/types/CamSwitcherEvents.js} +0 -0
  159. /package/{types → esm/types}/VapixAPI.js +0 -0
  160. /package/{types → esm/types}/common.js +0 -0
  161. /package/{web → esm/web}/DefaultClient.js +0 -0
  162. /package/{web → esm/web}/WsClient.js +0 -0
@@ -0,0 +1,188 @@
1
+ import { HttpOptions } from '../internal/common';
2
+ import { z } from 'zod';
3
+ export type CamOverlayOptions = HttpOptions;
4
+ export type TFileType = 'image' | 'font';
5
+ export type TCoordinates = 'top_left' | 'top_right' | 'top' | 'bottom_left' | 'bottom_right' | 'bottom' | 'left' | 'right' | 'center' | '';
6
+ export declare const serviceSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
7
+ export type TService = z.infer<typeof serviceSchema>;
8
+ export type TServiceList = {
9
+ services: TService[];
10
+ };
11
+ export declare const fieldSchema: z.ZodObject<{
12
+ field_name: z.ZodString;
13
+ text: z.ZodString;
14
+ color: z.ZodOptional<z.ZodString>;
15
+ }, "strip", z.ZodTypeAny, {
16
+ field_name: string;
17
+ text: string;
18
+ color?: string | undefined;
19
+ }, {
20
+ field_name: string;
21
+ text: string;
22
+ color?: string | undefined;
23
+ }>;
24
+ export type TField = z.infer<typeof fieldSchema>;
25
+ export declare const fileSchema: z.ZodObject<{
26
+ name: z.ZodString;
27
+ path: z.ZodString;
28
+ storage: z.ZodString;
29
+ }, "strip", z.ZodTypeAny, {
30
+ path: string;
31
+ name: string;
32
+ storage: string;
33
+ }, {
34
+ path: string;
35
+ name: string;
36
+ storage: string;
37
+ }>;
38
+ export type TFile = z.infer<typeof fileSchema>;
39
+ export declare const fileListSchema: z.ZodArray<z.ZodObject<{
40
+ name: z.ZodString;
41
+ path: z.ZodString;
42
+ storage: z.ZodString;
43
+ }, "strip", z.ZodTypeAny, {
44
+ path: string;
45
+ name: string;
46
+ storage: string;
47
+ }, {
48
+ path: string;
49
+ name: string;
50
+ storage: string;
51
+ }>, "many">;
52
+ export type TFileList = z.infer<typeof fileListSchema>;
53
+ export declare enum ImageType {
54
+ PNG = 0,
55
+ JPEG = 1
56
+ }
57
+ export declare const fontStorageSchema: z.ZodTuple<[z.ZodObject<{
58
+ type: z.ZodLiteral<"SD0">;
59
+ state: z.ZodLiteral<"SD Card">;
60
+ }, "strip", z.ZodTypeAny, {
61
+ type: "SD0";
62
+ state: "SD Card";
63
+ }, {
64
+ type: "SD0";
65
+ state: "SD Card";
66
+ }>, z.ZodObject<{
67
+ type: z.ZodLiteral<"flash">;
68
+ state: z.ZodString;
69
+ }, "strip", z.ZodTypeAny, {
70
+ type: "flash";
71
+ state: string;
72
+ }, {
73
+ type: "flash";
74
+ state: string;
75
+ }>], null>;
76
+ export type TFontStorage = z.infer<typeof fontStorageSchema>;
77
+ export declare const imageStorageSchema: z.ZodTuple<[z.ZodObject<{
78
+ type: z.ZodLiteral<"SD0">;
79
+ state: z.ZodLiteral<"SD Card">;
80
+ }, "strip", z.ZodTypeAny, {
81
+ type: "SD0";
82
+ state: "SD Card";
83
+ }, {
84
+ type: "SD0";
85
+ state: "SD Card";
86
+ }>, z.ZodObject<{
87
+ type: z.ZodLiteral<"flash">;
88
+ state: z.ZodString;
89
+ }, "strip", z.ZodTypeAny, {
90
+ type: "flash";
91
+ state: string;
92
+ }, {
93
+ type: "flash";
94
+ state: string;
95
+ }>, z.ZodObject<{
96
+ type: z.ZodLiteral<"samba">;
97
+ state: z.ZodLiteral<"Microsoft Network Share">;
98
+ }, "strip", z.ZodTypeAny, {
99
+ type: "samba";
100
+ state: "Microsoft Network Share";
101
+ }, {
102
+ type: "samba";
103
+ state: "Microsoft Network Share";
104
+ }>, z.ZodObject<{
105
+ type: z.ZodLiteral<"url">;
106
+ state: z.ZodLiteral<"URL">;
107
+ }, "strip", z.ZodTypeAny, {
108
+ type: "url";
109
+ state: "URL";
110
+ }, {
111
+ type: "url";
112
+ state: "URL";
113
+ }>, z.ZodObject<{
114
+ type: z.ZodLiteral<"ftp">;
115
+ state: z.ZodLiteral<"FTP">;
116
+ }, "strip", z.ZodTypeAny, {
117
+ type: "ftp";
118
+ state: "FTP";
119
+ }, {
120
+ type: "ftp";
121
+ state: "FTP";
122
+ }>], null>;
123
+ export type TImageStorage = z.infer<typeof imageStorageSchema>;
124
+ export declare const storageSchema: z.ZodUnion<[z.ZodTuple<[z.ZodObject<{
125
+ type: z.ZodLiteral<"SD0">;
126
+ state: z.ZodLiteral<"SD Card">;
127
+ }, "strip", z.ZodTypeAny, {
128
+ type: "SD0";
129
+ state: "SD Card";
130
+ }, {
131
+ type: "SD0";
132
+ state: "SD Card";
133
+ }>, z.ZodObject<{
134
+ type: z.ZodLiteral<"flash">;
135
+ state: z.ZodString;
136
+ }, "strip", z.ZodTypeAny, {
137
+ type: "flash";
138
+ state: string;
139
+ }, {
140
+ type: "flash";
141
+ state: string;
142
+ }>], null>, z.ZodTuple<[z.ZodObject<{
143
+ type: z.ZodLiteral<"SD0">;
144
+ state: z.ZodLiteral<"SD Card">;
145
+ }, "strip", z.ZodTypeAny, {
146
+ type: "SD0";
147
+ state: "SD Card";
148
+ }, {
149
+ type: "SD0";
150
+ state: "SD Card";
151
+ }>, z.ZodObject<{
152
+ type: z.ZodLiteral<"flash">;
153
+ state: z.ZodString;
154
+ }, "strip", z.ZodTypeAny, {
155
+ type: "flash";
156
+ state: string;
157
+ }, {
158
+ type: "flash";
159
+ state: string;
160
+ }>, z.ZodObject<{
161
+ type: z.ZodLiteral<"samba">;
162
+ state: z.ZodLiteral<"Microsoft Network Share">;
163
+ }, "strip", z.ZodTypeAny, {
164
+ type: "samba";
165
+ state: "Microsoft Network Share";
166
+ }, {
167
+ type: "samba";
168
+ state: "Microsoft Network Share";
169
+ }>, z.ZodObject<{
170
+ type: z.ZodLiteral<"url">;
171
+ state: z.ZodLiteral<"URL">;
172
+ }, "strip", z.ZodTypeAny, {
173
+ type: "url";
174
+ state: "URL";
175
+ }, {
176
+ type: "url";
177
+ state: "URL";
178
+ }>, z.ZodObject<{
179
+ type: z.ZodLiteral<"ftp">;
180
+ state: z.ZodLiteral<"FTP">;
181
+ }, "strip", z.ZodTypeAny, {
182
+ type: "ftp";
183
+ state: "FTP";
184
+ }, {
185
+ type: "ftp";
186
+ state: "FTP";
187
+ }>], null>]>;
188
+ export type TStorage = z.infer<typeof storageSchema>;
@@ -0,0 +1,67 @@
1
+ import { HttpOptions } from '../internal/common';
2
+ import { z } from 'zod';
3
+ export type CamScripterOptions = HttpOptions;
4
+ export type TStorageType = 'INTERNAL' | 'SD_CARD';
5
+ export type TNodeState = 'OK' | 'NOT_INSTALLED' | 'NOT_FOUND';
6
+ export declare const packageInfoListSchema: z.ZodArray<z.ZodObject<{
7
+ storage: z.ZodUnion<[z.ZodLiteral<"SD_CARD">, z.ZodLiteral<"INTERNAL">]>;
8
+ manifest: z.ZodObject<{
9
+ package_name: z.ZodString;
10
+ package_menu_name: z.ZodString;
11
+ package_version: z.ZodString;
12
+ vendor: z.ZodString;
13
+ required_camscripter_version: z.ZodString;
14
+ required_camscripter_rbi_version: z.ZodString;
15
+ ui_link: z.ZodString;
16
+ }, "strip", z.ZodTypeAny, {
17
+ package_name: string;
18
+ package_menu_name: string;
19
+ package_version: string;
20
+ vendor: string;
21
+ required_camscripter_version: string;
22
+ required_camscripter_rbi_version: string;
23
+ ui_link: string;
24
+ }, {
25
+ package_name: string;
26
+ package_menu_name: string;
27
+ package_version: string;
28
+ vendor: string;
29
+ required_camscripter_version: string;
30
+ required_camscripter_rbi_version: string;
31
+ ui_link: string;
32
+ }>;
33
+ }, "strip", z.ZodTypeAny, {
34
+ storage: "INTERNAL" | "SD_CARD";
35
+ manifest: {
36
+ package_name: string;
37
+ package_menu_name: string;
38
+ package_version: string;
39
+ vendor: string;
40
+ required_camscripter_version: string;
41
+ required_camscripter_rbi_version: string;
42
+ ui_link: string;
43
+ };
44
+ }, {
45
+ storage: "INTERNAL" | "SD_CARD";
46
+ manifest: {
47
+ package_name: string;
48
+ package_menu_name: string;
49
+ package_version: string;
50
+ vendor: string;
51
+ required_camscripter_version: string;
52
+ required_camscripter_rbi_version: string;
53
+ ui_link: string;
54
+ };
55
+ }>, "many">;
56
+ export type TPackageInfoList = z.infer<typeof packageInfoListSchema>;
57
+ export declare const storageSchema: z.ZodArray<z.ZodObject<{
58
+ type: z.ZodUnion<[z.ZodLiteral<"INTERNAL">, z.ZodLiteral<"SD_CARD">]>;
59
+ capacity_mb: z.ZodNumber;
60
+ }, "strip", z.ZodTypeAny, {
61
+ type: "INTERNAL" | "SD_CARD";
62
+ capacity_mb: number;
63
+ }, {
64
+ type: "INTERNAL" | "SD_CARD";
65
+ capacity_mb: number;
66
+ }>, "many">;
67
+ export type TStorage = z.infer<typeof storageSchema>;
@@ -0,0 +1,139 @@
1
+ import { HttpOptions } from '../internal/common';
2
+ import { z } from 'zod';
3
+ export type CamStreamerAPIOptions = HttpOptions;
4
+ export declare const streamAttributesSchema: z.ZodObject<{
5
+ enabled: z.ZodString;
6
+ active: z.ZodString;
7
+ audioSource: z.ZodString;
8
+ avSyncMsec: z.ZodString;
9
+ internalVapixParameters: z.ZodString;
10
+ userVapixParameters: z.ZodString;
11
+ outputParameters: z.ZodString;
12
+ outputType: z.ZodString;
13
+ mediaServerUrl: z.ZodString;
14
+ inputType: z.ZodString;
15
+ inputUrl: z.ZodString;
16
+ forceStereo: z.ZodString;
17
+ streamDelay: z.ZodString;
18
+ statusLed: z.ZodString;
19
+ statusPort: z.ZodString;
20
+ callApi: z.ZodString;
21
+ trigger: z.ZodString;
22
+ schedule: z.ZodString;
23
+ prepareAhead: z.ZodString;
24
+ startTime: z.ZodString;
25
+ stopTime: z.ZodString;
26
+ }, "strip", z.ZodTypeAny, {
27
+ enabled: string;
28
+ active: string;
29
+ audioSource: string;
30
+ avSyncMsec: string;
31
+ internalVapixParameters: string;
32
+ userVapixParameters: string;
33
+ outputParameters: string;
34
+ outputType: string;
35
+ mediaServerUrl: string;
36
+ inputType: string;
37
+ inputUrl: string;
38
+ forceStereo: string;
39
+ streamDelay: string;
40
+ statusLed: string;
41
+ statusPort: string;
42
+ callApi: string;
43
+ trigger: string;
44
+ schedule: string;
45
+ prepareAhead: string;
46
+ startTime: string;
47
+ stopTime: string;
48
+ }, {
49
+ enabled: string;
50
+ active: string;
51
+ audioSource: string;
52
+ avSyncMsec: string;
53
+ internalVapixParameters: string;
54
+ userVapixParameters: string;
55
+ outputParameters: string;
56
+ outputType: string;
57
+ mediaServerUrl: string;
58
+ inputType: string;
59
+ inputUrl: string;
60
+ forceStereo: string;
61
+ streamDelay: string;
62
+ statusLed: string;
63
+ statusPort: string;
64
+ callApi: string;
65
+ trigger: string;
66
+ schedule: string;
67
+ prepareAhead: string;
68
+ startTime: string;
69
+ stopTime: string;
70
+ }>;
71
+ export type TStreamAttributes = z.infer<typeof streamAttributesSchema>;
72
+ export declare const streamListSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
73
+ enabled: z.ZodString;
74
+ active: z.ZodString;
75
+ audioSource: z.ZodString;
76
+ avSyncMsec: z.ZodString;
77
+ internalVapixParameters: z.ZodString;
78
+ userVapixParameters: z.ZodString;
79
+ outputParameters: z.ZodString;
80
+ outputType: z.ZodString;
81
+ mediaServerUrl: z.ZodString;
82
+ inputType: z.ZodString;
83
+ inputUrl: z.ZodString;
84
+ forceStereo: z.ZodString;
85
+ streamDelay: z.ZodString;
86
+ statusLed: z.ZodString;
87
+ statusPort: z.ZodString;
88
+ callApi: z.ZodString;
89
+ trigger: z.ZodString;
90
+ schedule: z.ZodString;
91
+ prepareAhead: z.ZodString;
92
+ startTime: z.ZodString;
93
+ stopTime: z.ZodString;
94
+ }, "strip", z.ZodTypeAny, {
95
+ enabled: string;
96
+ active: string;
97
+ audioSource: string;
98
+ avSyncMsec: string;
99
+ internalVapixParameters: string;
100
+ userVapixParameters: string;
101
+ outputParameters: string;
102
+ outputType: string;
103
+ mediaServerUrl: string;
104
+ inputType: string;
105
+ inputUrl: string;
106
+ forceStereo: string;
107
+ streamDelay: string;
108
+ statusLed: string;
109
+ statusPort: string;
110
+ callApi: string;
111
+ trigger: string;
112
+ schedule: string;
113
+ prepareAhead: string;
114
+ startTime: string;
115
+ stopTime: string;
116
+ }, {
117
+ enabled: string;
118
+ active: string;
119
+ audioSource: string;
120
+ avSyncMsec: string;
121
+ internalVapixParameters: string;
122
+ userVapixParameters: string;
123
+ outputParameters: string;
124
+ outputType: string;
125
+ mediaServerUrl: string;
126
+ inputType: string;
127
+ inputUrl: string;
128
+ forceStereo: string;
129
+ streamDelay: string;
130
+ statusLed: string;
131
+ statusPort: string;
132
+ callApi: string;
133
+ trigger: string;
134
+ schedule: string;
135
+ prepareAhead: string;
136
+ startTime: string;
137
+ stopTime: string;
138
+ }>>;
139
+ export type TStreamList = z.infer<typeof streamListSchema>;