@pipedream/espocrm
Version:
Pipedream EspoCRM Components
30 lines (25 loc) • 343 B
JavaScript
const DEFAULT_LIMIT = 50;
const TASK_STATUS = [
"Not Started",
"Started",
"Completed",
"Canceled",
"Deferred",
];
const TASK_PRIORITY = [
"Low",
"Normal",
"High",
"Urgent",
];
const EVENT_TYPES = [
"create",
"update",
"delete",
];
export default {
DEFAULT_LIMIT,
TASK_STATUS,
TASK_PRIORITY,
EVENT_TYPES,
};