mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
Refactor reource names to match endpoint
This commit is contained in:
parent
9ff78410ef
commit
1759f6ce98
|
@ -1,5 +1,7 @@
|
||||||
import { INodeProperties } from "n8n-workflow";
|
import { INodeProperties } from "n8n-workflow";
|
||||||
|
|
||||||
|
const resource = [ 'clients' ];
|
||||||
|
|
||||||
export const clientOperations = [
|
export const clientOperations = [
|
||||||
{
|
{
|
||||||
displayName: 'Operation',
|
displayName: 'Operation',
|
||||||
|
@ -7,9 +9,7 @@ export const clientOperations = [
|
||||||
type: 'options',
|
type: 'options',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource
|
||||||
'client',
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
options: [
|
options: [
|
||||||
|
@ -47,9 +47,7 @@ export const clientFields = [
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource
|
||||||
'client',
|
|
||||||
],
|
|
||||||
operation: [
|
operation: [
|
||||||
'getAll',
|
'getAll',
|
||||||
],
|
],
|
||||||
|
@ -64,9 +62,7 @@ export const clientFields = [
|
||||||
type: 'number',
|
type: 'number',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource
|
||||||
'client',
|
|
||||||
],
|
|
||||||
operation: [
|
operation: [
|
||||||
'getAll',
|
'getAll',
|
||||||
],
|
],
|
||||||
|
@ -90,9 +86,7 @@ export const clientFields = [
|
||||||
default: {},
|
default: {},
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource
|
||||||
'client',
|
|
||||||
],
|
|
||||||
operation: [
|
operation: [
|
||||||
'getAll',
|
'getAll',
|
||||||
],
|
],
|
||||||
|
@ -130,9 +124,7 @@ export const clientFields = [
|
||||||
operation: [
|
operation: [
|
||||||
'get',
|
'get',
|
||||||
],
|
],
|
||||||
resource: [
|
resource
|
||||||
'client',
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The ID of the client you are retrieving.',
|
description: 'The ID of the client you are retrieving.',
|
||||||
|
@ -152,9 +144,7 @@ export const clientFields = [
|
||||||
operation: [
|
operation: [
|
||||||
'delete',
|
'delete',
|
||||||
],
|
],
|
||||||
resource: [
|
resource
|
||||||
'client',
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The ID of the client you want to delete.',
|
description: 'The ID of the client you want to delete.',
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
import { INodeProperties } from "n8n-workflow";
|
import { INodeProperties } from "n8n-workflow";
|
||||||
|
|
||||||
|
const resource = [ 'companies' ];
|
||||||
|
|
||||||
export const companyOperations = [
|
export const companyOperations = [
|
||||||
{
|
{
|
||||||
displayName: 'Operation',
|
displayName: 'Operation',
|
||||||
|
@ -7,9 +9,7 @@ export const companyOperations = [
|
||||||
type: 'options',
|
type: 'options',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource,
|
||||||
'company',
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
options: [
|
options: [
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
import { INodeProperties } from "n8n-workflow";
|
import { INodeProperties } from "n8n-workflow";
|
||||||
|
|
||||||
|
const resource = [ 'contacts' ];
|
||||||
|
|
||||||
export const contactOperations = [
|
export const contactOperations = [
|
||||||
{
|
{
|
||||||
displayName: 'Operation',
|
displayName: 'Operation',
|
||||||
|
@ -7,9 +9,7 @@ export const contactOperations = [
|
||||||
type: 'options',
|
type: 'options',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource,
|
||||||
'contact',
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
options: [
|
options: [
|
||||||
|
@ -47,9 +47,7 @@ export const contactFields = [
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource,
|
||||||
'contact',
|
|
||||||
],
|
|
||||||
operation: [
|
operation: [
|
||||||
'getAll',
|
'getAll',
|
||||||
],
|
],
|
||||||
|
@ -64,9 +62,7 @@ export const contactFields = [
|
||||||
type: 'number',
|
type: 'number',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource,
|
||||||
'contact',
|
|
||||||
],
|
|
||||||
operation: [
|
operation: [
|
||||||
'getAll',
|
'getAll',
|
||||||
],
|
],
|
||||||
|
@ -90,9 +86,7 @@ export const contactFields = [
|
||||||
default: {},
|
default: {},
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource,
|
||||||
'contact',
|
|
||||||
],
|
|
||||||
operation: [
|
operation: [
|
||||||
'getAll',
|
'getAll',
|
||||||
],
|
],
|
||||||
|
@ -130,9 +124,7 @@ export const contactFields = [
|
||||||
operation: [
|
operation: [
|
||||||
'get',
|
'get',
|
||||||
],
|
],
|
||||||
resource: [
|
resource,
|
||||||
'contact',
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The ID of the contact you are retrieving.',
|
description: 'The ID of the contact you are retrieving.',
|
||||||
|
@ -152,9 +144,7 @@ export const contactFields = [
|
||||||
operation: [
|
operation: [
|
||||||
'delete',
|
'delete',
|
||||||
],
|
],
|
||||||
resource: [
|
resource,
|
||||||
'contact',
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The ID of the contact you want to delete.',
|
description: 'The ID of the contact you want to delete.',
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
import { INodeProperties } from "n8n-workflow";
|
import { INodeProperties } from "n8n-workflow";
|
||||||
|
|
||||||
|
const resource = [ 'estimates' ];
|
||||||
|
|
||||||
export const estimateOperations = [
|
export const estimateOperations = [
|
||||||
{
|
{
|
||||||
displayName: 'Operation',
|
displayName: 'Operation',
|
||||||
|
@ -7,9 +9,7 @@ export const estimateOperations = [
|
||||||
type: 'options',
|
type: 'options',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource,
|
||||||
'estimate',
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
options: [
|
options: [
|
||||||
|
@ -47,9 +47,7 @@ export const estimateFields = [
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource,
|
||||||
'estimate',
|
|
||||||
],
|
|
||||||
operation: [
|
operation: [
|
||||||
'getAll',
|
'getAll',
|
||||||
],
|
],
|
||||||
|
@ -64,9 +62,7 @@ export const estimateFields = [
|
||||||
type: 'number',
|
type: 'number',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource,
|
||||||
'estimate',
|
|
||||||
],
|
|
||||||
operation: [
|
operation: [
|
||||||
'getAll',
|
'getAll',
|
||||||
],
|
],
|
||||||
|
@ -90,9 +86,7 @@ export const estimateFields = [
|
||||||
default: {},
|
default: {},
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource,
|
||||||
'estimate',
|
|
||||||
],
|
|
||||||
operation: [
|
operation: [
|
||||||
'getAll',
|
'getAll',
|
||||||
],
|
],
|
||||||
|
@ -161,9 +155,7 @@ export const estimateFields = [
|
||||||
operation: [
|
operation: [
|
||||||
'get',
|
'get',
|
||||||
],
|
],
|
||||||
resource: [
|
resource,
|
||||||
'estimate',
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The ID of the estimate you are retrieving.',
|
description: 'The ID of the estimate you are retrieving.',
|
||||||
|
@ -183,9 +175,7 @@ export const estimateFields = [
|
||||||
operation: [
|
operation: [
|
||||||
'delete',
|
'delete',
|
||||||
],
|
],
|
||||||
resource: [
|
resource,
|
||||||
'estimate',
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The ID of the estimate want to delete.',
|
description: 'The ID of the estimate want to delete.',
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
import { INodeProperties } from "n8n-workflow";
|
import { INodeProperties } from "n8n-workflow";
|
||||||
|
|
||||||
|
const resource = [ 'invoices' ];
|
||||||
|
|
||||||
export const expenseOperations = [
|
export const expenseOperations = [
|
||||||
{
|
{
|
||||||
displayName: 'Operation',
|
displayName: 'Operation',
|
||||||
|
@ -7,9 +9,7 @@ export const expenseOperations = [
|
||||||
type: 'options',
|
type: 'options',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource,
|
||||||
'expense',
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
options: [
|
options: [
|
||||||
|
@ -47,9 +47,7 @@ export const expenseFields = [
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource,
|
||||||
'expense',
|
|
||||||
],
|
|
||||||
operation: [
|
operation: [
|
||||||
'getAll',
|
'getAll',
|
||||||
],
|
],
|
||||||
|
@ -64,9 +62,7 @@ export const expenseFields = [
|
||||||
type: 'number',
|
type: 'number',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource,
|
||||||
'expense',
|
|
||||||
],
|
|
||||||
operation: [
|
operation: [
|
||||||
'getAll',
|
'getAll',
|
||||||
],
|
],
|
||||||
|
@ -90,9 +86,7 @@ export const expenseFields = [
|
||||||
default: {},
|
default: {},
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource,
|
||||||
'expense',
|
|
||||||
],
|
|
||||||
operation: [
|
operation: [
|
||||||
'getAll',
|
'getAll',
|
||||||
],
|
],
|
||||||
|
@ -175,9 +169,7 @@ export const expenseFields = [
|
||||||
operation: [
|
operation: [
|
||||||
'get',
|
'get',
|
||||||
],
|
],
|
||||||
resource: [
|
resource,
|
||||||
'expense',
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The ID of the expense you are retrieving.',
|
description: 'The ID of the expense you are retrieving.',
|
||||||
|
@ -197,9 +189,7 @@ export const expenseFields = [
|
||||||
operation: [
|
operation: [
|
||||||
'delete',
|
'delete',
|
||||||
],
|
],
|
||||||
resource: [
|
resource,
|
||||||
'expense',
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The ID of the expense you want to delete.',
|
description: 'The ID of the expense you want to delete.',
|
||||||
|
|
|
@ -75,35 +75,35 @@ export class Harvest implements INodeType {
|
||||||
|
|
||||||
{
|
{
|
||||||
name: 'Client',
|
name: 'Client',
|
||||||
value: 'client',
|
value: 'clients',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Company',
|
name: 'Company',
|
||||||
value: 'company',
|
value: 'companies',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Contact',
|
name: 'Contact',
|
||||||
value: 'contact',
|
value: 'contacts',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Estimates',
|
name: 'Estimates',
|
||||||
value: 'estimate',
|
value: 'estimates',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Expense',
|
name: 'Expense',
|
||||||
value: 'expense',
|
value: 'expenses',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Invoice',
|
name: 'Invoice',
|
||||||
value: 'invoice',
|
value: 'invoices',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Project',
|
name: 'Project',
|
||||||
value: 'project',
|
value: 'projects',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Task',
|
name: 'Task',
|
||||||
value: 'task',
|
value: 'tasks',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Time Entries',
|
name: 'Time Entries',
|
||||||
|
@ -114,7 +114,7 @@ export class Harvest implements INodeType {
|
||||||
value: 'users',
|
value: 'users',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: 'task',
|
default: 'tasks',
|
||||||
description: 'The resource to operate on.',
|
description: 'The resource to operate on.',
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -284,7 +284,7 @@ export class Harvest implements INodeType {
|
||||||
throw new Error(`The operation "${operation}" is not known!`);
|
throw new Error(`The operation "${operation}" is not known!`);
|
||||||
}
|
}
|
||||||
|
|
||||||
} else if (resource === 'client') {
|
} else if (resource === 'clients') {
|
||||||
if (operation === 'get') {
|
if (operation === 'get') {
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
// get
|
// get
|
||||||
|
@ -293,7 +293,7 @@ export class Harvest implements INodeType {
|
||||||
requestMethod = 'GET';
|
requestMethod = 'GET';
|
||||||
const id = this.getNodeParameter('id', i) as string;
|
const id = this.getNodeParameter('id', i) as string;
|
||||||
|
|
||||||
endpoint = `clients/${id}`;
|
endpoint = `${resource}/${id}`;
|
||||||
|
|
||||||
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
||||||
returnData.push(responseData);
|
returnData.push(responseData);
|
||||||
|
@ -303,7 +303,7 @@ export class Harvest implements INodeType {
|
||||||
// getAll
|
// getAll
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
|
||||||
const responseData: IDataObject[] = await getAllResource.call(this, 'clients', i);
|
const responseData: IDataObject[] = await getAllResource.call(this, resource, i);
|
||||||
returnData.push.apply(returnData, responseData);
|
returnData.push.apply(returnData, responseData);
|
||||||
|
|
||||||
} else if (operation === 'delete') {
|
} else if (operation === 'delete') {
|
||||||
|
@ -313,14 +313,14 @@ export class Harvest implements INodeType {
|
||||||
|
|
||||||
requestMethod = 'DELETE';
|
requestMethod = 'DELETE';
|
||||||
const id = this.getNodeParameter('id', i) as string;
|
const id = this.getNodeParameter('id', i) as string;
|
||||||
endpoint = `clients/${id}`;
|
endpoint = `${resource}/${id}`;
|
||||||
|
|
||||||
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
||||||
returnData.push(responseData);
|
returnData.push(responseData);
|
||||||
} else {
|
} else {
|
||||||
throw new Error(`The resource "${resource}" is not known!`);
|
throw new Error(`The resource "${resource}" is not known!`);
|
||||||
}
|
}
|
||||||
} else if (resource === 'project') {
|
} else if (resource === 'projects') {
|
||||||
if (operation === 'get') {
|
if (operation === 'get') {
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
// get
|
// get
|
||||||
|
@ -329,7 +329,7 @@ export class Harvest implements INodeType {
|
||||||
requestMethod = 'GET';
|
requestMethod = 'GET';
|
||||||
const id = this.getNodeParameter('id', i) as string;
|
const id = this.getNodeParameter('id', i) as string;
|
||||||
|
|
||||||
endpoint = `projects/${id}`;
|
endpoint = `${resource}/${id}`;
|
||||||
|
|
||||||
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
||||||
returnData.push(responseData);
|
returnData.push(responseData);
|
||||||
|
@ -339,7 +339,7 @@ export class Harvest implements INodeType {
|
||||||
// getAll
|
// getAll
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
|
||||||
const responseData: IDataObject[] = await getAllResource.call(this, 'projects', i);
|
const responseData: IDataObject[] = await getAllResource.call(this, resource, i);
|
||||||
returnData.push.apply(returnData, responseData);
|
returnData.push.apply(returnData, responseData);
|
||||||
|
|
||||||
} else if (operation === 'delete') {
|
} else if (operation === 'delete') {
|
||||||
|
@ -349,7 +349,7 @@ export class Harvest implements INodeType {
|
||||||
|
|
||||||
requestMethod = 'DELETE';
|
requestMethod = 'DELETE';
|
||||||
const id = this.getNodeParameter('id', i) as string;
|
const id = this.getNodeParameter('id', i) as string;
|
||||||
endpoint = `projects/${id}`;
|
endpoint = `${resource}/${id}`;
|
||||||
|
|
||||||
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
||||||
returnData.push(responseData);
|
returnData.push(responseData);
|
||||||
|
@ -430,14 +430,14 @@ export class Harvest implements INodeType {
|
||||||
|
|
||||||
requestMethod = 'DELETE';
|
requestMethod = 'DELETE';
|
||||||
const id = this.getNodeParameter('id', i) as string;
|
const id = this.getNodeParameter('id', i) as string;
|
||||||
endpoint = `users/${id}`;
|
endpoint = `${resource}/${id}`;
|
||||||
|
|
||||||
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
||||||
returnData.push(responseData);
|
returnData.push(responseData);
|
||||||
} else {
|
} else {
|
||||||
throw new Error(`The resource "${resource}" is not known!`);
|
throw new Error(`The resource "${resource}" is not known!`);
|
||||||
}
|
}
|
||||||
} else if (resource === 'contact') {
|
} else if (resource === 'contacts') {
|
||||||
if (operation === 'get') {
|
if (operation === 'get') {
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
// get
|
// get
|
||||||
|
@ -446,7 +446,7 @@ export class Harvest implements INodeType {
|
||||||
requestMethod = 'GET';
|
requestMethod = 'GET';
|
||||||
const id = this.getNodeParameter('id', i) as string;
|
const id = this.getNodeParameter('id', i) as string;
|
||||||
|
|
||||||
endpoint = `contacts/${id}`;
|
endpoint = `${resource}/${id}`;
|
||||||
|
|
||||||
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
||||||
returnData.push(responseData);
|
returnData.push(responseData);
|
||||||
|
@ -456,7 +456,7 @@ export class Harvest implements INodeType {
|
||||||
// getAll
|
// getAll
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
|
||||||
const responseData: IDataObject[] = await getAllResource.call(this, 'contacts', i);
|
const responseData: IDataObject[] = await getAllResource.call(this, resource, i);
|
||||||
returnData.push.apply(returnData, responseData);
|
returnData.push.apply(returnData, responseData);
|
||||||
|
|
||||||
} else if (operation === 'delete') {
|
} else if (operation === 'delete') {
|
||||||
|
@ -466,14 +466,14 @@ export class Harvest implements INodeType {
|
||||||
|
|
||||||
requestMethod = 'DELETE';
|
requestMethod = 'DELETE';
|
||||||
const id = this.getNodeParameter('id', i) as string;
|
const id = this.getNodeParameter('id', i) as string;
|
||||||
endpoint = `contacts/${id}`;
|
endpoint = `${resource}/${id}`;
|
||||||
|
|
||||||
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
||||||
returnData.push(responseData);
|
returnData.push(responseData);
|
||||||
} else {
|
} else {
|
||||||
throw new Error(`The resource "${resource}" is not known!`);
|
throw new Error(`The resource "${resource}" is not known!`);
|
||||||
}
|
}
|
||||||
} else if (resource === 'company') {
|
} else if (resource === 'companies') {
|
||||||
if (operation === 'get') {
|
if (operation === 'get') {
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
// get
|
// get
|
||||||
|
@ -488,7 +488,7 @@ export class Harvest implements INodeType {
|
||||||
} else {
|
} else {
|
||||||
throw new Error(`The resource "${resource}" is not known!`);
|
throw new Error(`The resource "${resource}" is not known!`);
|
||||||
}
|
}
|
||||||
} else if (resource === 'task') {
|
} else if (resource === 'tasks') {
|
||||||
if (operation === 'get') {
|
if (operation === 'get') {
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
// get
|
// get
|
||||||
|
@ -497,7 +497,7 @@ export class Harvest implements INodeType {
|
||||||
requestMethod = 'GET';
|
requestMethod = 'GET';
|
||||||
const id = this.getNodeParameter('id', i) as string;
|
const id = this.getNodeParameter('id', i) as string;
|
||||||
|
|
||||||
endpoint = `tasks/${id}`;
|
endpoint = `${resource}/${id}`;
|
||||||
|
|
||||||
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
||||||
returnData.push(responseData);
|
returnData.push(responseData);
|
||||||
|
@ -507,7 +507,7 @@ export class Harvest implements INodeType {
|
||||||
// getAll
|
// getAll
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
|
||||||
const responseData: IDataObject[] = await getAllResource.call(this, 'tasks', i);
|
const responseData: IDataObject[] = await getAllResource.call(this, resource, i);
|
||||||
returnData.push.apply(returnData, responseData);
|
returnData.push.apply(returnData, responseData);
|
||||||
|
|
||||||
} else if (operation === 'delete') {
|
} else if (operation === 'delete') {
|
||||||
|
@ -517,14 +517,14 @@ export class Harvest implements INodeType {
|
||||||
|
|
||||||
requestMethod = 'DELETE';
|
requestMethod = 'DELETE';
|
||||||
const id = this.getNodeParameter('id', i) as string;
|
const id = this.getNodeParameter('id', i) as string;
|
||||||
endpoint = `tasks/${id}`;
|
endpoint = `${resource}/${id}`;
|
||||||
|
|
||||||
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
||||||
returnData.push(responseData);
|
returnData.push(responseData);
|
||||||
} else {
|
} else {
|
||||||
throw new Error(`The resource "${resource}" is not known!`);
|
throw new Error(`The resource "${resource}" is not known!`);
|
||||||
}
|
}
|
||||||
} else if (resource === 'invoice') {
|
} else if (resource === 'invoices') {
|
||||||
if (operation === 'get') {
|
if (operation === 'get') {
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
// get
|
// get
|
||||||
|
@ -533,7 +533,7 @@ export class Harvest implements INodeType {
|
||||||
requestMethod = 'GET';
|
requestMethod = 'GET';
|
||||||
const id = this.getNodeParameter('id', i) as string;
|
const id = this.getNodeParameter('id', i) as string;
|
||||||
|
|
||||||
endpoint = `invoices/${id}`;
|
endpoint = `${resource}/${id}`;
|
||||||
|
|
||||||
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
||||||
returnData.push(responseData);
|
returnData.push(responseData);
|
||||||
|
@ -543,7 +543,7 @@ export class Harvest implements INodeType {
|
||||||
// getAll
|
// getAll
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
|
||||||
const responseData: IDataObject[] = await getAllResource.call(this, 'invoices', i);
|
const responseData: IDataObject[] = await getAllResource.call(this, resource, i);
|
||||||
returnData.push.apply(returnData, responseData);
|
returnData.push.apply(returnData, responseData);
|
||||||
|
|
||||||
} else if (operation === 'delete') {
|
} else if (operation === 'delete') {
|
||||||
|
@ -553,14 +553,14 @@ export class Harvest implements INodeType {
|
||||||
|
|
||||||
requestMethod = 'DELETE';
|
requestMethod = 'DELETE';
|
||||||
const id = this.getNodeParameter('id', i) as string;
|
const id = this.getNodeParameter('id', i) as string;
|
||||||
endpoint = `invoices/${id}`;
|
endpoint = `${resource}/${id}`;
|
||||||
|
|
||||||
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
||||||
returnData.push(responseData);
|
returnData.push(responseData);
|
||||||
} else {
|
} else {
|
||||||
throw new Error(`The resource "${resource}" is not known!`);
|
throw new Error(`The resource "${resource}" is not known!`);
|
||||||
}
|
}
|
||||||
} else if (resource === 'expense') {
|
} else if (resource === 'expenses') {
|
||||||
if (operation === 'get') {
|
if (operation === 'get') {
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
// get
|
// get
|
||||||
|
@ -569,7 +569,7 @@ export class Harvest implements INodeType {
|
||||||
requestMethod = 'GET';
|
requestMethod = 'GET';
|
||||||
const id = this.getNodeParameter('id', i) as string;
|
const id = this.getNodeParameter('id', i) as string;
|
||||||
|
|
||||||
endpoint = `expenses/${id}`;
|
endpoint = `${resource}/${id}`;
|
||||||
|
|
||||||
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
||||||
returnData.push(responseData);
|
returnData.push(responseData);
|
||||||
|
@ -579,7 +579,7 @@ export class Harvest implements INodeType {
|
||||||
// getAll
|
// getAll
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
|
||||||
const responseData: IDataObject[] = await getAllResource.call(this, 'expenses', i);
|
const responseData: IDataObject[] = await getAllResource.call(this, resource, i);
|
||||||
returnData.push.apply(returnData, responseData);
|
returnData.push.apply(returnData, responseData);
|
||||||
|
|
||||||
} else if (operation === 'delete') {
|
} else if (operation === 'delete') {
|
||||||
|
@ -589,14 +589,14 @@ export class Harvest implements INodeType {
|
||||||
|
|
||||||
requestMethod = 'DELETE';
|
requestMethod = 'DELETE';
|
||||||
const id = this.getNodeParameter('id', i) as string;
|
const id = this.getNodeParameter('id', i) as string;
|
||||||
endpoint = `expenses/${id}`;
|
endpoint = `${resource}/${id}`;
|
||||||
|
|
||||||
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
||||||
returnData.push(responseData);
|
returnData.push(responseData);
|
||||||
} else {
|
} else {
|
||||||
throw new Error(`The resource "${resource}" is not known!`);
|
throw new Error(`The resource "${resource}" is not known!`);
|
||||||
}
|
}
|
||||||
} else if (resource === 'estimate') {
|
} else if (resource === 'estimates') {
|
||||||
if (operation === 'get') {
|
if (operation === 'get') {
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
// get
|
// get
|
||||||
|
@ -605,7 +605,7 @@ export class Harvest implements INodeType {
|
||||||
requestMethod = 'GET';
|
requestMethod = 'GET';
|
||||||
const id = this.getNodeParameter('id', i) as string;
|
const id = this.getNodeParameter('id', i) as string;
|
||||||
|
|
||||||
endpoint = `estimates/${id}`;
|
endpoint = `${resource}/${id}`;
|
||||||
|
|
||||||
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
||||||
returnData.push(responseData);
|
returnData.push(responseData);
|
||||||
|
@ -615,7 +615,7 @@ export class Harvest implements INodeType {
|
||||||
// getAll
|
// getAll
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
|
||||||
const responseData: IDataObject[] = await getAllResource.call(this, 'estimates', i);
|
const responseData: IDataObject[] = await getAllResource.call(this, resource, i);
|
||||||
returnData.push.apply(returnData, responseData);
|
returnData.push.apply(returnData, responseData);
|
||||||
|
|
||||||
} else if (operation === 'delete') {
|
} else if (operation === 'delete') {
|
||||||
|
@ -625,7 +625,7 @@ export class Harvest implements INodeType {
|
||||||
|
|
||||||
requestMethod = 'DELETE';
|
requestMethod = 'DELETE';
|
||||||
const id = this.getNodeParameter('id', i) as string;
|
const id = this.getNodeParameter('id', i) as string;
|
||||||
endpoint = `estimates/${id}`;
|
endpoint = `${resource}/${id}`;
|
||||||
|
|
||||||
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
||||||
returnData.push(responseData);
|
returnData.push(responseData);
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
import { INodeProperties } from "n8n-workflow";
|
import { INodeProperties } from "n8n-workflow";
|
||||||
|
|
||||||
|
const resource = [ 'invoices' ];
|
||||||
|
|
||||||
export const invoiceOperations = [
|
export const invoiceOperations = [
|
||||||
{
|
{
|
||||||
displayName: 'Operation',
|
displayName: 'Operation',
|
||||||
|
@ -7,9 +9,7 @@ export const invoiceOperations = [
|
||||||
type: 'options',
|
type: 'options',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource,
|
||||||
'invoice',
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
options: [
|
options: [
|
||||||
|
@ -47,9 +47,7 @@ export const invoiceFields = [
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource,
|
||||||
'invoice',
|
|
||||||
],
|
|
||||||
operation: [
|
operation: [
|
||||||
'getAll',
|
'getAll',
|
||||||
],
|
],
|
||||||
|
@ -64,9 +62,7 @@ export const invoiceFields = [
|
||||||
type: 'number',
|
type: 'number',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource,
|
||||||
'invoice',
|
|
||||||
],
|
|
||||||
operation: [
|
operation: [
|
||||||
'getAll',
|
'getAll',
|
||||||
],
|
],
|
||||||
|
@ -90,9 +86,7 @@ export const invoiceFields = [
|
||||||
default: {},
|
default: {},
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource,
|
||||||
'invoice',
|
|
||||||
],
|
|
||||||
operation: [
|
operation: [
|
||||||
'getAll',
|
'getAll',
|
||||||
],
|
],
|
||||||
|
@ -186,9 +180,7 @@ export const invoiceFields = [
|
||||||
operation: [
|
operation: [
|
||||||
'get',
|
'get',
|
||||||
],
|
],
|
||||||
resource: [
|
resource,
|
||||||
'invoice',
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The ID of the invoice you are retrieving.',
|
description: 'The ID of the invoice you are retrieving.',
|
||||||
|
@ -208,9 +200,7 @@ export const invoiceFields = [
|
||||||
operation: [
|
operation: [
|
||||||
'delete',
|
'delete',
|
||||||
],
|
],
|
||||||
resource: [
|
resource,
|
||||||
'invoice',
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The ID of the invoice want to delete.',
|
description: 'The ID of the invoice want to delete.',
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
import { INodeProperties } from "n8n-workflow";
|
import { INodeProperties } from "n8n-workflow";
|
||||||
|
|
||||||
|
const resource = [ 'projects' ];
|
||||||
|
|
||||||
export const projectOperations = [
|
export const projectOperations = [
|
||||||
{
|
{
|
||||||
displayName: 'Operation',
|
displayName: 'Operation',
|
||||||
|
@ -7,9 +9,7 @@ export const projectOperations = [
|
||||||
type: 'options',
|
type: 'options',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource,
|
||||||
'project',
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
options: [
|
options: [
|
||||||
|
@ -47,9 +47,7 @@ export const projectFields = [
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource,
|
||||||
'project',
|
|
||||||
],
|
|
||||||
operation: [
|
operation: [
|
||||||
'getAll',
|
'getAll',
|
||||||
],
|
],
|
||||||
|
@ -64,9 +62,7 @@ export const projectFields = [
|
||||||
type: 'number',
|
type: 'number',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource,
|
||||||
'project',
|
|
||||||
],
|
|
||||||
operation: [
|
operation: [
|
||||||
'getAll',
|
'getAll',
|
||||||
],
|
],
|
||||||
|
@ -90,9 +86,7 @@ export const projectFields = [
|
||||||
default: {},
|
default: {},
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource,
|
||||||
'project',
|
|
||||||
],
|
|
||||||
operation: [
|
operation: [
|
||||||
'getAll',
|
'getAll',
|
||||||
],
|
],
|
||||||
|
@ -148,9 +142,7 @@ export const projectFields = [
|
||||||
operation: [
|
operation: [
|
||||||
'get',
|
'get',
|
||||||
],
|
],
|
||||||
resource: [
|
resource,
|
||||||
'project',
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The ID of the project you are retrieving.',
|
description: 'The ID of the project you are retrieving.',
|
||||||
|
@ -170,9 +162,7 @@ export const projectFields = [
|
||||||
operation: [
|
operation: [
|
||||||
'delete',
|
'delete',
|
||||||
],
|
],
|
||||||
resource: [
|
resource,
|
||||||
'project',
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The ID of the project want to delete.',
|
description: 'The ID of the project want to delete.',
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { INodeProperties } from "n8n-workflow";
|
import { INodeProperties } from "n8n-workflow";
|
||||||
|
const resource = [ 'tasks' ];
|
||||||
export const taskOperations = [
|
export const taskOperations = [
|
||||||
{
|
{
|
||||||
displayName: 'Operation',
|
displayName: 'Operation',
|
||||||
|
@ -7,9 +7,7 @@ export const taskOperations = [
|
||||||
type: 'options',
|
type: 'options',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource,
|
||||||
'task',
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
options: [
|
options: [
|
||||||
|
@ -47,9 +45,7 @@ export const taskFields = [
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource,
|
||||||
'task',
|
|
||||||
],
|
|
||||||
operation: [
|
operation: [
|
||||||
'getAll',
|
'getAll',
|
||||||
],
|
],
|
||||||
|
@ -64,9 +60,7 @@ export const taskFields = [
|
||||||
type: 'number',
|
type: 'number',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource,
|
||||||
'task',
|
|
||||||
],
|
|
||||||
operation: [
|
operation: [
|
||||||
'getAll',
|
'getAll',
|
||||||
],
|
],
|
||||||
|
@ -90,9 +84,7 @@ export const taskFields = [
|
||||||
default: {},
|
default: {},
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource,
|
||||||
'task',
|
|
||||||
],
|
|
||||||
operation: [
|
operation: [
|
||||||
'getAll',
|
'getAll',
|
||||||
],
|
],
|
||||||
|
@ -140,9 +132,7 @@ export const taskFields = [
|
||||||
operation: [
|
operation: [
|
||||||
'get',
|
'get',
|
||||||
],
|
],
|
||||||
resource: [
|
resource,
|
||||||
'task',
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The ID of the task you are retrieving.',
|
description: 'The ID of the task you are retrieving.',
|
||||||
|
@ -162,9 +152,7 @@ export const taskFields = [
|
||||||
operation: [
|
operation: [
|
||||||
'delete',
|
'delete',
|
||||||
],
|
],
|
||||||
resource: [
|
resource,
|
||||||
'task',
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The ID of the task you wan to delete.',
|
description: 'The ID of the task you wan to delete.',
|
||||||
|
|
Loading…
Reference in a new issue