camstreamerlib 4.0.0-beta.97 → 4.0.1
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 +44 -15
- package/cjs/CamOverlayAPI.d.ts +147 -109
- package/cjs/CamOverlayAPI.js +14 -63
- package/cjs/CamScripterAPI.d.ts +5 -8
- package/cjs/CamScripterAPI.js +11 -29
- package/cjs/CamStreamerAPI.d.ts +2745 -589
- package/cjs/CamStreamerAPI.js +68 -76
- package/cjs/CamSwitcherAPI.d.ts +23 -22
- package/cjs/CamSwitcherAPI.js +30 -88
- package/cjs/PlaneTrackerAPI.d.ts +28 -30
- package/cjs/PlaneTrackerAPI.js +20 -75
- package/cjs/VapixAPI.d.ts +36 -23
- package/cjs/VapixAPI.js +227 -106
- package/cjs/errors/errors.d.ts +11 -5
- package/cjs/errors/errors.js +5 -1
- package/cjs/index.d.ts +1 -0
- package/cjs/index.js +1 -0
- package/cjs/internal/BasicAPI.d.ts +15 -0
- package/cjs/internal/BasicAPI.js +93 -0
- package/cjs/internal/WsEvents.d.ts +1 -0
- package/cjs/internal/WsEvents.js +5 -0
- package/cjs/internal/constants.d.ts +1 -0
- package/cjs/internal/constants.js +2 -1
- package/cjs/internal/convertors.d.ts +6 -0
- package/cjs/internal/convertors.js +115 -0
- package/cjs/internal/transformers.js +8 -8
- package/cjs/internal/types.d.ts +3 -0
- package/cjs/internal/versionCompare.d.ts +2 -2
- package/cjs/types/CamOverlayAPI/CamOverlayAPI.d.ts +894 -374
- package/cjs/types/CamOverlayAPI/CamOverlayAPI.js +54 -11
- package/cjs/types/CamOverlayAPI/accuweatherSchema.d.ts +10 -10
- package/cjs/types/CamOverlayAPI/customGraphicsSchema.d.ts +40 -40
- package/cjs/types/CamOverlayAPI/htmlOverlaySchema.d.ts +81 -0
- package/cjs/types/CamOverlayAPI/htmlOverlaySchema.js +21 -0
- package/cjs/types/CamOverlayAPI/imagesSchema.d.ts +10 -10
- package/cjs/types/CamOverlayAPI/index.d.ts +1 -0
- package/cjs/types/CamOverlayAPI/index.js +1 -0
- package/cjs/types/CamOverlayAPI/infotickerSchema.d.ts +8 -8
- package/cjs/types/CamOverlayAPI/pipSchema.d.ts +8 -8
- package/cjs/types/CamOverlayAPI/ptzCompassSchema.d.ts +10 -10
- package/cjs/types/CamOverlayAPI/ptzSchema.d.ts +13 -13
- package/cjs/types/CamOverlayAPI/scoreBoardSchema.d.ts +18 -18
- package/cjs/types/CamOverlayAPI/screenSharingSchema.d.ts +8 -8
- package/cjs/types/CamOverlayAPI/serviceCommonTypes.d.ts +17 -16
- package/cjs/types/CamOverlayAPI/serviceCommonTypes.js +6 -3
- package/cjs/types/CamOverlayAPI/webCameraSharingSchema.d.ts +8 -8
- package/cjs/types/CamScripterAPI.d.ts +0 -11
- package/cjs/types/CamScripterAPI.js +1 -5
- package/cjs/types/CamStreamerAPI/CamStreamerAPI.d.ts +19642 -3073
- package/cjs/types/CamStreamerAPI/CamStreamerAPI.js +126 -57
- package/cjs/types/CamStreamerAPI/facebookSchema.d.ts +434 -52
- package/cjs/types/CamStreamerAPI/facebookSchema.js +13 -1
- package/cjs/types/CamStreamerAPI/index.d.ts +1 -3
- package/cjs/types/CamStreamerAPI/index.js +1 -3
- package/cjs/types/CamStreamerAPI/oldStreamSchema.d.ts +47 -47
- package/cjs/types/CamStreamerAPI/oldStreamSchema.js +1 -1
- package/cjs/types/CamStreamerAPI/streamCommonTypes.d.ts +430 -219
- package/cjs/types/CamStreamerAPI/streamCommonTypes.js +116 -58
- package/cjs/types/CamStreamerAPI/streamsSchema.d.ts +8812 -0
- package/cjs/types/CamStreamerAPI/streamsSchema.js +81 -0
- package/cjs/types/CamStreamerAPI/windySchema.d.ts +394 -52
- package/cjs/types/CamStreamerAPI/windySchema.js +9 -1
- package/cjs/types/CamStreamerAPI/youtubeSchema.d.ts +402 -52
- package/cjs/types/CamStreamerAPI/youtubeSchema.js +12 -1
- package/cjs/types/CamSwitcherAPI.d.ts +96 -91
- package/cjs/types/CamSwitcherAPI.js +9 -9
- package/cjs/types/GenetecAgent.d.ts +2 -2
- package/cjs/types/PlaneTrackerAPI.d.ts +60 -47
- package/cjs/types/PlaneTrackerAPI.js +5 -2
- package/cjs/types/VapixAPI.d.ts +51 -32
- package/cjs/types/VapixAPI.js +10 -3
- package/cjs/types/common.d.ts +27 -0
- package/cjs/types/common.js +13 -1
- package/cjs/types/ws/CamStreamerEvents.d.ts +110 -77
- package/cjs/types/ws/CamStreamerEvents.js +11 -7
- package/cjs/types/ws/CamSwitcherEvents.d.ts +8 -8
- package/cjs/types/ws/PlaneTrackerEvents.d.ts +3 -3
- package/esm/CamOverlayAPI.js +16 -65
- package/esm/CamScripterAPI.js +9 -30
- package/esm/CamStreamerAPI.js +70 -78
- package/esm/CamSwitcherAPI.js +31 -89
- package/esm/PlaneTrackerAPI.js +21 -76
- package/esm/VapixAPI.js +228 -107
- package/esm/errors/errors.js +5 -1
- package/esm/index.js +1 -0
- package/esm/internal/BasicAPI.js +89 -0
- package/esm/internal/WsEvents.js +5 -0
- package/esm/internal/constants.js +1 -0
- package/esm/internal/convertors.js +108 -0
- package/esm/internal/transformers.js +1 -1
- package/esm/types/CamOverlayAPI/CamOverlayAPI.js +47 -10
- package/esm/types/CamOverlayAPI/htmlOverlaySchema.js +18 -0
- package/esm/types/CamOverlayAPI/index.js +1 -0
- package/esm/types/CamOverlayAPI/serviceCommonTypes.js +6 -3
- package/esm/types/CamScripterAPI.js +0 -4
- package/esm/types/CamStreamerAPI/CamStreamerAPI.js +109 -41
- package/esm/types/CamStreamerAPI/facebookSchema.js +13 -1
- package/esm/types/CamStreamerAPI/index.js +1 -3
- package/esm/types/CamStreamerAPI/oldStreamSchema.js +1 -1
- package/esm/types/CamStreamerAPI/streamCommonTypes.js +116 -58
- package/esm/types/CamStreamerAPI/streamsSchema.js +75 -0
- package/esm/types/CamStreamerAPI/windySchema.js +9 -1
- package/esm/types/CamStreamerAPI/youtubeSchema.js +12 -1
- package/esm/types/CamSwitcherAPI.js +8 -8
- package/esm/types/PlaneTrackerAPI.js +5 -2
- package/esm/types/VapixAPI.js +9 -2
- package/esm/types/common.js +12 -0
- package/esm/types/ws/CamStreamerEvents.js +11 -7
- package/package.json +4 -4
- package/types/CamOverlayAPI.d.ts +147 -109
- package/types/CamScripterAPI.d.ts +5 -8
- package/types/CamStreamerAPI.d.ts +2745 -589
- package/types/CamSwitcherAPI.d.ts +23 -22
- package/types/PlaneTrackerAPI.d.ts +28 -30
- package/types/VapixAPI.d.ts +36 -23
- package/types/errors/errors.d.ts +11 -5
- package/types/index.d.ts +1 -0
- package/types/internal/BasicAPI.d.ts +15 -0
- package/types/internal/WsEvents.d.ts +1 -0
- package/types/internal/constants.d.ts +1 -0
- package/types/internal/convertors.d.ts +6 -0
- package/types/internal/types.d.ts +3 -0
- package/types/internal/versionCompare.d.ts +2 -2
- package/types/types/CamOverlayAPI/CamOverlayAPI.d.ts +894 -374
- package/types/types/CamOverlayAPI/accuweatherSchema.d.ts +10 -10
- package/types/types/CamOverlayAPI/customGraphicsSchema.d.ts +40 -40
- package/types/types/CamOverlayAPI/htmlOverlaySchema.d.ts +81 -0
- package/types/types/CamOverlayAPI/imagesSchema.d.ts +10 -10
- package/types/types/CamOverlayAPI/index.d.ts +1 -0
- package/types/types/CamOverlayAPI/infotickerSchema.d.ts +8 -8
- package/types/types/CamOverlayAPI/pipSchema.d.ts +8 -8
- package/types/types/CamOverlayAPI/ptzCompassSchema.d.ts +10 -10
- package/types/types/CamOverlayAPI/ptzSchema.d.ts +13 -13
- package/types/types/CamOverlayAPI/scoreBoardSchema.d.ts +18 -18
- package/types/types/CamOverlayAPI/screenSharingSchema.d.ts +8 -8
- package/types/types/CamOverlayAPI/serviceCommonTypes.d.ts +17 -16
- package/types/types/CamOverlayAPI/webCameraSharingSchema.d.ts +8 -8
- package/types/types/CamScripterAPI.d.ts +0 -11
- package/types/types/CamStreamerAPI/CamStreamerAPI.d.ts +19642 -3073
- package/types/types/CamStreamerAPI/facebookSchema.d.ts +434 -52
- package/types/types/CamStreamerAPI/index.d.ts +1 -3
- package/types/types/CamStreamerAPI/oldStreamSchema.d.ts +47 -47
- package/types/types/CamStreamerAPI/streamCommonTypes.d.ts +430 -219
- package/types/types/CamStreamerAPI/streamsSchema.d.ts +8812 -0
- package/types/types/CamStreamerAPI/windySchema.d.ts +394 -52
- package/types/types/CamStreamerAPI/youtubeSchema.d.ts +402 -52
- package/types/types/CamSwitcherAPI.d.ts +96 -91
- package/types/types/GenetecAgent.d.ts +2 -2
- package/types/types/PlaneTrackerAPI.d.ts +60 -47
- package/types/types/VapixAPI.d.ts +51 -32
- package/types/types/common.d.ts +27 -0
- package/types/types/ws/CamStreamerEvents.d.ts +110 -77
- package/types/types/ws/CamSwitcherEvents.d.ts +8 -8
- package/types/types/ws/PlaneTrackerEvents.d.ts +3 -3
- package/cjs/types/CamStreamerAPI/churchSchema.d.ts +0 -202
- package/cjs/types/CamStreamerAPI/churchSchema.js +0 -11
- package/cjs/types/CamStreamerAPI/daCastSchema.d.ts +0 -202
- package/cjs/types/CamStreamerAPI/daCastSchema.js +0 -11
- package/cjs/types/CamStreamerAPI/dailymotionSchema.d.ts +0 -202
- package/cjs/types/CamStreamerAPI/dailymotionSchema.js +0 -11
- package/cjs/types/CamStreamerAPI/gameChangerSchema.d.ts +0 -202
- package/cjs/types/CamStreamerAPI/gameChangerSchema.js +0 -11
- package/cjs/types/CamStreamerAPI/hlsPullSchema.d.ts +0 -202
- package/cjs/types/CamStreamerAPI/hlsPullSchema.js +0 -11
- package/cjs/types/CamStreamerAPI/hlsPushSchema.d.ts +0 -202
- package/cjs/types/CamStreamerAPI/hlsPushSchema.js +0 -11
- package/cjs/types/CamStreamerAPI/ibmSchema.d.ts +0 -202
- package/cjs/types/CamStreamerAPI/ibmSchema.js +0 -11
- package/cjs/types/CamStreamerAPI/microsoftAzureSchema.d.ts +0 -202
- package/cjs/types/CamStreamerAPI/microsoftAzureSchema.js +0 -11
- package/cjs/types/CamStreamerAPI/microsoftStreamSchema.d.ts +0 -202
- package/cjs/types/CamStreamerAPI/microsoftStreamSchema.js +0 -11
- package/cjs/types/CamStreamerAPI/mpegDvbSchema.d.ts +0 -250
- package/cjs/types/CamStreamerAPI/mpegDvbSchema.js +0 -27
- package/cjs/types/CamStreamerAPI/rtmpSchema.d.ts +0 -211
- package/cjs/types/CamStreamerAPI/rtmpSchema.js +0 -14
- package/cjs/types/CamStreamerAPI/sdCardSchema.d.ts +0 -202
- package/cjs/types/CamStreamerAPI/sdCardSchema.js +0 -11
- package/cjs/types/CamStreamerAPI/srtSchema.d.ts +0 -202
- package/cjs/types/CamStreamerAPI/srtSchema.js +0 -11
- package/cjs/types/CamStreamerAPI/twitchSchema.d.ts +0 -202
- package/cjs/types/CamStreamerAPI/twitchSchema.js +0 -11
- package/cjs/types/CamStreamerAPI/vimeoSchema.d.ts +0 -202
- package/cjs/types/CamStreamerAPI/vimeoSchema.js +0 -11
- package/cjs/types/CamStreamerAPI/wowzaSchema.d.ts +0 -202
- package/cjs/types/CamStreamerAPI/wowzaSchema.js +0 -11
- package/esm/types/CamStreamerAPI/churchSchema.js +0 -5
- package/esm/types/CamStreamerAPI/daCastSchema.js +0 -5
- package/esm/types/CamStreamerAPI/dailymotionSchema.js +0 -5
- package/esm/types/CamStreamerAPI/gameChangerSchema.js +0 -5
- package/esm/types/CamStreamerAPI/hlsPullSchema.js +0 -5
- package/esm/types/CamStreamerAPI/hlsPushSchema.js +0 -5
- package/esm/types/CamStreamerAPI/ibmSchema.js +0 -5
- package/esm/types/CamStreamerAPI/microsoftAzureSchema.js +0 -5
- package/esm/types/CamStreamerAPI/microsoftStreamSchema.js +0 -5
- package/esm/types/CamStreamerAPI/mpegDvbSchema.js +0 -21
- package/esm/types/CamStreamerAPI/rtmpSchema.js +0 -8
- package/esm/types/CamStreamerAPI/sdCardSchema.js +0 -5
- package/esm/types/CamStreamerAPI/srtSchema.js +0 -5
- package/esm/types/CamStreamerAPI/twitchSchema.js +0 -5
- package/esm/types/CamStreamerAPI/vimeoSchema.js +0 -5
- package/esm/types/CamStreamerAPI/wowzaSchema.js +0 -5
- package/types/types/CamStreamerAPI/churchSchema.d.ts +0 -202
- package/types/types/CamStreamerAPI/daCastSchema.d.ts +0 -202
- package/types/types/CamStreamerAPI/dailymotionSchema.d.ts +0 -202
- package/types/types/CamStreamerAPI/gameChangerSchema.d.ts +0 -202
- package/types/types/CamStreamerAPI/hlsPullSchema.d.ts +0 -202
- package/types/types/CamStreamerAPI/hlsPushSchema.d.ts +0 -202
- package/types/types/CamStreamerAPI/ibmSchema.d.ts +0 -202
- package/types/types/CamStreamerAPI/microsoftAzureSchema.d.ts +0 -202
- package/types/types/CamStreamerAPI/microsoftStreamSchema.d.ts +0 -202
- package/types/types/CamStreamerAPI/mpegDvbSchema.d.ts +0 -250
- package/types/types/CamStreamerAPI/rtmpSchema.d.ts +0 -211
- package/types/types/CamStreamerAPI/sdCardSchema.d.ts +0 -202
- package/types/types/CamStreamerAPI/srtSchema.d.ts +0 -202
- package/types/types/CamStreamerAPI/twitchSchema.d.ts +0 -202
- package/types/types/CamStreamerAPI/vimeoSchema.d.ts +0 -202
- package/types/types/CamStreamerAPI/wowzaSchema.d.ts +0 -202
|
@@ -23,47 +23,47 @@ export declare const oldStringStreamSchema: z.ZodObject<{
|
|
|
23
23
|
stopTime: z.ZodString;
|
|
24
24
|
}, "strip", z.ZodTypeAny, {
|
|
25
25
|
enabled: string;
|
|
26
|
+
active: string;
|
|
27
|
+
callApi: string;
|
|
28
|
+
trigger: string;
|
|
26
29
|
startTime: string;
|
|
27
30
|
stopTime: string;
|
|
28
31
|
schedule: string;
|
|
29
|
-
active: string;
|
|
30
|
-
trigger: string;
|
|
31
|
-
inputType: string;
|
|
32
32
|
internalVapixParameters: string;
|
|
33
|
-
audioSource: string;
|
|
34
|
-
avSyncMsec: string;
|
|
35
33
|
userVapixParameters: string;
|
|
34
|
+
forceStereo: string;
|
|
35
|
+
avSyncMsec: string;
|
|
36
|
+
audioSource: string;
|
|
36
37
|
outputParameters: string;
|
|
37
38
|
outputType: string;
|
|
38
39
|
mediaServerUrl: string;
|
|
40
|
+
inputType: string;
|
|
39
41
|
inputUrl: string;
|
|
40
|
-
forceStereo: string;
|
|
41
42
|
streamDelay: string;
|
|
42
43
|
statusLed: string;
|
|
43
44
|
statusPort: string;
|
|
44
|
-
callApi: string;
|
|
45
45
|
prepareAhead: string;
|
|
46
46
|
}, {
|
|
47
47
|
enabled: string;
|
|
48
|
+
active: string;
|
|
49
|
+
callApi: string;
|
|
50
|
+
trigger: string;
|
|
48
51
|
startTime: string;
|
|
49
52
|
stopTime: string;
|
|
50
53
|
schedule: string;
|
|
51
|
-
active: string;
|
|
52
|
-
trigger: string;
|
|
53
|
-
inputType: string;
|
|
54
54
|
internalVapixParameters: string;
|
|
55
|
-
audioSource: string;
|
|
56
|
-
avSyncMsec: string;
|
|
57
55
|
userVapixParameters: string;
|
|
56
|
+
forceStereo: string;
|
|
57
|
+
avSyncMsec: string;
|
|
58
|
+
audioSource: string;
|
|
58
59
|
outputParameters: string;
|
|
59
60
|
outputType: string;
|
|
60
61
|
mediaServerUrl: string;
|
|
62
|
+
inputType: string;
|
|
61
63
|
inputUrl: string;
|
|
62
|
-
forceStereo: string;
|
|
63
64
|
streamDelay: string;
|
|
64
65
|
statusLed: string;
|
|
65
66
|
statusPort: string;
|
|
66
|
-
callApi: string;
|
|
67
67
|
prepareAhead: string;
|
|
68
68
|
}>;
|
|
69
69
|
export declare const oldStringStreamSchemaWithId: z.ZodObject<{
|
|
@@ -89,52 +89,52 @@ export declare const oldStringStreamSchemaWithId: z.ZodObject<{
|
|
|
89
89
|
startTime: z.ZodString;
|
|
90
90
|
stopTime: z.ZodString;
|
|
91
91
|
} & {
|
|
92
|
-
|
|
92
|
+
streamId: z.ZodString;
|
|
93
93
|
}, "strip", z.ZodTypeAny, {
|
|
94
|
+
streamId: string;
|
|
94
95
|
enabled: string;
|
|
95
|
-
|
|
96
|
+
active: string;
|
|
97
|
+
callApi: string;
|
|
98
|
+
trigger: string;
|
|
96
99
|
startTime: string;
|
|
97
100
|
stopTime: string;
|
|
98
101
|
schedule: string;
|
|
99
|
-
active: string;
|
|
100
|
-
trigger: string;
|
|
101
|
-
inputType: string;
|
|
102
102
|
internalVapixParameters: string;
|
|
103
|
-
audioSource: string;
|
|
104
|
-
avSyncMsec: string;
|
|
105
103
|
userVapixParameters: string;
|
|
104
|
+
forceStereo: string;
|
|
105
|
+
avSyncMsec: string;
|
|
106
|
+
audioSource: string;
|
|
106
107
|
outputParameters: string;
|
|
107
108
|
outputType: string;
|
|
108
109
|
mediaServerUrl: string;
|
|
110
|
+
inputType: string;
|
|
109
111
|
inputUrl: string;
|
|
110
|
-
forceStereo: string;
|
|
111
112
|
streamDelay: string;
|
|
112
113
|
statusLed: string;
|
|
113
114
|
statusPort: string;
|
|
114
|
-
callApi: string;
|
|
115
115
|
prepareAhead: string;
|
|
116
116
|
}, {
|
|
117
|
+
streamId: string;
|
|
117
118
|
enabled: string;
|
|
118
|
-
|
|
119
|
+
active: string;
|
|
120
|
+
callApi: string;
|
|
121
|
+
trigger: string;
|
|
119
122
|
startTime: string;
|
|
120
123
|
stopTime: string;
|
|
121
124
|
schedule: string;
|
|
122
|
-
active: string;
|
|
123
|
-
trigger: string;
|
|
124
|
-
inputType: string;
|
|
125
125
|
internalVapixParameters: string;
|
|
126
|
-
audioSource: string;
|
|
127
|
-
avSyncMsec: string;
|
|
128
126
|
userVapixParameters: string;
|
|
127
|
+
forceStereo: string;
|
|
128
|
+
avSyncMsec: string;
|
|
129
|
+
audioSource: string;
|
|
129
130
|
outputParameters: string;
|
|
130
131
|
outputType: string;
|
|
131
132
|
mediaServerUrl: string;
|
|
133
|
+
inputType: string;
|
|
132
134
|
inputUrl: string;
|
|
133
|
-
forceStereo: string;
|
|
134
135
|
streamDelay: string;
|
|
135
136
|
statusLed: string;
|
|
136
137
|
statusPort: string;
|
|
137
|
-
callApi: string;
|
|
138
138
|
prepareAhead: string;
|
|
139
139
|
}>;
|
|
140
140
|
export type TOldStringStream = z.infer<typeof oldStringStreamSchema>;
|
|
@@ -162,47 +162,47 @@ export declare const oldStreamSchema: z.ZodObject<{
|
|
|
162
162
|
stopTime: z.ZodNullable<z.ZodNumber>;
|
|
163
163
|
}, "strip", z.ZodTypeAny, {
|
|
164
164
|
enabled: 0 | 1;
|
|
165
|
+
active: 0 | 1;
|
|
166
|
+
callApi: number;
|
|
167
|
+
trigger: string;
|
|
165
168
|
startTime: number | null;
|
|
166
169
|
stopTime: number | null;
|
|
167
170
|
schedule: string;
|
|
168
|
-
active: 0 | 1;
|
|
169
|
-
trigger: string;
|
|
170
|
-
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
171
171
|
internalVapixParameters: string;
|
|
172
|
-
audioSource: string;
|
|
173
|
-
avSyncMsec: number;
|
|
174
172
|
userVapixParameters: string;
|
|
173
|
+
forceStereo: 0 | 1;
|
|
174
|
+
avSyncMsec: number;
|
|
175
|
+
audioSource: string;
|
|
175
176
|
outputParameters: string;
|
|
176
|
-
outputType: "video" | "
|
|
177
|
+
outputType: "video" | "images" | "none";
|
|
177
178
|
mediaServerUrl: string;
|
|
179
|
+
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
178
180
|
inputUrl: string;
|
|
179
|
-
forceStereo: 0 | 1;
|
|
180
181
|
streamDelay: number | null;
|
|
181
182
|
statusLed: number;
|
|
182
183
|
statusPort: string;
|
|
183
|
-
callApi: number;
|
|
184
184
|
prepareAhead: number;
|
|
185
185
|
}, {
|
|
186
186
|
enabled: 0 | 1;
|
|
187
|
+
active: 0 | 1;
|
|
188
|
+
callApi: number;
|
|
189
|
+
trigger: string;
|
|
187
190
|
startTime: number | null;
|
|
188
191
|
stopTime: number | null;
|
|
189
192
|
schedule: string;
|
|
190
|
-
active: 0 | 1;
|
|
191
|
-
trigger: string;
|
|
192
|
-
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
193
193
|
internalVapixParameters: string;
|
|
194
|
-
audioSource: string;
|
|
195
|
-
avSyncMsec: number;
|
|
196
194
|
userVapixParameters: string;
|
|
195
|
+
forceStereo: 0 | 1;
|
|
196
|
+
avSyncMsec: number;
|
|
197
|
+
audioSource: string;
|
|
197
198
|
outputParameters: string;
|
|
198
|
-
outputType: "video" | "
|
|
199
|
+
outputType: "video" | "images" | "none";
|
|
199
200
|
mediaServerUrl: string;
|
|
201
|
+
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
200
202
|
inputUrl: string;
|
|
201
|
-
forceStereo: 0 | 1;
|
|
202
203
|
streamDelay: number | null;
|
|
203
204
|
statusLed: number;
|
|
204
205
|
statusPort: string;
|
|
205
|
-
callApi: number;
|
|
206
206
|
prepareAhead: number;
|
|
207
207
|
}>;
|
|
208
208
|
export type TOldStream = z.infer<typeof oldStreamSchema>;
|
|
@@ -26,7 +26,7 @@ exports.oldStringStreamSchema = zod_1.z.object({
|
|
|
26
26
|
stopTime: zod_1.z.string(),
|
|
27
27
|
});
|
|
28
28
|
exports.oldStringStreamSchemaWithId = exports.oldStringStreamSchema.extend({
|
|
29
|
-
|
|
29
|
+
streamId: zod_1.z.string(),
|
|
30
30
|
});
|
|
31
31
|
exports.oldStreamSchema = zod_1.z.object({
|
|
32
32
|
enabled: zod_1.z.union([zod_1.z.literal(0), zod_1.z.literal(1)]),
|