mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-12 13:27:31 -08:00
Add Create and Update for Project API
This commit is contained in:
parent
cc302b7508
commit
2a57b15e10
|
@ -342,6 +342,26 @@ export class Harvest implements INodeType {
|
|||
const responseData: IDataObject[] = await getAllResource.call(this, resource, i);
|
||||
returnData.push.apply(returnData, responseData);
|
||||
|
||||
} else if (operation === 'create') {
|
||||
// ----------------------------------
|
||||
// create
|
||||
// ----------------------------------
|
||||
|
||||
requestMethod = 'POST';
|
||||
endpoint = resource;
|
||||
|
||||
body.client_id = this.getNodeParameter('client_id', i) as string;
|
||||
body.name = this.getNodeParameter('name', i) as string;
|
||||
body.is_billable = this.getNodeParameter('is_billable', i) as string;
|
||||
body.bill_by = this.getNodeParameter('bill_by', i) as string;
|
||||
body.budget_by = this.getNodeParameter('budget_by', i) as string;
|
||||
|
||||
const additionalFields = this.getNodeParameter('additionalFields', i) as IDataObject;
|
||||
Object.assign(body, additionalFields);
|
||||
|
||||
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint, body);
|
||||
returnData.push(responseData);
|
||||
|
||||
} else if (operation === 'delete') {
|
||||
// ----------------------------------
|
||||
// delete
|
||||
|
|
|
@ -23,6 +23,16 @@ export const projectOperations = [
|
|||
value: 'getAll',
|
||||
description: 'Get data of all projects',
|
||||
},
|
||||
{
|
||||
name: 'Create',
|
||||
value: 'create',
|
||||
description: `Create a project`,
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
value: 'update',
|
||||
description: `Update a project`,
|
||||
},
|
||||
{
|
||||
name: 'Delete',
|
||||
value: 'delete',
|
||||
|
@ -166,6 +176,362 @@ export const projectFields = [
|
|||
},
|
||||
},
|
||||
description: 'The ID of the project want to delete.',
|
||||
}
|
||||
},
|
||||
|
||||
/* -------------------------------------------------------------------------- */
|
||||
/* project:create */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Name',
|
||||
name: 'name',
|
||||
type: 'string',
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: [
|
||||
'create',
|
||||
],
|
||||
resource,
|
||||
},
|
||||
},
|
||||
default: '',
|
||||
required: true,
|
||||
description: 'The name of the project.',
|
||||
},
|
||||
{
|
||||
displayName: 'Client Id',
|
||||
name: 'client_id',
|
||||
type: 'string',
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: [
|
||||
'create',
|
||||
],
|
||||
resource,
|
||||
},
|
||||
},
|
||||
default: '',
|
||||
required: true,
|
||||
description: 'The ID of the client to associate this project with.',
|
||||
},
|
||||
{
|
||||
displayName: 'Is Billable',
|
||||
name: 'is_billable',
|
||||
type: 'string',
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: [
|
||||
'create',
|
||||
],
|
||||
resource,
|
||||
},
|
||||
},
|
||||
default: '',
|
||||
required: true,
|
||||
description: 'Whether the project is billable or not.',
|
||||
},
|
||||
{
|
||||
displayName: 'Bill By',
|
||||
name: 'bill_by',
|
||||
type: 'string',
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: [
|
||||
'create',
|
||||
],
|
||||
resource,
|
||||
},
|
||||
},
|
||||
default: '',
|
||||
required: true,
|
||||
description: 'The method by which the project is invoiced. Options: Project, Tasks, People, or none.',
|
||||
},
|
||||
{
|
||||
displayName: 'Budget By',
|
||||
name: 'budget_by',
|
||||
type: 'string',
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: [
|
||||
'create',
|
||||
],
|
||||
resource,
|
||||
},
|
||||
},
|
||||
default: '',
|
||||
required: true,
|
||||
description: 'The email of the user.',
|
||||
},
|
||||
{
|
||||
displayName: 'Additional Fields',
|
||||
name: 'additionalFields',
|
||||
type: 'collection',
|
||||
placeholder: 'Add Field',
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: [
|
||||
'create',
|
||||
],
|
||||
resource,
|
||||
},
|
||||
},
|
||||
default: {},
|
||||
options: [
|
||||
{
|
||||
displayName: 'Is Active',
|
||||
name: 'is_active',
|
||||
type: 'boolean',
|
||||
default: true,
|
||||
description: 'Whether the project is active or archived. Defaults to true'
|
||||
},
|
||||
{
|
||||
displayName: 'Is Fixed Fee',
|
||||
name: 'is_fixed_fee',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Whether the project is a fixed-fee project or not.'
|
||||
},
|
||||
{
|
||||
displayName: 'Hourly Rate',
|
||||
name: 'hourly_rate',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Rate for projects billed by Project Hourly Rate.'
|
||||
},
|
||||
{
|
||||
displayName: 'Budget',
|
||||
name: 'budget',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The budget in hours for the project when budgeting by time.'
|
||||
},
|
||||
{
|
||||
displayName: 'Budget Is Monthly',
|
||||
name: 'budget_is_monthly',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Option to have the budget reset every month. Defaults to false.'
|
||||
},
|
||||
{
|
||||
displayName: 'Notify When Over Budget',
|
||||
name: 'notify_when_over_budget',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Whether project managers should be notified when the project goes over budget. Defaults to false.'
|
||||
},
|
||||
{
|
||||
displayName: 'Over Budget Notification Percentage',
|
||||
name: 'over_budget_notification_percentage',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Percentage value used to trigger over budget email alerts. Example: use 10.0 for 10.0%.'
|
||||
},
|
||||
{
|
||||
displayName: 'Show Budget To All',
|
||||
name: 'show_budget_to_all',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Option to show project budget to all employees. Does not apply to Total Project Fee projects. Defaults to false.'
|
||||
},
|
||||
{
|
||||
displayName: 'Cost Budget',
|
||||
name: 'cost_budget',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The monetary budget for the project when budgeting by money.'
|
||||
},
|
||||
{
|
||||
displayName: 'Cost Budget Include Expenses',
|
||||
name: 'cost_budget_include_expenses',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Option for budget of Total Project Fees projects to include tracked expenses. Defaults to false.'
|
||||
},
|
||||
{
|
||||
displayName: 'Fee',
|
||||
name: 'fee',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The amount you plan to invoice for the project. Only used by fixed-fee projects.'
|
||||
},
|
||||
{
|
||||
displayName: 'Notes',
|
||||
name: 'notes',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Notes about the project.'
|
||||
},
|
||||
{
|
||||
displayName: 'Starts On',
|
||||
name: 'starts_on',
|
||||
type: 'dateTime',
|
||||
default: '',
|
||||
description: 'Date the project was started.'
|
||||
},
|
||||
{
|
||||
displayName: 'Ends On',
|
||||
name: 'ends_on',
|
||||
type: 'dateTime',
|
||||
default: '',
|
||||
description: 'Date the project will end.'
|
||||
},
|
||||
|
||||
],
|
||||
},
|
||||
|
||||
/* -------------------------------------------------------------------------- */
|
||||
/* project:update */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
|
||||
{
|
||||
displayName: 'Additional Fields',
|
||||
name: 'additionalFields',
|
||||
type: 'collection',
|
||||
placeholder: 'Add Field',
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: [
|
||||
'create',
|
||||
],
|
||||
resource,
|
||||
},
|
||||
},
|
||||
default: {},
|
||||
options: [
|
||||
{
|
||||
displayName: 'Name',
|
||||
name: 'name',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The name of the project.',
|
||||
},
|
||||
{
|
||||
displayName: 'Client Id',
|
||||
name: 'client_id',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The ID of the client to associate this project with.',
|
||||
},
|
||||
{
|
||||
displayName: 'Is Billable',
|
||||
name: 'is_billable',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Whether the project is billable or not.',
|
||||
},
|
||||
{
|
||||
displayName: 'Bill By',
|
||||
name: 'bill_by',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The method by which the project is invoiced. Options: Project, Tasks, People, or none.',
|
||||
},
|
||||
{
|
||||
displayName: 'Budget By',
|
||||
name: 'budget_by',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The email of the user.',
|
||||
},
|
||||
{
|
||||
displayName: 'Is Active',
|
||||
name: 'is_active',
|
||||
type: 'boolean',
|
||||
default: true,
|
||||
description: 'Whether the project is active or archived. Defaults to true'
|
||||
},
|
||||
{
|
||||
displayName: 'Is Fixed Fee',
|
||||
name: 'is_fixed_fee',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Whether the project is a fixed-fee project or not.'
|
||||
},
|
||||
{
|
||||
displayName: 'Hourly Rate',
|
||||
name: 'hourly_rate',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Rate for projects billed by Project Hourly Rate.'
|
||||
},
|
||||
{
|
||||
displayName: 'Budget',
|
||||
name: 'budget',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The budget in hours for the project when budgeting by time.'
|
||||
},
|
||||
{
|
||||
displayName: 'Budget Is Monthly',
|
||||
name: 'budget_is_monthly',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Option to have the budget reset every month. Defaults to false.'
|
||||
},
|
||||
{
|
||||
displayName: 'Notify When Over Budget',
|
||||
name: 'notify_when_over_budget',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Whether project managers should be notified when the project goes over budget. Defaults to false.'
|
||||
},
|
||||
{
|
||||
displayName: 'Over Budget Notification Percentage',
|
||||
name: 'over_budget_notification_percentage',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Percentage value used to trigger over budget email alerts. Example: use 10.0 for 10.0%.'
|
||||
},
|
||||
{
|
||||
displayName: 'Show Budget To All',
|
||||
name: 'show_budget_to_all',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Option to show project budget to all employees. Does not apply to Total Project Fee projects. Defaults to false.'
|
||||
},
|
||||
{
|
||||
displayName: 'Cost Budget',
|
||||
name: 'cost_budget',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The monetary budget for the project when budgeting by money.'
|
||||
},
|
||||
{
|
||||
displayName: 'Cost Budget Include Expenses',
|
||||
name: 'cost_budget_include_expenses',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Option for budget of Total Project Fees projects to include tracked expenses. Defaults to false.'
|
||||
},
|
||||
{
|
||||
displayName: 'Fee',
|
||||
name: 'fee',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The amount you plan to invoice for the project. Only used by fixed-fee projects.'
|
||||
},
|
||||
{
|
||||
displayName: 'Notes',
|
||||
name: 'notes',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Notes about the project.'
|
||||
},
|
||||
{
|
||||
displayName: 'Starts On',
|
||||
name: 'starts_on',
|
||||
type: 'dateTime',
|
||||
default: '',
|
||||
description: 'Date the project was started.'
|
||||
},
|
||||
{
|
||||
displayName: 'Ends On',
|
||||
name: 'ends_on',
|
||||
type: 'dateTime',
|
||||
default: '',
|
||||
description: 'Date the project will end.'
|
||||
},
|
||||
|
||||
],
|
||||
},
|
||||
|
||||
] as INodeProperties[];
|
||||
|
|
Loading…
Reference in a new issue