1
0
Fork 0
mirror of synced 2024-09-10 06:26:02 +12:00
budibase/packages/server/src/integrations/Integration.js

15 lines
219 B
JavaScript
Raw Normal View History

2021-01-14 05:39:47 +13:00
exports.QUERY_TYPES = {
SQL: "sql",
JSON: "json",
FIELDS: "fields",
}
exports.FIELD_TYPES = {
STRING: "string",
NUMBER: "number",
PASSWORD: "password",
LIST: "list",
2021-02-16 06:05:53 +13:00
OBJECT: "object",
2021-02-16 07:41:56 +13:00
JSON: "json",
2021-01-14 03:11:53 +13:00
}