2020-01-28 06:46:38 -08:00
import { INodeProperties } from "n8n-workflow" ;
2020-01-31 05:32:14 -08:00
export const resource = [ 'time_entries' ]
2020-01-28 06:46:38 -08:00
export const timeEntryOperations = [
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
displayOptions : {
show : {
2020-01-31 05:32:14 -08:00
resource ,
2020-01-28 06:46:38 -08:00
} ,
} ,
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' ,
} ,
] ,
2020-01-28 23:04:52 -08:00
default : 'getAll' ,
2020-01-28 06:46:38 -08:00
description : 'The operation to perform.' ,
} ,
] as INodeProperties [ ] ;
export const timeEntryFields = [
/* -------------------------------------------------------------------------- */
/* timeEntry:getAll */
/* -------------------------------------------------------------------------- */
{
displayName : 'Return All' ,
name : 'returnAll' ,
type : 'boolean' ,
displayOptions : {
show : {
2020-01-31 05:32:14 -08:00
resource ,
2020-01-28 06:46:38 -08:00
operation : [
'getAll' ,
] ,
} ,
} ,
default : false ,
description : 'Returns a list of your time entries.' ,
} ,
{
displayName : 'Limit' ,
name : 'limit' ,
type : 'number' ,
displayOptions : {
show : {
2020-01-31 05:32:14 -08:00
resource ,
2020-01-28 06:46:38 -08:00
operation : [
'getAll' ,
] ,
returnAll : [
false ,
] ,
} ,
} ,
typeOptions : {
minValue : 1 ,
maxValue : 100 ,
} ,
default : 100 ,
description : 'How many results to return.' ,
} ,
{
displayName : 'Filters' ,
name : 'filters' ,
type : 'collection' ,
placeholder : 'Add Filter' ,
default : { } ,
displayOptions : {
show : {
2020-01-31 05:32:14 -08:00
resource ,
2020-01-28 06:46:38 -08:00
operation : [
'getAll' ,
] ,
} ,
} ,
options : [
{
displayName : 'User ID' ,
name : 'user_id' ,
type : 'string' ,
default : '' ,
description : 'Only return time entries belonging to the user with the given ID.' ,
} ,
{
displayName : 'Client ID' ,
name : 'client_id' ,
type : 'string' ,
default : '' ,
description : 'Only return time entries belonging to the client with the given ID.' ,
} ,
{
displayName : 'Is Billed' ,
name : 'is_billed' ,
type : 'boolean' ,
2020-01-29 15:51:14 -08:00
default : true ,
2020-01-28 06:46:38 -08:00
description : 'Pass true 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' ,
2020-01-29 15:51:14 -08:00
type : 'boolean' ,
default : true ,
2020-01-28 06:46:38 -08:00
description : 'Pass true to only return running time entries and false to return non-running time entries.' ,
} ,
{
displayName : 'Updated Since' ,
name : 'updated_since' ,
2020-01-29 15:51:14 -08:00
type : 'dateTime' ,
2020-01-28 06:46:38 -08:00
default : '' ,
description : 'Only return time entries that have been updated since the given date and time.' ,
} ,
{
displayName : 'From' ,
name : 'from' ,
type : 'dateTime' ,
default : '' ,
description : 'Only return time entries with a spent_date on or after the given date.' ,
} ,
{
displayName : 'To' ,
name : 'to' ,
type : 'dateTime' ,
default : '' ,
description : 'Only return time entries with a spent_date on or before the given date.' ,
} ,
{
displayName : 'Page' ,
name : 'page' ,
2020-01-29 15:51:14 -08:00
type : 'number' ,
typeOptions : {
minValue : 1 ,
} ,
default : 1 ,
2020-01-28 06:46:38 -08:00
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)' ,
}
]
} ,
/* -------------------------------------------------------------------------- */
/* timeEntry:get */
/* -------------------------------------------------------------------------- */
{
displayName : 'Time Entry Id' ,
name : 'id' ,
type : 'string' ,
default : '' ,
required : true ,
displayOptions : {
show : {
operation : [
'get' ,
] ,
2020-01-31 05:32:14 -08:00
resource ,
2020-01-28 06:46:38 -08:00
} ,
} ,
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' ,
] ,
2020-01-31 05:32:14 -08:00
resource ,
2020-01-28 06:46:38 -08:00
} ,
} ,
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' ,
] ,
2020-01-31 05:32:14 -08:00
resource ,
2020-01-28 06:46:38 -08:00
} ,
} ,
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' ,
] ,
2020-01-31 05:32:14 -08:00
resource ,
2020-01-28 06:46:38 -08:00
} ,
} ,
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' ,
] ,
2020-01-31 05:32:14 -08:00
resource ,
2020-01-28 06:46:38 -08:00
} ,
} ,
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' ,
] ,
2020-01-31 05:32:14 -08:00
resource ,
2020-01-28 06:46:38 -08:00
} ,
} ,
description : 'The ID of the time entry to update.' ,
} ,
{
displayName : 'Update Fields' ,
name : 'updateFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
displayOptions : {
show : {
operation : [
'update' ,
] ,
2020-01-31 05:32:14 -08:00
resource ,
2020-01-28 06:46:38 -08:00
} ,
} ,
default : { } ,
options : [
{
displayName : 'Ended Time' ,
2020-01-29 15:51:14 -08:00
name : 'ended_time' ,
2020-01-28 06:46:38 -08:00
type : 'string' ,
default : '' ,
2020-01-29 15:51:14 -08:00
placeholder : '3:00pm' ,
2020-01-28 06:46:38 -08:00
description : 'The time the entry ended.' ,
} ,
{
displayName : 'Hours' ,
name : 'hours' ,
2020-01-29 15:51:14 -08:00
type : 'number' ,
typeOptions : {
minValue : 0 ,
} ,
default : 0 ,
2020-01-28 06:46:38 -08:00
description : 'The current amount of time tracked.' ,
} ,
{
displayName : 'Notes' ,
name : 'notes' ,
type : 'string' ,
default : '' ,
description : 'These are notes about the time entry..' ,
2020-01-29 15:51:14 -08:00
} ,
{
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”.' ,
} ,
2020-01-28 06:46:38 -08:00
] ,
} ,
/* -------------------------------------------------------------------------- */
/* timeEntry:createByDuration */
/* -------------------------------------------------------------------------- */
{
2020-01-29 15:51:14 -08:00
displayName : 'Project Id' ,
name : 'projectId' ,
type : 'string' ,
displayOptions : {
show : {
operation : [
'createByDuration' ,
] ,
2020-01-31 05:32:14 -08:00
resource ,
2020-01-29 15:51:14 -08:00
} ,
} ,
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' ,
] ,
2020-01-31 05:32:14 -08:00
resource ,
2020-01-29 15:51:14 -08:00
} ,
} ,
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' ,
] ,
2020-01-31 05:32:14 -08:00
resource ,
2020-01-29 15:51:14 -08:00
} ,
} ,
default : '' ,
required : true ,
description : 'The ISO 8601 formatted date the time entry was spent.' ,
} ,
{
displayName : 'Additional Fields' ,
name : 'additionalFields' ,
2020-01-28 06:46:38 -08:00
type : 'collection' ,
placeholder : 'Add Field' ,
displayOptions : {
show : {
operation : [
'createByDuration' ,
] ,
2020-01-31 05:32:14 -08:00
resource ,
2020-01-28 06:46:38 -08:00
} ,
} ,
default : { } ,
options : [
{
2020-01-29 15:51:14 -08:00
displayName : 'Hours' ,
name : 'hours' ,
type : 'number' ,
typeOptions : {
minValue : 0 ,
} ,
default : 0 ,
description : 'The current amount of time tracked.' ,
2020-01-28 06:46:38 -08:00
} ,
{
2020-01-29 15:51:14 -08:00
displayName : 'Notes' ,
name : 'notes' ,
2020-01-28 06:46:38 -08:00
type : 'string' ,
default : '' ,
2020-01-29 15:51:14 -08:00
description : 'These are notes about the time entry..' ,
2020-01-28 06:46:38 -08:00
} ,
{
displayName : 'User ID' ,
2020-01-29 15:51:14 -08:00
name : 'user_id' ,
2020-01-28 06:46:38 -08:00
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 */
/* -------------------------------------------------------------------------- */
{
2020-01-29 15:51:14 -08:00
displayName : 'Project Id' ,
name : 'projectId' ,
type : 'string' ,
displayOptions : {
show : {
operation : [
'createByStartEnd' ,
] ,
2020-01-31 05:32:14 -08:00
resource ,
2020-01-29 15:51:14 -08:00
} ,
} ,
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' ,
] ,
2020-01-31 05:32:14 -08:00
resource ,
2020-01-29 15:51:14 -08:00
} ,
} ,
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' ,
] ,
2020-01-31 05:32:14 -08:00
resource ,
2020-01-29 15:51:14 -08:00
} ,
} ,
default : '' ,
required : true ,
description : 'The ISO 8601 formatted date the time entry was spent.' ,
} ,
{
displayName : 'Additional Fields' ,
name : 'additionalFields' ,
2020-01-28 06:46:38 -08:00
type : 'collection' ,
placeholder : 'Add Field' ,
displayOptions : {
show : {
operation : [
'createByStartEnd' ,
] ,
2020-01-31 05:32:14 -08:00
resource ,
2020-01-28 06:46:38 -08:00
} ,
} ,
default : { } ,
options : [
{
2020-01-29 15:51:14 -08:00
displayName : 'Ended Time' ,
name : 'ended_time' ,
2020-01-28 06:46:38 -08:00
type : 'string' ,
default : '' ,
2020-01-29 15:51:14 -08:00
placeholder : '3:00pm' ,
description : 'The time the entry ended.' ,
2020-01-28 06:46:38 -08:00
} ,
{
2020-01-29 15:51:14 -08:00
displayName : 'Notes' ,
name : 'notes' ,
2020-01-28 06:46:38 -08:00
type : 'string' ,
default : '' ,
2020-01-29 15:51:14 -08:00
description : 'These are notes about the time entry..' ,
2020-01-28 06:46:38 -08:00
} ,
{
displayName : 'Started Time' ,
2020-01-29 15:51:14 -08:00
name : 'started_time' ,
2020-01-28 06:46:38 -08:00
type : 'string' ,
default : '' ,
2020-01-29 15:51:14 -08:00
placeholder : '8:00am' ,
2020-01-28 06:46:38 -08:00
description : 'The time the entry started. Defaults to the current time. Example: “8:00am”.' ,
} ,
{
2020-01-29 15:51:14 -08:00
displayName : 'User ID' ,
name : 'user_id' ,
2020-01-28 06:46:38 -08:00
type : 'string' ,
default : '' ,
2020-01-29 15:51:14 -08:00
description : 'The ID of the user to associate with the time entry. Defaults to the currently authenticated user’ s ID.' ,
2020-01-28 06:46:38 -08:00
} ,
] ,
} ,
] as INodeProperties [ ] ;