mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
6dcdb30bf4
* ✏️ Alphabetize lint rules * 🔥 Remove duplicates * ⚡ Update `lintfix` script * 👕 Apply `node-param-operation-without-no-data-expression` (#3329) * 👕 Apply `node-param-operation-without-no-data-expression` * 👕 Add exceptions * 👕 Apply `node-param-description-weak` (#3328) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-option-value-duplicate` (#3331) * 👕 Apply `node-param-description-miscased-json` (#3337) * 👕 Apply `node-param-display-name-excess-inner-whitespace` (#3335) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-type-options-missing-from-limit` (#3336) * Rule workig as intended * ✏️ Uncomment rules Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-option-name-duplicate` (#3338) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-description-wrong-for-simplify` (#3334) * ⚡ fix * ⚡ exceptions * ⚡ changed rule ignoring from file to line * 👕 Apply `node-param-resource-without-no-data-expression` (#3339) * 👕 Apply `node-param-display-name-untrimmed` (#3341) * 👕 Apply `node-param-display-name-miscased-id` (#3340) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-resource-with-plural-option` (#3342) * 👕 Apply `node-param-description-wrong-for-upsert` (#3333) * ⚡ fix * ⚡ replaced record with contact in description * ⚡ fix Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-option-description-identical-to-name` (#3343) * 👕 Apply `node-param-option-name-containing-star` (#3347) * 👕 Apply `node-param-display-name-wrong-for-update-fields` (#3348) * 👕 Apply `node-param-option-name-wrong-for-get-all` (#3345) * ⚡ fix * ⚡ exceptions * 👕 Apply node-param-display-name-wrong-for-simplify (#3344) * Rule working as intended * Uncomented other rules * 👕 Undo and add exceptions Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * ⚡ Alphabetize lint rules * ⚡ Restore `lintfix` script Co-authored-by: Michael Kret <88898367+michael-radency@users.noreply.github.com> Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com>
977 lines
21 KiB
TypeScript
977 lines
21 KiB
TypeScript
import {
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
export const invoiceOperations: INodeProperties[] = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'invoice',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Create',
|
|
value: 'create',
|
|
description: 'Create a invoice',
|
|
},
|
|
{
|
|
name: 'Get',
|
|
value: 'get',
|
|
description: 'Get a invoice',
|
|
},
|
|
{
|
|
name: 'Get All',
|
|
value: 'getAll',
|
|
description: 'Get all invoices',
|
|
},
|
|
{
|
|
name: 'Update',
|
|
value: 'update',
|
|
description: 'Update a invoice',
|
|
},
|
|
],
|
|
default: 'create',
|
|
},
|
|
];
|
|
|
|
export const invoiceFields: INodeProperties[] = [
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* invoice:create */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Organization ID',
|
|
name: 'organizationId',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getTenants',
|
|
},
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'invoice',
|
|
],
|
|
operation: [
|
|
'create',
|
|
],
|
|
},
|
|
},
|
|
required: true,
|
|
},
|
|
{
|
|
displayName: 'Type',
|
|
name: 'type',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Bill',
|
|
value: 'ACCPAY',
|
|
description: 'Accounts Payable or supplier invoice',
|
|
},
|
|
{
|
|
name: 'Sales Invoice',
|
|
value: 'ACCREC',
|
|
description: 'Accounts Receivable or customer invoice',
|
|
},
|
|
],
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'invoice',
|
|
],
|
|
operation: [
|
|
'create',
|
|
],
|
|
},
|
|
},
|
|
required: true,
|
|
description: 'Invoice Type',
|
|
},
|
|
{
|
|
displayName: 'Contact ID',
|
|
name: 'contactId',
|
|
type: 'string',
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'invoice',
|
|
],
|
|
operation: [
|
|
'create',
|
|
],
|
|
},
|
|
},
|
|
required: true,
|
|
},
|
|
{
|
|
displayName: 'Line Items',
|
|
name: 'lineItemsUi',
|
|
placeholder: 'Add Line Item',
|
|
type: 'fixedCollection',
|
|
default: {},
|
|
typeOptions: {
|
|
multipleValues: true,
|
|
},
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'invoice',
|
|
],
|
|
operation: [
|
|
'create',
|
|
],
|
|
},
|
|
},
|
|
description: 'Line item data',
|
|
options: [
|
|
{
|
|
name: 'lineItemsValues',
|
|
displayName: 'Line Item',
|
|
values: [
|
|
{
|
|
displayName: 'Description',
|
|
name: 'description',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'A line item with just a description',
|
|
},
|
|
{
|
|
displayName: 'Quantity',
|
|
name: 'quantity',
|
|
type: 'number',
|
|
default: 1,
|
|
typeOptions: {
|
|
minValue: 1,
|
|
},
|
|
description: 'LineItem Quantity',
|
|
},
|
|
{
|
|
displayName: 'Unit Amount',
|
|
name: 'unitAmount',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Lineitem unit amount. By default, unit amount will be rounded to two decimal places.',
|
|
},
|
|
{
|
|
displayName: 'Item Code',
|
|
name: 'itemCode',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getItemCodes',
|
|
loadOptionsDependsOn: [
|
|
'organizationId',
|
|
],
|
|
},
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Account Code',
|
|
name: 'accountCode',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getAccountCodes',
|
|
loadOptionsDependsOn: [
|
|
'organizationId',
|
|
],
|
|
},
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Tax Type',
|
|
name: 'taxType',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Tax on Purchases',
|
|
value: 'INPUT',
|
|
},
|
|
{
|
|
name: 'Tax Exempt',
|
|
value: 'NONE',
|
|
},
|
|
{
|
|
name: 'Tax on Sales',
|
|
value: 'OUTPUT',
|
|
},
|
|
{
|
|
name: 'Sales Tax on Imports',
|
|
value: 'GSTONIMPORTS',
|
|
},
|
|
],
|
|
default: '',
|
|
required: true,
|
|
},
|
|
{
|
|
displayName: 'Tax Amount',
|
|
name: 'taxAmount',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'The tax amount is auto calculated as a percentage of the line amount based on the tax rate',
|
|
},
|
|
{
|
|
displayName: 'Line Amount',
|
|
name: 'lineAmount',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'The line amount reflects the discounted price if a DiscountRate has been used',
|
|
},
|
|
{
|
|
displayName: 'Discount Rate',
|
|
name: 'discountRate',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Percentage discount or discount amount being applied to a line item. Only supported on ACCREC invoices - ACCPAY invoices and credit notes in Xero do not support discounts.',
|
|
},
|
|
// {
|
|
// displayName: 'Tracking',
|
|
// name: 'trackingUi',
|
|
// placeholder: 'Add Tracking',
|
|
// description: 'Any LineItem can have a maximum of 2 TrackingCategory elements.',
|
|
// type: 'fixedCollection',
|
|
// typeOptions: {
|
|
// multipleValues: true,
|
|
// },
|
|
// default: {},
|
|
// options: [
|
|
// {
|
|
// name: 'trackingValues',
|
|
// displayName: 'Tracking',
|
|
// values: [
|
|
// {
|
|
// displayName: 'Name',
|
|
// name: 'name',
|
|
// type: 'options',
|
|
// typeOptions: {
|
|
// loadOptionsMethod: 'getTrakingCategories',
|
|
// loadOptionsDependsOn: [
|
|
// 'organizationId',
|
|
// ],
|
|
// },
|
|
// default: '',
|
|
// description: 'Name of the tracking category',
|
|
// },
|
|
// {
|
|
// displayName: 'Option',
|
|
// name: 'option',
|
|
// type: 'options',
|
|
// typeOptions: {
|
|
// loadOptionsMethod: 'getTrakingOptions',
|
|
// loadOptionsDependsOn: [
|
|
// '/name',
|
|
// ],
|
|
// },
|
|
// default: '',
|
|
// description: 'Name of the option',
|
|
// },
|
|
// ],
|
|
// },
|
|
// ],
|
|
// },
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
displayName: 'Additional Fields',
|
|
name: 'additionalFields',
|
|
type: 'collection',
|
|
placeholder: 'Add Field',
|
|
default: {},
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'invoice',
|
|
],
|
|
operation: [
|
|
'create',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'Branding Theme ID',
|
|
name: 'brandingThemeId',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getBrandingThemes',
|
|
loadOptionsDependsOn: [
|
|
'organizationId',
|
|
],
|
|
},
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Currency',
|
|
name: 'currency',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getCurrencies',
|
|
loadOptionsDependsOn: [
|
|
'organizationId',
|
|
],
|
|
},
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Currency Rate',
|
|
name: 'currencyRate',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'The currency rate for a multicurrency invoice. If no rate is specified, the XE.com day rate is used.',
|
|
},
|
|
{
|
|
displayName: 'Date',
|
|
name: 'date',
|
|
type: 'dateTime',
|
|
default: '',
|
|
description: 'Date invoice was issued - YYYY-MM-DD. If the Date element is not specified it will default to the current date based on the timezone setting of the organisation.',
|
|
},
|
|
{
|
|
displayName: 'Due Date',
|
|
name: 'dueDate',
|
|
type: 'dateTime',
|
|
default: '',
|
|
description: 'Date invoice is due - YYYY-MM-DD',
|
|
},
|
|
{
|
|
displayName: 'Expected Payment Date',
|
|
name: 'expectedPaymentDate',
|
|
type: 'dateTime',
|
|
default: '',
|
|
description: 'Shown on sales invoices (Accounts Receivable) when this has been set',
|
|
},
|
|
{
|
|
displayName: 'Invoice Number',
|
|
name: 'invoiceNumber',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Line Amount Type',
|
|
name: 'lineAmountType',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Exclusive',
|
|
value: 'Exclusive',
|
|
description: 'Line items are exclusive of tax',
|
|
},
|
|
{
|
|
name: 'Inclusive',
|
|
value: 'Inclusive',
|
|
description: 'Line items are inclusive tax',
|
|
},
|
|
{
|
|
name: 'NoTax',
|
|
value: 'NoTax',
|
|
description: 'Line have no tax',
|
|
},
|
|
],
|
|
default: 'Exclusive',
|
|
},
|
|
{
|
|
displayName: 'Planned Payment Date',
|
|
name: 'plannedPaymentDate',
|
|
type: 'dateTime',
|
|
default: '',
|
|
description: 'Shown on bills (Accounts Payable) when this has been set',
|
|
},
|
|
{
|
|
displayName: 'Reference',
|
|
name: 'reference',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'ACCREC only - additional reference number (max length = 255)',
|
|
},
|
|
{
|
|
displayName: 'Send To Contact',
|
|
name: 'sendToContact',
|
|
type: 'boolean',
|
|
default: false,
|
|
description: 'Whether the invoice in the Xero app should be marked as "sent". This can be set only on invoices that have been approved.',
|
|
},
|
|
{
|
|
displayName: 'Status',
|
|
name: 'status',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Draft',
|
|
value: 'DRAFT',
|
|
},
|
|
{
|
|
name: 'Submitted',
|
|
value: 'SUBMITTED',
|
|
},
|
|
{
|
|
name: 'Authorised',
|
|
value: 'AUTHORISED',
|
|
},
|
|
],
|
|
default: 'DRAFT',
|
|
},
|
|
{
|
|
displayName: 'URL',
|
|
name: 'url',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'URL link to a source document - shown as "Go to [appName]" in the Xero app',
|
|
},
|
|
],
|
|
},
|
|
/* -------------------------------------------------------------------------- */
|
|
/* invoice:update */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Organization ID',
|
|
name: 'organizationId',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getTenants',
|
|
},
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'invoice',
|
|
],
|
|
operation: [
|
|
'update',
|
|
],
|
|
},
|
|
},
|
|
required: true,
|
|
},
|
|
{
|
|
displayName: 'Invoice ID',
|
|
name: 'invoiceId',
|
|
type: 'string',
|
|
default: '',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'invoice',
|
|
],
|
|
operation: [
|
|
'update',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Update Fields',
|
|
name: 'updateFields',
|
|
type: 'collection',
|
|
placeholder: 'Add Field',
|
|
default: {},
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'invoice',
|
|
],
|
|
operation: [
|
|
'update',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'Branding Theme ID',
|
|
name: 'brandingThemeId',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getBrandingThemes',
|
|
loadOptionsDependsOn: [
|
|
'organizationId',
|
|
],
|
|
},
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Contact ID',
|
|
name: 'contactId',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Currency',
|
|
name: 'currency',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getCurrencies',
|
|
loadOptionsDependsOn: [
|
|
'organizationId',
|
|
],
|
|
},
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Currency Rate',
|
|
name: 'currencyRate',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'The currency rate for a multicurrency invoice. If no rate is specified, the XE.com day rate is used.',
|
|
},
|
|
{
|
|
displayName: 'Date',
|
|
name: 'date',
|
|
type: 'dateTime',
|
|
default: '',
|
|
description: 'Date invoice was issued - YYYY-MM-DD. If the Date element is not specified it will default to the current date based on the timezone setting of the organisation.',
|
|
},
|
|
{
|
|
displayName: 'Due Date',
|
|
name: 'dueDate',
|
|
type: 'dateTime',
|
|
default: '',
|
|
description: 'Date invoice is due - YYYY-MM-DD',
|
|
},
|
|
{
|
|
displayName: 'Expected Payment Date',
|
|
name: 'expectedPaymentDate',
|
|
type: 'dateTime',
|
|
default: '',
|
|
description: 'Shown on sales invoices (Accounts Receivable) when this has been set',
|
|
},
|
|
{
|
|
displayName: 'Invoice Number',
|
|
name: 'invoiceNumber',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Line Amount Type',
|
|
name: 'lineAmountType',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Exclusive',
|
|
value: 'Exclusive',
|
|
description: 'Line items are exclusive of tax',
|
|
},
|
|
{
|
|
name: 'Inclusive',
|
|
value: 'Inclusive',
|
|
description: 'Line items are inclusive tax',
|
|
},
|
|
{
|
|
name: 'NoTax',
|
|
value: 'NoTax',
|
|
description: 'Line have no tax',
|
|
},
|
|
],
|
|
default: 'Exclusive',
|
|
},
|
|
{
|
|
displayName: 'Line Items',
|
|
name: 'lineItemsUi',
|
|
placeholder: 'Add Line Item',
|
|
type: 'fixedCollection',
|
|
default: {},
|
|
typeOptions: {
|
|
multipleValues: true,
|
|
},
|
|
description: 'Line item data',
|
|
options: [
|
|
{
|
|
name: 'lineItemsValues',
|
|
displayName: 'Line Item',
|
|
values: [
|
|
{
|
|
displayName: 'Line Item ID',
|
|
name: 'lineItemId',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'The Xero generated identifier for a LineItem',
|
|
},
|
|
{
|
|
displayName: 'Description',
|
|
name: 'description',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'A line item with just a description',
|
|
},
|
|
{
|
|
displayName: 'Quantity',
|
|
name: 'quantity',
|
|
type: 'number',
|
|
default: 1,
|
|
typeOptions: {
|
|
minValue: 1,
|
|
},
|
|
description: 'LineItem Quantity',
|
|
},
|
|
{
|
|
displayName: 'Unit Amount',
|
|
name: 'unitAmount',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Lineitem unit amount. By default, unit amount will be rounded to two decimal places.',
|
|
},
|
|
{
|
|
displayName: 'Item Code',
|
|
name: 'itemCode',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getItemCodes',
|
|
loadOptionsDependsOn: [
|
|
'organizationId',
|
|
],
|
|
},
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Account Code',
|
|
name: 'accountCode',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getAccountCodes',
|
|
loadOptionsDependsOn: [
|
|
'organizationId',
|
|
],
|
|
},
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Tax Type',
|
|
name: 'taxType',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Tax on Purchases',
|
|
value: 'INPUT',
|
|
},
|
|
{
|
|
name: 'Tax Exempt',
|
|
value: 'NONE',
|
|
},
|
|
{
|
|
name: 'Tax on Sales',
|
|
value: 'OUTPUT',
|
|
},
|
|
{
|
|
name: 'Sales Tax on Imports',
|
|
value: 'GSTONIMPORTS',
|
|
},
|
|
],
|
|
default: '',
|
|
required: true,
|
|
},
|
|
{
|
|
displayName: 'Tax Amount',
|
|
name: 'taxAmount',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'The tax amount is auto calculated as a percentage of the line amount based on the tax rate',
|
|
},
|
|
{
|
|
displayName: 'Line Amount',
|
|
name: 'lineAmount',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'The line amount reflects the discounted price if a DiscountRate has been used',
|
|
},
|
|
{
|
|
displayName: 'Discount Rate',
|
|
name: 'discountRate',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Percentage discount or discount amount being applied to a line item. Only supported on ACCREC invoices - ACCPAY invoices and credit notes in Xero do not support discounts.',
|
|
},
|
|
// {
|
|
// displayName: 'Tracking',
|
|
// name: 'trackingUi',
|
|
// placeholder: 'Add Tracking',
|
|
// description: 'Any LineItem can have a maximum of 2 TrackingCategory elements.',
|
|
// type: 'fixedCollection',
|
|
// typeOptions: {
|
|
// multipleValues: true,
|
|
// },
|
|
// default: {},
|
|
// options: [
|
|
// {
|
|
// name: 'trackingValues',
|
|
// displayName: 'Tracking',
|
|
// values: [
|
|
// {
|
|
// displayName: 'Name',
|
|
// name: 'name',
|
|
// type: 'options',
|
|
// typeOptions: {
|
|
// loadOptionsMethod: 'getTrakingCategories',
|
|
// loadOptionsDependsOn: [
|
|
// 'organizationId',
|
|
// ],
|
|
// },
|
|
// default: '',
|
|
// description: 'Name of the tracking category',
|
|
// },
|
|
// {
|
|
// displayName: 'Option',
|
|
// name: 'option',
|
|
// type: 'options',
|
|
// typeOptions: {
|
|
// loadOptionsMethod: 'getTrakingOptions',
|
|
// loadOptionsDependsOn: [
|
|
// '/name',
|
|
// ],
|
|
// },
|
|
// default: '',
|
|
// description: 'Name of the option',
|
|
// },
|
|
// ],
|
|
// },
|
|
// ],
|
|
// },
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
displayName: 'Planned Payment Date',
|
|
name: 'plannedPaymentDate',
|
|
type: 'dateTime',
|
|
default: '',
|
|
description: 'Shown on bills (Accounts Payable) when this has been set',
|
|
},
|
|
{
|
|
displayName: 'Reference',
|
|
name: 'reference',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'ACCREC only - additional reference number (max length = 255)',
|
|
},
|
|
{
|
|
displayName: 'Send To Contact',
|
|
name: 'sendToContact',
|
|
type: 'boolean',
|
|
default: false,
|
|
description: 'Whether the invoice in the Xero app should be marked as "sent". This can be set only on invoices that have been approved.',
|
|
},
|
|
{
|
|
displayName: 'Status',
|
|
name: 'status',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Draft',
|
|
value: 'DRAFT',
|
|
},
|
|
{
|
|
name: 'Submitted',
|
|
value: 'SUBMITTED',
|
|
},
|
|
{
|
|
name: 'Authorised',
|
|
value: 'AUTHORISED',
|
|
},
|
|
],
|
|
default: 'DRAFT',
|
|
},
|
|
{
|
|
displayName: 'URL',
|
|
name: 'url',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'URL link to a source document - shown as "Go to [appName]" in the Xero app',
|
|
},
|
|
],
|
|
},
|
|
/* -------------------------------------------------------------------------- */
|
|
/* invoice:get */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Organization ID',
|
|
name: 'organizationId',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getTenants',
|
|
},
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'invoice',
|
|
],
|
|
operation: [
|
|
'get',
|
|
],
|
|
},
|
|
},
|
|
required: true,
|
|
},
|
|
{
|
|
displayName: 'Invoice ID',
|
|
name: 'invoiceId',
|
|
type: 'string',
|
|
default: '',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'invoice',
|
|
],
|
|
operation: [
|
|
'get',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
/* -------------------------------------------------------------------------- */
|
|
/* invoice:getAll */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Organization ID',
|
|
name: 'organizationId',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getTenants',
|
|
},
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'invoice',
|
|
],
|
|
operation: [
|
|
'getAll',
|
|
],
|
|
},
|
|
},
|
|
required: true,
|
|
},
|
|
{
|
|
displayName: 'Return All',
|
|
name: 'returnAll',
|
|
type: 'boolean',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'invoice',
|
|
],
|
|
operation: [
|
|
'getAll',
|
|
],
|
|
},
|
|
},
|
|
default: false,
|
|
description: 'Whether to return all results or only up to a given limit',
|
|
},
|
|
{
|
|
displayName: 'Limit',
|
|
name: 'limit',
|
|
type: 'number',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'invoice',
|
|
],
|
|
operation: [
|
|
'getAll',
|
|
],
|
|
returnAll: [
|
|
false,
|
|
],
|
|
},
|
|
},
|
|
typeOptions: {
|
|
minValue: 1,
|
|
maxValue: 100,
|
|
},
|
|
default: 100,
|
|
description: 'Max number of results to return',
|
|
},
|
|
{
|
|
displayName: 'Options',
|
|
name: 'options',
|
|
type: 'collection',
|
|
placeholder: 'Add Option',
|
|
default: {},
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'invoice',
|
|
],
|
|
operation: [
|
|
'getAll',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'Created By My App',
|
|
name: 'createdByMyApp',
|
|
type: 'boolean',
|
|
default: false,
|
|
description: 'When set to true you\'ll only retrieve Invoices created by your app',
|
|
},
|
|
{
|
|
displayName: 'Order By',
|
|
name: 'orderBy',
|
|
type: 'string',
|
|
placeholder: 'InvoiceID',
|
|
default: '',
|
|
description: 'Order by any element returned',
|
|
},
|
|
{
|
|
displayName: 'Sort Order',
|
|
name: 'sortOrder',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Asc',
|
|
value: 'ASC',
|
|
},
|
|
{
|
|
name: 'Desc',
|
|
value: 'DESC',
|
|
},
|
|
],
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Statuses',
|
|
name: 'statuses',
|
|
type: 'multiOptions',
|
|
options: [
|
|
{
|
|
name: 'Draft',
|
|
value: 'DRAFT',
|
|
},
|
|
{
|
|
name: 'Submitted',
|
|
value: 'SUBMITTED',
|
|
},
|
|
{
|
|
name: 'Authorised',
|
|
value: 'AUTHORISED',
|
|
},
|
|
],
|
|
default: [],
|
|
},
|
|
{
|
|
displayName: 'Where',
|
|
name: 'where',
|
|
type: 'string',
|
|
typeOptions: {
|
|
alwaysOpenEditWindow: true,
|
|
},
|
|
placeholder: 'EmailAddress!=null&&EmailAddress.StartsWith("boom")',
|
|
default: '',
|
|
description: 'The where parameter allows you to filter on endpoints and elements that don\'t have explicit parameters. <a href="https://developer.xero.com/documentation/api/requests-and-responses#get-modified">Examples Here</a>.',
|
|
},
|
|
],
|
|
},
|
|
];
|