@voiceflow/google-types
Version:
Google service types
30 lines (29 loc) • 674 B
JavaScript
export var SlotType;
(function (SlotType) {
SlotType["DATE"] = "actions.type.Date";
SlotType["TIME"] = "actions.type.Time";
SlotType["NUMBER"] = "actions.type.Number";
SlotType["DATE_TIME"] = "actions.type.DateTime";
})(SlotType || (SlotType = {}));
export const BUILT_IN_SLOTS = [
{
type: SlotType.DATE,
label: 'Date',
immutable: true,
},
{
type: SlotType.DATE_TIME,
label: 'DateTime',
immutable: true,
},
{
type: SlotType.TIME,
label: 'Time',
immutable: true,
},
{
type: SlotType.NUMBER,
label: 'Number',
immutable: true,
},
];