camstreamerlib 4.0.0-beta.135 → 4.0.0-beta.137
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/cjs/CamStreamerAPI.d.ts +40 -0
- package/cjs/CamStreamerAPI.js +5 -0
- package/cjs/PlaneTrackerAPI.d.ts +1 -1
- package/cjs/VapixAPI.d.ts +6 -1
- package/cjs/VapixAPI.js +30 -2
- package/cjs/types/CamStreamerAPI/CamStreamerAPI.d.ts +342 -2
- package/cjs/types/CamStreamerAPI/CamStreamerAPI.js +20 -20
- package/cjs/types/CamStreamerAPI/facebookSchema.d.ts +7 -0
- package/cjs/types/CamStreamerAPI/streamCommonTypes.d.ts +7 -0
- package/cjs/types/CamStreamerAPI/streamCommonTypes.js +1 -0
- package/cjs/types/CamStreamerAPI/streamsSchema.d.ts +141 -0
- package/cjs/types/CamStreamerAPI/streamsSchema.js +40 -18
- package/cjs/types/CamStreamerAPI/windySchema.d.ts +7 -0
- package/cjs/types/CamStreamerAPI/youtubeSchema.d.ts +7 -0
- package/cjs/types/GenetecAgent.d.ts +2 -2
- package/esm/CamStreamerAPI.js +5 -0
- package/esm/VapixAPI.js +30 -2
- package/esm/types/CamStreamerAPI/CamStreamerAPI.js +21 -21
- package/esm/types/CamStreamerAPI/streamCommonTypes.js +1 -0
- package/esm/types/CamStreamerAPI/streamsSchema.js +39 -17
- package/package.json +1 -1
- package/types/CamStreamerAPI.d.ts +40 -0
- package/types/PlaneTrackerAPI.d.ts +1 -1
- package/types/VapixAPI.d.ts +6 -1
- package/types/types/CamStreamerAPI/CamStreamerAPI.d.ts +342 -2
- package/types/types/CamStreamerAPI/facebookSchema.d.ts +7 -0
- package/types/types/CamStreamerAPI/streamCommonTypes.d.ts +7 -0
- package/types/types/CamStreamerAPI/streamsSchema.d.ts +141 -0
- package/types/types/CamStreamerAPI/windySchema.d.ts +7 -0
- package/types/types/CamStreamerAPI/youtubeSchema.d.ts +7 -0
- package/types/types/GenetecAgent.d.ts +2 -2
|
@@ -131,14 +131,17 @@ export declare const facebookSchema: z.ZodObject<{
|
|
|
131
131
|
type: z.ZodLiteral<"video">;
|
|
132
132
|
url: z.ZodNullable<z.ZodString>;
|
|
133
133
|
parameters: z.ZodString;
|
|
134
|
+
saveToSdCard: z.ZodBoolean;
|
|
134
135
|
}, "strip", z.ZodTypeAny, {
|
|
135
136
|
type: "video";
|
|
136
137
|
url: string | null;
|
|
137
138
|
parameters: string;
|
|
139
|
+
saveToSdCard: boolean;
|
|
138
140
|
}, {
|
|
139
141
|
type: "video";
|
|
140
142
|
url: string | null;
|
|
141
143
|
parameters: string;
|
|
144
|
+
saveToSdCard: boolean;
|
|
142
145
|
}>, z.ZodObject<{
|
|
143
146
|
type: z.ZodLiteral<"images">;
|
|
144
147
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -192,6 +195,7 @@ export declare const facebookSchema: z.ZodObject<{
|
|
|
192
195
|
type: "video";
|
|
193
196
|
url: string | null;
|
|
194
197
|
parameters: string;
|
|
198
|
+
saveToSdCard: boolean;
|
|
195
199
|
} | {
|
|
196
200
|
type: "images";
|
|
197
201
|
url: string | null;
|
|
@@ -215,6 +219,7 @@ export declare const facebookSchema: z.ZodObject<{
|
|
|
215
219
|
type: "video";
|
|
216
220
|
url: string | null;
|
|
217
221
|
parameters: string;
|
|
222
|
+
saveToSdCard: boolean;
|
|
218
223
|
} | {
|
|
219
224
|
type: "images";
|
|
220
225
|
url: string | null;
|
|
@@ -364,6 +369,7 @@ export declare const facebookSchema: z.ZodObject<{
|
|
|
364
369
|
type: "video";
|
|
365
370
|
url: string | null;
|
|
366
371
|
parameters: string;
|
|
372
|
+
saveToSdCard: boolean;
|
|
367
373
|
} | {
|
|
368
374
|
type: "images";
|
|
369
375
|
url: string | null;
|
|
@@ -449,6 +455,7 @@ export declare const facebookSchema: z.ZodObject<{
|
|
|
449
455
|
type: "video";
|
|
450
456
|
url: string | null;
|
|
451
457
|
parameters: string;
|
|
458
|
+
saveToSdCard: boolean;
|
|
452
459
|
} | {
|
|
453
460
|
type: "images";
|
|
454
461
|
url: string | null;
|
|
@@ -108,14 +108,17 @@ export declare const streamCommonSchema: z.ZodObject<{
|
|
|
108
108
|
type: z.ZodLiteral<"video">;
|
|
109
109
|
url: z.ZodNullable<z.ZodString>;
|
|
110
110
|
parameters: z.ZodString;
|
|
111
|
+
saveToSdCard: z.ZodBoolean;
|
|
111
112
|
}, "strip", z.ZodTypeAny, {
|
|
112
113
|
type: "video";
|
|
113
114
|
url: string | null;
|
|
114
115
|
parameters: string;
|
|
116
|
+
saveToSdCard: boolean;
|
|
115
117
|
}, {
|
|
116
118
|
type: "video";
|
|
117
119
|
url: string | null;
|
|
118
120
|
parameters: string;
|
|
121
|
+
saveToSdCard: boolean;
|
|
119
122
|
}>, z.ZodObject<{
|
|
120
123
|
type: z.ZodLiteral<"images">;
|
|
121
124
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -169,6 +172,7 @@ export declare const streamCommonSchema: z.ZodObject<{
|
|
|
169
172
|
type: "video";
|
|
170
173
|
url: string | null;
|
|
171
174
|
parameters: string;
|
|
175
|
+
saveToSdCard: boolean;
|
|
172
176
|
} | {
|
|
173
177
|
type: "images";
|
|
174
178
|
url: string | null;
|
|
@@ -192,6 +196,7 @@ export declare const streamCommonSchema: z.ZodObject<{
|
|
|
192
196
|
type: "video";
|
|
193
197
|
url: string | null;
|
|
194
198
|
parameters: string;
|
|
199
|
+
saveToSdCard: boolean;
|
|
195
200
|
} | {
|
|
196
201
|
type: "images";
|
|
197
202
|
url: string | null;
|
|
@@ -310,6 +315,7 @@ export declare const streamCommonSchema: z.ZodObject<{
|
|
|
310
315
|
type: "video";
|
|
311
316
|
url: string | null;
|
|
312
317
|
parameters: string;
|
|
318
|
+
saveToSdCard: boolean;
|
|
313
319
|
} | {
|
|
314
320
|
type: "images";
|
|
315
321
|
url: string | null;
|
|
@@ -384,6 +390,7 @@ export declare const streamCommonSchema: z.ZodObject<{
|
|
|
384
390
|
type: "video";
|
|
385
391
|
url: string | null;
|
|
386
392
|
parameters: string;
|
|
393
|
+
saveToSdCard: boolean;
|
|
387
394
|
} | {
|
|
388
395
|
type: "images";
|
|
389
396
|
url: string | null;
|