mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-14 08:34:07 -08:00
29 lines
558 B
TypeScript
29 lines
558 B
TypeScript
import { GlobalConfig } from '@n8n/config';
|
|
import Container from 'typedi';
|
|
|
|
export const REST_PATH_SEGMENT = Container.get(GlobalConfig).endpoints.rest;
|
|
|
|
export const PUBLIC_API_REST_PATH_SEGMENT = Container.get(GlobalConfig).publicApi.path;
|
|
|
|
export const SUCCESS_RESPONSE_BODY = {
|
|
data: {
|
|
success: true,
|
|
},
|
|
} as const;
|
|
|
|
export const LOGGED_OUT_RESPONSE_BODY = {
|
|
data: {
|
|
loggedOut: true,
|
|
},
|
|
};
|
|
|
|
export const COMMUNITY_PACKAGE_VERSION = {
|
|
CURRENT: '0.1.0',
|
|
UPDATED: '0.2.0',
|
|
};
|
|
|
|
export const COMMUNITY_NODE_VERSION = {
|
|
CURRENT: 1,
|
|
UPDATED: 2,
|
|
};
|