first commit
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
This commit is contained in:
@@ -0,0 +1,327 @@
|
||||
import type { INodeProperties } from 'n8n-workflow';
|
||||
|
||||
export const destinationOperations: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'Operation',
|
||||
name: 'operation',
|
||||
type: 'options',
|
||||
noDataExpression: true,
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['destination'],
|
||||
},
|
||||
},
|
||||
options: [
|
||||
{
|
||||
name: 'Create',
|
||||
value: 'create',
|
||||
description: 'Create a new destination',
|
||||
action: 'Create a destination',
|
||||
},
|
||||
{
|
||||
name: 'Get',
|
||||
value: 'get',
|
||||
description: 'Get a specific destination',
|
||||
action: 'Get a destination',
|
||||
},
|
||||
],
|
||||
default: 'get',
|
||||
},
|
||||
];
|
||||
|
||||
const unparsedField = {
|
||||
displayName: 'Unparsed Address',
|
||||
name: 'unparsed',
|
||||
type: 'boolean',
|
||||
description: 'Whether or not the address is specified in a single unparsed string',
|
||||
default: false,
|
||||
} as INodeProperties;
|
||||
|
||||
const unparsedAddressField = {
|
||||
displayName: 'Destination Address',
|
||||
name: 'address',
|
||||
type: 'string',
|
||||
description: "The destination's street address details",
|
||||
default: '',
|
||||
} as INodeProperties;
|
||||
|
||||
const unparsedAddressNumberField = {
|
||||
displayName: 'Number',
|
||||
name: 'addressNumber',
|
||||
type: 'string',
|
||||
description: 'The number component of this address, it may also contain letters',
|
||||
default: '',
|
||||
} as INodeProperties;
|
||||
|
||||
const unparsedAddressStreetField = {
|
||||
displayName: 'Street',
|
||||
name: 'addressStreet',
|
||||
type: 'string',
|
||||
description: 'The name of the street',
|
||||
default: '',
|
||||
} as INodeProperties;
|
||||
|
||||
const unparsedAddressCityField = {
|
||||
displayName: 'City',
|
||||
name: 'addressCity',
|
||||
type: 'string',
|
||||
description: 'The name of the municipality',
|
||||
default: '',
|
||||
} as INodeProperties;
|
||||
|
||||
const unparsedAddressCountryField = {
|
||||
displayName: 'Country',
|
||||
name: 'addressCountry',
|
||||
type: 'string',
|
||||
description: 'The name of the country',
|
||||
default: '',
|
||||
} as INodeProperties;
|
||||
|
||||
const unparsedAddressStateField = {
|
||||
displayName: 'State',
|
||||
name: 'addressState',
|
||||
type: 'string',
|
||||
default: '',
|
||||
} as INodeProperties;
|
||||
|
||||
const addressNameField = {
|
||||
displayName: 'Address Name',
|
||||
name: 'addressName',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'A name associated with this address',
|
||||
} as INodeProperties;
|
||||
|
||||
const addressApartmentField = {
|
||||
displayName: 'Apartment',
|
||||
name: 'addressApartment',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The suite or apartment number, or any additional relevant information',
|
||||
} as INodeProperties;
|
||||
|
||||
const addressNoteField = {
|
||||
displayName: 'Address Notes',
|
||||
name: 'addressNotes',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Notes about the destination',
|
||||
} as INodeProperties;
|
||||
|
||||
const addressPostalCodeField = {
|
||||
displayName: 'Postal Code',
|
||||
name: 'addressPostalCode',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The postal or zip code',
|
||||
} as INodeProperties;
|
||||
|
||||
export const destinationExternalField = {
|
||||
displayName: 'Destination',
|
||||
name: 'destination',
|
||||
type: 'fixedCollection',
|
||||
placeholder: 'Add Destination',
|
||||
default: {},
|
||||
options: [
|
||||
{
|
||||
displayName: 'Destination Properties',
|
||||
name: 'destinationProperties',
|
||||
default: {},
|
||||
values: [
|
||||
{
|
||||
...unparsedField,
|
||||
required: false,
|
||||
},
|
||||
{
|
||||
...unparsedAddressField,
|
||||
displayOptions: {
|
||||
show: {
|
||||
unparsed: [true],
|
||||
},
|
||||
},
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
...unparsedAddressNumberField,
|
||||
displayOptions: {
|
||||
show: {
|
||||
unparsed: [false],
|
||||
},
|
||||
},
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
...unparsedAddressStreetField,
|
||||
displayOptions: {
|
||||
show: {
|
||||
unparsed: [false],
|
||||
},
|
||||
},
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
...unparsedAddressCityField,
|
||||
displayOptions: {
|
||||
show: {
|
||||
unparsed: [false],
|
||||
},
|
||||
},
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
...unparsedAddressStateField,
|
||||
displayOptions: {
|
||||
show: {
|
||||
unparsed: [false],
|
||||
},
|
||||
},
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
...unparsedAddressCountryField,
|
||||
displayOptions: {
|
||||
show: {
|
||||
unparsed: [false],
|
||||
},
|
||||
},
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
displayOptions: {
|
||||
show: {
|
||||
unparsed: [false],
|
||||
},
|
||||
},
|
||||
...addressPostalCodeField,
|
||||
required: false,
|
||||
},
|
||||
{
|
||||
...addressNameField,
|
||||
required: false,
|
||||
},
|
||||
{
|
||||
...addressApartmentField,
|
||||
required: false,
|
||||
},
|
||||
{
|
||||
...addressNoteField,
|
||||
required: false,
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
} as INodeProperties;
|
||||
|
||||
export const destinationFields: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'Destination ID',
|
||||
name: 'id',
|
||||
type: 'string',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['destination'],
|
||||
},
|
||||
hide: {
|
||||
operation: ['create'],
|
||||
},
|
||||
},
|
||||
default: '',
|
||||
required: true,
|
||||
description: 'The ID of the destination object for lookup',
|
||||
},
|
||||
{
|
||||
...unparsedField,
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['destination'],
|
||||
operation: ['create'],
|
||||
},
|
||||
},
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
...unparsedAddressField,
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['destination'],
|
||||
operation: ['create'],
|
||||
unparsed: [true],
|
||||
},
|
||||
},
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
...unparsedAddressNumberField,
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['destination'],
|
||||
operation: ['create'],
|
||||
unparsed: [false],
|
||||
},
|
||||
},
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
...unparsedAddressStreetField,
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['destination'],
|
||||
operation: ['create'],
|
||||
unparsed: [false],
|
||||
},
|
||||
},
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
...unparsedAddressCityField,
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['destination'],
|
||||
operation: ['create'],
|
||||
unparsed: [false],
|
||||
},
|
||||
},
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
...unparsedAddressCountryField,
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['destination'],
|
||||
operation: ['create'],
|
||||
unparsed: [false],
|
||||
},
|
||||
},
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'Additional Fields',
|
||||
name: 'additionalFields',
|
||||
type: 'collection',
|
||||
placeholder: 'Add Field',
|
||||
default: {},
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['destination'],
|
||||
operation: ['create'],
|
||||
unparsed: [true],
|
||||
},
|
||||
},
|
||||
options: [addressApartmentField, addressNameField, addressNoteField],
|
||||
},
|
||||
{
|
||||
displayName: 'Additional Fields',
|
||||
name: 'additionalFields',
|
||||
type: 'collection',
|
||||
placeholder: 'Add Field',
|
||||
default: {},
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['destination'],
|
||||
operation: ['create'],
|
||||
unparsed: [false],
|
||||
},
|
||||
},
|
||||
options: [addressApartmentField, addressNameField, addressNoteField, addressPostalCodeField],
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user