@cognigy/rest-api-client
Version:
Cognigy REST-Client
39 lines • 1.35 kB
JavaScript
export const audioPreviewProviders = ["microsoft", "google", "aws", "deepgram"];
export const 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