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,7 +342,27 @@ export class Harvest implements INodeType {
|
||||||
const responseData: IDataObject[] = await getAllResource.call(this, resource, 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 === '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
|
// delete
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import { INodeProperties } from "n8n-workflow";
|
import { INodeProperties } from "n8n-workflow";
|
||||||
|
|
||||||
const resource = [ 'projects' ];
|
const resource = ['projects'];
|
||||||
|
|
||||||
export const projectOperations = [
|
export const projectOperations = [
|
||||||
{
|
{
|
||||||
|
@ -23,6 +23,16 @@ export const projectOperations = [
|
||||||
value: 'getAll',
|
value: 'getAll',
|
||||||
description: 'Get data of all projects',
|
description: 'Get data of all projects',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: 'Create',
|
||||||
|
value: 'create',
|
||||||
|
description: `Create a project`,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Update',
|
||||||
|
value: 'update',
|
||||||
|
description: `Update a project`,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: 'Delete',
|
name: 'Delete',
|
||||||
value: 'delete',
|
value: 'delete',
|
||||||
|
@ -37,135 +47,491 @@ export const projectOperations = [
|
||||||
|
|
||||||
export const projectFields = [
|
export const projectFields = [
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
/* projects:getAll */
|
/* projects:getAll */
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
|
|
||||||
{
|
{
|
||||||
displayName: 'Return All',
|
displayName: 'Return All',
|
||||||
name: 'returnAll',
|
name: 'returnAll',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource,
|
resource,
|
||||||
operation: [
|
operation: [
|
||||||
'getAll',
|
'getAll',
|
||||||
],
|
],
|
||||||
},
|
|
||||||
},
|
|
||||||
default: false,
|
|
||||||
description: 'Returns a list of your projects.',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
displayName: 'Limit',
|
|
||||||
name: 'limit',
|
|
||||||
type: 'number',
|
|
||||||
displayOptions: {
|
|
||||||
show: {
|
|
||||||
resource,
|
|
||||||
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: {
|
|
||||||
resource,
|
|
||||||
operation: [
|
|
||||||
'getAll',
|
|
||||||
],
|
|
||||||
},
|
|
||||||
},
|
|
||||||
options: [
|
|
||||||
{
|
|
||||||
displayName: 'Is Active',
|
|
||||||
name: 'is_active',
|
|
||||||
type: 'boolean',
|
|
||||||
default: true,
|
|
||||||
description: 'Pass true to only return active projects and false to return inactive projects.',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
displayName: 'Client Id',
|
|
||||||
name: 'client_id',
|
|
||||||
type: 'string',
|
|
||||||
default: '',
|
|
||||||
description: 'Only return projects belonging to the client with the given ID.',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
displayName: 'Updated Since',
|
|
||||||
name: 'updated_since',
|
|
||||||
type: 'dateTime',
|
|
||||||
default: '',
|
|
||||||
description: 'Only return projects by updated_since.',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
displayName: 'Page',
|
|
||||||
name: 'page',
|
|
||||||
type: 'number',
|
|
||||||
typeOptions: {
|
|
||||||
minValue: 1,
|
|
||||||
},
|
},
|
||||||
default: 1,
|
|
||||||
description: 'The page number to use in pagination.',
|
|
||||||
},
|
|
||||||
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
|
||||||
/* project:get */
|
|
||||||
/* -------------------------------------------------------------------------- */
|
|
||||||
{
|
|
||||||
displayName: 'Project Id',
|
|
||||||
name: 'id',
|
|
||||||
type: 'string',
|
|
||||||
default: '',
|
|
||||||
required: true,
|
|
||||||
displayOptions: {
|
|
||||||
show: {
|
|
||||||
operation: [
|
|
||||||
'get',
|
|
||||||
],
|
|
||||||
resource,
|
|
||||||
},
|
},
|
||||||
|
default: false,
|
||||||
|
description: 'Returns a list of your projects.',
|
||||||
},
|
},
|
||||||
description: 'The ID of the project you are retrieving.',
|
{
|
||||||
},
|
displayName: 'Limit',
|
||||||
|
name: 'limit',
|
||||||
/* -------------------------------------------------------------------------- */
|
type: 'number',
|
||||||
/* project:delete */
|
displayOptions: {
|
||||||
/* -------------------------------------------------------------------------- */
|
show: {
|
||||||
{
|
resource,
|
||||||
displayName: 'Project Id',
|
operation: [
|
||||||
name: 'id',
|
'getAll',
|
||||||
type: 'string',
|
],
|
||||||
default: '',
|
returnAll: [
|
||||||
required: true,
|
false,
|
||||||
displayOptions: {
|
],
|
||||||
show: {
|
},
|
||||||
operation: [
|
|
||||||
'delete',
|
|
||||||
],
|
|
||||||
resource,
|
|
||||||
},
|
},
|
||||||
|
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: {
|
||||||
|
resource,
|
||||||
|
operation: [
|
||||||
|
'getAll',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
displayName: 'Is Active',
|
||||||
|
name: 'is_active',
|
||||||
|
type: 'boolean',
|
||||||
|
default: true,
|
||||||
|
description: 'Pass true to only return active projects and false to return inactive projects.',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Client Id',
|
||||||
|
name: 'client_id',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
description: 'Only return projects belonging to the client with the given ID.',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Updated Since',
|
||||||
|
name: 'updated_since',
|
||||||
|
type: 'dateTime',
|
||||||
|
default: '',
|
||||||
|
description: 'Only return projects by updated_since.',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Page',
|
||||||
|
name: 'page',
|
||||||
|
type: 'number',
|
||||||
|
typeOptions: {
|
||||||
|
minValue: 1,
|
||||||
|
},
|
||||||
|
default: 1,
|
||||||
|
description: 'The page number to use in pagination.',
|
||||||
|
},
|
||||||
|
|
||||||
|
]
|
||||||
|
},
|
||||||
|
|
||||||
|
/* -------------------------------------------------------------------------- */
|
||||||
|
/* project:get */
|
||||||
|
/* -------------------------------------------------------------------------- */
|
||||||
|
{
|
||||||
|
displayName: 'Project Id',
|
||||||
|
name: 'id',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
required: true,
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
operation: [
|
||||||
|
'get',
|
||||||
|
],
|
||||||
|
resource,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
description: 'The ID of the project you are retrieving.',
|
||||||
|
},
|
||||||
|
|
||||||
|
/* -------------------------------------------------------------------------- */
|
||||||
|
/* project:delete */
|
||||||
|
/* -------------------------------------------------------------------------- */
|
||||||
|
{
|
||||||
|
displayName: 'Project Id',
|
||||||
|
name: 'id',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
required: true,
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
operation: [
|
||||||
|
'delete',
|
||||||
|
],
|
||||||
|
resource,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
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.'
|
||||||
|
},
|
||||||
|
|
||||||
|
],
|
||||||
},
|
},
|
||||||
description: 'The ID of the project want to delete.',
|
|
||||||
}
|
|
||||||
|
|
||||||
] as INodeProperties[];
|
] as INodeProperties[];
|
||||||
|
|
Loading…
Reference in a new issue