camstreamerlib 4.0.0-beta.6 → 4.0.0-beta.7
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/CamSwitcherAPI.d.ts +5 -1
- package/cjs/CamSwitcherAPI.js +4 -2
- package/cjs/VapixAPI.js +1 -1
- package/cjs/types/CamSwitcherEvents.d.ts +77 -0
- package/cjs/types/CamSwitcherEvents.js +8 -0
- package/cjs/types/VapixAPI.d.ts +394 -302
- package/cjs/types/VapixAPI.js +5 -2
- package/esm/CamSwitcherAPI.d.ts +5 -1
- package/esm/CamSwitcherAPI.js +4 -2
- package/esm/VapixAPI.js +1 -1
- package/esm/types/CamSwitcherEvents.d.ts +77 -0
- package/esm/types/CamSwitcherEvents.js +8 -0
- package/esm/types/VapixAPI.d.ts +394 -302
- package/esm/types/VapixAPI.js +5 -2
- package/package.json +1 -1
package/esm/types/VapixAPI.js
CHANGED
|
@@ -19,6 +19,7 @@ export const APP_IDS = [
|
|
|
19
19
|
'CamScripter',
|
|
20
20
|
'PlaneTracker',
|
|
21
21
|
'Ndihxplugin',
|
|
22
|
+
'SportTracker',
|
|
22
23
|
];
|
|
23
24
|
export const applicationListSchema = z.object({
|
|
24
25
|
reply: z.object({
|
|
@@ -67,7 +68,7 @@ export const audioDeviceSignalingChannelTypeSchema = z.object({
|
|
|
67
68
|
});
|
|
68
69
|
export const audioDeviceSignalingTypeSchema = z.object({
|
|
69
70
|
id: z.string(),
|
|
70
|
-
powerType: z.string(),
|
|
71
|
+
powerType: z.string().optional(),
|
|
71
72
|
channels: z.array(audioDeviceSignalingChannelTypeSchema),
|
|
72
73
|
});
|
|
73
74
|
export const audioDeviceConnectionTypeSchema = z.object({
|
|
@@ -94,7 +95,9 @@ const audioDeviceFromRequestSchema = z.object({
|
|
|
94
95
|
inputs: z.array(audioDeviceInputOutputSchema).optional(),
|
|
95
96
|
outputs: z.array(audioDeviceInputOutputSchema).optional(),
|
|
96
97
|
});
|
|
97
|
-
export const audioDeviceRequestSchema = z.object({
|
|
98
|
+
export const audioDeviceRequestSchema = z.object({
|
|
99
|
+
data: z.object({ devices: z.array(audioDeviceFromRequestSchema) }),
|
|
100
|
+
});
|
|
98
101
|
export const maxFpsResponseSchema = z.object({
|
|
99
102
|
data: z
|
|
100
103
|
.array(z.object({
|