n8n-nodes-base
Version:
Base nodes of n8n
78 lines (74 loc) • 2.88 kB
text/typescript
/**
* Harvest Node - Version 1
* Discriminator: resource=invoice, operation=create
*/
interface Credentials {
harvestApi: CredentialReference;
harvestOAuth2Api: CredentialReference;
}
/** Create a client */
export type HarvestV1InvoiceCreateParams = {
resource: 'invoice';
operation: 'create';
authentication?: 'accessToken' | 'oAuth2' | Expression<string>;
/**
* Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>
*/
accountId?: string | Expression<string>;
/**
* The ID of the retainer associated with this invoice
*/
clientId?: string | Expression<string> | PlaceholderValue;
/**
* Additional Fields
* @default {}
*/
additionalFields?: {
/** The currency used by the invoice. If not provided, the client’s currency will be used. See a list of supported currencies
*/
currency?: string | Expression<string> | PlaceholderValue;
/** This percentage is subtracted from the subtotal. Example: use 10.0 for 10.0%.
*/
over_budget_notification_percentage?: string | Expression<string> | PlaceholderValue;
/** Date the invoice is due. Defaults to the issue_date if no payment_term is specified.
*/
ends_on?: string | Expression<string>;
/** The ID of the estimate associated with this invoice
*/
estimate_id?: string | Expression<string> | PlaceholderValue;
/** Date the invoice was issued. Defaults to today’s date.
*/
issue_date?: string | Expression<string>;
/** Notes about the project
*/
notes?: string | Expression<string> | PlaceholderValue;
/** If no value is set, the number will be automatically generated
*/
number?: string | Expression<string> | PlaceholderValue;
/** The timeframe in which the invoice should be paid. Defaults to custom. Options: upon receipt, net 15, net 30, net 45, or net 60.
*/
payment_term?: string | Expression<string> | PlaceholderValue;
/** The purchase order number
*/
purchase_order?: string | Expression<string> | PlaceholderValue;
/** The ID of the retainer associated with this invoice
* @default true
*/
retainer_id?: boolean | Expression<boolean>;
/** The invoice subject
*/
subject?: string | Expression<string> | PlaceholderValue;
/** This percentage is applied to the subtotal, including line items and discounts. Example: use 10.0 for 10.0%.
*/
tax?: string | Expression<string> | PlaceholderValue;
/** This percentage is applied to the subtotal, including line items and discounts. Example: use 10.0 for 10.0%.
*/
tax2?: string | Expression<string> | PlaceholderValue;
};
};
export type HarvestV1InvoiceCreateNode = {
type: 'n8n-nodes-base.harvest';
version: 1;
credentials?: Credentials;
config: NodeConfig<HarvestV1InvoiceCreateParams>;
};