@cognigy/rest-api-client
Version:
Cognigy REST-Client
42 lines • 1.5 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.audioPreviewSettingsDataSchema = exports.audioPreviewProviders = void 0;
exports.audioPreviewProviders = ["microsoft", "google", "aws", "deepgram"];
exports.audioPreviewSettingsDataSchema = {
title: "audioPreviewSettingsDataSchema",
type: ["object", "null"],
additionalProperties: false,
properties: {
provider: { type: ["string", "null"] },
connections: {
type: ["object", "null"],
properties: {
aws: {
type: "object",
properties: {
connectionId: { type: ["string", "null"], format: "uuid" }
}
},
microsoft: {
type: "object",
properties: {
connectionId: { type: ["string", "null"], format: "uuid" }
}
},
google: {
type: "object",
properties: {
connectionId: { type: ["string", "null"], format: "uuid" }
}
},
deepgram: {
type: "object",
properties: {
connectionId: { type: ["string", "null"], format: "uuid" }
}
},
}
}
}
};
//# sourceMappingURL=IAudioPreviewSettings.js.map