mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
88dea330b9
* ⚡ Update `lintfix` script * ⚡ Run baseline `lintfix` * 🔥 Remove unneeded exceptions (#3538) * 🔥 Remove exceptions for `node-param-default-wrong-for-simplify` * 🔥 Remove exceptions for `node-param-placeholder-miscased-id` * ⚡ Update version * 👕 Apply `node-param-placeholder-missing` (#3542) * 👕 Apply `filesystem-wrong-cred-filename` (#3543) * 👕 Apply `node-param-description-missing-from-dynamic-options` (#3545) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-class-description-empty-string` (#3546) * 👕 Apply `node-class-description-icon-not-svg` (#3548) * 👕 Apply `filesystem-wrong-node-filename` (#3549) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Expand lintings to credentials (#3550) * 👕 Apply `node-param-multi-options-type-unsorted-items` (#3552) * ⚡ fix * ⚡ Minor fixes Co-authored-by: Michael Kret <michael.k@radency.com> * 👕 Apply `node-param-description-wrong-for-dynamic-multi-options` (#3541) * ⚡ Add new lint rule, node-param-description-wrong-for-dynamic-multi-options * ⚡ Fix with updated linting rules * ⚡ Minor fixes Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-description-boolean-without-whether` (#3553) * ⚡ fix * Update packages/nodes-base/nodes/Clockify/ProjectDescription.ts Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply node-param-display-name-wrong-for-dynamic-multi-options (#3537) * 👕 Add exceptions * 👕 Add exception * ✏️ Alphabetize rules * ⚡ Restore `lintfix` command Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com> Co-authored-by: Omar Ajoue <krynble@gmail.com> Co-authored-by: Michael Kret <michael.k@radency.com> Co-authored-by: brianinoa <54530642+brianinoa@users.noreply.github.com> Co-authored-by: Michael Kret <88898367+michael-radency@users.noreply.github.com>
555 lines
12 KiB
TypeScript
555 lines
12 KiB
TypeScript
import {
|
||
INodeProperties,
|
||
} from 'n8n-workflow';
|
||
|
||
export const resource = [
|
||
'timeEntry',
|
||
];
|
||
|
||
export const timeEntryOperations: INodeProperties[] = [
|
||
{
|
||
displayName: 'Operation',
|
||
name: 'operation',
|
||
type: 'options',
|
||
noDataExpression: true,
|
||
displayOptions: {
|
||
show: {
|
||
resource,
|
||
},
|
||
},
|
||
options: [
|
||
{
|
||
name: 'Create via Duration',
|
||
value: 'createByDuration',
|
||
description: 'Create a time entry via duration',
|
||
},
|
||
{
|
||
name: 'Create via Start and End Time',
|
||
value: 'createByStartEnd',
|
||
description: 'Create a time entry via start and end time',
|
||
},
|
||
{
|
||
name: 'Delete',
|
||
value: 'delete',
|
||
description: 'Delete a time entry',
|
||
},
|
||
{
|
||
name: 'Delete External Reference',
|
||
value: 'deleteExternal',
|
||
description: 'Delete a time entry’s external reference',
|
||
},
|
||
{
|
||
name: 'Get',
|
||
value: 'get',
|
||
description: 'Get data of a time entry',
|
||
},
|
||
{
|
||
name: 'Get All',
|
||
value: 'getAll',
|
||
description: 'Get data of all time entries',
|
||
},
|
||
{
|
||
name: 'Restart',
|
||
value: 'restartTime',
|
||
description: 'Restart a time entry',
|
||
},
|
||
{
|
||
name: 'Stop',
|
||
value: 'stopTime',
|
||
description: 'Stop a time entry',
|
||
},
|
||
{
|
||
name: 'Update',
|
||
value: 'update',
|
||
description: 'Update a time entry',
|
||
},
|
||
],
|
||
default: 'getAll',
|
||
},
|
||
];
|
||
|
||
export const timeEntryFields: INodeProperties[] = [
|
||
/* -------------------------------------------------------------------------- */
|
||
/* timeEntry:getAll */
|
||
/* -------------------------------------------------------------------------- */
|
||
|
||
{
|
||
displayName: 'Return All',
|
||
name: 'returnAll',
|
||
type: 'boolean',
|
||
displayOptions: {
|
||
show: {
|
||
resource,
|
||
operation: [
|
||
'getAll',
|
||
],
|
||
},
|
||
},
|
||
default: false,
|
||
description: 'Whether to return all results or only up to a given limit',
|
||
},
|
||
{
|
||
displayName: 'Limit',
|
||
name: 'limit',
|
||
type: 'number',
|
||
displayOptions: {
|
||
show: {
|
||
resource,
|
||
operation: [
|
||
'getAll',
|
||
],
|
||
returnAll: [
|
||
false,
|
||
],
|
||
},
|
||
},
|
||
typeOptions: {
|
||
minValue: 1,
|
||
maxValue: 100,
|
||
},
|
||
default: 100,
|
||
description: 'Max number of results to return',
|
||
},
|
||
{
|
||
displayName: 'Filters',
|
||
name: 'filters',
|
||
type: 'collection',
|
||
placeholder: 'Add Filter',
|
||
default: {},
|
||
displayOptions: {
|
||
show: {
|
||
resource,
|
||
operation: [
|
||
'getAll',
|
||
],
|
||
},
|
||
},
|
||
options: [
|
||
{
|
||
displayName: 'Client ID',
|
||
name: 'client_id',
|
||
type: 'string',
|
||
default: '',
|
||
description: 'Only return time entries belonging to the client with the given ID',
|
||
},
|
||
{
|
||
displayName: 'From',
|
||
name: 'from',
|
||
type: 'dateTime',
|
||
default: '',
|
||
description: 'Only return time entries with a spent_date on or after the given date',
|
||
},
|
||
{
|
||
displayName: 'Is Billed',
|
||
name: 'is_billed',
|
||
type: 'boolean',
|
||
default: true,
|
||
description: 'Whether to only return time entries that have been invoiced and false to return time entries that have not been invoiced',
|
||
},
|
||
{
|
||
displayName: 'Is Running',
|
||
name: 'is_running',
|
||
type: 'boolean',
|
||
default: true,
|
||
description: 'Whether to only return running time entries and false to return non-running time entries',
|
||
},
|
||
{
|
||
displayName: 'Page',
|
||
name: 'page',
|
||
type: 'number',
|
||
typeOptions: {
|
||
minValue: 1,
|
||
},
|
||
default: 1,
|
||
description: 'The page number to use in pagination. For instance, if you make a list request and receive 100 records, your subsequent call can include page=2 to retrieve the next page of the list. (Default: 1)',
|
||
},
|
||
{
|
||
displayName: 'To',
|
||
name: 'to',
|
||
type: 'dateTime',
|
||
default: '',
|
||
description: 'Only return time entries with a spent_date on or before the given date',
|
||
},
|
||
{
|
||
displayName: 'Updated Since',
|
||
name: 'updated_since',
|
||
type: 'dateTime',
|
||
default: '',
|
||
description: 'Only return time entries that have been updated since the given date and time',
|
||
},
|
||
{
|
||
displayName: 'User ID',
|
||
name: 'user_id',
|
||
type: 'string',
|
||
default: '',
|
||
description: 'Only return time entries belonging to the user with the given ID',
|
||
},
|
||
],
|
||
},
|
||
|
||
/* -------------------------------------------------------------------------- */
|
||
/* timeEntry:get */
|
||
/* -------------------------------------------------------------------------- */
|
||
{
|
||
displayName: 'Time Entry ID',
|
||
name: 'id',
|
||
type: 'string',
|
||
default: '',
|
||
required: true,
|
||
displayOptions: {
|
||
show: {
|
||
operation: [
|
||
'get',
|
||
],
|
||
resource,
|
||
},
|
||
},
|
||
description: 'The ID of the time entry you are retrieving',
|
||
},
|
||
|
||
/* -------------------------------------------------------------------------- */
|
||
/* timeEntry:delete */
|
||
/* -------------------------------------------------------------------------- */
|
||
{
|
||
displayName: 'Time Entry ID',
|
||
name: 'id',
|
||
type: 'string',
|
||
default: '',
|
||
required: true,
|
||
displayOptions: {
|
||
show: {
|
||
operation: [
|
||
'delete',
|
||
],
|
||
resource,
|
||
},
|
||
},
|
||
description: 'The ID of the time entry you are deleting',
|
||
},
|
||
|
||
/* -------------------------------------------------------------------------- */
|
||
/* timeEntry:deleteExternal */
|
||
/* -------------------------------------------------------------------------- */
|
||
{
|
||
displayName: 'Time Entry ID',
|
||
name: 'id',
|
||
type: 'string',
|
||
default: '',
|
||
required: true,
|
||
displayOptions: {
|
||
show: {
|
||
operation: [
|
||
'deleteExternal',
|
||
],
|
||
resource,
|
||
},
|
||
},
|
||
description: 'The ID of the time entry whose external reference you are deleting',
|
||
},
|
||
|
||
/* -------------------------------------------------------------------------- */
|
||
/* timeEntry:stopTime */
|
||
/* -------------------------------------------------------------------------- */
|
||
{
|
||
displayName: 'Time Entry ID',
|
||
name: 'id',
|
||
type: 'string',
|
||
default: '',
|
||
required: true,
|
||
displayOptions: {
|
||
show: {
|
||
operation: [
|
||
'stopTime',
|
||
],
|
||
resource,
|
||
},
|
||
},
|
||
description: 'Stop a running time entry. Stopping a time entry is only possible if it’s currently running.',
|
||
},
|
||
|
||
/* -------------------------------------------------------------------------- */
|
||
/* timeEntry:restartTime */
|
||
/* -------------------------------------------------------------------------- */
|
||
{
|
||
displayName: 'Time Entry ID',
|
||
name: 'id',
|
||
type: 'string',
|
||
default: '',
|
||
required: true,
|
||
displayOptions: {
|
||
show: {
|
||
operation: [
|
||
'restartTime',
|
||
],
|
||
resource,
|
||
},
|
||
},
|
||
description: 'Restart a stopped time entry. Restarting a time entry is only possible if it isn’t currently running.',
|
||
},
|
||
|
||
/* -------------------------------------------------------------------------- */
|
||
/* timeEntry:update */
|
||
/* -------------------------------------------------------------------------- */
|
||
{
|
||
displayName: 'Time Entry ID',
|
||
name: 'id',
|
||
type: 'string',
|
||
default: '',
|
||
required: true,
|
||
displayOptions: {
|
||
show: {
|
||
operation: [
|
||
'update',
|
||
],
|
||
resource,
|
||
},
|
||
},
|
||
description: 'The ID of the time entry to update',
|
||
},
|
||
{
|
||
displayName: 'Update Fields',
|
||
name: 'updateFields',
|
||
type: 'collection',
|
||
placeholder: 'Add Field',
|
||
displayOptions: {
|
||
show: {
|
||
operation: [
|
||
'update',
|
||
],
|
||
resource,
|
||
},
|
||
},
|
||
default: {},
|
||
options: [
|
||
{
|
||
displayName: 'Ended Time',
|
||
name: 'ended_time',
|
||
type: 'string',
|
||
default: '',
|
||
placeholder: '3:00pm',
|
||
description: 'The time the entry ended',
|
||
},
|
||
{
|
||
displayName: 'Hours',
|
||
name: 'hours',
|
||
type: 'number',
|
||
typeOptions: {
|
||
minValue: 0,
|
||
},
|
||
default: 0,
|
||
description: 'The current amount of time tracked',
|
||
},
|
||
{
|
||
displayName: 'Notes',
|
||
name: 'notes',
|
||
type: 'string',
|
||
default: '',
|
||
description: 'These are notes about the time entry',
|
||
},
|
||
{
|
||
displayName: 'Started Time',
|
||
name: 'started_time',
|
||
type: 'string',
|
||
default: '',
|
||
placeholder: '3:00pm',
|
||
description: 'The time the entry started. Defaults to the current time. Example: “8:00am”.',
|
||
},
|
||
],
|
||
},
|
||
|
||
/* -------------------------------------------------------------------------- */
|
||
/* timeEntry:createByDuration */
|
||
/* -------------------------------------------------------------------------- */
|
||
{
|
||
displayName: 'Project ID',
|
||
name: 'projectId',
|
||
type: 'string',
|
||
displayOptions: {
|
||
show: {
|
||
operation: [
|
||
'createByDuration',
|
||
],
|
||
resource,
|
||
},
|
||
},
|
||
default: '',
|
||
required: true,
|
||
description: 'The ID of the project to associate with the time entry',
|
||
},
|
||
{
|
||
displayName: 'Task ID',
|
||
name: 'taskId',
|
||
type: 'string',
|
||
displayOptions: {
|
||
show: {
|
||
operation: [
|
||
'createByDuration',
|
||
],
|
||
resource,
|
||
},
|
||
},
|
||
default: '',
|
||
required: true,
|
||
description: 'The ID of the task to associate with the time entry',
|
||
},
|
||
{
|
||
displayName: 'Spent Date',
|
||
name: 'spentDate',
|
||
type: 'dateTime',
|
||
displayOptions: {
|
||
show: {
|
||
operation: [
|
||
'createByDuration',
|
||
],
|
||
resource,
|
||
},
|
||
},
|
||
default: '',
|
||
required: true,
|
||
description: 'The ISO 8601 formatted date the time entry was spent',
|
||
},
|
||
{
|
||
displayName: 'Additional Fields',
|
||
name: 'additionalFields',
|
||
type: 'collection',
|
||
placeholder: 'Add Field',
|
||
displayOptions: {
|
||
show: {
|
||
operation: [
|
||
'createByDuration',
|
||
],
|
||
resource,
|
||
},
|
||
},
|
||
default: {},
|
||
options: [
|
||
{
|
||
displayName: 'Hours',
|
||
name: 'hours',
|
||
type: 'number',
|
||
typeOptions: {
|
||
minValue: 0,
|
||
},
|
||
default: 0,
|
||
description: 'The current amount of time tracked',
|
||
},
|
||
{
|
||
displayName: 'Notes',
|
||
name: 'notes',
|
||
type: 'string',
|
||
default: '',
|
||
description: 'These are notes about the time entry',
|
||
},
|
||
{
|
||
displayName: 'User ID',
|
||
name: 'user_id',
|
||
type: 'string',
|
||
default: '',
|
||
description: 'The ID of the user to associate with the time entry. Defaults to the currently authenticated user’s ID.',
|
||
},
|
||
],
|
||
},
|
||
|
||
/* -------------------------------------------------------------------------- */
|
||
/* timeEntry:createByStartEnd */
|
||
/* -------------------------------------------------------------------------- */
|
||
{
|
||
displayName: 'Project ID',
|
||
name: 'projectId',
|
||
type: 'string',
|
||
displayOptions: {
|
||
show: {
|
||
operation: [
|
||
'createByStartEnd',
|
||
],
|
||
resource,
|
||
},
|
||
},
|
||
default: '',
|
||
required: true,
|
||
description: 'The ID of the project to associate with the time entry',
|
||
},
|
||
{
|
||
displayName: 'Task ID',
|
||
name: 'taskId',
|
||
type: 'string',
|
||
displayOptions: {
|
||
show: {
|
||
operation: [
|
||
'createByStartEnd',
|
||
],
|
||
resource,
|
||
},
|
||
},
|
||
default: '',
|
||
required: true,
|
||
description: 'The ID of the task to associate with the time entry',
|
||
},
|
||
{
|
||
displayName: 'Spent Date',
|
||
name: 'spentDate',
|
||
type: 'dateTime',
|
||
displayOptions: {
|
||
show: {
|
||
operation: [
|
||
'createByStartEnd',
|
||
],
|
||
resource,
|
||
},
|
||
},
|
||
default: '',
|
||
required: true,
|
||
description: 'The ISO 8601 formatted date the time entry was spent',
|
||
},
|
||
{
|
||
displayName: 'Additional Fields',
|
||
name: 'additionalFields',
|
||
type: 'collection',
|
||
placeholder: 'Add Field',
|
||
displayOptions: {
|
||
show: {
|
||
operation: [
|
||
'createByStartEnd',
|
||
],
|
||
resource,
|
||
},
|
||
},
|
||
default: {},
|
||
options: [
|
||
{
|
||
displayName: 'Ended Time',
|
||
name: 'ended_time',
|
||
type: 'string',
|
||
default: '',
|
||
placeholder: '3:00pm',
|
||
description: 'The time the entry ended',
|
||
},
|
||
{
|
||
displayName: 'Notes',
|
||
name: 'notes',
|
||
type: 'string',
|
||
default: '',
|
||
description: 'These are notes about the time entry',
|
||
},
|
||
{
|
||
displayName: 'Started Time',
|
||
name: 'started_time',
|
||
type: 'string',
|
||
default: '',
|
||
placeholder: '8:00am',
|
||
description: 'The time the entry started. Defaults to the current time. Example: “8:00am”.',
|
||
},
|
||
{
|
||
displayName: 'User ID',
|
||
name: 'user_id',
|
||
type: 'string',
|
||
default: '',
|
||
description: 'The ID of the user to associate with the time entry. Defaults to the currently authenticated user’s ID.',
|
||
},
|
||
],
|
||
},
|
||
|
||
|
||
|
||
];
|