UNPKG

camstreamerlib

Version:

Helper library for CamStreamer ACAP applications.

29 lines (28 loc) 1.05 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.streamListSchema = exports.streamAttributesSchema = void 0; const zod_1 = require("zod"); exports.streamAttributesSchema = zod_1.z.object({ enabled: zod_1.z.string(), active: zod_1.z.string(), audioSource: zod_1.z.string(), avSyncMsec: zod_1.z.string(), internalVapixParameters: zod_1.z.string(), userVapixParameters: zod_1.z.string(), outputParameters: zod_1.z.string(), outputType: zod_1.z.string(), mediaServerUrl: zod_1.z.string(), inputType: zod_1.z.string(), inputUrl: zod_1.z.string(), forceStereo: zod_1.z.string(), streamDelay: zod_1.z.string(), statusLed: zod_1.z.string(), statusPort: zod_1.z.string(), callApi: zod_1.z.string(), trigger: zod_1.z.string(), schedule: zod_1.z.string(), prepareAhead: zod_1.z.string(), startTime: zod_1.z.string(), stopTime: zod_1.z.string(), }); exports.streamListSchema = zod_1.z.record(zod_1.z.string(), exports.streamAttributesSchema);