1
1
mirror of https://github.com/n8n-io/n8n.git synced 2024-09-20 09:27:44 +03:00
n8n/packages/nodes-base/nodes/InvoiceNinja/TaskInterface.ts
Ricardo Espinoza 7ce2de0e7c
🐛 Fix issue sending the parameter project incorrectly (Invoiceninja) (#1619)
When creating a task, the project parameter was being send 'project' but it must be 'project_id'
2021-04-02 14:31:44 +02:00

9 lines
163 B
TypeScript

export interface ITask {
client_id?: number;
custom_value1?: string;
custom_value2?: string;
description?: string;
project_id?: number;
time_log?: string;
}