@cognigy/rest-api-client
Version:
Cognigy REST-Client
31 lines • 1.12 kB
JavaScript
// This is a copy of the Component in the service-sentinel/opsCenter
export const arrayOfTMainComponent = ["VoiceGateway", "Endpoint", "Flow", "HandoverProvider"];
/**
* Each main component has a set of subcomponents and Errors and Alerts
* are also tagged with a respective subcomponents.
*/
export const arrayOfTVoiceGatewaySubComponent = ["SpeechToText", "TextToSpeech"];
export const arrayOfTEndpointSubComponent = [
"InputTransformer",
"OutputTransformer",
"ExecutionFinishedTransformer",
"InjectTransformer",
"NotifyTransformer",
"RealtimeTranslation",
"MessageRoundtrip",
];
export const arrayOfTFlowSubComponent = [
"FlowNodeExecution",
"NaturalLanguageUnderstanding",
"OutboundHTTPCalls",
"LargeLanguageModelCalls",
"KnowledgeAIQueries",
];
export const arrayOfTHandoverProviderSubComponent = ["OutboundHTTPCalls"];
export const arrayOfTSubComponent = [
...arrayOfTVoiceGatewaySubComponent,
...arrayOfTEndpointSubComponent,
...arrayOfTFlowSubComponent,
...arrayOfTHandoverProviderSubComponent,
];
//# sourceMappingURL=IOpsCenterComponents.js.map