2
0
Files
bot/packages/schemas/features/blocks/integrations/googleSheets/constants.ts
Baptiste Arnaud 35300eaf34 ♻️ Introduce typebot v6 with events (#1013)
Closes #885
2023-11-08 15:34:16 +01:00

17 lines
310 B
TypeScript

export enum GoogleSheetsAction {
GET = 'Get data from sheet',
INSERT_ROW = 'Insert a row',
UPDATE_ROW = 'Update a row',
}
export const totalRowsToExtractOptions = [
'All',
'First',
'Last',
'Random',
] as const
export const defaultGoogleSheetsOptions = {
totalRowsToExtract: 'All',
} as const