mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-12 07:34:08 -08:00
50 lines
829 B
TypeScript
50 lines
829 B
TypeScript
|
import {
|
||
|
INodeProperties
|
||
|
} from 'n8n-workflow';
|
||
|
|
||
|
export const addressFixedCollection: INodeProperties = {
|
||
|
displayName: 'Address',
|
||
|
name: 'address',
|
||
|
placeholder: 'Add Address Fields',
|
||
|
type: 'fixedCollection',
|
||
|
default: {},
|
||
|
options: [
|
||
|
{
|
||
|
displayName: 'Address Fields',
|
||
|
name: 'addressFields',
|
||
|
values: [
|
||
|
{
|
||
|
displayName: 'Line 1',
|
||
|
name: 'address',
|
||
|
type: 'string',
|
||
|
default: '',
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Line 2',
|
||
|
name: 'address2',
|
||
|
type: 'string',
|
||
|
default: '',
|
||
|
},
|
||
|
{
|
||
|
displayName: 'City',
|
||
|
name: 'city',
|
||
|
type: 'string',
|
||
|
default: '',
|
||
|
},
|
||
|
{
|
||
|
displayName: 'State',
|
||
|
name: 'state',
|
||
|
type: 'string',
|
||
|
default: '',
|
||
|
},
|
||
|
{
|
||
|
displayName: 'ZIP',
|
||
|
name: 'zip',
|
||
|
type: 'string',
|
||
|
default: '',
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
],
|
||
|
};
|