@voiceflow/google-types
Version:
Google service types
87 lines (86 loc) • 5.46 kB
JavaScript
import { VoiceflowConstants } from '@voiceflow/voiceflow-types';
import { GoogleIntent } from './intents.js';
import { Locale } from './locales.js';
import { SlotType } from './slots.js';
export const GOOGLE_TO_VOICEFLOW_LOCALE_MAP = {
[]: VoiceflowConstants.Locale.ZH_CN,
[]: VoiceflowConstants.Locale.ZH_CN,
[]: VoiceflowConstants.Locale.EN_US, // FIXME: Unsupported language by LUIS
[]: VoiceflowConstants.Locale.NL_NL,
[]: VoiceflowConstants.Locale.NL_NL,
[]: VoiceflowConstants.Locale.EN_US,
[]: VoiceflowConstants.Locale.EN_US,
[]: VoiceflowConstants.Locale.EN_US,
[]: VoiceflowConstants.Locale.EN_US,
[]: VoiceflowConstants.Locale.EN_US,
[]: VoiceflowConstants.Locale.EN_US,
[]: VoiceflowConstants.Locale.EN_US,
[]: VoiceflowConstants.Locale.FR_FR,
[]: VoiceflowConstants.Locale.FR_CA,
[]: VoiceflowConstants.Locale.FR_FR,
[]: VoiceflowConstants.Locale.DE_DE,
[]: VoiceflowConstants.Locale.DE_DE,
[]: VoiceflowConstants.Locale.DE_DE,
[]: VoiceflowConstants.Locale.DE_DE,
[]: VoiceflowConstants.Locale.HI_IN,
[]: VoiceflowConstants.Locale.EN_US, // FIXME: Unsupported language by LUIS
[]: VoiceflowConstants.Locale.IT_IT,
[]: VoiceflowConstants.Locale.JA_JP,
[]: VoiceflowConstants.Locale.KO_KR,
[]: VoiceflowConstants.Locale.EN_US, // FIXME: Unsupported language by LUIS
[]: VoiceflowConstants.Locale.EN_US, // FIXME: Unsupported language by LUIS
[]: VoiceflowConstants.Locale.PT_BR,
[]: VoiceflowConstants.Locale.EN_US, // FIXME: Unsupported language by LUIS
[]: VoiceflowConstants.Locale.ES_ES,
[]: VoiceflowConstants.Locale.ES_ES,
[]: VoiceflowConstants.Locale.EN_US, // FIXME: Unsupported language by LUIS
[]: VoiceflowConstants.Locale.EN_US, // FIXME: Unsupported language by LUIS
[]: VoiceflowConstants.Locale.TR_TR,
};
export const VOICEFLOW_TO_GOOGLE_LOCALE_MAP = {
[]: Locale.EN_US, // FIXME: Unsupported language by Google
[]: Locale.EN_US, // FIXME: Unsupported language by Google
[]: Locale.EN_US, // FIXME: Unsupported language by Google
[]: Locale.EN_US, // FIXME: Unsupported language by Google
[]: Locale.EN_US, // FIXME: Unsupported language by Google
[]: Locale.DE_DE,
[]: Locale.EN_US,
[]: Locale.ES_ES,
[]: Locale.ES_419,
[]: Locale.EN_US, // FIXME: Unsupported language by Google
[]: Locale.FR_CA,
[]: Locale.FR_FR,
[]: Locale.EN_US, // FIXME: Unsupported language by Google
[]: Locale.EN_US, // FIXME: Unsupported language by Google
[]: Locale.HI_IN,
[]: Locale.EN_US, // FIXME: Unsupported language by Google
[]: Locale.IT_IT,
[]: Locale.JA_JP,
[]: Locale.KO_KR,
[]: Locale.EN_US, // FIXME: Unsupported language by Google
[]: Locale.EN_US, // FIXME: Unsupported language by Google
[]: Locale.NL_NL,
[]: Locale.EN_US, // FIXME: Unsupported language by Google
[]: Locale.PT_BR,
[]: Locale.EN_US, // FIXME: Unsupported language by Google
[]: Locale.EN_US, // FIXME: Unsupported language by Google
[]: Locale.EN_US, // FIXME: Unsupported language by Google
[]: Locale.EN_US, // FIXME: Unsupported language by Google
[]: Locale.EN_US, // FIXME: Unsupported language by Google
[]: Locale.TR_TR,
[]: Locale.EN_US, // FIXME: Unsupported language by Google
[]: Locale.EN_US, // FIXME: Unsupported language by Google
[]: Locale.ZH_TW,
[]: Locale.EN_US, // FIXME: Unsupported language by Google
};
export const GOOGLE_TO_VOICEFLOW_SLOT_TYPE_MAP = {
[]: VoiceflowConstants.SlotType.DATETIME,
[]: VoiceflowConstants.SlotType.DATETIME,
[]: VoiceflowConstants.SlotType.NUMBER,
[]: VoiceflowConstants.SlotType.DATETIME,
};
export const VOICEFLOW_TO_GOOGLE_INTENT_MAP = {
[]: GoogleIntent.NO,
[]: GoogleIntent.YES,
[]: GoogleIntent.REPEAT,
};