camstreamerlib 4.0.0-beta.103 → 4.0.0-beta.104

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 (49) hide show
  1. package/cjs/CamStreamerAPI.d.ts +76 -38
  2. package/cjs/types/CamStreamerAPI/CamStreamerAPI.d.ts +342 -171
  3. package/cjs/types/CamStreamerAPI/churchSchema.d.ts +6 -3
  4. package/cjs/types/CamStreamerAPI/daCastSchema.d.ts +6 -3
  5. package/cjs/types/CamStreamerAPI/dailymotionSchema.d.ts +6 -3
  6. package/cjs/types/CamStreamerAPI/facebookSchema.d.ts +6 -3
  7. package/cjs/types/CamStreamerAPI/gameChangerSchema.d.ts +6 -3
  8. package/cjs/types/CamStreamerAPI/hlsPullSchema.d.ts +6 -3
  9. package/cjs/types/CamStreamerAPI/hlsPushSchema.d.ts +6 -3
  10. package/cjs/types/CamStreamerAPI/ibmSchema.d.ts +6 -3
  11. package/cjs/types/CamStreamerAPI/microsoftAzureSchema.d.ts +6 -3
  12. package/cjs/types/CamStreamerAPI/microsoftStreamSchema.d.ts +6 -3
  13. package/cjs/types/CamStreamerAPI/mpegDvbSchema.d.ts +6 -3
  14. package/cjs/types/CamStreamerAPI/oldStreamSchema.d.ts +6 -6
  15. package/cjs/types/CamStreamerAPI/rtmpSchema.d.ts +6 -3
  16. package/cjs/types/CamStreamerAPI/sdCardSchema.d.ts +6 -3
  17. package/cjs/types/CamStreamerAPI/srtSchema.d.ts +6 -3
  18. package/cjs/types/CamStreamerAPI/streamCommonTypes.d.ts +7 -4
  19. package/cjs/types/CamStreamerAPI/streamCommonTypes.js +2 -6
  20. package/cjs/types/CamStreamerAPI/twitchSchema.d.ts +6 -3
  21. package/cjs/types/CamStreamerAPI/vimeoSchema.d.ts +6 -3
  22. package/cjs/types/CamStreamerAPI/windySchema.d.ts +6 -3
  23. package/cjs/types/CamStreamerAPI/wowzaSchema.d.ts +6 -3
  24. package/cjs/types/CamStreamerAPI/youtubeSchema.d.ts +6 -3
  25. package/esm/types/CamStreamerAPI/streamCommonTypes.js +2 -6
  26. package/package.json +1 -1
  27. package/types/CamStreamerAPI.d.ts +76 -38
  28. package/types/types/CamStreamerAPI/CamStreamerAPI.d.ts +342 -171
  29. package/types/types/CamStreamerAPI/churchSchema.d.ts +6 -3
  30. package/types/types/CamStreamerAPI/daCastSchema.d.ts +6 -3
  31. package/types/types/CamStreamerAPI/dailymotionSchema.d.ts +6 -3
  32. package/types/types/CamStreamerAPI/facebookSchema.d.ts +6 -3
  33. package/types/types/CamStreamerAPI/gameChangerSchema.d.ts +6 -3
  34. package/types/types/CamStreamerAPI/hlsPullSchema.d.ts +6 -3
  35. package/types/types/CamStreamerAPI/hlsPushSchema.d.ts +6 -3
  36. package/types/types/CamStreamerAPI/ibmSchema.d.ts +6 -3
  37. package/types/types/CamStreamerAPI/microsoftAzureSchema.d.ts +6 -3
  38. package/types/types/CamStreamerAPI/microsoftStreamSchema.d.ts +6 -3
  39. package/types/types/CamStreamerAPI/mpegDvbSchema.d.ts +6 -3
  40. package/types/types/CamStreamerAPI/oldStreamSchema.d.ts +6 -6
  41. package/types/types/CamStreamerAPI/rtmpSchema.d.ts +6 -3
  42. package/types/types/CamStreamerAPI/sdCardSchema.d.ts +6 -3
  43. package/types/types/CamStreamerAPI/srtSchema.d.ts +6 -3
  44. package/types/types/CamStreamerAPI/streamCommonTypes.d.ts +7 -4
  45. package/types/types/CamStreamerAPI/twitchSchema.d.ts +6 -3
  46. package/types/types/CamStreamerAPI/vimeoSchema.d.ts +6 -3
  47. package/types/types/CamStreamerAPI/windySchema.d.ts +6 -3
  48. package/types/types/CamStreamerAPI/wowzaSchema.d.ts +6 -3
  49. package/types/types/CamStreamerAPI/youtubeSchema.d.ts +6 -3
@@ -98,9 +98,10 @@ export declare const churchSchema: z.ZodObject<{
98
98
  }[];
99
99
  }>]>;
100
100
  inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
101
+ inputUrl: z.ZodString;
101
102
  internalVapixParameters: z.ZodString;
102
103
  userVapixParameters: z.ZodString;
103
- streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTSP">, z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS">]>;
104
+ streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
104
105
  streamDelay: z.ZodObject<{
105
106
  enabled: z.ZodBoolean;
106
107
  timeS: z.ZodNumber;
@@ -202,9 +203,10 @@ export declare const churchSchema: z.ZodObject<{
202
203
  }[];
203
204
  };
204
205
  inputType: "RTSP_URL" | "CSw" | "CRS";
206
+ inputUrl: string;
205
207
  internalVapixParameters: string;
206
208
  userVapixParameters: string;
207
- streamingProtocol: "RTSP" | "RTMP" | "RTMPS" | "HLS";
209
+ streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
208
210
  streamDelay: {
209
211
  enabled: boolean;
210
212
  timeS: number;
@@ -253,9 +255,10 @@ export declare const churchSchema: z.ZodObject<{
253
255
  }[];
254
256
  };
255
257
  inputType: "RTSP_URL" | "CSw" | "CRS";
258
+ inputUrl: string;
256
259
  internalVapixParameters: string;
257
260
  userVapixParameters: string;
258
- streamingProtocol: "RTSP" | "RTMP" | "RTMPS" | "HLS";
261
+ streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
259
262
  streamDelay: {
260
263
  enabled: boolean;
261
264
  timeS: number;
@@ -98,9 +98,10 @@ export declare const daCastSchema: z.ZodObject<{
98
98
  }[];
99
99
  }>]>;
100
100
  inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
101
+ inputUrl: z.ZodString;
101
102
  internalVapixParameters: z.ZodString;
102
103
  userVapixParameters: z.ZodString;
103
- streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTSP">, z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS">]>;
104
+ streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
104
105
  streamDelay: z.ZodObject<{
105
106
  enabled: z.ZodBoolean;
106
107
  timeS: z.ZodNumber;
@@ -202,9 +203,10 @@ export declare const daCastSchema: z.ZodObject<{
202
203
  }[];
203
204
  };
204
205
  inputType: "RTSP_URL" | "CSw" | "CRS";
206
+ inputUrl: string;
205
207
  internalVapixParameters: string;
206
208
  userVapixParameters: string;
207
- streamingProtocol: "RTSP" | "RTMP" | "RTMPS" | "HLS";
209
+ streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
208
210
  streamDelay: {
209
211
  enabled: boolean;
210
212
  timeS: number;
@@ -253,9 +255,10 @@ export declare const daCastSchema: z.ZodObject<{
253
255
  }[];
254
256
  };
255
257
  inputType: "RTSP_URL" | "CSw" | "CRS";
258
+ inputUrl: string;
256
259
  internalVapixParameters: string;
257
260
  userVapixParameters: string;
258
- streamingProtocol: "RTSP" | "RTMP" | "RTMPS" | "HLS";
261
+ streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
259
262
  streamDelay: {
260
263
  enabled: boolean;
261
264
  timeS: number;
@@ -98,9 +98,10 @@ export declare const dailymotionSchema: z.ZodObject<{
98
98
  }[];
99
99
  }>]>;
100
100
  inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
101
+ inputUrl: z.ZodString;
101
102
  internalVapixParameters: z.ZodString;
102
103
  userVapixParameters: z.ZodString;
103
- streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTSP">, z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS">]>;
104
+ streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
104
105
  streamDelay: z.ZodObject<{
105
106
  enabled: z.ZodBoolean;
106
107
  timeS: z.ZodNumber;
@@ -202,9 +203,10 @@ export declare const dailymotionSchema: z.ZodObject<{
202
203
  }[];
203
204
  };
204
205
  inputType: "RTSP_URL" | "CSw" | "CRS";
206
+ inputUrl: string;
205
207
  internalVapixParameters: string;
206
208
  userVapixParameters: string;
207
- streamingProtocol: "RTSP" | "RTMP" | "RTMPS" | "HLS";
209
+ streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
208
210
  streamDelay: {
209
211
  enabled: boolean;
210
212
  timeS: number;
@@ -253,9 +255,10 @@ export declare const dailymotionSchema: z.ZodObject<{
253
255
  }[];
254
256
  };
255
257
  inputType: "RTSP_URL" | "CSw" | "CRS";
258
+ inputUrl: string;
256
259
  internalVapixParameters: string;
257
260
  userVapixParameters: string;
258
- streamingProtocol: "RTSP" | "RTMP" | "RTMPS" | "HLS";
261
+ streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
259
262
  streamDelay: {
260
263
  enabled: boolean;
261
264
  timeS: number;
@@ -98,9 +98,10 @@ export declare const facebookSchema: z.ZodObject<{
98
98
  }[];
99
99
  }>]>;
100
100
  inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
101
+ inputUrl: z.ZodString;
101
102
  internalVapixParameters: z.ZodString;
102
103
  userVapixParameters: z.ZodString;
103
- streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTSP">, z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS">]>;
104
+ streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
104
105
  streamDelay: z.ZodObject<{
105
106
  enabled: z.ZodBoolean;
106
107
  timeS: z.ZodNumber;
@@ -202,9 +203,10 @@ export declare const facebookSchema: z.ZodObject<{
202
203
  }[];
203
204
  };
204
205
  inputType: "RTSP_URL" | "CSw" | "CRS";
206
+ inputUrl: string;
205
207
  internalVapixParameters: string;
206
208
  userVapixParameters: string;
207
- streamingProtocol: "RTSP" | "RTMP" | "RTMPS" | "HLS";
209
+ streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
208
210
  streamDelay: {
209
211
  enabled: boolean;
210
212
  timeS: number;
@@ -253,9 +255,10 @@ export declare const facebookSchema: z.ZodObject<{
253
255
  }[];
254
256
  };
255
257
  inputType: "RTSP_URL" | "CSw" | "CRS";
258
+ inputUrl: string;
256
259
  internalVapixParameters: string;
257
260
  userVapixParameters: string;
258
- streamingProtocol: "RTSP" | "RTMP" | "RTMPS" | "HLS";
261
+ streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
259
262
  streamDelay: {
260
263
  enabled: boolean;
261
264
  timeS: number;
@@ -98,9 +98,10 @@ export declare const gameChangerSchema: z.ZodObject<{
98
98
  }[];
99
99
  }>]>;
100
100
  inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
101
+ inputUrl: z.ZodString;
101
102
  internalVapixParameters: z.ZodString;
102
103
  userVapixParameters: z.ZodString;
103
- streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTSP">, z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS">]>;
104
+ streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
104
105
  streamDelay: z.ZodObject<{
105
106
  enabled: z.ZodBoolean;
106
107
  timeS: z.ZodNumber;
@@ -202,9 +203,10 @@ export declare const gameChangerSchema: z.ZodObject<{
202
203
  }[];
203
204
  };
204
205
  inputType: "RTSP_URL" | "CSw" | "CRS";
206
+ inputUrl: string;
205
207
  internalVapixParameters: string;
206
208
  userVapixParameters: string;
207
- streamingProtocol: "RTSP" | "RTMP" | "RTMPS" | "HLS";
209
+ streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
208
210
  streamDelay: {
209
211
  enabled: boolean;
210
212
  timeS: number;
@@ -253,9 +255,10 @@ export declare const gameChangerSchema: z.ZodObject<{
253
255
  }[];
254
256
  };
255
257
  inputType: "RTSP_URL" | "CSw" | "CRS";
258
+ inputUrl: string;
256
259
  internalVapixParameters: string;
257
260
  userVapixParameters: string;
258
- streamingProtocol: "RTSP" | "RTMP" | "RTMPS" | "HLS";
261
+ streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
259
262
  streamDelay: {
260
263
  enabled: boolean;
261
264
  timeS: number;
@@ -98,9 +98,10 @@ export declare const hlsPullSchema: z.ZodObject<{
98
98
  }[];
99
99
  }>]>;
100
100
  inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
101
+ inputUrl: z.ZodString;
101
102
  internalVapixParameters: z.ZodString;
102
103
  userVapixParameters: z.ZodString;
103
- streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTSP">, z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS">]>;
104
+ streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
104
105
  streamDelay: z.ZodObject<{
105
106
  enabled: z.ZodBoolean;
106
107
  timeS: z.ZodNumber;
@@ -202,9 +203,10 @@ export declare const hlsPullSchema: z.ZodObject<{
202
203
  }[];
203
204
  };
204
205
  inputType: "RTSP_URL" | "CSw" | "CRS";
206
+ inputUrl: string;
205
207
  internalVapixParameters: string;
206
208
  userVapixParameters: string;
207
- streamingProtocol: "RTSP" | "RTMP" | "RTMPS" | "HLS";
209
+ streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
208
210
  streamDelay: {
209
211
  enabled: boolean;
210
212
  timeS: number;
@@ -253,9 +255,10 @@ export declare const hlsPullSchema: z.ZodObject<{
253
255
  }[];
254
256
  };
255
257
  inputType: "RTSP_URL" | "CSw" | "CRS";
258
+ inputUrl: string;
256
259
  internalVapixParameters: string;
257
260
  userVapixParameters: string;
258
- streamingProtocol: "RTSP" | "RTMP" | "RTMPS" | "HLS";
261
+ streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
259
262
  streamDelay: {
260
263
  enabled: boolean;
261
264
  timeS: number;
@@ -98,9 +98,10 @@ export declare const hlsPushSchema: z.ZodObject<{
98
98
  }[];
99
99
  }>]>;
100
100
  inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
101
+ inputUrl: z.ZodString;
101
102
  internalVapixParameters: z.ZodString;
102
103
  userVapixParameters: z.ZodString;
103
- streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTSP">, z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS">]>;
104
+ streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
104
105
  streamDelay: z.ZodObject<{
105
106
  enabled: z.ZodBoolean;
106
107
  timeS: z.ZodNumber;
@@ -202,9 +203,10 @@ export declare const hlsPushSchema: z.ZodObject<{
202
203
  }[];
203
204
  };
204
205
  inputType: "RTSP_URL" | "CSw" | "CRS";
206
+ inputUrl: string;
205
207
  internalVapixParameters: string;
206
208
  userVapixParameters: string;
207
- streamingProtocol: "RTSP" | "RTMP" | "RTMPS" | "HLS";
209
+ streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
208
210
  streamDelay: {
209
211
  enabled: boolean;
210
212
  timeS: number;
@@ -253,9 +255,10 @@ export declare const hlsPushSchema: z.ZodObject<{
253
255
  }[];
254
256
  };
255
257
  inputType: "RTSP_URL" | "CSw" | "CRS";
258
+ inputUrl: string;
256
259
  internalVapixParameters: string;
257
260
  userVapixParameters: string;
258
- streamingProtocol: "RTSP" | "RTMP" | "RTMPS" | "HLS";
261
+ streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
259
262
  streamDelay: {
260
263
  enabled: boolean;
261
264
  timeS: number;
@@ -98,9 +98,10 @@ export declare const ibmSchema: z.ZodObject<{
98
98
  }[];
99
99
  }>]>;
100
100
  inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
101
+ inputUrl: z.ZodString;
101
102
  internalVapixParameters: z.ZodString;
102
103
  userVapixParameters: z.ZodString;
103
- streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTSP">, z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS">]>;
104
+ streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
104
105
  streamDelay: z.ZodObject<{
105
106
  enabled: z.ZodBoolean;
106
107
  timeS: z.ZodNumber;
@@ -202,9 +203,10 @@ export declare const ibmSchema: z.ZodObject<{
202
203
  }[];
203
204
  };
204
205
  inputType: "RTSP_URL" | "CSw" | "CRS";
206
+ inputUrl: string;
205
207
  internalVapixParameters: string;
206
208
  userVapixParameters: string;
207
- streamingProtocol: "RTSP" | "RTMP" | "RTMPS" | "HLS";
209
+ streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
208
210
  streamDelay: {
209
211
  enabled: boolean;
210
212
  timeS: number;
@@ -253,9 +255,10 @@ export declare const ibmSchema: z.ZodObject<{
253
255
  }[];
254
256
  };
255
257
  inputType: "RTSP_URL" | "CSw" | "CRS";
258
+ inputUrl: string;
256
259
  internalVapixParameters: string;
257
260
  userVapixParameters: string;
258
- streamingProtocol: "RTSP" | "RTMP" | "RTMPS" | "HLS";
261
+ streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
259
262
  streamDelay: {
260
263
  enabled: boolean;
261
264
  timeS: number;
@@ -98,9 +98,10 @@ export declare const microsoftAzureSchema: z.ZodObject<{
98
98
  }[];
99
99
  }>]>;
100
100
  inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
101
+ inputUrl: z.ZodString;
101
102
  internalVapixParameters: z.ZodString;
102
103
  userVapixParameters: z.ZodString;
103
- streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTSP">, z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS">]>;
104
+ streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
104
105
  streamDelay: z.ZodObject<{
105
106
  enabled: z.ZodBoolean;
106
107
  timeS: z.ZodNumber;
@@ -202,9 +203,10 @@ export declare const microsoftAzureSchema: z.ZodObject<{
202
203
  }[];
203
204
  };
204
205
  inputType: "RTSP_URL" | "CSw" | "CRS";
206
+ inputUrl: string;
205
207
  internalVapixParameters: string;
206
208
  userVapixParameters: string;
207
- streamingProtocol: "RTSP" | "RTMP" | "RTMPS" | "HLS";
209
+ streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
208
210
  streamDelay: {
209
211
  enabled: boolean;
210
212
  timeS: number;
@@ -253,9 +255,10 @@ export declare const microsoftAzureSchema: z.ZodObject<{
253
255
  }[];
254
256
  };
255
257
  inputType: "RTSP_URL" | "CSw" | "CRS";
258
+ inputUrl: string;
256
259
  internalVapixParameters: string;
257
260
  userVapixParameters: string;
258
- streamingProtocol: "RTSP" | "RTMP" | "RTMPS" | "HLS";
261
+ streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
259
262
  streamDelay: {
260
263
  enabled: boolean;
261
264
  timeS: number;
@@ -98,9 +98,10 @@ export declare const microsoftStreamSchema: z.ZodObject<{
98
98
  }[];
99
99
  }>]>;
100
100
  inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
101
+ inputUrl: z.ZodString;
101
102
  internalVapixParameters: z.ZodString;
102
103
  userVapixParameters: z.ZodString;
103
- streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTSP">, z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS">]>;
104
+ streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
104
105
  streamDelay: z.ZodObject<{
105
106
  enabled: z.ZodBoolean;
106
107
  timeS: z.ZodNumber;
@@ -202,9 +203,10 @@ export declare const microsoftStreamSchema: z.ZodObject<{
202
203
  }[];
203
204
  };
204
205
  inputType: "RTSP_URL" | "CSw" | "CRS";
206
+ inputUrl: string;
205
207
  internalVapixParameters: string;
206
208
  userVapixParameters: string;
207
- streamingProtocol: "RTSP" | "RTMP" | "RTMPS" | "HLS";
209
+ streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
208
210
  streamDelay: {
209
211
  enabled: boolean;
210
212
  timeS: number;
@@ -253,9 +255,10 @@ export declare const microsoftStreamSchema: z.ZodObject<{
253
255
  }[];
254
256
  };
255
257
  inputType: "RTSP_URL" | "CSw" | "CRS";
258
+ inputUrl: string;
256
259
  internalVapixParameters: string;
257
260
  userVapixParameters: string;
258
- streamingProtocol: "RTSP" | "RTMP" | "RTMPS" | "HLS";
261
+ streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
259
262
  streamDelay: {
260
263
  enabled: boolean;
261
264
  timeS: number;
@@ -98,9 +98,10 @@ export declare const mpegDvbSchema: z.ZodObject<{
98
98
  }[];
99
99
  }>]>;
100
100
  inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
101
+ inputUrl: z.ZodString;
101
102
  internalVapixParameters: z.ZodString;
102
103
  userVapixParameters: z.ZodString;
103
- streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTSP">, z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS">]>;
104
+ streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
104
105
  streamDelay: z.ZodObject<{
105
106
  enabled: z.ZodBoolean;
106
107
  timeS: z.ZodNumber;
@@ -219,9 +220,10 @@ export declare const mpegDvbSchema: z.ZodObject<{
219
220
  }[];
220
221
  };
221
222
  inputType: "RTSP_URL" | "CSw" | "CRS";
223
+ inputUrl: string;
222
224
  internalVapixParameters: string;
223
225
  userVapixParameters: string;
224
- streamingProtocol: "RTSP" | "RTMP" | "RTMPS" | "HLS";
226
+ streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
225
227
  streamDelay: {
226
228
  enabled: boolean;
227
229
  timeS: number;
@@ -286,9 +288,10 @@ export declare const mpegDvbSchema: z.ZodObject<{
286
288
  }[];
287
289
  };
288
290
  inputType: "RTSP_URL" | "CSw" | "CRS";
291
+ inputUrl: string;
289
292
  internalVapixParameters: string;
290
293
  userVapixParameters: string;
291
- streamingProtocol: "RTSP" | "RTMP" | "RTMPS" | "HLS";
294
+ streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
292
295
  streamDelay: {
293
296
  enabled: boolean;
294
297
  timeS: number;
@@ -30,6 +30,7 @@ export declare const oldStringStreamSchema: z.ZodObject<{
30
30
  active: string;
31
31
  trigger: string;
32
32
  inputType: string;
33
+ inputUrl: string;
33
34
  internalVapixParameters: string;
34
35
  userVapixParameters: string;
35
36
  streamDelay: string;
@@ -37,7 +38,6 @@ export declare const oldStringStreamSchema: z.ZodObject<{
37
38
  outputParameters: string;
38
39
  outputType: string;
39
40
  mediaServerUrl: string;
40
- inputUrl: string;
41
41
  forceStereo: string;
42
42
  statusLed: string;
43
43
  statusPort: string;
@@ -52,6 +52,7 @@ export declare const oldStringStreamSchema: z.ZodObject<{
52
52
  active: string;
53
53
  trigger: string;
54
54
  inputType: string;
55
+ inputUrl: string;
55
56
  internalVapixParameters: string;
56
57
  userVapixParameters: string;
57
58
  streamDelay: string;
@@ -59,7 +60,6 @@ export declare const oldStringStreamSchema: z.ZodObject<{
59
60
  outputParameters: string;
60
61
  outputType: string;
61
62
  mediaServerUrl: string;
62
- inputUrl: string;
63
63
  forceStereo: string;
64
64
  statusLed: string;
65
65
  statusPort: string;
@@ -100,6 +100,7 @@ export declare const oldStringStreamSchemaWithId: z.ZodObject<{
100
100
  active: string;
101
101
  trigger: string;
102
102
  inputType: string;
103
+ inputUrl: string;
103
104
  internalVapixParameters: string;
104
105
  userVapixParameters: string;
105
106
  streamDelay: string;
@@ -107,7 +108,6 @@ export declare const oldStringStreamSchemaWithId: z.ZodObject<{
107
108
  outputParameters: string;
108
109
  outputType: string;
109
110
  mediaServerUrl: string;
110
- inputUrl: string;
111
111
  forceStereo: string;
112
112
  statusLed: string;
113
113
  statusPort: string;
@@ -123,6 +123,7 @@ export declare const oldStringStreamSchemaWithId: z.ZodObject<{
123
123
  active: string;
124
124
  trigger: string;
125
125
  inputType: string;
126
+ inputUrl: string;
126
127
  internalVapixParameters: string;
127
128
  userVapixParameters: string;
128
129
  streamDelay: string;
@@ -130,7 +131,6 @@ export declare const oldStringStreamSchemaWithId: z.ZodObject<{
130
131
  outputParameters: string;
131
132
  outputType: string;
132
133
  mediaServerUrl: string;
133
- inputUrl: string;
134
134
  forceStereo: string;
135
135
  statusLed: string;
136
136
  statusPort: string;
@@ -169,6 +169,7 @@ export declare const oldStreamSchema: z.ZodObject<{
169
169
  active: 0 | 1;
170
170
  trigger: string;
171
171
  inputType: "RTSP_URL" | "CSw" | "CRS";
172
+ inputUrl: string;
172
173
  internalVapixParameters: string;
173
174
  userVapixParameters: string;
174
175
  streamDelay: number | null;
@@ -176,7 +177,6 @@ export declare const oldStreamSchema: z.ZodObject<{
176
177
  outputParameters: string;
177
178
  outputType: "video" | "none" | "images";
178
179
  mediaServerUrl: string;
179
- inputUrl: string;
180
180
  forceStereo: 0 | 1;
181
181
  statusLed: number;
182
182
  statusPort: string;
@@ -191,6 +191,7 @@ export declare const oldStreamSchema: z.ZodObject<{
191
191
  active: 0 | 1;
192
192
  trigger: string;
193
193
  inputType: "RTSP_URL" | "CSw" | "CRS";
194
+ inputUrl: string;
194
195
  internalVapixParameters: string;
195
196
  userVapixParameters: string;
196
197
  streamDelay: number | null;
@@ -198,7 +199,6 @@ export declare const oldStreamSchema: z.ZodObject<{
198
199
  outputParameters: string;
199
200
  outputType: "video" | "none" | "images";
200
201
  mediaServerUrl: string;
201
- inputUrl: string;
202
202
  forceStereo: 0 | 1;
203
203
  statusLed: number;
204
204
  statusPort: string;
@@ -98,9 +98,10 @@ export declare const rtmpSchema: z.ZodObject<{
98
98
  }[];
99
99
  }>]>;
100
100
  inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
101
+ inputUrl: z.ZodString;
101
102
  internalVapixParameters: z.ZodString;
102
103
  userVapixParameters: z.ZodString;
103
- streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTSP">, z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS">]>;
104
+ streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
104
105
  streamDelay: z.ZodObject<{
105
106
  enabled: z.ZodBoolean;
106
107
  timeS: z.ZodNumber;
@@ -205,9 +206,10 @@ export declare const rtmpSchema: z.ZodObject<{
205
206
  }[];
206
207
  };
207
208
  inputType: "RTSP_URL" | "CSw" | "CRS";
209
+ inputUrl: string;
208
210
  internalVapixParameters: string;
209
211
  userVapixParameters: string;
210
- streamingProtocol: "RTSP" | "RTMP" | "RTMPS" | "HLS";
212
+ streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
211
213
  streamDelay: {
212
214
  enabled: boolean;
213
215
  timeS: number;
@@ -259,9 +261,10 @@ export declare const rtmpSchema: z.ZodObject<{
259
261
  }[];
260
262
  };
261
263
  inputType: "RTSP_URL" | "CSw" | "CRS";
264
+ inputUrl: string;
262
265
  internalVapixParameters: string;
263
266
  userVapixParameters: string;
264
- streamingProtocol: "RTSP" | "RTMP" | "RTMPS" | "HLS";
267
+ streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
265
268
  streamDelay: {
266
269
  enabled: boolean;
267
270
  timeS: number;
@@ -98,9 +98,10 @@ export declare const sdCardSchema: z.ZodObject<{
98
98
  }[];
99
99
  }>]>;
100
100
  inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
101
+ inputUrl: z.ZodString;
101
102
  internalVapixParameters: z.ZodString;
102
103
  userVapixParameters: z.ZodString;
103
- streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTSP">, z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS">]>;
104
+ streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
104
105
  streamDelay: z.ZodObject<{
105
106
  enabled: z.ZodBoolean;
106
107
  timeS: z.ZodNumber;
@@ -202,9 +203,10 @@ export declare const sdCardSchema: z.ZodObject<{
202
203
  }[];
203
204
  };
204
205
  inputType: "RTSP_URL" | "CSw" | "CRS";
206
+ inputUrl: string;
205
207
  internalVapixParameters: string;
206
208
  userVapixParameters: string;
207
- streamingProtocol: "RTSP" | "RTMP" | "RTMPS" | "HLS";
209
+ streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
208
210
  streamDelay: {
209
211
  enabled: boolean;
210
212
  timeS: number;
@@ -253,9 +255,10 @@ export declare const sdCardSchema: z.ZodObject<{
253
255
  }[];
254
256
  };
255
257
  inputType: "RTSP_URL" | "CSw" | "CRS";
258
+ inputUrl: string;
256
259
  internalVapixParameters: string;
257
260
  userVapixParameters: string;
258
- streamingProtocol: "RTSP" | "RTMP" | "RTMPS" | "HLS";
261
+ streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
259
262
  streamDelay: {
260
263
  enabled: boolean;
261
264
  timeS: number;
@@ -98,9 +98,10 @@ export declare const srtSchema: z.ZodObject<{
98
98
  }[];
99
99
  }>]>;
100
100
  inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
101
+ inputUrl: z.ZodString;
101
102
  internalVapixParameters: z.ZodString;
102
103
  userVapixParameters: z.ZodString;
103
- streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTSP">, z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS">]>;
104
+ streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
104
105
  streamDelay: z.ZodObject<{
105
106
  enabled: z.ZodBoolean;
106
107
  timeS: z.ZodNumber;
@@ -202,9 +203,10 @@ export declare const srtSchema: z.ZodObject<{
202
203
  }[];
203
204
  };
204
205
  inputType: "RTSP_URL" | "CSw" | "CRS";
206
+ inputUrl: string;
205
207
  internalVapixParameters: string;
206
208
  userVapixParameters: string;
207
- streamingProtocol: "RTSP" | "RTMP" | "RTMPS" | "HLS";
209
+ streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
208
210
  streamDelay: {
209
211
  enabled: boolean;
210
212
  timeS: number;
@@ -253,9 +255,10 @@ export declare const srtSchema: z.ZodObject<{
253
255
  }[];
254
256
  };
255
257
  inputType: "RTSP_URL" | "CSw" | "CRS";
258
+ inputUrl: string;
256
259
  internalVapixParameters: string;
257
260
  userVapixParameters: string;
258
- streamingProtocol: "RTSP" | "RTMP" | "RTMPS" | "HLS";
261
+ streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
259
262
  streamDelay: {
260
263
  enabled: boolean;
261
264
  timeS: number;
@@ -142,7 +142,7 @@ export type TStreamTriggerType = TStreamTrigger['type'];
142
142
  export type TTriggerSchedule = z.infer<typeof scheduleSchema>;
143
143
  export declare const streamInputTypeSchema: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
144
144
  export type TStreamInputType = z.infer<typeof streamInputTypeSchema>;
145
- export declare const streamingProtocolTypeSchema: z.ZodUnion<[z.ZodLiteral<"RTSP">, z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS">]>;
145
+ export declare const streamingProtocolTypeSchema: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
146
146
  export type TStreamingProtocolType = z.infer<typeof streamingProtocolTypeSchema>;
147
147
  export declare const videoCodecSchema: z.ZodUnion<[z.ZodLiteral<"h264">, z.ZodLiteral<"h265">, z.ZodLiteral<"av1">]>;
148
148
  export type TVideoCodec = z.infer<typeof videoCodecSchema>;
@@ -360,9 +360,10 @@ export declare const streamCommonSchema: z.ZodObject<{
360
360
  }[];
361
361
  }>]>;
362
362
  inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
363
+ inputUrl: z.ZodString;
363
364
  internalVapixParameters: z.ZodString;
364
365
  userVapixParameters: z.ZodString;
365
- streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTSP">, z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS">]>;
366
+ streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
366
367
  streamDelay: z.ZodObject<{
367
368
  enabled: z.ZodBoolean;
368
369
  timeS: z.ZodNumber;
@@ -461,9 +462,10 @@ export declare const streamCommonSchema: z.ZodObject<{
461
462
  }[];
462
463
  };
463
464
  inputType: "RTSP_URL" | "CSw" | "CRS";
465
+ inputUrl: string;
464
466
  internalVapixParameters: string;
465
467
  userVapixParameters: string;
466
- streamingProtocol: "RTSP" | "RTMP" | "RTMPS" | "HLS";
468
+ streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
467
469
  streamDelay: {
468
470
  enabled: boolean;
469
471
  timeS: number;
@@ -511,9 +513,10 @@ export declare const streamCommonSchema: z.ZodObject<{
511
513
  }[];
512
514
  };
513
515
  inputType: "RTSP_URL" | "CSw" | "CRS";
516
+ inputUrl: string;
514
517
  internalVapixParameters: string;
515
518
  userVapixParameters: string;
516
- streamingProtocol: "RTSP" | "RTMP" | "RTMPS" | "HLS";
519
+ streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
517
520
  streamDelay: {
518
521
  enabled: boolean;
519
522
  timeS: number;