128 lines
2.7 KiB
JavaScript
128 lines
2.7 KiB
JavaScript
const { BUILTIN_ROLE_IDS } = require("@budibase/auth/roles")
|
|
const { UserStatus } = require("@budibase/auth").constants
|
|
const { ObjectStoreBuckets } = require("@budibase/auth").objectStore
|
|
|
|
exports.JobQueues = {
|
|
AUTOMATIONS: "automationQueue",
|
|
}
|
|
|
|
exports.FieldTypes = {
|
|
STRING: "string",
|
|
LONGFORM: "longform",
|
|
OPTIONS: "options",
|
|
NUMBER: "number",
|
|
BOOLEAN: "boolean",
|
|
ARRAY: "array",
|
|
DATETIME: "datetime",
|
|
ATTACHMENT: "attachment",
|
|
LINK: "link",
|
|
FORMULA: "formula",
|
|
AUTO: "auto",
|
|
JSON: "json",
|
|
}
|
|
|
|
exports.RelationshipTypes = {
|
|
ONE_TO_MANY: "one-to-many",
|
|
MANY_TO_ONE: "many-to-one",
|
|
MANY_TO_MANY: "many-to-many",
|
|
}
|
|
|
|
exports.AuthTypes = {
|
|
APP: "app",
|
|
BUILDER: "builder",
|
|
EXTERNAL: "external",
|
|
}
|
|
|
|
exports.DataSourceOperation = {
|
|
CREATE: "CREATE",
|
|
READ: "READ",
|
|
UPDATE: "UPDATE",
|
|
DELETE: "DELETE",
|
|
}
|
|
|
|
exports.SortDirection = {
|
|
ASCENDING: "ASCENDING",
|
|
DESCENDING: "DESCENDING",
|
|
}
|
|
|
|
exports.USERS_TABLE_SCHEMA = {
|
|
_id: "ta_users",
|
|
type: "table",
|
|
views: {},
|
|
name: "Users",
|
|
// TODO: ADMIN PANEL - when implemented this doesn't need to be carried out
|
|
schema: {
|
|
email: {
|
|
type: exports.FieldTypes.STRING,
|
|
constraints: {
|
|
type: exports.FieldTypes.STRING,
|
|
email: true,
|
|
length: {
|
|
maximum: "",
|
|
},
|
|
presence: true,
|
|
},
|
|
fieldName: "email",
|
|
name: "email",
|
|
},
|
|
firstName: {
|
|
name: "firstName",
|
|
fieldName: "firstName",
|
|
type: exports.FieldTypes.STRING,
|
|
constraints: {
|
|
type: exports.FieldTypes.STRING,
|
|
presence: false,
|
|
},
|
|
},
|
|
lastName: {
|
|
name: "lastName",
|
|
fieldName: "lastName",
|
|
type: exports.FieldTypes.STRING,
|
|
constraints: {
|
|
type: exports.FieldTypes.STRING,
|
|
presence: false,
|
|
},
|
|
},
|
|
roleId: {
|
|
fieldName: "roleId",
|
|
name: "roleId",
|
|
type: exports.FieldTypes.OPTIONS,
|
|
constraints: {
|
|
type: exports.FieldTypes.STRING,
|
|
presence: false,
|
|
inclusion: Object.values(BUILTIN_ROLE_IDS),
|
|
},
|
|
},
|
|
status: {
|
|
fieldName: "status",
|
|
name: "status",
|
|
type: exports.FieldTypes.OPTIONS,
|
|
constraints: {
|
|
type: exports.FieldTypes.STRING,
|
|
presence: false,
|
|
inclusion: Object.values(UserStatus),
|
|
},
|
|
},
|
|
},
|
|
primaryDisplay: "email",
|
|
}
|
|
|
|
exports.AutoFieldSubTypes = {
|
|
CREATED_BY: "createdBy",
|
|
CREATED_AT: "createdAt",
|
|
UPDATED_BY: "updatedBy",
|
|
UPDATED_AT: "updatedAt",
|
|
AUTO_ID: "autoID",
|
|
}
|
|
|
|
exports.OBJ_STORE_DIRECTORY = "/prod-budi-app-assets"
|
|
exports.BaseQueryVerbs = {
|
|
CREATE: "create",
|
|
READ: "read",
|
|
UPDATE: "update",
|
|
DELETE: "delete",
|
|
}
|
|
|
|
// pass through the list from the auth/core lib
|
|
exports.ObjectStoreBuckets = ObjectStoreBuckets
|