mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
698d96a617
* refactor: use consistent folder structure across workflow, core, and cli * setup typescript project references across workflow, core, and cli
81 lines
1.8 KiB
TypeScript
81 lines
1.8 KiB
TypeScript
import config from '@/config';
|
|
|
|
export const REST_PATH_SEGMENT = config.getEnv('endpoints.rest') as Readonly<string>;
|
|
|
|
export const PUBLIC_API_REST_PATH_SEGMENT = config.getEnv('publicApi.path') as Readonly<string>;
|
|
|
|
export const AUTHLESS_ENDPOINTS: Readonly<string[]> = [
|
|
'healthz',
|
|
'metrics',
|
|
config.getEnv('endpoints.webhook'),
|
|
config.getEnv('endpoints.webhookWaiting'),
|
|
config.getEnv('endpoints.webhookTest'),
|
|
];
|
|
|
|
export const SUCCESS_RESPONSE_BODY = {
|
|
data: {
|
|
success: true,
|
|
},
|
|
} as const;
|
|
|
|
export const LOGGED_OUT_RESPONSE_BODY = {
|
|
data: {
|
|
loggedOut: true,
|
|
},
|
|
};
|
|
|
|
/**
|
|
* Routes requiring a valid `n8n-auth` cookie for a user, either owner or member.
|
|
*/
|
|
export const ROUTES_REQUIRING_AUTHENTICATION: Readonly<string[]> = [
|
|
'GET /me',
|
|
'PATCH /me',
|
|
'PATCH /me/password',
|
|
'POST /me/survey',
|
|
'POST /owner',
|
|
'GET /non-existent',
|
|
];
|
|
|
|
/**
|
|
* Routes requiring a valid `n8n-auth` cookie for an owner.
|
|
*/
|
|
export const ROUTES_REQUIRING_AUTHORIZATION: Readonly<string[]> = [
|
|
'POST /users',
|
|
'DELETE /users/123',
|
|
'POST /users/123/reinvite',
|
|
'POST /owner',
|
|
'POST /owner/skip-setup',
|
|
];
|
|
|
|
/**
|
|
* Mapping tables link entities but, unlike `SharedWorkflow` and `SharedCredentials`,
|
|
* have no entity representation. Therefore, mapping tables must be cleared
|
|
* on truncation of any of the collections they link.
|
|
*/
|
|
export const MAPPING_TABLES_TO_CLEAR: Record<string, string[] | undefined> = {
|
|
Workflow: ['workflows_tags'],
|
|
Tag: ['workflows_tags'],
|
|
};
|
|
|
|
export const COMMUNITY_PACKAGE_VERSION = {
|
|
CURRENT: '0.1.0',
|
|
UPDATED: '0.2.0',
|
|
};
|
|
|
|
export const COMMUNITY_NODE_VERSION = {
|
|
CURRENT: 1,
|
|
UPDATED: 2,
|
|
};
|
|
|
|
/**
|
|
* Timeout (in milliseconds) to account for DB being slow to initialize.
|
|
*/
|
|
export const DB_INITIALIZATION_TIMEOUT = 30_000;
|
|
|
|
/**
|
|
* Mapping tables having no entity representation.
|
|
*/
|
|
export const MAPPING_TABLES = {
|
|
WorkflowsTags: 'workflows_tags',
|
|
} as const;
|