mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 20:24:05 -08:00
:zao: fix
This commit is contained in:
parent
b427900cec
commit
ef8a76f3df
|
@ -44,7 +44,7 @@ export const attendanceFields: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
displayName: 'Person ID',
|
displayName: 'Person ID',
|
||||||
name: 'personId',
|
name: 'personId',
|
||||||
description: 'ID of the person to create an attendance for.',
|
description: 'ID of the person to create an attendance for',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
required: true,
|
required: true,
|
||||||
|
@ -62,7 +62,7 @@ export const attendanceFields: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
displayName: 'Event ID',
|
displayName: 'Event ID',
|
||||||
name: 'eventId',
|
name: 'eventId',
|
||||||
description: 'ID of the event to create an attendance for.',
|
description: 'ID of the event to create an attendance for',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
required: true,
|
required: true,
|
||||||
|
@ -85,7 +85,7 @@ export const attendanceFields: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
displayName: 'Event ID',
|
displayName: 'Event ID',
|
||||||
name: 'eventId',
|
name: 'eventId',
|
||||||
description: 'ID of the event whose attendance to retrieve.',
|
description: 'ID of the event whose attendance to retrieve',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
required: true,
|
required: true,
|
||||||
|
@ -103,7 +103,7 @@ export const attendanceFields: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
displayName: 'Attendance ID',
|
displayName: 'Attendance ID',
|
||||||
name: 'attendanceId',
|
name: 'attendanceId',
|
||||||
description: 'ID of the attendance to retrieve.',
|
description: 'ID of the attendance to retrieve',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
required: true,
|
required: true,
|
||||||
|
@ -126,7 +126,7 @@ export const attendanceFields: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
displayName: 'Event ID',
|
displayName: 'Event ID',
|
||||||
name: 'eventId',
|
name: 'eventId',
|
||||||
description: 'ID of the event to create an attendance for.',
|
description: 'ID of the event to create an attendance for',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
required: true,
|
required: true,
|
||||||
|
@ -146,7 +146,7 @@ export const attendanceFields: INodeProperties[] = [
|
||||||
name: 'returnAll',
|
name: 'returnAll',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Return all results.',
|
description: 'Return all results',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource: [
|
||||||
|
@ -163,7 +163,7 @@ export const attendanceFields: INodeProperties[] = [
|
||||||
name: 'limit',
|
name: 'limit',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
default: 50,
|
default: 50,
|
||||||
description: 'The number of results to return.',
|
description: 'The number of results to return',
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
minValue: 1,
|
minValue: 1,
|
||||||
},
|
},
|
||||||
|
|
|
@ -45,7 +45,7 @@ export const eventFields: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
displayName: 'Origin System',
|
displayName: 'Origin System',
|
||||||
name: 'originSystem',
|
name: 'originSystem',
|
||||||
description: 'Source where the event originated.',
|
description: 'Source where the event originated',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
required: true,
|
required: true,
|
||||||
default: '',
|
default: '',
|
||||||
|
@ -63,7 +63,7 @@ export const eventFields: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
displayName: 'Title',
|
displayName: 'Title',
|
||||||
name: 'title',
|
name: 'title',
|
||||||
description: 'Title of the event to create.',
|
description: 'Title of the event to create',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
required: true,
|
required: true,
|
||||||
default: '',
|
default: '',
|
||||||
|
@ -104,7 +104,7 @@ export const eventFields: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
displayName: 'Event ID',
|
displayName: 'Event ID',
|
||||||
name: 'eventId',
|
name: 'eventId',
|
||||||
description: 'ID of the event to retrieve.',
|
description: 'ID of the event to retrieve',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
required: true,
|
required: true,
|
||||||
|
@ -129,7 +129,7 @@ export const eventFields: INodeProperties[] = [
|
||||||
name: 'returnAll',
|
name: 'returnAll',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Return all results.',
|
description: 'Return all results',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource: [
|
||||||
|
@ -146,7 +146,7 @@ export const eventFields: INodeProperties[] = [
|
||||||
name: 'limit',
|
name: 'limit',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
default: 50,
|
default: 50,
|
||||||
description: 'The number of results to return.',
|
description: 'The number of results to return',
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
minValue: 1,
|
minValue: 1,
|
||||||
},
|
},
|
||||||
|
|
|
@ -53,7 +53,7 @@ export const personFields: INodeProperties[] = [
|
||||||
type: 'fixedCollection',
|
type: 'fixedCollection',
|
||||||
default: {},
|
default: {},
|
||||||
placeholder: 'Add Email Address Field',
|
placeholder: 'Add Email Address Field',
|
||||||
description: 'Person’s email addresses.',
|
description: 'Person’s email addresses',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource: [
|
||||||
|
@ -74,21 +74,21 @@ export const personFields: INodeProperties[] = [
|
||||||
name: 'address',
|
name: 'address',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Person\'s email address.',
|
description: 'Person\'s email address',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Primary',
|
displayName: 'Primary',
|
||||||
name: 'primary',
|
name: 'primary',
|
||||||
type: 'hidden',
|
type: 'hidden',
|
||||||
default: true,
|
default: true,
|
||||||
description: 'Whether this is the person\'s primary email address.',
|
description: 'Whether this is the person\'s primary email address',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Status',
|
displayName: 'Status',
|
||||||
name: 'status',
|
name: 'status',
|
||||||
type: 'options',
|
type: 'options',
|
||||||
default: 'subscribed',
|
default: 'subscribed',
|
||||||
description: 'Subscription status of this email address.',
|
description: 'Subscription status of this email address',
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
name: 'Bouncing',
|
name: 'Bouncing',
|
||||||
|
@ -145,7 +145,7 @@ export const personFields: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
displayName: 'Person ID',
|
displayName: 'Person ID',
|
||||||
name: 'personId',
|
name: 'personId',
|
||||||
description: 'ID of the person to retrieve.',
|
description: 'ID of the person to retrieve',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
required: true,
|
required: true,
|
||||||
default: '',
|
default: '',
|
||||||
|
@ -170,7 +170,7 @@ export const personFields: INodeProperties[] = [
|
||||||
name: 'returnAll',
|
name: 'returnAll',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Return all results.',
|
description: 'Return all results',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource: [
|
||||||
|
@ -187,7 +187,7 @@ export const personFields: INodeProperties[] = [
|
||||||
name: 'limit',
|
name: 'limit',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
default: 25,
|
default: 25,
|
||||||
description: 'The number of results to return.',
|
description: 'The number of results to return',
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
minValue: 1,
|
minValue: 1,
|
||||||
maxValue: 25,
|
maxValue: 25,
|
||||||
|
@ -214,7 +214,7 @@ export const personFields: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
displayName: 'Person ID',
|
displayName: 'Person ID',
|
||||||
name: 'personId',
|
name: 'personId',
|
||||||
description: 'ID of the person to update.',
|
description: 'ID of the person to update',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
required: true,
|
required: true,
|
||||||
default: '',
|
default: '',
|
||||||
|
|
|
@ -36,7 +36,7 @@ export const personTagFields: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
displayName: 'Tag ID',
|
displayName: 'Tag ID',
|
||||||
name: 'tagId',
|
name: 'tagId',
|
||||||
description: 'ID of the tag to add.',
|
description: 'ID of the tag to add',
|
||||||
type: 'options',
|
type: 'options',
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
loadOptionsMethod: 'getTags',
|
loadOptionsMethod: 'getTags',
|
||||||
|
@ -57,7 +57,7 @@ export const personTagFields: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
displayName: 'Person ID',
|
displayName: 'Person ID',
|
||||||
name: 'personId',
|
name: 'personId',
|
||||||
description: 'ID of the person to add the tag to.',
|
description: 'ID of the person to add the tag to',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
required: true,
|
required: true,
|
||||||
|
@ -79,7 +79,7 @@ export const personTagFields: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
displayName: 'Tag ID',
|
displayName: 'Tag ID',
|
||||||
name: 'tagId',
|
name: 'tagId',
|
||||||
description: 'ID of the tag whose tagging to delete.',
|
description: 'ID of the tag whose tagging to delete',
|
||||||
type: 'options',
|
type: 'options',
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
loadOptionsMethod: 'getTags',
|
loadOptionsMethod: 'getTags',
|
||||||
|
@ -100,7 +100,7 @@ export const personTagFields: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
displayName: 'Tagging ID',
|
displayName: 'Tagging ID',
|
||||||
name: 'taggingId',
|
name: 'taggingId',
|
||||||
description: 'ID of the tagging to remove.',
|
description: 'ID of the tagging to remove',
|
||||||
type: 'options',
|
type: 'options',
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
loadOptionsDependsOn: [
|
loadOptionsDependsOn: [
|
||||||
|
|
|
@ -49,7 +49,7 @@ export const petitionFields: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
displayName: 'Origin System',
|
displayName: 'Origin System',
|
||||||
name: 'originSystem',
|
name: 'originSystem',
|
||||||
description: 'Source where the petition originated.',
|
description: 'Source where the petition originated',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
required: true,
|
required: true,
|
||||||
default: '',
|
default: '',
|
||||||
|
@ -67,7 +67,7 @@ export const petitionFields: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
displayName: 'Title',
|
displayName: 'Title',
|
||||||
name: 'title',
|
name: 'title',
|
||||||
description: 'Title of the petition to create.',
|
description: 'Title of the petition to create',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
required: true,
|
required: true,
|
||||||
default: '',
|
default: '',
|
||||||
|
@ -108,7 +108,7 @@ export const petitionFields: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
displayName: 'Petition ID',
|
displayName: 'Petition ID',
|
||||||
name: 'petitionId',
|
name: 'petitionId',
|
||||||
description: 'ID of the petition to retrieve.',
|
description: 'ID of the petition to retrieve',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
required: true,
|
required: true,
|
||||||
|
@ -133,7 +133,7 @@ export const petitionFields: INodeProperties[] = [
|
||||||
name: 'returnAll',
|
name: 'returnAll',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Return all results.',
|
description: 'Return all results',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource: [
|
||||||
|
@ -150,7 +150,7 @@ export const petitionFields: INodeProperties[] = [
|
||||||
name: 'limit',
|
name: 'limit',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
default: 50,
|
default: 50,
|
||||||
description: 'The number of results to return.',
|
description: 'The number of results to return',
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
minValue: 1,
|
minValue: 1,
|
||||||
},
|
},
|
||||||
|
@ -176,7 +176,7 @@ export const petitionFields: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
displayName: 'Petition ID',
|
displayName: 'Petition ID',
|
||||||
name: 'petitionId',
|
name: 'petitionId',
|
||||||
description: 'ID of the petition to update.',
|
description: 'ID of the petition to update',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
required: true,
|
required: true,
|
||||||
|
|
|
@ -80,14 +80,14 @@ const postalAddressesFields: INodeProperties[] = [
|
||||||
name: 'primary',
|
name: 'primary',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Whether this is the person\'s primary address.',
|
description: 'Whether this is the person\'s primary address',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Address Line',
|
displayName: 'Address Line',
|
||||||
name: 'address_lines',
|
name: 'address_lines',
|
||||||
type: 'string', // The Action Network API expects a string array but ignores any string beyond the first, so this input field is simplified to string.
|
type: 'string', // The Action Network API expects a string array but ignores any string beyond the first, so this input field is simplified to string.
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Line for a person\'s address.',
|
description: 'Line for a person\'s address',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Locality',
|
displayName: 'Locality',
|
||||||
|
@ -101,14 +101,14 @@ const postalAddressesFields: INodeProperties[] = [
|
||||||
name: 'region',
|
name: 'region',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'State or subdivision code per ISO 3166-2.',
|
description: 'State or subdivision code per ISO 3166-2',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Postal Code',
|
displayName: 'Postal Code',
|
||||||
name: 'postal_code',
|
name: 'postal_code',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Region specific postal code, such as ZIP code.',
|
description: 'Region specific postal code, such as ZIP code',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Country',
|
displayName: 'Country',
|
||||||
|
@ -122,7 +122,7 @@ const postalAddressesFields: INodeProperties[] = [
|
||||||
name: 'language',
|
name: 'language',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Language in which the address is recorded, per ISO 639.',
|
description: 'Language in which the address is recorded, per ISO 639',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Location',
|
displayName: 'Location',
|
||||||
|
@ -139,14 +139,14 @@ const postalAddressesFields: INodeProperties[] = [
|
||||||
name: 'latitude',
|
name: 'latitude',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Latitude of the location of the address.',
|
description: 'Latitude of the location of the address',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Longitude',
|
displayName: 'Longitude',
|
||||||
name: 'longitude',
|
name: 'longitude',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Longitude of the location of the address.',
|
description: 'Longitude of the location of the address',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -160,7 +160,7 @@ export const eventAdditionalFieldsOptions: INodeProperties['options'] = [
|
||||||
name: 'browser_url',
|
name: 'browser_url',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'URL to this event’s page on the Action Network or a third party.',
|
description: 'URL to this event’s page on the Action Network or a third party',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Description',
|
displayName: 'Description',
|
||||||
|
@ -174,14 +174,14 @@ export const eventAdditionalFieldsOptions: INodeProperties['options'] = [
|
||||||
name: 'end_date',
|
name: 'end_date',
|
||||||
type: 'dateTime',
|
type: 'dateTime',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'End date and time of the event.',
|
description: 'End date and time of the event',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Featured Image URL',
|
displayName: 'Featured Image URL',
|
||||||
name: 'featured_image_url',
|
name: 'featured_image_url',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'URL to this event’s featured image on the Action Network.',
|
description: 'URL to this event’s featured image on the Action Network',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Instructions',
|
displayName: 'Instructions',
|
||||||
|
@ -214,14 +214,14 @@ export const eventAdditionalFieldsOptions: INodeProperties['options'] = [
|
||||||
name: 'name',
|
name: 'name',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Internal (not public) title of the event.',
|
description: 'Internal (not public) title of the event',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Start Date',
|
displayName: 'Start Date',
|
||||||
name: 'start_date',
|
name: 'start_date',
|
||||||
type: 'dateTime',
|
type: 'dateTime',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Start date and time of the event.',
|
description: 'Start date and time of the event',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -231,14 +231,14 @@ export const personAdditionalFieldsOptions: INodeProperties['options'] = [
|
||||||
name: 'family_name',
|
name: 'family_name',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Person’s last name.',
|
description: 'Person’s last name',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Given Name',
|
displayName: 'Given Name',
|
||||||
name: 'given_name',
|
name: 'given_name',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Person’s first name.',
|
description: 'Person’s first name',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Language Spoken',
|
displayName: 'Language Spoken',
|
||||||
|
@ -265,21 +265,21 @@ export const personAdditionalFieldsOptions: INodeProperties['options'] = [
|
||||||
name: 'number',
|
name: 'number',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Person\'s mobile number, in international format without the plus sign.',
|
description: 'Person\'s mobile number, in international format without the plus sign',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Primary',
|
displayName: 'Primary',
|
||||||
name: 'primary',
|
name: 'primary',
|
||||||
type: 'hidden',
|
type: 'hidden',
|
||||||
default: true,
|
default: true,
|
||||||
description: 'Whether this is the person\'s primary phone number.',
|
description: 'Whether this is the person\'s primary phone number',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Status',
|
displayName: 'Status',
|
||||||
name: 'status',
|
name: 'status',
|
||||||
type: 'options',
|
type: 'options',
|
||||||
default: 'subscribed',
|
default: 'subscribed',
|
||||||
description: 'Subscription status of this number.',
|
description: 'Subscription status of this number',
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
name: 'Bouncing',
|
name: 'Bouncing',
|
||||||
|
@ -329,35 +329,35 @@ export const petitionAdditionalFieldsOptions: INodeProperties[] = [
|
||||||
name: 'browser_url',
|
name: 'browser_url',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'URL to this petition’s page on the Action Network or a third party.',
|
description: 'URL to this petition’s page on the Action Network or a third party',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Featured Image URL',
|
displayName: 'Featured Image URL',
|
||||||
name: 'featured_image_url',
|
name: 'featured_image_url',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'URL to this action’s featured image on the Action Network.',
|
description: 'URL to this action’s featured image on the Action Network',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Name',
|
displayName: 'Name',
|
||||||
name: 'name',
|
name: 'name',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Internal (not public) title of the petition.',
|
description: 'Internal (not public) title of the petition',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Petition Text',
|
displayName: 'Petition Text',
|
||||||
name: 'petition_text',
|
name: 'petition_text',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Text of the letter to the petition’s target.',
|
description: 'Text of the letter to the petition’s target',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Targets',
|
displayName: 'Targets',
|
||||||
name: 'target',
|
name: 'target',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Comma-separated names of targets for this petition.',
|
description: 'Comma-separated names of targets for this petition',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -376,5 +376,5 @@ export const makeSimpleField = (resource: Resource, operation: Operation): INode
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: true,
|
default: true,
|
||||||
description: 'Return a simplified version of the response instead of the raw data.',
|
description: 'Return a simplified version of the response instead of the raw data',
|
||||||
});
|
});
|
||||||
|
|
|
@ -48,7 +48,7 @@ export const signatureFields: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
displayName: 'Petition ID',
|
displayName: 'Petition ID',
|
||||||
name: 'petitionId',
|
name: 'petitionId',
|
||||||
description: 'ID of the petition to sign.',
|
description: 'ID of the petition to sign',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
required: true,
|
required: true,
|
||||||
|
@ -66,7 +66,7 @@ export const signatureFields: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
displayName: 'Person ID',
|
displayName: 'Person ID',
|
||||||
name: 'personId',
|
name: 'personId',
|
||||||
description: 'ID of the person whose signature to create.',
|
description: 'ID of the person whose signature to create',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
required: true,
|
required: true,
|
||||||
|
@ -104,7 +104,7 @@ export const signatureFields: INodeProperties[] = [
|
||||||
name: 'comments',
|
name: 'comments',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Comments to leave when signing this petition.',
|
description: 'Comments to leave when signing this petition',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -115,7 +115,7 @@ export const signatureFields: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
displayName: 'Petition ID',
|
displayName: 'Petition ID',
|
||||||
name: 'petitionId',
|
name: 'petitionId',
|
||||||
description: 'ID of the petition whose signature to retrieve.',
|
description: 'ID of the petition whose signature to retrieve',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
required: true,
|
required: true,
|
||||||
|
@ -133,7 +133,7 @@ export const signatureFields: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
displayName: 'Signature ID',
|
displayName: 'Signature ID',
|
||||||
name: 'signatureId',
|
name: 'signatureId',
|
||||||
description: 'ID of the signature to retrieve.',
|
description: 'ID of the signature to retrieve',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
required: true,
|
required: true,
|
||||||
|
@ -156,7 +156,7 @@ export const signatureFields: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
displayName: 'Petition ID',
|
displayName: 'Petition ID',
|
||||||
name: 'petitionId',
|
name: 'petitionId',
|
||||||
description: 'ID of the petition whose signatures to retrieve.',
|
description: 'ID of the petition whose signatures to retrieve',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
required: true,
|
required: true,
|
||||||
|
@ -176,7 +176,7 @@ export const signatureFields: INodeProperties[] = [
|
||||||
name: 'returnAll',
|
name: 'returnAll',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Return all results.',
|
description: 'Return all results',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource: [
|
||||||
|
@ -193,7 +193,7 @@ export const signatureFields: INodeProperties[] = [
|
||||||
name: 'limit',
|
name: 'limit',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
default: 50,
|
default: 50,
|
||||||
description: 'The number of results to return.',
|
description: 'The number of results to return',
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
minValue: 1,
|
minValue: 1,
|
||||||
},
|
},
|
||||||
|
@ -219,7 +219,7 @@ export const signatureFields: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
displayName: 'Petition ID',
|
displayName: 'Petition ID',
|
||||||
name: 'petitionId',
|
name: 'petitionId',
|
||||||
description: 'ID of the petition whose signature to update.',
|
description: 'ID of the petition whose signature to update',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
required: true,
|
required: true,
|
||||||
|
@ -237,7 +237,7 @@ export const signatureFields: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
displayName: 'Signature ID',
|
displayName: 'Signature ID',
|
||||||
name: 'signatureId',
|
name: 'signatureId',
|
||||||
description: 'ID of the signature to update.',
|
description: 'ID of the signature to update',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
required: true,
|
required: true,
|
||||||
|
@ -275,7 +275,7 @@ export const signatureFields: INodeProperties[] = [
|
||||||
name: 'comments',
|
name: 'comments',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Comments to leave when signing this petition.',
|
description: 'Comments to leave when signing this petition',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
|
@ -44,7 +44,7 @@ export const tagFields: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
displayName: 'Name',
|
displayName: 'Name',
|
||||||
name: 'name',
|
name: 'name',
|
||||||
description: 'Name of the tag to create.',
|
description: 'Name of the tag to create',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
required: true,
|
required: true,
|
||||||
default: '',
|
default: '',
|
||||||
|
@ -67,7 +67,7 @@ export const tagFields: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
displayName: 'Tag ID',
|
displayName: 'Tag ID',
|
||||||
name: 'tagId',
|
name: 'tagId',
|
||||||
description: 'ID of the tag to retrieve.',
|
description: 'ID of the tag to retrieve',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
required: true,
|
required: true,
|
||||||
|
@ -92,7 +92,7 @@ export const tagFields: INodeProperties[] = [
|
||||||
name: 'returnAll',
|
name: 'returnAll',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Return all results.',
|
description: 'Return all results',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource: [
|
||||||
|
@ -109,7 +109,7 @@ export const tagFields: INodeProperties[] = [
|
||||||
name: 'limit',
|
name: 'limit',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
default: 50,
|
default: 50,
|
||||||
description: 'The number of results to return.',
|
description: 'The number of results to return',
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
minValue: 1,
|
minValue: 1,
|
||||||
},
|
},
|
||||||
|
|
|
@ -121,7 +121,7 @@ export const accountContactFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
default: 0,
|
default: 0,
|
||||||
required: true,
|
required: true,
|
||||||
description: 'ID of the account contact to delete.',
|
description: 'ID of the account contact to delete',
|
||||||
},
|
},
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
// accountContact:update
|
// accountContact:update
|
||||||
|
@ -149,7 +149,7 @@ export const accountContactFields: INodeProperties[] = [
|
||||||
displayName: 'Update Fields',
|
displayName: 'Update Fields',
|
||||||
name: 'updateFields',
|
name: 'updateFields',
|
||||||
type: 'collection',
|
type: 'collection',
|
||||||
description: 'The fields to update.',
|
description: 'The fields to update',
|
||||||
placeholder: 'Add Field',
|
placeholder: 'Add Field',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
|
|
|
@ -70,7 +70,7 @@ export const accountFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'Account\'s name.',
|
description: 'Account\'s name',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Additional Fields',
|
displayName: 'Additional Fields',
|
||||||
|
@ -100,7 +100,7 @@ export const accountFields: INodeProperties[] = [
|
||||||
displayName: 'Fields',
|
displayName: 'Fields',
|
||||||
name: 'fields',
|
name: 'fields',
|
||||||
placeholder: 'Add Custom Fields',
|
placeholder: 'Add Custom Fields',
|
||||||
description: 'Adds a custom fields to set also values which have not been predefined.',
|
description: 'Adds a custom fields to set also values which have not been predefined',
|
||||||
type: 'fixedCollection',
|
type: 'fixedCollection',
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
multipleValues: true,
|
multipleValues: true,
|
||||||
|
@ -119,14 +119,14 @@ export const accountFields: INodeProperties[] = [
|
||||||
loadOptionsMethod: 'getAccountCustomFields',
|
loadOptionsMethod: 'getAccountCustomFields',
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'ID of the field to set.',
|
description: 'ID of the field to set',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Field Value',
|
displayName: 'Field Value',
|
||||||
name: 'fieldValue',
|
name: 'fieldValue',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Value of the field to set.',
|
description: 'Value of the field to set',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -154,13 +154,13 @@ export const accountFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
default: 0,
|
default: 0,
|
||||||
required: true,
|
required: true,
|
||||||
description: 'ID of the account to update.',
|
description: 'ID of the account to update',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Update Fields',
|
displayName: 'Update Fields',
|
||||||
name: 'updateFields',
|
name: 'updateFields',
|
||||||
type: 'collection',
|
type: 'collection',
|
||||||
description: 'The fields to update.',
|
description: 'The fields to update',
|
||||||
placeholder: 'Add Field',
|
placeholder: 'Add Field',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
|
@ -179,7 +179,7 @@ export const accountFields: INodeProperties[] = [
|
||||||
name: 'name',
|
name: 'name',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Account\'s name.',
|
description: 'Account\'s name',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Account URL',
|
displayName: 'Account URL',
|
||||||
|
@ -192,7 +192,7 @@ export const accountFields: INodeProperties[] = [
|
||||||
displayName: 'Fields',
|
displayName: 'Fields',
|
||||||
name: 'fields',
|
name: 'fields',
|
||||||
placeholder: 'Add Fields',
|
placeholder: 'Add Fields',
|
||||||
description: 'Adds a custom fields to set also values which have not been predefined.',
|
description: 'Adds a custom fields to set also values which have not been predefined',
|
||||||
type: 'fixedCollection',
|
type: 'fixedCollection',
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
multipleValues: true,
|
multipleValues: true,
|
||||||
|
@ -211,14 +211,14 @@ export const accountFields: INodeProperties[] = [
|
||||||
loadOptionsMethod: 'getAccountCustomFields',
|
loadOptionsMethod: 'getAccountCustomFields',
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'ID of the field to set.',
|
description: 'ID of the field to set',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Field Value',
|
displayName: 'Field Value',
|
||||||
name: 'fieldValue',
|
name: 'fieldValue',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Value of the field to set.',
|
description: 'Value of the field to set',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -245,7 +245,7 @@ export const accountFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
default: 0,
|
default: 0,
|
||||||
required: true,
|
required: true,
|
||||||
description: 'ID of the account to delete.',
|
description: 'ID of the account to delete',
|
||||||
},
|
},
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
// account:get
|
// account:get
|
||||||
|
@ -266,7 +266,7 @@ export const accountFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
default: 0,
|
default: 0,
|
||||||
required: true,
|
required: true,
|
||||||
description: 'ID of the account to get.',
|
description: 'ID of the account to get',
|
||||||
},
|
},
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
// account:getAll
|
// account:getAll
|
||||||
|
|
|
@ -71,7 +71,7 @@ export const connectionFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The name of the service.',
|
description: 'The name of the service',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'External accout ID',
|
displayName: 'External accout ID',
|
||||||
|
@ -89,7 +89,7 @@ export const connectionFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The id of the account in the external service.',
|
description: 'The id of the account in the external service',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Account Name',
|
displayName: 'Account Name',
|
||||||
|
@ -125,7 +125,7 @@ export const connectionFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The URL to a logo image for the external service.',
|
description: 'The URL to a logo image for the external service',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Link URL',
|
displayName: 'Link URL',
|
||||||
|
@ -143,7 +143,7 @@ export const connectionFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The URL to a page where the integration with the external service can be managed in the third-party\'s website.',
|
description: 'The URL to a page where the integration with the external service can be managed in the third-party\'s website',
|
||||||
},
|
},
|
||||||
|
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
@ -165,13 +165,13 @@ export const connectionFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
default: 0,
|
default: 0,
|
||||||
required: true,
|
required: true,
|
||||||
description: 'ID of the connection to update.',
|
description: 'ID of the connection to update',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Update Fields',
|
displayName: 'Update Fields',
|
||||||
name: 'updateFields',
|
name: 'updateFields',
|
||||||
type: 'collection',
|
type: 'collection',
|
||||||
description: 'The fields to update.',
|
description: 'The fields to update',
|
||||||
placeholder: 'Add Field',
|
placeholder: 'Add Field',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
|
@ -190,14 +190,14 @@ export const connectionFields: INodeProperties[] = [
|
||||||
name: 'service',
|
name: 'service',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The name of the service.',
|
description: 'The name of the service',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'External accout ID',
|
displayName: 'External accout ID',
|
||||||
name: 'externalid',
|
name: 'externalid',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The id of the account in the external service.',
|
description: 'The id of the account in the external service',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Account Name',
|
displayName: 'Account Name',
|
||||||
|
@ -211,14 +211,14 @@ export const connectionFields: INodeProperties[] = [
|
||||||
name: 'logoUrl',
|
name: 'logoUrl',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The URL to a logo image for the external service.',
|
description: 'The URL to a logo image for the external service',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Link URL',
|
displayName: 'Link URL',
|
||||||
name: 'linkUrl',
|
name: 'linkUrl',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The URL to a page where the integration with the external service can be managed in the third-party\'s website.',
|
description: 'The URL to a page where the integration with the external service can be managed in the third-party\'s website',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Status',
|
displayName: 'Status',
|
||||||
|
@ -232,7 +232,7 @@ export const connectionFields: INodeProperties[] = [
|
||||||
name: 'syncStatus',
|
name: 'syncStatus',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
default: 1,
|
default: 1,
|
||||||
description: 'The status of a sync triggered on the connection (0 = sync stopped; 1 = sync running).',
|
description: 'The status of a sync triggered on the connection (0 = sync stopped; 1 = sync running)',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -256,7 +256,7 @@ export const connectionFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
default: 0,
|
default: 0,
|
||||||
required: true,
|
required: true,
|
||||||
description: 'ID of the connection to delete.',
|
description: 'ID of the connection to delete',
|
||||||
},
|
},
|
||||||
|
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
@ -278,7 +278,7 @@ export const connectionFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
default: 0,
|
default: 0,
|
||||||
required: true,
|
required: true,
|
||||||
description: 'ID of the connection to get.',
|
description: 'ID of the connection to get',
|
||||||
},
|
},
|
||||||
|
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
|
|
@ -70,7 +70,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The email of the contact to create.',
|
description: 'The email of the contact to create',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Update if exists',
|
displayName: 'Update if exists',
|
||||||
|
@ -110,7 +110,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
displayName: 'Custom Fields',
|
displayName: 'Custom Fields',
|
||||||
name: 'fieldValues',
|
name: 'fieldValues',
|
||||||
placeholder: 'Add Custom Fields',
|
placeholder: 'Add Custom Fields',
|
||||||
description: 'Adds a custom fields to set also values which have not been predefined.',
|
description: 'Adds a custom fields to set also values which have not been predefined',
|
||||||
type: 'fixedCollection',
|
type: 'fixedCollection',
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
multipleValues: true,
|
multipleValues: true,
|
||||||
|
@ -129,14 +129,14 @@ export const contactFields: INodeProperties[] = [
|
||||||
loadOptionsMethod: 'getContactCustomFields',
|
loadOptionsMethod: 'getContactCustomFields',
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'ID of the field to set.',
|
description: 'ID of the field to set',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Field Value',
|
displayName: 'Field Value',
|
||||||
name: 'value',
|
name: 'value',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Value of the field to set.',
|
description: 'Value of the field to set',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -147,21 +147,21 @@ export const contactFields: INodeProperties[] = [
|
||||||
name: 'firstName',
|
name: 'firstName',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The first name of the contact to create.',
|
description: 'The first name of the contact to create',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Last Name',
|
displayName: 'Last Name',
|
||||||
name: 'lastName',
|
name: 'lastName',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The last name of the contact to create.',
|
description: 'The last name of the contact to create',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Phone',
|
displayName: 'Phone',
|
||||||
name: 'phone',
|
name: 'phone',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Phone number of the contact.',
|
description: 'Phone number of the contact',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -185,13 +185,13 @@ export const contactFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
default: 0,
|
default: 0,
|
||||||
required: true,
|
required: true,
|
||||||
description: 'ID of the contact to update.',
|
description: 'ID of the contact to update',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Update Fields',
|
displayName: 'Update Fields',
|
||||||
name: 'updateFields',
|
name: 'updateFields',
|
||||||
type: 'collection',
|
type: 'collection',
|
||||||
description: 'The fields to update.',
|
description: 'The fields to update',
|
||||||
placeholder: 'Add Field',
|
placeholder: 'Add Field',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
|
@ -209,7 +209,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
displayName: 'Custom Fields',
|
displayName: 'Custom Fields',
|
||||||
name: 'fieldValues',
|
name: 'fieldValues',
|
||||||
placeholder: 'Add Custom Fields',
|
placeholder: 'Add Custom Fields',
|
||||||
description: 'Adds a custom fields to set also values which have not been predefined.',
|
description: 'Adds a custom fields to set also values which have not been predefined',
|
||||||
type: 'fixedCollection',
|
type: 'fixedCollection',
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
multipleValues: true,
|
multipleValues: true,
|
||||||
|
@ -228,14 +228,14 @@ export const contactFields: INodeProperties[] = [
|
||||||
loadOptionsMethod: 'getContactCustomFields',
|
loadOptionsMethod: 'getContactCustomFields',
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'ID of the field to set.',
|
description: 'ID of the field to set',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Field Value',
|
displayName: 'Field Value',
|
||||||
name: 'value',
|
name: 'value',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Value of the field to set.',
|
description: 'Value of the field to set',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -246,28 +246,28 @@ export const contactFields: INodeProperties[] = [
|
||||||
name: 'email',
|
name: 'email',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Email of the contact.',
|
description: 'Email of the contact',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'First Name',
|
displayName: 'First Name',
|
||||||
name: 'firstName',
|
name: 'firstName',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'First name of the contact.',
|
description: 'First name of the contact',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Last Name',
|
displayName: 'Last Name',
|
||||||
name: 'lastName',
|
name: 'lastName',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Last name of the contact.',
|
description: 'Last name of the contact',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Phone',
|
displayName: 'Phone',
|
||||||
name: 'phone',
|
name: 'phone',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Phone number of the contact.',
|
description: 'Phone number of the contact',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -291,7 +291,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
default: 0,
|
default: 0,
|
||||||
required: true,
|
required: true,
|
||||||
description: 'ID of the contact to delete.',
|
description: 'ID of the contact to delete',
|
||||||
},
|
},
|
||||||
|
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
@ -313,7 +313,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
default: 0,
|
default: 0,
|
||||||
required: true,
|
required: true,
|
||||||
description: 'ID of the contact to get.',
|
description: 'ID of the contact to get',
|
||||||
},
|
},
|
||||||
|
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
|
|
@ -93,6 +93,6 @@ export const contactTagFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
default: 0,
|
default: 0,
|
||||||
required: true,
|
required: true,
|
||||||
description: 'ID of the contact tag to delete.',
|
description: 'ID of the contact tag to delete',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
|
@ -254,13 +254,13 @@ export const dealFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
default: 0,
|
default: 0,
|
||||||
required: true,
|
required: true,
|
||||||
description: 'ID of the deal to update.',
|
description: 'ID of the deal to update',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Update Fields',
|
displayName: 'Update Fields',
|
||||||
name: 'updateFields',
|
name: 'updateFields',
|
||||||
type: 'collection',
|
type: 'collection',
|
||||||
description: 'The fields to update.',
|
description: 'The fields to update',
|
||||||
placeholder: 'Add Field',
|
placeholder: 'Add Field',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
|
@ -367,7 +367,7 @@ export const dealFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The ID of the deal to delete.',
|
description: 'The ID of the deal to delete',
|
||||||
},
|
},
|
||||||
|
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
@ -389,7 +389,7 @@ export const dealFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The ID of the deal to get.',
|
description: 'The ID of the deal to get',
|
||||||
},
|
},
|
||||||
|
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
|
|
@ -70,7 +70,7 @@ export const ecomCustomerFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The id of the connection object for the service where the customer originates.',
|
description: 'The id of the connection object for the service where the customer originates',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Customer ID',
|
displayName: 'Customer ID',
|
||||||
|
@ -88,7 +88,7 @@ export const ecomCustomerFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The id of the customer in the external service.',
|
description: 'The id of the customer in the external service',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Customer Email',
|
displayName: 'Customer Email',
|
||||||
|
@ -106,7 +106,7 @@ export const ecomCustomerFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The email address of the customer.',
|
description: 'The email address of the customer',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Additional Fields',
|
displayName: 'Additional Fields',
|
||||||
|
@ -130,7 +130,7 @@ export const ecomCustomerFields: INodeProperties[] = [
|
||||||
name: 'acceptsMarketing',
|
name: 'acceptsMarketing',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Indication of whether customer has opt-ed in to marketing communications.',
|
description: 'Indication of whether customer has opt-ed in to marketing communications',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -154,13 +154,13 @@ export const ecomCustomerFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
default: 0,
|
default: 0,
|
||||||
required: true,
|
required: true,
|
||||||
description: 'ID of the E-commerce customer to update.',
|
description: 'ID of the E-commerce customer to update',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Update Fields',
|
displayName: 'Update Fields',
|
||||||
name: 'updateFields',
|
name: 'updateFields',
|
||||||
type: 'collection',
|
type: 'collection',
|
||||||
description: 'The fields to update.',
|
description: 'The fields to update',
|
||||||
placeholder: 'Add Field',
|
placeholder: 'Add Field',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
|
@ -179,28 +179,28 @@ export const ecomCustomerFields: INodeProperties[] = [
|
||||||
name: 'connectionid',
|
name: 'connectionid',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The id of the connection object for the service where the customer originates.',
|
description: 'The id of the connection object for the service where the customer originates',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Customer ID',
|
displayName: 'Customer ID',
|
||||||
name: 'externalid',
|
name: 'externalid',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The id of the customer in the external service.',
|
description: 'The id of the customer in the external service',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Customer Email',
|
displayName: 'Customer Email',
|
||||||
name: 'email',
|
name: 'email',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The email address of the customer.',
|
description: 'The email address of the customer',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Accepts Marketing',
|
displayName: 'Accepts Marketing',
|
||||||
name: 'acceptsMarketing',
|
name: 'acceptsMarketing',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Indication of whether customer has opt-ed in to marketing communications.',
|
description: 'Indication of whether customer has opt-ed in to marketing communications',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -224,7 +224,7 @@ export const ecomCustomerFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
default: 0,
|
default: 0,
|
||||||
required: true,
|
required: true,
|
||||||
description: 'ID of the E-commerce customer to delete.',
|
description: 'ID of the E-commerce customer to delete',
|
||||||
},
|
},
|
||||||
|
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
@ -246,7 +246,7 @@ export const ecomCustomerFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
default: 0,
|
default: 0,
|
||||||
required: true,
|
required: true,
|
||||||
description: 'ID of the E-commerce customer to get.',
|
description: 'ID of the E-commerce customer to get',
|
||||||
},
|
},
|
||||||
|
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
|
|
@ -108,7 +108,7 @@ export const ecomOrderFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The order source code (0 - will not trigger automations, 1 - will trigger automations).',
|
description: 'The order source code (0 - will not trigger automations, 1 - will trigger automations)',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Customer Email',
|
displayName: 'Customer Email',
|
||||||
|
@ -126,7 +126,7 @@ export const ecomOrderFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The email address of the customer who placed the order.',
|
description: 'The email address of the customer who placed the order',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Total price',
|
displayName: 'Total price',
|
||||||
|
@ -163,7 +163,7 @@ export const ecomOrderFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
options: allCurrencies,
|
options: allCurrencies,
|
||||||
description: 'The currency of the order (3-digit ISO code, e.g., "USD").',
|
description: 'The currency of the order (3-digit ISO code, e.g., "USD")',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Connection ID',
|
displayName: 'Connection ID',
|
||||||
|
@ -181,7 +181,7 @@ export const ecomOrderFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The id of the connection from which this order originated.',
|
description: 'The id of the connection from which this order originated',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Customer ID',
|
displayName: 'Customer ID',
|
||||||
|
@ -199,7 +199,7 @@ export const ecomOrderFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The id of the customer associated with this order.',
|
description: 'The id of the customer associated with this order',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Creation Date',
|
displayName: 'Creation Date',
|
||||||
|
@ -217,7 +217,7 @@ export const ecomOrderFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The date the order was placed.',
|
description: 'The date the order was placed',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Abandoning Date',
|
displayName: 'Abandoning Date',
|
||||||
|
@ -277,49 +277,49 @@ export const ecomOrderFields: INodeProperties[] = [
|
||||||
name: 'quantity',
|
name: 'quantity',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
default: 0,
|
default: 0,
|
||||||
description: 'The quantity ordered.',
|
description: 'The quantity ordered',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Product external ID',
|
displayName: 'Product external ID',
|
||||||
name: 'externalid',
|
name: 'externalid',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The id of the product in the external service.',
|
description: 'The id of the product in the external service',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Product Category',
|
displayName: 'Product Category',
|
||||||
name: 'category',
|
name: 'category',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The category of the product.',
|
description: 'The category of the product',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'SKU',
|
displayName: 'SKU',
|
||||||
name: 'sku',
|
name: 'sku',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The SKU for the product.',
|
description: 'The SKU for the product',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Description',
|
displayName: 'Description',
|
||||||
name: 'description',
|
name: 'description',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The description of the product.',
|
description: 'The description of the product',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Image URL',
|
displayName: 'Image URL',
|
||||||
name: 'imageUrl',
|
name: 'imageUrl',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'An Image URL that displays an image of the product.',
|
description: 'An Image URL that displays an image of the product',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Product URL',
|
displayName: 'Product URL',
|
||||||
name: 'productUrl',
|
name: 'productUrl',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'A URL linking to the product in your store.',
|
description: 'A URL linking to the product in your store',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -345,7 +345,7 @@ export const ecomOrderFields: INodeProperties[] = [
|
||||||
name: 'shippingAmount',
|
name: 'shippingAmount',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
default: 0,
|
default: 0,
|
||||||
description: 'The total shipping amount for the order in cents .',
|
description: 'The total shipping amount for the order in cents ',
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
|
@ -353,35 +353,35 @@ export const ecomOrderFields: INodeProperties[] = [
|
||||||
name: 'taxAmount',
|
name: 'taxAmount',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
default: 0,
|
default: 0,
|
||||||
description: 'The total tax amount for the order in cents.',
|
description: 'The total tax amount for the order in cents',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Discount Amount',
|
displayName: 'Discount Amount',
|
||||||
name: 'discountAmount',
|
name: 'discountAmount',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
default: 0,
|
default: 0,
|
||||||
description: 'The total discount amount for the order in cents.',
|
description: 'The total discount amount for the order in cents',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Order URL',
|
displayName: 'Order URL',
|
||||||
name: 'orderUrl',
|
name: 'orderUrl',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The URL for the order in the external service.',
|
description: 'The URL for the order in the external service',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'External updated date',
|
displayName: 'External updated date',
|
||||||
name: 'externalUpdatedDate',
|
name: 'externalUpdatedDate',
|
||||||
type: 'dateTime',
|
type: 'dateTime',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The date the order was updated.',
|
description: 'The date the order was updated',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Shipping Method',
|
displayName: 'Shipping Method',
|
||||||
name: 'shippingMethod',
|
name: 'shippingMethod',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The shipping method of the order.',
|
description: 'The shipping method of the order',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Order Number',
|
displayName: 'Order Number',
|
||||||
|
@ -412,7 +412,7 @@ export const ecomOrderFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The id of the e-commerce order.',
|
description: 'The id of the e-commerce order',
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
|
@ -451,14 +451,14 @@ export const ecomOrderFields: INodeProperties[] = [
|
||||||
name: 'source',
|
name: 'source',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
default: 0,
|
default: 0,
|
||||||
description: 'The order source code (0 - will not trigger automations, 1 - will trigger automations).',
|
description: 'The order source code (0 - will not trigger automations, 1 - will trigger automations)',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Customer Email',
|
displayName: 'Customer Email',
|
||||||
name: 'email',
|
name: 'email',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The email address of the customer who placed the order.',
|
description: 'The email address of the customer who placed the order',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Total price',
|
displayName: 'Total price',
|
||||||
|
@ -473,28 +473,28 @@ export const ecomOrderFields: INodeProperties[] = [
|
||||||
type: 'options',
|
type: 'options',
|
||||||
default: 'eur',
|
default: 'eur',
|
||||||
options: allCurrencies,
|
options: allCurrencies,
|
||||||
description: 'The currency of the order (3-digit ISO code, e.g., "USD").',
|
description: 'The currency of the order (3-digit ISO code, e.g., "USD")',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Connection ID',
|
displayName: 'Connection ID',
|
||||||
name: 'connectionid',
|
name: 'connectionid',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
default: 0,
|
default: 0,
|
||||||
description: 'The id of the connection from which this order originated.',
|
description: 'The id of the connection from which this order originated',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Customer ID',
|
displayName: 'Customer ID',
|
||||||
name: 'customerid',
|
name: 'customerid',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
default: 0,
|
default: 0,
|
||||||
description: 'The id of the customer associated with this order.',
|
description: 'The id of the customer associated with this order',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Creation Date',
|
displayName: 'Creation Date',
|
||||||
name: 'externalupdatedDate',
|
name: 'externalupdatedDate',
|
||||||
type: 'dateTime',
|
type: 'dateTime',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The date the order was placed.',
|
description: 'The date the order was placed',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Abandoning Date',
|
displayName: 'Abandoning Date',
|
||||||
|
@ -508,7 +508,7 @@ export const ecomOrderFields: INodeProperties[] = [
|
||||||
name: 'shippingAmount',
|
name: 'shippingAmount',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
default: 0,
|
default: 0,
|
||||||
description: 'The total shipping amount for the order in cents .',
|
description: 'The total shipping amount for the order in cents ',
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
|
@ -516,35 +516,35 @@ export const ecomOrderFields: INodeProperties[] = [
|
||||||
name: 'taxAmount',
|
name: 'taxAmount',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
default: 0,
|
default: 0,
|
||||||
description: 'The total tax amount for the order in cents.',
|
description: 'The total tax amount for the order in cents',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Discount Amount',
|
displayName: 'Discount Amount',
|
||||||
name: 'discountAmount',
|
name: 'discountAmount',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
default: 0,
|
default: 0,
|
||||||
description: 'The total discount amount for the order in cents.',
|
description: 'The total discount amount for the order in cents',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Order URL',
|
displayName: 'Order URL',
|
||||||
name: 'orderUrl',
|
name: 'orderUrl',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The URL for the order in the external service.',
|
description: 'The URL for the order in the external service',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'External updated date',
|
displayName: 'External updated date',
|
||||||
name: 'externalUpdatedDate',
|
name: 'externalUpdatedDate',
|
||||||
type: 'dateTime',
|
type: 'dateTime',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The date the order was updated.',
|
description: 'The date the order was updated',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Shipping Method',
|
displayName: 'Shipping Method',
|
||||||
name: 'shippingMethod',
|
name: 'shippingMethod',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The shipping method of the order.',
|
description: 'The shipping method of the order',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Order Number',
|
displayName: 'Order Number',
|
||||||
|
@ -585,49 +585,49 @@ export const ecomOrderFields: INodeProperties[] = [
|
||||||
name: 'quantity',
|
name: 'quantity',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
default: 0,
|
default: 0,
|
||||||
description: 'The quantity ordered.',
|
description: 'The quantity ordered',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Product external ID',
|
displayName: 'Product external ID',
|
||||||
name: 'externalid',
|
name: 'externalid',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The id of the product in the external service.',
|
description: 'The id of the product in the external service',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Product Category',
|
displayName: 'Product Category',
|
||||||
name: 'category',
|
name: 'category',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The category of the product.',
|
description: 'The category of the product',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'SKU',
|
displayName: 'SKU',
|
||||||
name: 'sku',
|
name: 'sku',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The SKU for the product.',
|
description: 'The SKU for the product',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Description',
|
displayName: 'Description',
|
||||||
name: 'description',
|
name: 'description',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The description of the product.',
|
description: 'The description of the product',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Image URL',
|
displayName: 'Image URL',
|
||||||
name: 'imageUrl',
|
name: 'imageUrl',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'An Image URL that displays an image of the product.',
|
description: 'An Image URL that displays an image of the product',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Product URL',
|
displayName: 'Product URL',
|
||||||
name: 'productUrl',
|
name: 'productUrl',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'A URL linking to the product in your store.',
|
description: 'A URL linking to the product in your store',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -653,7 +653,7 @@ export const ecomOrderFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The id of the e-commerce order.',
|
description: 'The id of the e-commerce order',
|
||||||
},
|
},
|
||||||
|
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
@ -674,7 +674,7 @@ export const ecomOrderFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The id of the e-commerce order.',
|
description: 'The id of the e-commerce order',
|
||||||
},
|
},
|
||||||
|
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
|
|
@ -59,7 +59,7 @@ export const ecomOrderProductsFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The ID of the order whose products you\'d like returned.',
|
description: 'The ID of the order whose products you\'d like returned',
|
||||||
},
|
},
|
||||||
|
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
@ -80,7 +80,7 @@ export const ecomOrderProductsFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The ID of the product you\'d like returned.',
|
description: 'The ID of the product you\'d like returned',
|
||||||
},
|
},
|
||||||
|
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
|
|
@ -133,7 +133,7 @@ export function activeCampaignDefaultGetAllProperties(resource: string, operatio
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -157,7 +157,7 @@ export function activeCampaignDefaultGetAllProperties(resource: string, operatio
|
||||||
maxValue: 500,
|
maxValue: 500,
|
||||||
},
|
},
|
||||||
default: 100,
|
default: 100,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Simplify Response',
|
displayName: 'Simplify Response',
|
||||||
|
@ -174,7 +174,7 @@ export function activeCampaignDefaultGetAllProperties(resource: string, operatio
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: true,
|
default: true,
|
||||||
description: 'Return a simplified version of the response instead of the raw data.',
|
description: 'Return a simplified version of the response instead of the raw data',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -147,13 +147,13 @@ export const tagFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
default: 0,
|
default: 0,
|
||||||
required: true,
|
required: true,
|
||||||
description: 'ID of the tag to update.',
|
description: 'ID of the tag to update',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Update Fields',
|
displayName: 'Update Fields',
|
||||||
name: 'updateFields',
|
name: 'updateFields',
|
||||||
type: 'collection',
|
type: 'collection',
|
||||||
description: 'The fields to update.',
|
description: 'The fields to update',
|
||||||
placeholder: 'Add Field',
|
placeholder: 'Add Field',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
|
@ -172,7 +172,7 @@ export const tagFields: INodeProperties[] = [
|
||||||
name: 'tag',
|
name: 'tag',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Name of the contact.',
|
description: 'Name of the contact',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Description',
|
displayName: 'Description',
|
||||||
|
@ -202,7 +202,7 @@ export const tagFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
default: 0,
|
default: 0,
|
||||||
required: true,
|
required: true,
|
||||||
description: 'ID of the tag to delete.',
|
description: 'ID of the tag to delete',
|
||||||
},
|
},
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
// contact:get
|
// contact:get
|
||||||
|
@ -223,7 +223,7 @@ export const tagFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
default: 0,
|
default: 0,
|
||||||
required: true,
|
required: true,
|
||||||
description: 'ID of the tag to get.',
|
description: 'ID of the tag to get',
|
||||||
},
|
},
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
// tag:getAll
|
// tag:getAll
|
||||||
|
|
|
@ -153,7 +153,7 @@ export class AffinityTrigger implements INodeType {
|
||||||
],
|
],
|
||||||
default: [],
|
default: [],
|
||||||
required: true,
|
required: true,
|
||||||
description: 'Webhook events that will be enabled for that endpoint.',
|
description: 'Webhook events that will be enabled for that endpoint',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|
|
@ -51,7 +51,7 @@ export const listFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The unique id of the list object to be retrieved.',
|
description: 'The unique id of the list object to be retrieved',
|
||||||
},
|
},
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
/* list:getAll */
|
/* list:getAll */
|
||||||
|
@ -71,7 +71,7 @@ export const listFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -95,6 +95,6 @@ export const listFields: INodeProperties[] = [
|
||||||
maxValue: 10,
|
maxValue: 10,
|
||||||
},
|
},
|
||||||
default: 5,
|
default: 5,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
|
@ -65,7 +65,7 @@ export const listEntryFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The unique id of the list whose list entries are to be retrieved.',
|
description: 'The unique id of the list whose list entries are to be retrieved',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Entity ID',
|
displayName: 'Entity ID',
|
||||||
|
@ -83,7 +83,7 @@ export const listEntryFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The unique id of the entity (person, organization, or opportunity) to add to this list.',
|
description: 'The unique id of the entity (person, organization, or opportunity) to add to this list',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Additional Fields',
|
displayName: 'Additional Fields',
|
||||||
|
@ -133,7 +133,7 @@ export const listEntryFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The unique id of the list that contains the specified list_entry_id.',
|
description: 'The unique id of the list that contains the specified list_entry_id',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'List Entry ID',
|
displayName: 'List Entry ID',
|
||||||
|
@ -151,7 +151,7 @@ export const listEntryFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The unique id of the list entry object to be retrieved.',
|
description: 'The unique id of the list entry object to be retrieved',
|
||||||
},
|
},
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
/* listEntry:getAll */
|
/* listEntry:getAll */
|
||||||
|
@ -174,7 +174,7 @@ export const listEntryFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The unique id of the list whose list entries are to be retrieved.',
|
description: 'The unique id of the list whose list entries are to be retrieved',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Return All',
|
displayName: 'Return All',
|
||||||
|
@ -191,7 +191,7 @@ export const listEntryFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -215,7 +215,7 @@ export const listEntryFields: INodeProperties[] = [
|
||||||
maxValue: 10,
|
maxValue: 10,
|
||||||
},
|
},
|
||||||
default: 5,
|
default: 5,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
/* listEntry:delete */
|
/* listEntry:delete */
|
||||||
|
@ -239,7 +239,7 @@ export const listEntryFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The unique id of the list that contains the specified list_entry_id.',
|
description: 'The unique id of the list that contains the specified list_entry_id',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'List Entry ID',
|
displayName: 'List Entry ID',
|
||||||
|
@ -257,6 +257,6 @@ export const listEntryFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The unique id of the list entry object to be deleted.',
|
description: 'The unique id of the list entry object to be deleted',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
|
@ -67,7 +67,7 @@ export const organizationFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The name of the organization.',
|
description: 'The name of the organization',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Domain',
|
displayName: 'Domain',
|
||||||
|
@ -85,7 +85,7 @@ export const organizationFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The domain name of the organization.',
|
description: 'The domain name of the organization',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Additional Fields',
|
displayName: 'Additional Fields',
|
||||||
|
@ -112,7 +112,7 @@ export const organizationFields: INodeProperties[] = [
|
||||||
loadOptionsMethod: 'getPersons',
|
loadOptionsMethod: 'getPersons',
|
||||||
},
|
},
|
||||||
default: [],
|
default: [],
|
||||||
description: 'Persons that the new organization will be associated with.',
|
description: 'Persons that the new organization will be associated with',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -135,7 +135,7 @@ export const organizationFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'Unique identifier for the organization.',
|
description: 'Unique identifier for the organization',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Update Fields',
|
displayName: 'Update Fields',
|
||||||
|
@ -159,14 +159,14 @@ export const organizationFields: INodeProperties[] = [
|
||||||
name: 'domain',
|
name: 'domain',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The domain name of the organization.',
|
description: 'The domain name of the organization',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Name',
|
displayName: 'Name',
|
||||||
name: 'name',
|
name: 'name',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The name of the organization.',
|
description: 'The name of the organization',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Persons',
|
displayName: 'Persons',
|
||||||
|
@ -176,7 +176,7 @@ export const organizationFields: INodeProperties[] = [
|
||||||
loadOptionsMethod: 'getPersons',
|
loadOptionsMethod: 'getPersons',
|
||||||
},
|
},
|
||||||
default: [],
|
default: [],
|
||||||
description: 'Persons that the new organization will be associated with.',
|
description: 'Persons that the new organization will be associated with',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -199,7 +199,7 @@ export const organizationFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'Unique identifier for the organization.',
|
description: 'Unique identifier for the organization',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Options',
|
displayName: 'Options',
|
||||||
|
@ -223,7 +223,7 @@ export const organizationFields: INodeProperties[] = [
|
||||||
name: 'withInteractionDates',
|
name: 'withInteractionDates',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'When true, interaction dates will be present on the returned resources.',
|
description: 'When true, interaction dates will be present on the returned resources',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -245,7 +245,7 @@ export const organizationFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -269,7 +269,7 @@ export const organizationFields: INodeProperties[] = [
|
||||||
maxValue: 10,
|
maxValue: 10,
|
||||||
},
|
},
|
||||||
default: 5,
|
default: 5,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Options',
|
displayName: 'Options',
|
||||||
|
@ -300,7 +300,7 @@ export const organizationFields: INodeProperties[] = [
|
||||||
name: 'withInteractionDates',
|
name: 'withInteractionDates',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'When true, interaction dates will be present on the returned resources.',
|
description: 'When true, interaction dates will be present on the returned resources',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -323,6 +323,6 @@ export const organizationFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'Unique identifier for the organization.',
|
description: 'Unique identifier for the organization',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
|
@ -67,7 +67,7 @@ export const personFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The first name of the person.',
|
description: 'The first name of the person',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Last Name',
|
displayName: 'Last Name',
|
||||||
|
@ -85,7 +85,7 @@ export const personFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The last name of the person.',
|
description: 'The last name of the person',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Additional Fields',
|
displayName: 'Additional Fields',
|
||||||
|
@ -112,7 +112,7 @@ export const personFields: INodeProperties[] = [
|
||||||
loadOptionsMethod: 'getOrganizations',
|
loadOptionsMethod: 'getOrganizations',
|
||||||
},
|
},
|
||||||
default: [],
|
default: [],
|
||||||
description: 'Organizations that the person is associated with.',
|
description: 'Organizations that the person is associated with',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -157,7 +157,7 @@ export const personFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'Unique identifier for the person.',
|
description: 'Unique identifier for the person',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Update Fields',
|
displayName: 'Update Fields',
|
||||||
|
@ -181,14 +181,14 @@ export const personFields: INodeProperties[] = [
|
||||||
name: 'firstName',
|
name: 'firstName',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The first name of the person.',
|
description: 'The first name of the person',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Last Name',
|
displayName: 'Last Name',
|
||||||
name: 'lastName',
|
name: 'lastName',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The last name of the person.',
|
description: 'The last name of the person',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Organizations',
|
displayName: 'Organizations',
|
||||||
|
@ -198,7 +198,7 @@ export const personFields: INodeProperties[] = [
|
||||||
loadOptionsMethod: 'getOrganizations',
|
loadOptionsMethod: 'getOrganizations',
|
||||||
},
|
},
|
||||||
default: [],
|
default: [],
|
||||||
description: 'Organizations that the person is associated with.',
|
description: 'Organizations that the person is associated with',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -243,7 +243,7 @@ export const personFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'Unique identifier for the person.',
|
description: 'Unique identifier for the person',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Options',
|
displayName: 'Options',
|
||||||
|
@ -267,7 +267,7 @@ export const personFields: INodeProperties[] = [
|
||||||
name: 'withInteractionDates',
|
name: 'withInteractionDates',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'When true, interaction dates will be present on the returned resources.',
|
description: 'When true, interaction dates will be present on the returned resources',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -289,7 +289,7 @@ export const personFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -313,7 +313,7 @@ export const personFields: INodeProperties[] = [
|
||||||
maxValue: 10,
|
maxValue: 10,
|
||||||
},
|
},
|
||||||
default: 5,
|
default: 5,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Options',
|
displayName: 'Options',
|
||||||
|
@ -344,7 +344,7 @@ export const personFields: INodeProperties[] = [
|
||||||
name: 'withInteractionDates',
|
name: 'withInteractionDates',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'When true, interaction dates will be present on the returned resources.',
|
description: 'When true, interaction dates will be present on the returned resources',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -367,6 +367,6 @@ export const personFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'Unique identifier for the person.',
|
description: 'Unique identifier for the person',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
|
@ -87,7 +87,7 @@ export const companyFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -107,7 +107,7 @@ export const companyFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: 20,
|
default: 20,
|
||||||
description: 'Number of results to fetch.',
|
description: 'Number of results to fetch',
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
|
@ -185,7 +185,7 @@ export const companyFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
// eslint-disable-next-line n8n-nodes-base/node-param-default-wrong-for-simplify
|
// eslint-disable-next-line n8n-nodes-base/node-param-default-wrong-for-simplify
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Return a simplified version of the response instead of the raw data.',
|
description: 'Return a simplified version of the response instead of the raw data',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Filters',
|
displayName: 'Filters',
|
||||||
|
@ -219,7 +219,7 @@ export const companyFields: INodeProperties[] = [
|
||||||
name: 'field',
|
name: 'field',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Any searchable field.',
|
description: 'Any searchable field',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Condition Type',
|
displayName: 'Condition Type',
|
||||||
|
@ -420,7 +420,7 @@ export const companyFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'Object of values to set as described <a href="https://github.com/agilecrm/rest-api#1-companys---companies-api">here</a>.',
|
description: 'Object of values to set as described <a href="https://github.com/agilecrm/rest-api#1-companys---companies-api">here</a>',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Additional Fields',
|
displayName: 'Additional Fields',
|
||||||
|
@ -447,28 +447,28 @@ export const companyFields: INodeProperties[] = [
|
||||||
name: 'email',
|
name: 'email',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Company address.',
|
description: 'Company address',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Email',
|
displayName: 'Email',
|
||||||
name: 'email',
|
name: 'email',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Company email.',
|
description: 'Company email',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Name',
|
displayName: 'Name',
|
||||||
name: 'name',
|
name: 'name',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Company name.',
|
description: 'Company name',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Phone',
|
displayName: 'Phone',
|
||||||
name: 'phone',
|
name: 'phone',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Company phone.',
|
description: 'Company phone',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Star Value',
|
displayName: 'Star Value',
|
||||||
|
@ -518,7 +518,7 @@ export const companyFields: INodeProperties[] = [
|
||||||
displayName: 'Website',
|
displayName: 'Website',
|
||||||
name: 'websiteOptions',
|
name: 'websiteOptions',
|
||||||
type: 'fixedCollection',
|
type: 'fixedCollection',
|
||||||
description: 'Companies websites.',
|
description: 'Companies websites',
|
||||||
default: {},
|
default: {},
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
multipleValues: true,
|
multipleValues: true,
|
||||||
|
@ -534,7 +534,7 @@ export const companyFields: INodeProperties[] = [
|
||||||
type: 'options',
|
type: 'options',
|
||||||
required: true,
|
required: true,
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Type of website.',
|
description: 'Type of website',
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
name: 'Facebook',
|
name: 'Facebook',
|
||||||
|
@ -614,21 +614,21 @@ export const companyFields: INodeProperties[] = [
|
||||||
type: 'string',
|
type: 'string',
|
||||||
required: true,
|
required: true,
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Property name.',
|
description: 'Property name',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Sub Type',
|
displayName: 'Sub Type',
|
||||||
name: 'subtype',
|
name: 'subtype',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Property sub type.',
|
description: 'Property sub type',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Value',
|
displayName: 'Value',
|
||||||
name: 'value',
|
name: 'value',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Property value.',
|
description: 'Property value',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -717,7 +717,7 @@ export const companyFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'Object of values to set as described <a href="https://github.com/agilecrm/rest-api#1-companys---companies-api">here</a>.',
|
description: 'Object of values to set as described <a href="https://github.com/agilecrm/rest-api#1-companys---companies-api">here</a>',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Additional Fields',
|
displayName: 'Additional Fields',
|
||||||
|
@ -744,14 +744,14 @@ export const companyFields: INodeProperties[] = [
|
||||||
name: 'email',
|
name: 'email',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Company address.',
|
description: 'Company address',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Email',
|
displayName: 'Email',
|
||||||
name: 'email',
|
name: 'email',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Company email.',
|
description: 'Company email',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Star Value',
|
displayName: 'Star Value',
|
||||||
|
@ -802,21 +802,21 @@ export const companyFields: INodeProperties[] = [
|
||||||
name: 'name',
|
name: 'name',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Company name.',
|
description: 'Company name',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Phone',
|
displayName: 'Phone',
|
||||||
name: 'phone',
|
name: 'phone',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Company phone.',
|
description: 'Company phone',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Website',
|
displayName: 'Website',
|
||||||
name: 'websiteOptions',
|
name: 'websiteOptions',
|
||||||
type: 'fixedCollection',
|
type: 'fixedCollection',
|
||||||
default: {},
|
default: {},
|
||||||
description: 'Companys websites.',
|
description: 'Companys websites',
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
multipleValues: true,
|
multipleValues: true,
|
||||||
},
|
},
|
||||||
|
@ -831,7 +831,7 @@ export const companyFields: INodeProperties[] = [
|
||||||
type: 'options',
|
type: 'options',
|
||||||
required: true,
|
required: true,
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Type of website.',
|
description: 'Type of website',
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
name: 'Facebook',
|
name: 'Facebook',
|
||||||
|
@ -911,21 +911,21 @@ export const companyFields: INodeProperties[] = [
|
||||||
type: 'string',
|
type: 'string',
|
||||||
required: true,
|
required: true,
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Property name.',
|
description: 'Property name',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Sub Type',
|
displayName: 'Sub Type',
|
||||||
name: 'subtype',
|
name: 'subtype',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Property sub type.',
|
description: 'Property sub type',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Value',
|
displayName: 'Value',
|
||||||
name: 'value',
|
name: 'value',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Property value.',
|
description: 'Property value',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
|
@ -87,7 +87,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -107,7 +107,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: 20,
|
default: 20,
|
||||||
description: 'Number of results to fetch.',
|
description: 'Number of results to fetch',
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
|
@ -185,7 +185,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
// eslint-disable-next-line n8n-nodes-base/node-param-default-wrong-for-simplify
|
// eslint-disable-next-line n8n-nodes-base/node-param-default-wrong-for-simplify
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Return a simplified version of the response instead of the raw data.',
|
description: 'Return a simplified version of the response instead of the raw data',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Filters',
|
displayName: 'Filters',
|
||||||
|
@ -219,7 +219,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
name: 'field',
|
name: 'field',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Any searchable field.',
|
description: 'Any searchable field',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Condition Type',
|
displayName: 'Condition Type',
|
||||||
|
@ -422,7 +422,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
description: `Object of values to set as described <a href="https://github.com/agilecrm/rest-api#1-contacts---companies-api">here</a>.`,
|
description: 'Object of values to set as described <a href="https://github.com/agilecrm/rest-api#1-contacts---companies-api">here</a>',
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
|
@ -450,7 +450,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
name: 'addressOptions',
|
name: 'addressOptions',
|
||||||
type: 'fixedCollection',
|
type: 'fixedCollection',
|
||||||
default: {},
|
default: {},
|
||||||
description: 'Contacts address.',
|
description: 'Contacts address',
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
multipleValues: true,
|
multipleValues: true,
|
||||||
},
|
},
|
||||||
|
@ -465,7 +465,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
type: 'options',
|
type: 'options',
|
||||||
required: true,
|
required: true,
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Type of address.',
|
description: 'Type of address',
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
name: 'Home',
|
name: 'Home',
|
||||||
|
@ -487,7 +487,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
type: 'string',
|
type: 'string',
|
||||||
required: true,
|
required: true,
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Full address.',
|
description: 'Full address',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -498,14 +498,14 @@ export const contactFields: INodeProperties[] = [
|
||||||
name: 'company',
|
name: 'company',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Company Name.',
|
description: 'Company Name',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Email',
|
displayName: 'Email',
|
||||||
name: 'emailOptions',
|
name: 'emailOptions',
|
||||||
type: 'fixedCollection',
|
type: 'fixedCollection',
|
||||||
default: {},
|
default: {},
|
||||||
description: 'Contact email.',
|
description: 'Contact email',
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
multipleValues: true,
|
multipleValues: true,
|
||||||
},
|
},
|
||||||
|
@ -549,14 +549,14 @@ export const contactFields: INodeProperties[] = [
|
||||||
name: 'firstName',
|
name: 'firstName',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Contact first name.',
|
description: 'Contact first name',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Last Name',
|
displayName: 'Last Name',
|
||||||
name: 'lastName',
|
name: 'lastName',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Contact last name.',
|
description: 'Contact last name',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Lead Score',
|
displayName: 'Lead Score',
|
||||||
|
@ -606,7 +606,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
name: 'phoneOptions',
|
name: 'phoneOptions',
|
||||||
type: 'fixedCollection',
|
type: 'fixedCollection',
|
||||||
default: {},
|
default: {},
|
||||||
description: 'Contacts phone.',
|
description: 'Contacts phone',
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
multipleValues: true,
|
multipleValues: true,
|
||||||
},
|
},
|
||||||
|
@ -621,7 +621,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
type: 'options',
|
type: 'options',
|
||||||
required: true,
|
required: true,
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Type of phone number.',
|
description: 'Type of phone number',
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
name: 'Home',
|
name: 'Home',
|
||||||
|
@ -659,7 +659,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
type: 'string',
|
type: 'string',
|
||||||
required: true,
|
required: true,
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Phone number.',
|
description: 'Phone number',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -681,14 +681,14 @@ export const contactFields: INodeProperties[] = [
|
||||||
name: 'title',
|
name: 'title',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Professional title.',
|
description: 'Professional title',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Website',
|
displayName: 'Website',
|
||||||
name: 'websiteOptions',
|
name: 'websiteOptions',
|
||||||
type: 'fixedCollection',
|
type: 'fixedCollection',
|
||||||
default: {},
|
default: {},
|
||||||
description: 'Contacts websites.',
|
description: 'Contacts websites',
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
multipleValues: true,
|
multipleValues: true,
|
||||||
},
|
},
|
||||||
|
@ -703,7 +703,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
type: 'options',
|
type: 'options',
|
||||||
required: true,
|
required: true,
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Type of website.',
|
description: 'Type of website',
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
name: 'Facebook',
|
name: 'Facebook',
|
||||||
|
@ -783,21 +783,21 @@ export const contactFields: INodeProperties[] = [
|
||||||
type: 'string',
|
type: 'string',
|
||||||
required: true,
|
required: true,
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Property name.',
|
description: 'Property name',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Sub Type',
|
displayName: 'Sub Type',
|
||||||
name: 'subtype',
|
name: 'subtype',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Property sub type.',
|
description: 'Property sub type',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Value',
|
displayName: 'Value',
|
||||||
name: 'value',
|
name: 'value',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Property value.',
|
description: 'Property value',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -825,7 +825,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Id of contact to delete.',
|
description: 'Id of contact to delete',
|
||||||
},
|
},
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
|
@ -886,7 +886,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: `Object of values to set as described <a href="https://github.com/agilecrm/rest-api#1-contacts---companies-api">here</a>.`,
|
description: 'Object of values to set as described <a href="https://github.com/agilecrm/rest-api#1-contacts---companies-api">here</a>',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Additional Fields',
|
displayName: 'Additional Fields',
|
||||||
|
@ -913,7 +913,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
name: 'addressOptions',
|
name: 'addressOptions',
|
||||||
type: 'fixedCollection',
|
type: 'fixedCollection',
|
||||||
default: {},
|
default: {},
|
||||||
description: 'Contacts address.',
|
description: 'Contacts address',
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
multipleValues: true,
|
multipleValues: true,
|
||||||
},
|
},
|
||||||
|
@ -928,7 +928,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
type: 'options',
|
type: 'options',
|
||||||
required: true,
|
required: true,
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Type of address.',
|
description: 'Type of address',
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
name: 'Home',
|
name: 'Home',
|
||||||
|
@ -950,7 +950,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
type: 'string',
|
type: 'string',
|
||||||
required: true,
|
required: true,
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Full address.',
|
description: 'Full address',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -961,14 +961,14 @@ export const contactFields: INodeProperties[] = [
|
||||||
name: 'company',
|
name: 'company',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Company Name.',
|
description: 'Company Name',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Email',
|
displayName: 'Email',
|
||||||
name: 'emailOptions',
|
name: 'emailOptions',
|
||||||
type: 'fixedCollection',
|
type: 'fixedCollection',
|
||||||
default: {},
|
default: {},
|
||||||
description: 'Contact email.',
|
description: 'Contact email',
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
multipleValues: true,
|
multipleValues: true,
|
||||||
},
|
},
|
||||||
|
@ -1012,14 +1012,14 @@ export const contactFields: INodeProperties[] = [
|
||||||
name: 'firstName',
|
name: 'firstName',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Contact first name.',
|
description: 'Contact first name',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Last Name',
|
displayName: 'Last Name',
|
||||||
name: 'lastName',
|
name: 'lastName',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Contact last name.',
|
description: 'Contact last name',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Lead Score',
|
displayName: 'Lead Score',
|
||||||
|
@ -1069,7 +1069,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
name: 'phoneOptions',
|
name: 'phoneOptions',
|
||||||
type: 'fixedCollection',
|
type: 'fixedCollection',
|
||||||
default: {},
|
default: {},
|
||||||
description: 'Contacts phone.',
|
description: 'Contacts phone',
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
multipleValues: true,
|
multipleValues: true,
|
||||||
},
|
},
|
||||||
|
@ -1084,7 +1084,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
type: 'options',
|
type: 'options',
|
||||||
required: true,
|
required: true,
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Type of phone number.',
|
description: 'Type of phone number',
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
name: 'Home',
|
name: 'Home',
|
||||||
|
@ -1122,7 +1122,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
type: 'string',
|
type: 'string',
|
||||||
required: true,
|
required: true,
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Phone number.',
|
description: 'Phone number',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -1144,14 +1144,14 @@ export const contactFields: INodeProperties[] = [
|
||||||
name: 'title',
|
name: 'title',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Professional title.',
|
description: 'Professional title',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Website',
|
displayName: 'Website',
|
||||||
name: 'websiteOptions',
|
name: 'websiteOptions',
|
||||||
type: 'fixedCollection',
|
type: 'fixedCollection',
|
||||||
default: {},
|
default: {},
|
||||||
description: 'Contacts websites.',
|
description: 'Contacts websites',
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
multipleValues: true,
|
multipleValues: true,
|
||||||
},
|
},
|
||||||
|
@ -1166,7 +1166,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
type: 'options',
|
type: 'options',
|
||||||
required: true,
|
required: true,
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Type of website.',
|
description: 'Type of website',
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
name: 'Facebook',
|
name: 'Facebook',
|
||||||
|
@ -1246,21 +1246,21 @@ export const contactFields: INodeProperties[] = [
|
||||||
type: 'string',
|
type: 'string',
|
||||||
required: true,
|
required: true,
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Property name.',
|
description: 'Property name',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Sub Type',
|
displayName: 'Sub Type',
|
||||||
name: 'subtype',
|
name: 'subtype',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Property sub type.',
|
description: 'Property sub type',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Value',
|
displayName: 'Value',
|
||||||
name: 'value',
|
name: 'value',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Property value.',
|
description: 'Property value',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
|
@ -108,7 +108,7 @@ export const dealFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
/* deal:create */
|
/* deal:create */
|
||||||
|
@ -132,7 +132,7 @@ export const dealFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Closing date of deal.',
|
description: 'Closing date of deal',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Expected Value',
|
displayName: 'Expected Value',
|
||||||
|
@ -157,7 +157,7 @@ export const dealFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: 1,
|
default: 1,
|
||||||
description: 'Expected Value of deal.',
|
description: 'Expected Value of deal',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Milestone',
|
displayName: 'Milestone',
|
||||||
|
@ -178,7 +178,7 @@ export const dealFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Milestone of deal.',
|
description: 'Milestone of deal',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Name',
|
displayName: 'Name',
|
||||||
|
@ -199,7 +199,7 @@ export const dealFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Name of deal.',
|
description: 'Name of deal',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Probability',
|
displayName: 'Probability',
|
||||||
|
@ -224,7 +224,7 @@ export const dealFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: 50,
|
default: 50,
|
||||||
description: 'Expected probability.',
|
description: 'Expected probability',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'JSON Parameters',
|
displayName: 'JSON Parameters',
|
||||||
|
@ -263,7 +263,7 @@ export const dealFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: `Object of values to set as described <a href="https://github.com/agilecrm/rest-api#1-deals---companies-api">here</a>.`,
|
description: 'Object of values to set as described <a href="https://github.com/agilecrm/rest-api#1-deals---companies-api">here</a>',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Additional Fields',
|
displayName: 'Additional Fields',
|
||||||
|
@ -294,7 +294,7 @@ export const dealFields: INodeProperties[] = [
|
||||||
multipleValueButtonText: 'Add ID',
|
multipleValueButtonText: 'Add ID',
|
||||||
},
|
},
|
||||||
default: [],
|
default: [],
|
||||||
description: 'Unique contact identifiers.',
|
description: 'Unique contact identifiers',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Custom Data',
|
displayName: 'Custom Data',
|
||||||
|
@ -316,14 +316,14 @@ export const dealFields: INodeProperties[] = [
|
||||||
type: 'string',
|
type: 'string',
|
||||||
required: true,
|
required: true,
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Property name.',
|
description: 'Property name',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Value',
|
displayName: 'Value',
|
||||||
name: 'value',
|
name: 'value',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Property value.',
|
description: 'Property value',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -413,7 +413,7 @@ export const dealFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
description: `Object of values to set as described <a href="https://github.com/agilecrm/rest-api#1-deals---companies-api">here</a>.`,
|
description: 'Object of values to set as described <a href="https://github.com/agilecrm/rest-api#1-deals---companies-api">here</a>',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Additional Fields',
|
displayName: 'Additional Fields',
|
||||||
|
@ -444,14 +444,14 @@ export const dealFields: INodeProperties[] = [
|
||||||
maxValue: 10000,
|
maxValue: 10000,
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Expected Value of deal.',
|
description: 'Expected Value of deal',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Name',
|
displayName: 'Name',
|
||||||
name: 'name',
|
name: 'name',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Name of deal.',
|
description: 'Name of deal',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Probability',
|
displayName: 'Probability',
|
||||||
|
@ -462,7 +462,7 @@ export const dealFields: INodeProperties[] = [
|
||||||
maxValue: 100,
|
maxValue: 100,
|
||||||
},
|
},
|
||||||
default: 50,
|
default: 50,
|
||||||
description: 'Expected Value of deal.',
|
description: 'Expected Value of deal',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Contact Ids',
|
displayName: 'Contact Ids',
|
||||||
|
@ -473,7 +473,7 @@ export const dealFields: INodeProperties[] = [
|
||||||
multipleValueButtonText: 'Add ID',
|
multipleValueButtonText: 'Add ID',
|
||||||
},
|
},
|
||||||
default: [],
|
default: [],
|
||||||
description: 'Unique contact identifiers.',
|
description: 'Unique contact identifiers',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Custom Data',
|
displayName: 'Custom Data',
|
||||||
|
@ -495,14 +495,14 @@ export const dealFields: INodeProperties[] = [
|
||||||
type: 'string',
|
type: 'string',
|
||||||
required: true,
|
required: true,
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Property name.',
|
description: 'Property name',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Value',
|
displayName: 'Value',
|
||||||
name: 'value',
|
name: 'value',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Property value.',
|
description: 'Property value',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
|
@ -80,7 +80,7 @@ export class Airtable implements INodeType {
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
required: true,
|
required: true,
|
||||||
description: 'The ID of the base to access.',
|
description: 'The ID of the base to access',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Table ID',
|
displayName: 'Table ID',
|
||||||
|
@ -89,7 +89,7 @@ export class Airtable implements INodeType {
|
||||||
default: '',
|
default: '',
|
||||||
placeholder: 'Stories',
|
placeholder: 'Stories',
|
||||||
required: true,
|
required: true,
|
||||||
description: 'The ID of the table to access.',
|
description: 'The ID of the table to access',
|
||||||
},
|
},
|
||||||
|
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
@ -107,7 +107,7 @@ export class Airtable implements INodeType {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: true,
|
default: true,
|
||||||
description: 'If all fields should be sent to Airtable or only specific ones.',
|
description: 'If all fields should be sent to Airtable or only specific ones',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Fields',
|
displayName: 'Fields',
|
||||||
|
@ -130,7 +130,7 @@ export class Airtable implements INodeType {
|
||||||
default: [],
|
default: [],
|
||||||
placeholder: 'Name',
|
placeholder: 'Name',
|
||||||
required: true,
|
required: true,
|
||||||
description: 'The name of fields for which data should be sent to Airtable.',
|
description: 'The name of fields for which data should be sent to Airtable',
|
||||||
},
|
},
|
||||||
|
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
@ -149,7 +149,7 @@ export class Airtable implements INodeType {
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
required: true,
|
required: true,
|
||||||
description: 'Id of the record to delete.',
|
description: 'Id of the record to delete',
|
||||||
},
|
},
|
||||||
|
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
@ -167,7 +167,7 @@ export class Airtable implements INodeType {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: true,
|
default: true,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -188,7 +188,7 @@ export class Airtable implements INodeType {
|
||||||
maxValue: 100,
|
maxValue: 100,
|
||||||
},
|
},
|
||||||
default: 100,
|
default: 100,
|
||||||
description: 'Number of results to return.',
|
description: 'Number of results to return',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Download Attachments',
|
displayName: 'Download Attachments',
|
||||||
|
@ -202,7 +202,7 @@ export class Airtable implements INodeType {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: `When set to true the attachment fields define in 'Download Fields' will be downloaded.`,
|
description: 'When set to true the attachment fields define in \'Download Fields\' will be downloaded',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Download Fields',
|
displayName: 'Download Fields',
|
||||||
|
@ -247,7 +247,7 @@ export class Airtable implements INodeType {
|
||||||
},
|
},
|
||||||
default: [],
|
default: [],
|
||||||
placeholder: 'Name',
|
placeholder: 'Name',
|
||||||
description: 'Only data for fields whose names are in this list will be included in the records.',
|
description: 'Only data for fields whose names are in this list will be included in the records',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Filter By Formula',
|
displayName: 'Filter By Formula',
|
||||||
|
@ -261,7 +261,7 @@ export class Airtable implements INodeType {
|
||||||
displayName: 'Sort',
|
displayName: 'Sort',
|
||||||
name: 'sort',
|
name: 'sort',
|
||||||
placeholder: 'Add Sort Rule',
|
placeholder: 'Add Sort Rule',
|
||||||
description: 'Defines how the returned records should be ordered.',
|
description: 'Defines how the returned records should be ordered',
|
||||||
type: 'fixedCollection',
|
type: 'fixedCollection',
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
multipleValues: true,
|
multipleValues: true,
|
||||||
|
@ -277,7 +277,7 @@ export class Airtable implements INodeType {
|
||||||
name: 'field',
|
name: 'field',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Name of the field to sort on.',
|
description: 'Name of the field to sort on',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Direction',
|
displayName: 'Direction',
|
||||||
|
@ -296,7 +296,7 @@ export class Airtable implements INodeType {
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: 'asc',
|
default: 'asc',
|
||||||
description: 'The sort direction.',
|
description: 'The sort direction',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -329,7 +329,7 @@ export class Airtable implements INodeType {
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
required: true,
|
required: true,
|
||||||
description: 'Id of the record to return.',
|
description: 'Id of the record to return',
|
||||||
},
|
},
|
||||||
|
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
@ -348,7 +348,7 @@ export class Airtable implements INodeType {
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
required: true,
|
required: true,
|
||||||
description: 'Id of the record to update.',
|
description: 'Id of the record to update',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Update All Fields',
|
displayName: 'Update All Fields',
|
||||||
|
@ -362,7 +362,7 @@ export class Airtable implements INodeType {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: true,
|
default: true,
|
||||||
description: 'If all fields should be sent to Airtable or only specific ones.',
|
description: 'If all fields should be sent to Airtable or only specific ones',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Fields',
|
displayName: 'Fields',
|
||||||
|
@ -385,7 +385,7 @@ export class Airtable implements INodeType {
|
||||||
default: [],
|
default: [],
|
||||||
placeholder: 'Name',
|
placeholder: 'Name',
|
||||||
required: true,
|
required: true,
|
||||||
description: 'The name of fields for which data should be sent to Airtable.',
|
description: 'The name of fields for which data should be sent to Airtable',
|
||||||
},
|
},
|
||||||
|
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
@ -416,7 +416,7 @@ export class Airtable implements INodeType {
|
||||||
maxValue: 10,
|
maxValue: 10,
|
||||||
},
|
},
|
||||||
default: 10,
|
default: 10,
|
||||||
description: `Number of records to process at once.`,
|
description: 'Number of records to process at once',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Ignore Fields',
|
displayName: 'Ignore Fields',
|
||||||
|
@ -433,7 +433,7 @@ export class Airtable implements INodeType {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Comma-separated list of fields to ignore.',
|
description: 'Comma-separated list of fields to ignore',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Typecast',
|
displayName: 'Typecast',
|
||||||
|
@ -448,7 +448,7 @@ export class Airtable implements INodeType {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If the Airtable API should attempt mapping of string values for linked records & select options.',
|
description: 'If the Airtable API should attempt mapping of string values for linked records & select options',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
|
@ -45,14 +45,14 @@ export class AirtableTrigger implements INodeType {
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
required: true,
|
required: true,
|
||||||
description: 'The ID of this base.',
|
description: 'The ID of this base',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Table ID',
|
displayName: 'Table ID',
|
||||||
name: 'tableId',
|
name: 'tableId',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The ID of the table to access.',
|
description: 'The ID of the table to access',
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -68,7 +68,7 @@ export class AirtableTrigger implements INodeType {
|
||||||
name: 'downloadAttachments',
|
name: 'downloadAttachments',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: `When set to true the attachment fields define in 'Download Fields' will be downloaded.`,
|
description: 'When set to true the attachment fields define in \'Download Fields\' will be downloaded',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Download Fields',
|
displayName: 'Download Fields',
|
||||||
|
|
|
@ -67,7 +67,7 @@ export class Amqp implements INodeType {
|
||||||
name: 'dataAsObject',
|
name: 'dataAsObject',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Send the data as an object.',
|
description: 'Send the data as an object',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Reconnect',
|
displayName: 'Reconnect',
|
||||||
|
|
|
@ -86,7 +86,7 @@ export class AmqpTrigger implements INodeType {
|
||||||
name: 'jsonParseBody',
|
name: 'jsonParseBody',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Parse the body to an object.',
|
description: 'Parse the body to an object',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Messages per Cicle',
|
displayName: 'Messages per Cicle',
|
||||||
|
@ -100,7 +100,7 @@ export class AmqpTrigger implements INodeType {
|
||||||
name: 'onlyBody',
|
name: 'onlyBody',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Returns only the body property.',
|
description: 'Returns only the body property',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Reconnect',
|
displayName: 'Reconnect',
|
||||||
|
@ -121,7 +121,7 @@ export class AmqpTrigger implements INodeType {
|
||||||
name: 'sleepTime',
|
name: 'sleepTime',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
default: 10,
|
default: 10,
|
||||||
description: 'Milliseconds to sleep after every cicle.',
|
description: 'Milliseconds to sleep after every cicle',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
|
@ -110,7 +110,7 @@ export class ApiTemplateIo implements INodeType {
|
||||||
type: 'options',
|
type: 'options',
|
||||||
required: true,
|
required: true,
|
||||||
default: '',
|
default: '',
|
||||||
description: 'ID of the image template to use.',
|
description: 'ID of the image template to use',
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
loadOptionsMethod: 'getImageTemplates',
|
loadOptionsMethod: 'getImageTemplates',
|
||||||
},
|
},
|
||||||
|
@ -131,7 +131,7 @@ export class ApiTemplateIo implements INodeType {
|
||||||
type: 'options',
|
type: 'options',
|
||||||
required: true,
|
required: true,
|
||||||
default: '',
|
default: '',
|
||||||
description: 'ID of the PDF template to use.',
|
description: 'ID of the PDF template to use',
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
loadOptionsMethod: 'getPdfTemplates',
|
loadOptionsMethod: 'getPdfTemplates',
|
||||||
},
|
},
|
||||||
|
@ -179,7 +179,7 @@ export class ApiTemplateIo implements INodeType {
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'Name of the binary property to which to write the data of the read file.',
|
description: 'Name of the binary property to which to write the data of the read file',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Binary Property',
|
displayName: 'Binary Property',
|
||||||
|
@ -187,7 +187,7 @@ export class ApiTemplateIo implements INodeType {
|
||||||
type: 'string',
|
type: 'string',
|
||||||
required: true,
|
required: true,
|
||||||
default: 'data',
|
default: 'data',
|
||||||
description: 'Name of the binary property to which to write to.',
|
description: 'Name of the binary property to which to write to',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource: [
|
||||||
|
@ -296,7 +296,7 @@ export class ApiTemplateIo implements INodeType {
|
||||||
name: 'value',
|
name: 'value',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Value to the property.',
|
description: 'Value to the property',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -345,7 +345,7 @@ export class ApiTemplateIo implements INodeType {
|
||||||
name: 'value',
|
name: 'value',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Value to the property.',
|
description: 'Value to the property',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
|
@ -176,7 +176,7 @@ export class Asana implements INodeType {
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The task to operate on.',
|
description: 'The task to operate on',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Name',
|
displayName: 'Name',
|
||||||
|
@ -253,21 +253,21 @@ export class Asana implements INodeType {
|
||||||
name: 'completed',
|
name: 'completed',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If the subtask should be marked completed.',
|
description: 'If the subtask should be marked completed',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Due On',
|
displayName: 'Due On',
|
||||||
name: 'due_on',
|
name: 'due_on',
|
||||||
type: 'dateTime',
|
type: 'dateTime',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Date on which the time is due.',
|
description: 'Date on which the time is due',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Liked',
|
displayName: 'Liked',
|
||||||
name: 'liked',
|
name: 'liked',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If the task is liked by the authorized user.',
|
description: 'If the task is liked by the authorized user',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Notes',
|
displayName: 'Notes',
|
||||||
|
@ -311,7 +311,7 @@ export class Asana implements INodeType {
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The task to operate on.',
|
description: 'The task to operate on',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Return All',
|
displayName: 'Return All',
|
||||||
|
@ -328,7 +328,7 @@ export class Asana implements INodeType {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -352,7 +352,7 @@ export class Asana implements INodeType {
|
||||||
maxValue: 500,
|
maxValue: 500,
|
||||||
},
|
},
|
||||||
default: 100,
|
default: 100,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Options',
|
displayName: 'Options',
|
||||||
|
@ -383,14 +383,14 @@ export class Asana implements INodeType {
|
||||||
'name',
|
'name',
|
||||||
'resource_type',
|
'resource_type',
|
||||||
],
|
],
|
||||||
description: 'Defines fields to return.',
|
description: 'Defines fields to return',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Pretty',
|
displayName: 'Pretty',
|
||||||
name: 'opt_pretty',
|
name: 'opt_pretty',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Provides “pretty” output.',
|
description: 'Provides “pretty” output',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -512,7 +512,7 @@ export class Asana implements INodeType {
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The ID of the task to delete.',
|
description: 'The ID of the task to delete',
|
||||||
},
|
},
|
||||||
|
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
@ -534,7 +534,7 @@ export class Asana implements INodeType {
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The ID of the task to get the data of.',
|
description: 'The ID of the task to get the data of',
|
||||||
},
|
},
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
// task:getAll
|
// task:getAll
|
||||||
|
@ -554,7 +554,7 @@ export class Asana implements INodeType {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -578,7 +578,7 @@ export class Asana implements INodeType {
|
||||||
maxValue: 500,
|
maxValue: 500,
|
||||||
},
|
},
|
||||||
default: 100,
|
default: 100,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Filters',
|
displayName: 'Filters',
|
||||||
|
@ -620,14 +620,14 @@ export class Asana implements INodeType {
|
||||||
'name',
|
'name',
|
||||||
'resource_type',
|
'resource_type',
|
||||||
],
|
],
|
||||||
description: 'Defines fields to return.',
|
description: 'Defines fields to return',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Pretty',
|
displayName: 'Pretty',
|
||||||
name: 'opt_pretty',
|
name: 'opt_pretty',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Provides “pretty” output.',
|
description: 'Provides “pretty” output',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Project',
|
displayName: 'Project',
|
||||||
|
@ -637,7 +637,7 @@ export class Asana implements INodeType {
|
||||||
loadOptionsMethod: 'getProjects',
|
loadOptionsMethod: 'getProjects',
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The project to filter tasks on.',
|
description: 'The project to filter tasks on',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Section',
|
displayName: 'Section',
|
||||||
|
@ -647,7 +647,7 @@ export class Asana implements INodeType {
|
||||||
loadOptionsMethod: 'getSections',
|
loadOptionsMethod: 'getSections',
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The section to filter tasks on.',
|
description: 'The section to filter tasks on',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Workspace',
|
displayName: 'Workspace',
|
||||||
|
@ -664,14 +664,14 @@ export class Asana implements INodeType {
|
||||||
name: 'completed_since',
|
name: 'completed_since',
|
||||||
type: 'dateTime',
|
type: 'dateTime',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Only return tasks that are either incomplete or that have been completed since this time.',
|
description: 'Only return tasks that are either incomplete or that have been completed since this time',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Modified Since',
|
displayName: 'Modified Since',
|
||||||
name: 'modified_since',
|
name: 'modified_since',
|
||||||
type: 'dateTime',
|
type: 'dateTime',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Only return tasks that have been modified since the given time.',
|
description: 'Only return tasks that have been modified since the given time',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -696,7 +696,7 @@ export class Asana implements INodeType {
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The ID of the task to be moved.',
|
description: 'The ID of the task to be moved',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Project',
|
displayName: 'Project',
|
||||||
|
@ -718,7 +718,7 @@ export class Asana implements INodeType {
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'Project to show the sections of.',
|
description: 'Project to show the sections of',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Section',
|
displayName: 'Section',
|
||||||
|
@ -765,7 +765,7 @@ export class Asana implements INodeType {
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The ID of the task to update the data of.',
|
description: 'The ID of the task to update the data of',
|
||||||
},
|
},
|
||||||
|
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
@ -816,7 +816,7 @@ export class Asana implements INodeType {
|
||||||
name: 'completed',
|
name: 'completed',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If the task is marked completed.',
|
description: 'If the task is marked completed',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Text',
|
displayName: 'Text',
|
||||||
|
@ -827,7 +827,7 @@ export class Asana implements INodeType {
|
||||||
rows: 5,
|
rows: 5,
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Text to search for in name or notes.',
|
description: 'Text to search for in name or notes',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -893,14 +893,14 @@ export class Asana implements INodeType {
|
||||||
name: 'completed',
|
name: 'completed',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If the task should be marked completed.',
|
description: 'If the task should be marked completed',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Due On',
|
displayName: 'Due On',
|
||||||
name: 'due_on',
|
name: 'due_on',
|
||||||
type: 'dateTime',
|
type: 'dateTime',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Date on which the time is due.',
|
description: 'Date on which the time is due',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Name',
|
displayName: 'Name',
|
||||||
|
@ -921,7 +921,7 @@ export class Asana implements INodeType {
|
||||||
name: 'liked',
|
name: 'liked',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If the task is liked by the authorized user.',
|
description: 'If the task is liked by the authorized user',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Notes',
|
displayName: 'Notes',
|
||||||
|
@ -942,7 +942,7 @@ export class Asana implements INodeType {
|
||||||
loadOptionsMethod: 'getProjects',
|
loadOptionsMethod: 'getProjects',
|
||||||
},
|
},
|
||||||
default: [],
|
default: [],
|
||||||
description: 'The project to filter tasks on.',
|
description: 'The project to filter tasks on',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -1015,7 +1015,7 @@ export class Asana implements INodeType {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If body is HTML or simple text.',
|
description: 'If body is HTML or simple text',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Text',
|
displayName: 'Text',
|
||||||
|
@ -1088,7 +1088,7 @@ export class Asana implements INodeType {
|
||||||
name: 'is_pinned',
|
name: 'is_pinned',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Pin the comment.',
|
description: 'Pin the comment',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -1210,14 +1210,14 @@ export class Asana implements INodeType {
|
||||||
name: 'insert_after',
|
name: 'insert_after',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'A task in the project to insert the task after, or null to insert at the beginning of the list.',
|
description: 'A task in the project to insert the task after, or null to insert at the beginning of the list',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Insert Before',
|
displayName: 'Insert Before',
|
||||||
name: 'insert_before',
|
name: 'insert_before',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'A task in the project to insert the task before, or null to insert at the end of the list.',
|
description: 'A task in the project to insert the task before, or null to insert at the end of the list',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Section',
|
displayName: 'Section',
|
||||||
|
@ -1471,7 +1471,7 @@ export class Asana implements INodeType {
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The workspace in which to get users.',
|
description: 'The workspace in which to get users',
|
||||||
},
|
},
|
||||||
|
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
@ -1583,7 +1583,7 @@ export class Asana implements INodeType {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The team this project will be assigned to.',
|
description: 'The team this project will be assigned to',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Additional Fields',
|
displayName: 'Additional Fields',
|
||||||
|
@ -1609,7 +1609,7 @@ export class Asana implements INodeType {
|
||||||
type: 'options',
|
type: 'options',
|
||||||
options: getColorOptions(),
|
options: getColorOptions(),
|
||||||
default: 'none',
|
default: 'none',
|
||||||
description: 'Color of the project.',
|
description: 'Color of the project',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Due On',
|
displayName: 'Due On',
|
||||||
|
@ -1623,7 +1623,7 @@ export class Asana implements INodeType {
|
||||||
name: 'notes',
|
name: 'notes',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Basic description or notes for the project.',
|
description: 'Basic description or notes for the project',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -1691,7 +1691,7 @@ export class Asana implements INodeType {
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The workspace in which to get users.',
|
description: 'The workspace in which to get users',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Return All',
|
displayName: 'Return All',
|
||||||
|
@ -1708,7 +1708,7 @@ export class Asana implements INodeType {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -1732,7 +1732,7 @@ export class Asana implements INodeType {
|
||||||
maxValue: 500,
|
maxValue: 500,
|
||||||
},
|
},
|
||||||
default: 100,
|
default: 100,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Additional Fields',
|
displayName: 'Additional Fields',
|
||||||
|
@ -1757,7 +1757,7 @@ export class Asana implements INodeType {
|
||||||
name: 'archived',
|
name: 'archived',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Only return projects whose archived field takes on the value of this parameter.',
|
description: 'Only return projects whose archived field takes on the value of this parameter',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Teams',
|
displayName: 'Teams',
|
||||||
|
@ -1797,7 +1797,7 @@ export class Asana implements INodeType {
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The workspace in which to get users.',
|
description: 'The workspace in which to get users',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Project ID',
|
displayName: 'Project ID',
|
||||||
|
@ -1815,7 +1815,7 @@ export class Asana implements INodeType {
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The ID of the project to update the data of.',
|
description: 'The ID of the project to update the data of',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Update Fields',
|
displayName: 'Update Fields',
|
||||||
|
@ -1841,7 +1841,7 @@ export class Asana implements INodeType {
|
||||||
type: 'options',
|
type: 'options',
|
||||||
options: getColorOptions(),
|
options: getColorOptions(),
|
||||||
default: 'none',
|
default: 'none',
|
||||||
description: 'Color of the project.',
|
description: 'Color of the project',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Due On',
|
displayName: 'Due On',
|
||||||
|
@ -1855,21 +1855,21 @@ export class Asana implements INodeType {
|
||||||
name: 'name',
|
name: 'name',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The name of the project.',
|
description: 'The name of the project',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Notes',
|
displayName: 'Notes',
|
||||||
name: 'notes',
|
name: 'notes',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Basic description or notes for the project.',
|
description: 'Basic description or notes for the project',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Owner',
|
displayName: 'Owner',
|
||||||
name: 'owner',
|
name: 'owner',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The new assignee/cardinal for this project.',
|
description: 'The new assignee/cardinal for this project',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Team',
|
displayName: 'Team',
|
||||||
|
@ -1882,7 +1882,7 @@ export class Asana implements INodeType {
|
||||||
loadOptionsMethod: 'getTeams',
|
loadOptionsMethod: 'getTeams',
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The team this project will be assigned to.',
|
description: 'The team this project will be assigned to',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
|
@ -67,7 +67,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The email address of the contact.',
|
description: 'The email address of the contact',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'List ID',
|
displayName: 'List ID',
|
||||||
|
@ -128,14 +128,14 @@ export const contactFields: INodeProperties[] = [
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
loadOptionsMethod: 'getCustomFields',
|
loadOptionsMethod: 'getCustomFields',
|
||||||
},
|
},
|
||||||
description: 'The end user specified key of the user defined data.',
|
description: 'The end user specified key of the user defined data',
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Value',
|
displayName: 'Value',
|
||||||
name: 'value',
|
name: 'value',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
description: 'The end user specified value of the user defined data.',
|
description: 'The end user specified value of the user defined data',
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
@ -180,7 +180,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
loadOptionsMethod: 'getTags',
|
loadOptionsMethod: 'getTags',
|
||||||
},
|
},
|
||||||
default: [],
|
default: [],
|
||||||
description: 'The tags you want to set to the contact.',
|
description: 'The tags you want to set to the contact',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -204,7 +204,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Can be ID or email.',
|
description: 'Can be ID or email',
|
||||||
},
|
},
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
|
@ -267,7 +267,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -291,7 +291,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
maxValue: 500,
|
maxValue: 500,
|
||||||
},
|
},
|
||||||
default: 100,
|
default: 100,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Additional Fields',
|
displayName: 'Additional Fields',
|
||||||
|
@ -332,7 +332,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
name: 'fields',
|
name: 'fields',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'A comma-separated list of attributes to include in the response.',
|
description: 'A comma-separated list of attributes to include in the response',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Sort By',
|
displayName: 'Sort By',
|
||||||
|
@ -388,7 +388,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
loadOptionsMethod: 'getTags',
|
loadOptionsMethod: 'getTags',
|
||||||
},
|
},
|
||||||
default: [],
|
default: [],
|
||||||
description: 'The tags you want to add to the contact.',
|
description: 'The tags you want to add to the contact',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Custom Fields',
|
displayName: 'Custom Fields',
|
||||||
|
@ -412,14 +412,14 @@ export const contactFields: INodeProperties[] = [
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
loadOptionsMethod: 'getCustomFields',
|
loadOptionsMethod: 'getCustomFields',
|
||||||
},
|
},
|
||||||
description: 'The end user specified key of the user defined data.',
|
description: 'The end user specified key of the user defined data',
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Value',
|
displayName: 'Value',
|
||||||
name: 'value',
|
name: 'value',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
description: 'The end user specified value of the user defined data.',
|
description: 'The end user specified value of the user defined data',
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
@ -434,7 +434,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
loadOptionsMethod: 'getTags',
|
loadOptionsMethod: 'getTags',
|
||||||
},
|
},
|
||||||
default: [],
|
default: [],
|
||||||
description: 'The tags you want to add to the contact.',
|
description: 'The tags you want to add to the contact',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Status',
|
displayName: 'Status',
|
||||||
|
|
|
@ -126,7 +126,7 @@ export const listFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -150,7 +150,7 @@ export const listFields: INodeProperties[] = [
|
||||||
maxValue: 500,
|
maxValue: 500,
|
||||||
},
|
},
|
||||||
default: 100,
|
default: 100,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Additional Fields',
|
displayName: 'Additional Fields',
|
||||||
|
@ -191,7 +191,7 @@ export const listFields: INodeProperties[] = [
|
||||||
name: 'fields',
|
name: 'fields',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'A comma-separated list of attributes to include in the response.',
|
description: 'A comma-separated list of attributes to include in the response',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Sort By',
|
displayName: 'Sort By',
|
||||||
|
|
|
@ -62,7 +62,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Email address of the contact.',
|
description: 'Email address of the contact',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Additional Fields',
|
displayName: 'Additional Fields',
|
||||||
|
@ -109,14 +109,14 @@ export const contactFields: INodeProperties[] = [
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
loadOptionsMethod: 'getCustomFields',
|
loadOptionsMethod: 'getCustomFields',
|
||||||
},
|
},
|
||||||
description: 'User-specified key of user-defined data.',
|
description: 'User-specified key of user-defined data',
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Value',
|
displayName: 'Value',
|
||||||
name: 'value',
|
name: 'value',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
description: 'User-specified value of user-defined data.',
|
description: 'User-specified value of user-defined data',
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
@ -167,7 +167,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
loadOptionsMethod: 'getLists',
|
loadOptionsMethod: 'getLists',
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'List to which this contact will be added on creation.',
|
description: 'List to which this contact will be added on creation',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Mailing Country',
|
displayName: 'Mailing Country',
|
||||||
|
@ -210,7 +210,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
name: 'newEmail',
|
name: 'newEmail',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'If provided, will change the email address of the contact identified by the Email field.',
|
description: 'If provided, will change the email address of the contact identified by the Email field',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Notify',
|
displayName: 'Notify',
|
||||||
|
@ -248,7 +248,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
name: 'autopilotSessionId',
|
name: 'autopilotSessionId',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Used to associate a contact with a session.',
|
description: 'Used to associate a contact with a session',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Status',
|
displayName: 'Status',
|
||||||
|
@ -267,7 +267,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
name: 'unsubscribed',
|
name: 'unsubscribed',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Whether to subscribe or un-subscribe a contact.',
|
description: 'Whether to subscribe or un-subscribe a contact',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Website URL',
|
displayName: 'Website URL',
|
||||||
|
@ -297,7 +297,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Can be ID or email.',
|
description: 'Can be ID or email',
|
||||||
},
|
},
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
|
@ -319,7 +319,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Can be ID or email.',
|
description: 'Can be ID or email',
|
||||||
},
|
},
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
|
@ -340,7 +340,7 @@ export const contactFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -364,6 +364,6 @@ export const contactFields: INodeProperties[] = [
|
||||||
maxValue: 500,
|
maxValue: 500,
|
||||||
},
|
},
|
||||||
default: 100,
|
default: 100,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
|
@ -50,7 +50,7 @@ export const contactJourneyFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'List ID.',
|
description: 'List ID',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Contact ID',
|
displayName: 'Contact ID',
|
||||||
|
@ -68,6 +68,6 @@ export const contactJourneyFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Can be ID or email.',
|
description: 'Can be ID or email',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
|
@ -18,22 +18,22 @@ export const contactListOperations: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
name: 'Add',
|
name: 'Add',
|
||||||
value: 'add',
|
value: 'add',
|
||||||
description: 'Add contact to list.',
|
description: 'Add contact to list',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Exist',
|
name: 'Exist',
|
||||||
value: 'exist',
|
value: 'exist',
|
||||||
description: 'Check if contact is on list.',
|
description: 'Check if contact is on list',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Get All',
|
name: 'Get All',
|
||||||
value: 'getAll',
|
value: 'getAll',
|
||||||
description: 'Get all contacts on list.',
|
description: 'Get all contacts on list',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Remove',
|
name: 'Remove',
|
||||||
value: 'remove',
|
value: 'remove',
|
||||||
description: 'Remove a contact from a list.',
|
description: 'Remove a contact from a list',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: 'add',
|
default: 'add',
|
||||||
|
@ -68,7 +68,7 @@ export const contactListFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'ID of the list to operate on.',
|
description: 'ID of the list to operate on',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Contact ID',
|
displayName: 'Contact ID',
|
||||||
|
@ -88,7 +88,7 @@ export const contactListFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Can be ID or email.',
|
description: 'Can be ID or email',
|
||||||
},
|
},
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
|
@ -109,7 +109,7 @@ export const contactListFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -133,6 +133,6 @@ export const contactListFields: INodeProperties[] = [
|
||||||
maxValue: 500,
|
maxValue: 500,
|
||||||
},
|
},
|
||||||
default: 100,
|
default: 100,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
|
@ -18,12 +18,12 @@ export const listOperations: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
name: 'Create',
|
name: 'Create',
|
||||||
value: 'create',
|
value: 'create',
|
||||||
description: 'Create a list.',
|
description: 'Create a list',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Get All',
|
name: 'Get All',
|
||||||
value: 'getAll',
|
value: 'getAll',
|
||||||
description: 'Get all lists.',
|
description: 'Get all lists',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: 'create',
|
default: 'create',
|
||||||
|
@ -52,7 +52,7 @@ export const listFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Name of the list to create.',
|
description: 'Name of the list to create',
|
||||||
},
|
},
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
|
@ -73,7 +73,7 @@ export const listFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -97,6 +97,6 @@ export const listFields: INodeProperties[] = [
|
||||||
maxValue: 500,
|
maxValue: 500,
|
||||||
},
|
},
|
||||||
default: 100,
|
default: 100,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
|
@ -45,7 +45,7 @@ export class AwsComprehend implements INodeType {
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: 'text',
|
default: 'text',
|
||||||
description: 'The resource to perform.',
|
description: 'The resource to perform',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Operation',
|
displayName: 'Operation',
|
||||||
|
@ -137,7 +137,7 @@ export class AwsComprehend implements INodeType {
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The language code for text.',
|
description: 'The language code for text',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Text',
|
displayName: 'Text',
|
||||||
|
@ -154,7 +154,7 @@ export class AwsComprehend implements INodeType {
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The text to send.',
|
description: 'The text to send',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Simplify Response',
|
displayName: 'Simplify Response',
|
||||||
|
@ -171,7 +171,7 @@ export class AwsComprehend implements INodeType {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: true,
|
default: true,
|
||||||
description: 'Return a simplified version of the response instead of the raw data.',
|
description: 'Return a simplified version of the response instead of the raw data',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Additional Fields',
|
displayName: 'Additional Fields',
|
||||||
|
@ -198,7 +198,7 @@ export class AwsComprehend implements INodeType {
|
||||||
alwaysOpenEditWindow: true,
|
alwaysOpenEditWindow: true,
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The Amazon Resource Name of an endpoint that is associated with a custom entity recognition model.',
|
description: 'The Amazon Resource Name of an endpoint that is associated with a custom entity recognition model',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
|
@ -119,7 +119,7 @@ export class AwsRekognition implements INodeType {
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'If the image to analize should be taken from binary field.',
|
description: 'If the image to analize should be taken from binary field',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Binary Property',
|
displayName: 'Binary Property',
|
||||||
|
@ -139,7 +139,7 @@ export class AwsRekognition implements INodeType {
|
||||||
name: 'binaryPropertyName',
|
name: 'binaryPropertyName',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: 'data',
|
default: 'data',
|
||||||
description: 'Object property name which holds binary data.',
|
description: 'Object property name which holds binary data',
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -226,28 +226,28 @@ export class AwsRekognition implements INodeType {
|
||||||
displayName: 'Height',
|
displayName: 'Height',
|
||||||
name: 'height',
|
name: 'height',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
description: 'Height of the bounding box as a ratio of the overall image height.',
|
description: 'Height of the bounding box as a ratio of the overall image height',
|
||||||
default: 0,
|
default: 0,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Left',
|
displayName: 'Left',
|
||||||
name: 'left',
|
name: 'left',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
description: 'Left coordinate of the bounding box as a ratio of overall image width.',
|
description: 'Left coordinate of the bounding box as a ratio of overall image width',
|
||||||
default: 0,
|
default: 0,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Top',
|
displayName: 'Top',
|
||||||
name: 'top',
|
name: 'top',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
description: 'Top coordinate of the bounding box as a ratio of overall image height.',
|
description: 'Top coordinate of the bounding box as a ratio of overall image height',
|
||||||
default: 0,
|
default: 0,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Width',
|
displayName: 'Width',
|
||||||
name: 'Width',
|
name: 'Width',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
description: 'Width of the bounding box as a ratio of the overall image width.',
|
description: 'Width of the bounding box as a ratio of the overall image width',
|
||||||
default: 0,
|
default: 0,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
|
@ -62,7 +62,7 @@ export const bucketFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'A succinct description of the nature, symptoms, cause, or effect of the bucket.',
|
description: 'A succinct description of the nature, symptoms, cause, or effect of the bucket',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Additional Fields',
|
displayName: 'Additional Fields',
|
||||||
|
@ -104,56 +104,56 @@ export const bucketFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The canned ACL to apply to the bucket.',
|
description: 'The canned ACL to apply to the bucket',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Bucket Object Lock Enabled',
|
displayName: 'Bucket Object Lock Enabled',
|
||||||
name: 'bucketObjectLockEnabled',
|
name: 'bucketObjectLockEnabled',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Specifies whether you want S3 Object Lock to be enabled for the new bucket.',
|
description: 'Specifies whether you want S3 Object Lock to be enabled for the new bucket',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Grant Full Control',
|
displayName: 'Grant Full Control',
|
||||||
name: 'grantFullControl',
|
name: 'grantFullControl',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Allows grantee the read, write, read ACP, and write ACP permissions on the bucket.',
|
description: 'Allows grantee the read, write, read ACP, and write ACP permissions on the bucket',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Grant Read',
|
displayName: 'Grant Read',
|
||||||
name: 'grantRead',
|
name: 'grantRead',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Allows grantee to list the objects in the bucket.',
|
description: 'Allows grantee to list the objects in the bucket',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Grant Read ACP',
|
displayName: 'Grant Read ACP',
|
||||||
name: 'grantReadAcp',
|
name: 'grantReadAcp',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Allows grantee to read the bucket ACL.',
|
description: 'Allows grantee to read the bucket ACL',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Grant Write',
|
displayName: 'Grant Write',
|
||||||
name: 'grantWrite',
|
name: 'grantWrite',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Allows grantee to create, overwrite, and delete any object in the bucket.',
|
description: 'Allows grantee to create, overwrite, and delete any object in the bucket',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Grant Write ACP',
|
displayName: 'Grant Write ACP',
|
||||||
name: 'grantWriteAcp',
|
name: 'grantWriteAcp',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Allows grantee to write the ACL for the applicable bucket.',
|
description: 'Allows grantee to write the ACL for the applicable bucket',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Region',
|
displayName: 'Region',
|
||||||
name: 'region',
|
name: 'region',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Region you want to create the bucket in, by default the buckets are created on the region defined on the credentials.',
|
description: 'Region you want to create the bucket in, by default the buckets are created on the region defined on the credentials',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -177,7 +177,7 @@ export const bucketFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'Name of the AWS S3 bucket to delete.',
|
description: 'Name of the AWS S3 bucket to delete',
|
||||||
},
|
},
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
|
@ -198,7 +198,7 @@ export const bucketFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -222,7 +222,7 @@ export const bucketFields: INodeProperties[] = [
|
||||||
maxValue: 500,
|
maxValue: 500,
|
||||||
},
|
},
|
||||||
default: 100,
|
default: 100,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
/* bucket:search */
|
/* bucket:search */
|
||||||
|
@ -259,7 +259,7 @@ export const bucketFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -283,7 +283,7 @@ export const bucketFields: INodeProperties[] = [
|
||||||
maxValue: 500,
|
maxValue: 500,
|
||||||
},
|
},
|
||||||
default: 100,
|
default: 100,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Additional Fields',
|
displayName: 'Additional Fields',
|
||||||
|
@ -307,7 +307,7 @@ export const bucketFields: INodeProperties[] = [
|
||||||
name: 'delimiter',
|
name: 'delimiter',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'A delimiter is a character you use to group keys.',
|
description: 'A delimiter is a character you use to group keys',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Encoding Type',
|
displayName: 'Encoding Type',
|
||||||
|
@ -320,21 +320,21 @@ export const bucketFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Encoding type used by Amazon S3 to encode object keys in the response.',
|
description: 'Encoding type used by Amazon S3 to encode object keys in the response',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Fetch Owner',
|
displayName: 'Fetch Owner',
|
||||||
name: 'fetchOwner',
|
name: 'fetchOwner',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'The owner field is not present in listV2 by default, if you want to return owner field with each key in the result then set the fetch owner field to true.',
|
description: 'The owner field is not present in listV2 by default, if you want to return owner field with each key in the result then set the fetch owner field to true',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Prefix',
|
displayName: 'Prefix',
|
||||||
name: 'prefix',
|
name: 'prefix',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Limits the response to keys that begin with the specified prefix.',
|
description: 'Limits the response to keys that begin with the specified prefix',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Requester Pays',
|
displayName: 'Requester Pays',
|
||||||
|
|
|
@ -141,35 +141,35 @@ export const fileFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: 'private',
|
default: 'private',
|
||||||
description: 'The canned ACL to apply to the object.',
|
description: 'The canned ACL to apply to the object',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Grant Full Control',
|
displayName: 'Grant Full Control',
|
||||||
name: 'grantFullControl',
|
name: 'grantFullControl',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Gives the grantee READ, READ_ACP, and WRITE_ACP permissions on the object.',
|
description: 'Gives the grantee READ, READ_ACP, and WRITE_ACP permissions on the object',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Grant Read',
|
displayName: 'Grant Read',
|
||||||
name: 'grantRead',
|
name: 'grantRead',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Allows grantee to read the object data and its metadata.',
|
description: 'Allows grantee to read the object data and its metadata',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Grant Read ACP',
|
displayName: 'Grant Read ACP',
|
||||||
name: 'grantReadAcp',
|
name: 'grantReadAcp',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Allows grantee to read the object ACL.',
|
description: 'Allows grantee to read the object ACL',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Grant Write ACP',
|
displayName: 'Grant Write ACP',
|
||||||
name: 'grantWriteAcp',
|
name: 'grantWriteAcp',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Allows grantee to write the ACL for the applicable object.',
|
description: 'Allows grantee to write the ACL for the applicable object',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Lock Legal Hold',
|
displayName: 'Lock Legal Hold',
|
||||||
|
@ -193,14 +193,14 @@ export const fileFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The Object Lock mode that you want to apply to this object.',
|
description: 'The Object Lock mode that you want to apply to this object',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Lock Retain Until Date',
|
displayName: 'Lock Retain Until Date',
|
||||||
name: 'lockRetainUntilDate',
|
name: 'lockRetainUntilDate',
|
||||||
type: 'dateTime',
|
type: 'dateTime',
|
||||||
default: '',
|
default: '',
|
||||||
description: `The date and time when you want this object's Object Lock to expire.`,
|
description: 'The date and time when you want this object\'s Object Lock to expire',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Metadata Directive',
|
displayName: 'Metadata Directive',
|
||||||
|
@ -217,7 +217,7 @@ export const fileFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Specifies whether the metadata is copied from the source object or replaced with metadata provided in the request.',
|
description: 'Specifies whether the metadata is copied from the source object or replaced with metadata provided in the request',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Requester Pays',
|
displayName: 'Requester Pays',
|
||||||
|
@ -262,7 +262,7 @@ export const fileFields: INodeProperties[] = [
|
||||||
name: 'serversideEncryptionCustomerAlgorithm',
|
name: 'serversideEncryptionCustomerAlgorithm',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Specifies the algorithm to use to when encrypting the object (for example, AES256).',
|
description: 'Specifies the algorithm to use to when encrypting the object (for example, AES256)',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Server Side Encryption Customer Key',
|
displayName: 'Server Side Encryption Customer Key',
|
||||||
|
@ -276,7 +276,7 @@ export const fileFields: INodeProperties[] = [
|
||||||
name: 'serversideEncryptionCustomerKeyMD5',
|
name: 'serversideEncryptionCustomerKeyMD5',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321.',
|
description: 'Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Storage Class',
|
displayName: 'Storage Class',
|
||||||
|
@ -309,7 +309,7 @@ export const fileFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: 'standard',
|
default: 'standard',
|
||||||
description: 'Amazon S3 storage classes.',
|
description: 'Amazon S3 storage classes',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Tagging Directive',
|
displayName: 'Tagging Directive',
|
||||||
|
@ -326,7 +326,7 @@ export const fileFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Specifies whether the metadata is copied from the source object or replaced with metadata provided in the request.',
|
description: 'Specifies whether the metadata is copied from the source object or replaced with metadata provided in the request',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -389,7 +389,7 @@ export const fileFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'If not set the binary data filename will be used.',
|
description: 'If not set the binary data filename will be used',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Binary Data',
|
displayName: 'Binary Data',
|
||||||
|
@ -406,7 +406,7 @@ export const fileFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'If the data to upload should be taken from binary field.',
|
description: 'If the data to upload should be taken from binary field',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'File Content',
|
displayName: 'File Content',
|
||||||
|
@ -427,7 +427,7 @@ export const fileFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
placeholder: '',
|
placeholder: '',
|
||||||
description: 'The text content of the file to upload.',
|
description: 'The text content of the file to upload',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Binary Property',
|
displayName: 'Binary Property',
|
||||||
|
@ -450,7 +450,7 @@ export const fileFields: INodeProperties[] = [
|
||||||
|
|
||||||
},
|
},
|
||||||
placeholder: '',
|
placeholder: '',
|
||||||
description: 'Name of the binary property which contains the data for the file to be uploaded.',
|
description: 'Name of the binary property which contains the data for the file to be uploaded',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Additional Fields',
|
displayName: 'Additional Fields',
|
||||||
|
@ -504,35 +504,35 @@ export const fileFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: 'private',
|
default: 'private',
|
||||||
description: 'The canned ACL to apply to the object.',
|
description: 'The canned ACL to apply to the object',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Grant Full Control',
|
displayName: 'Grant Full Control',
|
||||||
name: 'grantFullControl',
|
name: 'grantFullControl',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Gives the grantee READ, READ_ACP, and WRITE_ACP permissions on the object.',
|
description: 'Gives the grantee READ, READ_ACP, and WRITE_ACP permissions on the object',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Grant Read',
|
displayName: 'Grant Read',
|
||||||
name: 'grantRead',
|
name: 'grantRead',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Allows grantee to read the object data and its metadata.',
|
description: 'Allows grantee to read the object data and its metadata',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Grant Read ACP',
|
displayName: 'Grant Read ACP',
|
||||||
name: 'grantReadAcp',
|
name: 'grantReadAcp',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Allows grantee to read the object ACL.',
|
description: 'Allows grantee to read the object ACL',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Grant Write ACP',
|
displayName: 'Grant Write ACP',
|
||||||
name: 'grantWriteAcp',
|
name: 'grantWriteAcp',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Allows grantee to write the ACL for the applicable object.',
|
description: 'Allows grantee to write the ACL for the applicable object',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Lock Legal Hold',
|
displayName: 'Lock Legal Hold',
|
||||||
|
@ -556,14 +556,14 @@ export const fileFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The Object Lock mode that you want to apply to this object.',
|
description: 'The Object Lock mode that you want to apply to this object',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Lock Retain Until Date',
|
displayName: 'Lock Retain Until Date',
|
||||||
name: 'lockRetainUntilDate',
|
name: 'lockRetainUntilDate',
|
||||||
type: 'dateTime',
|
type: 'dateTime',
|
||||||
default: '',
|
default: '',
|
||||||
description: `The date and time when you want this object's Object Lock to expire.`,
|
description: 'The date and time when you want this object\'s Object Lock to expire',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Parent Folder Key',
|
displayName: 'Parent Folder Key',
|
||||||
|
@ -615,7 +615,7 @@ export const fileFields: INodeProperties[] = [
|
||||||
name: 'serversideEncryptionCustomerAlgorithm',
|
name: 'serversideEncryptionCustomerAlgorithm',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Specifies the algorithm to use to when encrypting the object (for example, AES256).',
|
description: 'Specifies the algorithm to use to when encrypting the object (for example, AES256)',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Server Side Encryption Customer Key',
|
displayName: 'Server Side Encryption Customer Key',
|
||||||
|
@ -629,7 +629,7 @@ export const fileFields: INodeProperties[] = [
|
||||||
name: 'serversideEncryptionCustomerKeyMD5',
|
name: 'serversideEncryptionCustomerKeyMD5',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321.',
|
description: 'Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Storage Class',
|
displayName: 'Storage Class',
|
||||||
|
@ -662,7 +662,7 @@ export const fileFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: 'standard',
|
default: 'standard',
|
||||||
description: 'Amazon S3 storage classes.',
|
description: 'Amazon S3 storage classes',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -705,7 +705,7 @@ export const fileFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
description: 'Optional extra headers to add to the message (most headers are allowed).',
|
description: 'Optional extra headers to add to the message (most headers are allowed)',
|
||||||
},
|
},
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
/* file:download */
|
/* file:download */
|
||||||
|
@ -760,7 +760,7 @@ export const fileFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'Name of the binary property to which to write the data of the read file.',
|
description: 'Name of the binary property to which to write the data of the read file',
|
||||||
},
|
},
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
/* file:delete */
|
/* file:delete */
|
||||||
|
@ -859,7 +859,7 @@ export const fileFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -883,7 +883,7 @@ export const fileFields: INodeProperties[] = [
|
||||||
maxValue: 500,
|
maxValue: 500,
|
||||||
},
|
},
|
||||||
default: 100,
|
default: 100,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Options',
|
displayName: 'Options',
|
||||||
|
@ -907,7 +907,7 @@ export const fileFields: INodeProperties[] = [
|
||||||
name: 'fetchOwner',
|
name: 'fetchOwner',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'The owner field is not present in listV2 by default, if you want to return owner field with each key in the result then set the fetch owner field to true.',
|
description: 'The owner field is not present in listV2 by default, if you want to return owner field with each key in the result then set the fetch owner field to true',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Folder Key',
|
displayName: 'Folder Key',
|
||||||
|
|
|
@ -141,7 +141,7 @@ export const folderFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: 'standard',
|
default: 'standard',
|
||||||
description: 'Amazon S3 storage classes.',
|
description: 'Amazon S3 storage classes',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -217,7 +217,7 @@ export const folderFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -241,7 +241,7 @@ export const folderFields: INodeProperties[] = [
|
||||||
maxValue: 500,
|
maxValue: 500,
|
||||||
},
|
},
|
||||||
default: 100,
|
default: 100,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Options',
|
displayName: 'Options',
|
||||||
|
@ -265,7 +265,7 @@ export const folderFields: INodeProperties[] = [
|
||||||
name: 'fetchOwner',
|
name: 'fetchOwner',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'The owner field is not present in listV2 by default, if you want to return owner field with each key in the result then set the fetch owner field to true.',
|
description: 'The owner field is not present in listV2 by default, if you want to return owner field with each key in the result then set the fetch owner field to true',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Folder Key',
|
displayName: 'Folder Key',
|
||||||
|
|
|
@ -105,7 +105,7 @@ export class AwsSes implements INodeType {
|
||||||
{
|
{
|
||||||
name: 'Update',
|
name: 'Update',
|
||||||
value: 'update',
|
value: 'update',
|
||||||
description: 'Update an existing custom verification email template.',
|
description: 'Update an existing custom verification email template',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: 'create',
|
default: 'create',
|
||||||
|
@ -127,7 +127,7 @@ export class AwsSes implements INodeType {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
required: true,
|
required: true,
|
||||||
description: 'The email address that the custom verification email is sent from.',
|
description: 'The email address that the custom verification email is sent from',
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -145,7 +145,7 @@ export class AwsSes implements INodeType {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The name of the custom verification email template.',
|
description: 'The name of the custom verification email template',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Template Content',
|
displayName: 'Template Content',
|
||||||
|
@ -183,7 +183,7 @@ export class AwsSes implements INodeType {
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
required: true,
|
required: true,
|
||||||
description: 'The subject line of the custom verification email.',
|
description: 'The subject line of the custom verification email',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Success Redirection URL',
|
displayName: 'Success Redirection URL',
|
||||||
|
@ -200,7 +200,7 @@ export class AwsSes implements INodeType {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
required: true,
|
required: true,
|
||||||
description: 'The URL that the recipient of the verification email is sent to if his or her address is successfully verified.',
|
description: 'The URL that the recipient of the verification email is sent to if his or her address is successfully verified',
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -218,7 +218,7 @@ export class AwsSes implements INodeType {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
required: true,
|
required: true,
|
||||||
description: 'The URL that the recipient of the verification email is sent to if his or her address is not successfully verified.',
|
description: 'The URL that the recipient of the verification email is sent to if his or her address is not successfully verified',
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -238,7 +238,7 @@ export class AwsSes implements INodeType {
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
required: true,
|
required: true,
|
||||||
description: 'The email address to verify.',
|
description: 'The email address to verify',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Template Name',
|
displayName: 'Template Name',
|
||||||
|
@ -256,7 +256,7 @@ export class AwsSes implements INodeType {
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
required: true,
|
required: true,
|
||||||
description: 'The name of the custom verification email template to use when sending the verification email.',
|
description: 'The name of the custom verification email template to use when sending the verification email',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Additional Fields',
|
displayName: 'Additional Fields',
|
||||||
|
@ -279,7 +279,7 @@ export class AwsSes implements INodeType {
|
||||||
displayName: 'Configuration Set Name',
|
displayName: 'Configuration Set Name',
|
||||||
name: 'configurationSetName',
|
name: 'configurationSetName',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
description: 'Name of a configuration set to use when sending the verification email.',
|
description: 'Name of a configuration set to use when sending the verification email',
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
@ -302,7 +302,7 @@ export class AwsSes implements INodeType {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The name of the custom verification email template.',
|
description: 'The name of the custom verification email template',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Update Fields',
|
displayName: 'Update Fields',
|
||||||
|
@ -325,21 +325,21 @@ export class AwsSes implements INodeType {
|
||||||
displayName: 'Failure Redirection URL',
|
displayName: 'Failure Redirection URL',
|
||||||
name: 'failureRedirectionURL',
|
name: 'failureRedirectionURL',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
description: 'The URL that the recipient of the verification email is sent to if his or her address is not successfully verified.',
|
description: 'The URL that the recipient of the verification email is sent to if his or her address is not successfully verified',
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'From Email',
|
displayName: 'From Email',
|
||||||
name: 'fromEmailAddress',
|
name: 'fromEmailAddress',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
description: 'The email address that the custom verification email is sent from.',
|
description: 'The email address that the custom verification email is sent from',
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Success Redirection URL',
|
displayName: 'Success Redirection URL',
|
||||||
name: 'successRedirectionURL',
|
name: 'successRedirectionURL',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
description: 'The URL that the recipient of the verification email is sent to if his or her address is successfully verified.',
|
description: 'The URL that the recipient of the verification email is sent to if his or her address is successfully verified',
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -357,7 +357,7 @@ export class AwsSes implements INodeType {
|
||||||
name: 'templateSubject',
|
name: 'templateSubject',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The subject line of the custom verification email.',
|
description: 'The subject line of the custom verification email',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -376,7 +376,7 @@ export class AwsSes implements INodeType {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -436,7 +436,7 @@ export class AwsSes implements INodeType {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If body is HTML or simple text.',
|
description: 'If body is HTML or simple text',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Subject',
|
displayName: 'Subject',
|
||||||
|
@ -473,7 +473,7 @@ export class AwsSes implements INodeType {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The message to be sent.',
|
description: 'The message to be sent',
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -491,7 +491,7 @@ export class AwsSes implements INodeType {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
required: true,
|
required: true,
|
||||||
description: 'Email address of the sender.',
|
description: 'Email address of the sender',
|
||||||
placeholder: 'admin@example.com',
|
placeholder: 'admin@example.com',
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
|
@ -499,7 +499,7 @@ export class AwsSes implements INodeType {
|
||||||
displayName: 'To Addresses',
|
displayName: 'To Addresses',
|
||||||
name: 'toAddresses',
|
name: 'toAddresses',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
description: 'Email addresses of the recipients.',
|
description: 'Email addresses of the recipients',
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
multipleValues: true,
|
multipleValues: true,
|
||||||
multipleValueButtonText: 'Add To Email',
|
multipleValueButtonText: 'Add To Email',
|
||||||
|
@ -552,7 +552,7 @@ export class AwsSes implements INodeType {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
required: true,
|
required: true,
|
||||||
description: 'Email address of the sender.',
|
description: 'Email address of the sender',
|
||||||
placeholder: 'admin@example.com',
|
placeholder: 'admin@example.com',
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
|
@ -560,7 +560,7 @@ export class AwsSes implements INodeType {
|
||||||
displayName: 'To Addresses',
|
displayName: 'To Addresses',
|
||||||
name: 'toAddresses',
|
name: 'toAddresses',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
description: 'Email addresses of the recipients.',
|
description: 'Email addresses of the recipients',
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
multipleValues: true,
|
multipleValues: true,
|
||||||
multipleValueButtonText: 'Add To Email',
|
multipleValueButtonText: 'Add To Email',
|
||||||
|
@ -644,7 +644,7 @@ export class AwsSes implements INodeType {
|
||||||
multipleValues: true,
|
multipleValues: true,
|
||||||
multipleValueButtonText: 'Add Bcc Email',
|
multipleValueButtonText: 'Add Bcc Email',
|
||||||
},
|
},
|
||||||
description: 'Bcc Recipients of the email.',
|
description: 'Bcc Recipients of the email',
|
||||||
default: [],
|
default: [],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -655,14 +655,14 @@ export class AwsSes implements INodeType {
|
||||||
multipleValues: true,
|
multipleValues: true,
|
||||||
multipleValueButtonText: 'Add Cc Email',
|
multipleValueButtonText: 'Add Cc Email',
|
||||||
},
|
},
|
||||||
description: 'Cc recipients of the email.',
|
description: 'Cc recipients of the email',
|
||||||
default: [],
|
default: [],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Configuration Set Name',
|
displayName: 'Configuration Set Name',
|
||||||
name: 'configurationSetName',
|
name: 'configurationSetName',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
description: 'Name of the configuration set to use when you send an email using send.',
|
description: 'Name of the configuration set to use when you send an email using send',
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -674,7 +674,7 @@ export class AwsSes implements INodeType {
|
||||||
multipleValueButtonText: 'Add Reply To Email',
|
multipleValueButtonText: 'Add Reply To Email',
|
||||||
},
|
},
|
||||||
placeholder: 'Add Reply Address',
|
placeholder: 'Add Reply Address',
|
||||||
description: 'Reply-to email address(es) for the message.',
|
description: 'Reply-to email address(es) for the message',
|
||||||
default: [],
|
default: [],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -695,7 +695,7 @@ export class AwsSes implements INodeType {
|
||||||
displayName: 'Source ARN',
|
displayName: 'Source ARN',
|
||||||
name: 'sourceArn',
|
name: 'sourceArn',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
description: 'This parameter is used only for sending authorization.',
|
description: 'This parameter is used only for sending authorization',
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
@ -759,7 +759,7 @@ export class AwsSes implements INodeType {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
required: true,
|
required: true,
|
||||||
description: 'The name of the template.',
|
description: 'The name of the template',
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -776,7 +776,7 @@ export class AwsSes implements INodeType {
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The subject line of the email.',
|
description: 'The subject line of the email',
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -793,7 +793,7 @@ export class AwsSes implements INodeType {
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The HTML body of the email.',
|
description: 'The HTML body of the email',
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -817,7 +817,7 @@ export class AwsSes implements INodeType {
|
||||||
displayName: 'Text Part',
|
displayName: 'Text Part',
|
||||||
name: 'textPart',
|
name: 'textPart',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
description: 'The email body that will be visible to recipients whose email clients do not display HTML.',
|
description: 'The email body that will be visible to recipients whose email clients do not display HTML',
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
@ -843,21 +843,21 @@ export class AwsSes implements INodeType {
|
||||||
displayName: 'Text Part',
|
displayName: 'Text Part',
|
||||||
name: 'textPart',
|
name: 'textPart',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
description: 'The email body that will be visible to recipients whose email clients do not display HTML.',
|
description: 'The email body that will be visible to recipients whose email clients do not display HTML',
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Subject Part',
|
displayName: 'Subject Part',
|
||||||
name: 'subjectPart',
|
name: 'subjectPart',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
description: 'The subject line of the email.',
|
description: 'The subject line of the email',
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Html Part',
|
displayName: 'Html Part',
|
||||||
name: 'htmlPart',
|
name: 'htmlPart',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
description: 'The HTML body of the email.',
|
description: 'The HTML body of the email',
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
@ -877,7 +877,7 @@ export class AwsSes implements INodeType {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
|
|
@ -55,7 +55,7 @@ export class AwsSqs implements INodeType {
|
||||||
{
|
{
|
||||||
name: 'Send message',
|
name: 'Send message',
|
||||||
value: 'sendMessage',
|
value: 'sendMessage',
|
||||||
description: 'Send a message to a queue.',
|
description: 'Send a message to a queue',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: 'sendMessage',
|
default: 'sendMessage',
|
||||||
|
@ -78,7 +78,7 @@ export class AwsSqs implements INodeType {
|
||||||
options: [],
|
options: [],
|
||||||
default: '',
|
default: '',
|
||||||
required: true,
|
required: true,
|
||||||
description: 'Queue to send a message to.',
|
description: 'Queue to send a message to',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Queue Type',
|
displayName: 'Queue Type',
|
||||||
|
@ -88,12 +88,12 @@ export class AwsSqs implements INodeType {
|
||||||
{
|
{
|
||||||
name: 'FIFO',
|
name: 'FIFO',
|
||||||
value: 'fifo',
|
value: 'fifo',
|
||||||
description: 'FIFO SQS queue.',
|
description: 'FIFO SQS queue',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Standard',
|
name: 'Standard',
|
||||||
value: 'standard',
|
value: 'standard',
|
||||||
description: 'Standard SQS queue.',
|
description: 'Standard SQS queue',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: 'standard',
|
default: 'standard',
|
||||||
|
@ -104,7 +104,7 @@ export class AwsSqs implements INodeType {
|
||||||
name: 'sendInputData',
|
name: 'sendInputData',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: true,
|
default: true,
|
||||||
description: 'Send the data the node receives as JSON to SQS.',
|
description: 'Send the data the node receives as JSON to SQS',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Message',
|
displayName: 'Message',
|
||||||
|
@ -125,7 +125,7 @@ export class AwsSqs implements INodeType {
|
||||||
alwaysOpenEditWindow: true,
|
alwaysOpenEditWindow: true,
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Message to send to the queue.',
|
description: 'Message to send to the queue',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Message Group ID',
|
displayName: 'Message Group ID',
|
||||||
|
@ -167,7 +167,7 @@ export class AwsSqs implements INodeType {
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'How long, in seconds, to delay a message for.',
|
description: 'How long, in seconds, to delay a message for',
|
||||||
default: 0,
|
default: 0,
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
minValue: 0,
|
minValue: 0,
|
||||||
|
@ -182,7 +182,7 @@ export class AwsSqs implements INodeType {
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
multipleValues: true,
|
multipleValues: true,
|
||||||
},
|
},
|
||||||
description: 'Attributes to set.',
|
description: 'Attributes to set',
|
||||||
default: {},
|
default: {},
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
|
@ -194,14 +194,14 @@ export class AwsSqs implements INodeType {
|
||||||
name: 'name',
|
name: 'name',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Name of the attribute.',
|
description: 'Name of the attribute',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Property Name',
|
displayName: 'Property Name',
|
||||||
name: 'dataPropertyName',
|
name: 'dataPropertyName',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: 'data',
|
default: 'data',
|
||||||
description: 'Name of the binary property which contains the data for the message attribute.',
|
description: 'Name of the binary property which contains the data for the message attribute',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -214,14 +214,14 @@ export class AwsSqs implements INodeType {
|
||||||
name: 'name',
|
name: 'name',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Name of the attribute.',
|
description: 'Name of the attribute',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Value',
|
displayName: 'Value',
|
||||||
name: 'value',
|
name: 'value',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
default: 0,
|
default: 0,
|
||||||
description: 'Number value of the attribute.',
|
description: 'Number value of the attribute',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -234,14 +234,14 @@ export class AwsSqs implements INodeType {
|
||||||
name: 'name',
|
name: 'name',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Name of the attribute.',
|
description: 'Name of the attribute',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Value',
|
displayName: 'Value',
|
||||||
name: 'value',
|
name: 'value',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'String value of attribute.',
|
description: 'String value of attribute',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
|
@ -83,7 +83,7 @@ export class AwsTextract implements INodeType {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: true,
|
default: true,
|
||||||
description: 'Return a simplified version of the response instead of the raw data.',
|
description: 'Return a simplified version of the response instead of the raw data',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
|
@ -94,7 +94,7 @@ export class AwsTranscribe implements INodeType {
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The name of the job.',
|
description: 'The name of the job',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Media File URI',
|
displayName: 'Media File URI',
|
||||||
|
@ -128,7 +128,7 @@ export class AwsTranscribe implements INodeType {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Set this field to true to enable automatic language identification.',
|
description: 'Set this field to true to enable automatic language identification',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Language',
|
displayName: 'Language',
|
||||||
|
@ -178,7 +178,7 @@ export class AwsTranscribe implements INodeType {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: 'en-US',
|
default: 'en-US',
|
||||||
description: 'Language used in the input media file.',
|
description: 'Language used in the input media file',
|
||||||
},
|
},
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
// Transcription Job Settings
|
// Transcription Job Settings
|
||||||
|
@ -213,7 +213,7 @@ export class AwsTranscribe implements INodeType {
|
||||||
minValue: 2,
|
minValue: 2,
|
||||||
maxValue: 10,
|
maxValue: 10,
|
||||||
},
|
},
|
||||||
description: 'The number of alternative transcriptions that the service should return.',
|
description: 'The number of alternative transcriptions that the service should return',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Max Speaker Labels',
|
displayName: 'Max Speaker Labels',
|
||||||
|
@ -231,7 +231,7 @@ export class AwsTranscribe implements INodeType {
|
||||||
name: 'vocabularyName',
|
name: 'vocabularyName',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Name of vocabulary to use when processing the transcription job.',
|
description: 'Name of vocabulary to use when processing the transcription job',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Vocabulary Filter Name',
|
displayName: 'Vocabulary Filter Name',
|
||||||
|
@ -299,7 +299,7 @@ export class AwsTranscribe implements INodeType {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: true,
|
default: true,
|
||||||
description: 'Return a simplified version of the response instead of the raw data.',
|
description: 'Return a simplified version of the response instead of the raw data',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Return All',
|
displayName: 'Return All',
|
||||||
|
@ -316,7 +316,7 @@ export class AwsTranscribe implements INodeType {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -362,7 +362,7 @@ export class AwsTranscribe implements INodeType {
|
||||||
displayName: 'Job Name Contains',
|
displayName: 'Job Name Contains',
|
||||||
name: 'jobNameContains',
|
name: 'jobNameContains',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
description: 'Return only transcription jobs whose name contains the specified string.',
|
description: 'Return only transcription jobs whose name contains the specified string',
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -387,7 +387,7 @@ export class AwsTranscribe implements INodeType {
|
||||||
value: 'QUEUED',
|
value: 'QUEUED',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
description: 'Return only transcription jobs with the specified status.',
|
description: 'Return only transcription jobs with the specified status',
|
||||||
default: 'COMPLETED',
|
default: 'COMPLETED',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
|
@ -104,7 +104,7 @@ export const imageFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: 3,
|
default: 3,
|
||||||
description: `How often it should check if the image is available before it fails.`,
|
description: 'How often it should check if the image is available before it fails',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Webhook URL',
|
displayName: 'Webhook URL',
|
||||||
|
@ -203,6 +203,6 @@ export const imageFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'Unique identifier for the image.',
|
description: 'Unique identifier for the image',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
|
@ -52,6 +52,6 @@ export const templateFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'Unique identifier for the template.',
|
description: 'Unique identifier for the template',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
|
@ -69,22 +69,22 @@ export class Beeminder implements INodeType {
|
||||||
{
|
{
|
||||||
name: 'Create',
|
name: 'Create',
|
||||||
value: 'create',
|
value: 'create',
|
||||||
description: 'Create datapoint for goal.',
|
description: 'Create datapoint for goal',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Delete',
|
name: 'Delete',
|
||||||
value: 'delete',
|
value: 'delete',
|
||||||
description: 'Delete a datapoint.',
|
description: 'Delete a datapoint',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Get All',
|
name: 'Get All',
|
||||||
value: 'getAll',
|
value: 'getAll',
|
||||||
description: 'Get all datapoints for a goal.',
|
description: 'Get all datapoints for a goal',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Update',
|
name: 'Update',
|
||||||
value: 'update',
|
value: 'update',
|
||||||
description: 'Update a datapoint.',
|
description: 'Update a datapoint',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: 'create',
|
default: 'create',
|
||||||
|
@ -106,7 +106,7 @@ export class Beeminder implements INodeType {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The name of the goal.',
|
description: 'The name of the goal',
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -124,7 +124,7 @@ export class Beeminder implements INodeType {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -148,7 +148,7 @@ export class Beeminder implements INodeType {
|
||||||
maxValue: 300,
|
maxValue: 300,
|
||||||
},
|
},
|
||||||
default: 30,
|
default: 30,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Value',
|
displayName: 'Value',
|
||||||
|
@ -156,7 +156,7 @@ export class Beeminder implements INodeType {
|
||||||
type: 'number',
|
type: 'number',
|
||||||
default: 1,
|
default: 1,
|
||||||
placeholder: '',
|
placeholder: '',
|
||||||
description: 'Datapoint value to send.',
|
description: 'Datapoint value to send',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource: [
|
||||||
|
@ -215,7 +215,7 @@ export class Beeminder implements INodeType {
|
||||||
type: 'dateTime',
|
type: 'dateTime',
|
||||||
default: '',
|
default: '',
|
||||||
placeholder: '',
|
placeholder: '',
|
||||||
description: 'Defaults to "now" if none is passed in, or the existing timestamp if the datapoint is being updated rather than created.',
|
description: 'Defaults to "now" if none is passed in, or the existing timestamp if the datapoint is being updated rather than created',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Request ID',
|
displayName: 'Request ID',
|
||||||
|
@ -223,7 +223,7 @@ export class Beeminder implements INodeType {
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
placeholder: '',
|
placeholder: '',
|
||||||
description: 'String to uniquely identify a datapoint.',
|
description: 'String to uniquely identify a datapoint',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -250,7 +250,7 @@ export class Beeminder implements INodeType {
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: 'id',
|
default: 'id',
|
||||||
placeholder: '',
|
placeholder: '',
|
||||||
description: 'Attribute to sort on.',
|
description: 'Attribute to sort on',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -277,7 +277,7 @@ export class Beeminder implements INodeType {
|
||||||
type: 'number',
|
type: 'number',
|
||||||
default: 1,
|
default: 1,
|
||||||
placeholder: '',
|
placeholder: '',
|
||||||
description: 'Datapoint value to send.',
|
description: 'Datapoint value to send',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Comment',
|
displayName: 'Comment',
|
||||||
|
@ -292,7 +292,7 @@ export class Beeminder implements INodeType {
|
||||||
type: 'dateTime',
|
type: 'dateTime',
|
||||||
default: '',
|
default: '',
|
||||||
placeholder: '',
|
placeholder: '',
|
||||||
description: 'Defaults to "now" if none is passed in, or the existing timestamp if the datapoint is being updated rather than created.',
|
description: 'Defaults to "now" if none is passed in, or the existing timestamp if the datapoint is being updated rather than created',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
|
@ -86,7 +86,7 @@ export class BitbucketTrigger implements INodeType {
|
||||||
},
|
},
|
||||||
required: true,
|
required: true,
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The repository of which to listen to the events.',
|
description: 'The repository of which to listen to the events',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Events',
|
displayName: 'Events',
|
||||||
|
@ -105,7 +105,7 @@ export class BitbucketTrigger implements INodeType {
|
||||||
options: [],
|
options: [],
|
||||||
required: true,
|
required: true,
|
||||||
default: [],
|
default: [],
|
||||||
description: 'The events to listen to.',
|
description: 'The events to listen to',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Repository',
|
displayName: 'Repository',
|
||||||
|
@ -126,7 +126,7 @@ export class BitbucketTrigger implements INodeType {
|
||||||
},
|
},
|
||||||
required: true,
|
required: true,
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The repository of which to listen to the events.',
|
description: 'The repository of which to listen to the events',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Events',
|
displayName: 'Events',
|
||||||
|
@ -145,7 +145,7 @@ export class BitbucketTrigger implements INodeType {
|
||||||
options: [],
|
options: [],
|
||||||
required: true,
|
required: true,
|
||||||
default: [],
|
default: [],
|
||||||
description: 'The events to listen to.',
|
description: 'The events to listen to',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|
|
@ -46,7 +46,7 @@ export const collectionFields: INodeProperties[] = [
|
||||||
name: 'collectionId',
|
name: 'collectionId',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
required: true,
|
required: true,
|
||||||
description: 'The identifier of the collection.',
|
description: 'The identifier of the collection',
|
||||||
default: '',
|
default: '',
|
||||||
placeholder: '5e59c8c7-e05a-4d17-8e85-acc301343926',
|
placeholder: '5e59c8c7-e05a-4d17-8e85-acc301343926',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
|
@ -71,7 +71,7 @@ export const collectionFields: INodeProperties[] = [
|
||||||
name: 'returnAll',
|
name: 'returnAll',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Return all available results for the query.',
|
description: 'Return all available results for the query',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource: [
|
||||||
|
@ -88,7 +88,7 @@ export const collectionFields: INodeProperties[] = [
|
||||||
name: 'limit',
|
name: 'limit',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
default: 10,
|
default: 10,
|
||||||
description: 'Number of results to return for the query.',
|
description: 'Number of results to return for the query',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource: [
|
||||||
|
@ -119,7 +119,7 @@ export const collectionFields: INodeProperties[] = [
|
||||||
displayName: 'Group',
|
displayName: 'Group',
|
||||||
name: 'groups',
|
name: 'groups',
|
||||||
type: 'multiOptions',
|
type: 'multiOptions',
|
||||||
description: 'The group to assign this collection to.',
|
description: 'The group to assign this collection to',
|
||||||
default: [],
|
default: [],
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
loadOptionsMethod: 'getGroups',
|
loadOptionsMethod: 'getGroups',
|
||||||
|
@ -129,7 +129,7 @@ export const collectionFields: INodeProperties[] = [
|
||||||
displayName: 'External ID',
|
displayName: 'External ID',
|
||||||
name: 'externalId',
|
name: 'externalId',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
description: 'The external identifier to set to this collection.',
|
description: 'The external identifier to set to this collection',
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
|
@ -35,7 +35,7 @@ export const eventFields: INodeProperties[] = [
|
||||||
name: 'returnAll',
|
name: 'returnAll',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Return all available results for the query.',
|
description: 'Return all available results for the query',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource: [
|
||||||
|
@ -52,7 +52,7 @@ export const eventFields: INodeProperties[] = [
|
||||||
name: 'limit',
|
name: 'limit',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
default: 10,
|
default: 10,
|
||||||
description: 'Number of results to return for the query.',
|
description: 'Number of results to return for the query',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource: [
|
||||||
|
@ -79,7 +79,7 @@ export const eventFields: INodeProperties[] = [
|
||||||
name: 'actingUserId',
|
name: 'actingUserId',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The unique identifier of the acting user.',
|
description: 'The unique identifier of the acting user',
|
||||||
placeholder: '4a59c8c7-e05a-4d17-8e85-acc301343926',
|
placeholder: '4a59c8c7-e05a-4d17-8e85-acc301343926',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -87,14 +87,14 @@ export const eventFields: INodeProperties[] = [
|
||||||
name: 'end',
|
name: 'end',
|
||||||
type: 'dateTime',
|
type: 'dateTime',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The end date for the search.',
|
description: 'The end date for the search',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Item ID',
|
displayName: 'Item ID',
|
||||||
name: 'itemID',
|
name: 'itemID',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The unique identifier of the item that the event describes.',
|
description: 'The unique identifier of the item that the event describes',
|
||||||
placeholder: '5e59c8c7-e05a-4d17-8e85-acc301343926',
|
placeholder: '5e59c8c7-e05a-4d17-8e85-acc301343926',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -102,7 +102,7 @@ export const eventFields: INodeProperties[] = [
|
||||||
name: 'start',
|
name: 'start',
|
||||||
type: 'dateTime',
|
type: 'dateTime',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The start date for the search.',
|
description: 'The start date for the search',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
|
|
|
@ -58,7 +58,7 @@ export const groupFields: INodeProperties[] = [
|
||||||
name: 'groupId',
|
name: 'groupId',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
required: true,
|
required: true,
|
||||||
description: 'The identifier of the group.',
|
description: 'The identifier of the group',
|
||||||
default: '',
|
default: '',
|
||||||
placeholder: '5e59c8c7-e05a-4d17-8e85-acc301343926',
|
placeholder: '5e59c8c7-e05a-4d17-8e85-acc301343926',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
|
@ -85,7 +85,7 @@ export const groupFields: INodeProperties[] = [
|
||||||
name: 'returnAll',
|
name: 'returnAll',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Return all available results for the query.',
|
description: 'Return all available results for the query',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource: [
|
||||||
|
@ -102,7 +102,7 @@ export const groupFields: INodeProperties[] = [
|
||||||
name: 'limit',
|
name: 'limit',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
default: 10,
|
default: 10,
|
||||||
description: 'Number of results to return for the query.',
|
description: 'Number of results to return for the query',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource: [
|
||||||
|
@ -127,7 +127,7 @@ export const groupFields: INodeProperties[] = [
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
required: true,
|
required: true,
|
||||||
description: 'The name of the group to create.',
|
description: 'The name of the group to create',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource: [
|
||||||
|
@ -167,7 +167,7 @@ export const groupFields: INodeProperties[] = [
|
||||||
displayName: 'Collections',
|
displayName: 'Collections',
|
||||||
name: 'collections',
|
name: 'collections',
|
||||||
type: 'multiOptions',
|
type: 'multiOptions',
|
||||||
description: 'The collections to assign to this group.',
|
description: 'The collections to assign to this group',
|
||||||
default: [],
|
default: [],
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
loadOptionsMethod: 'getCollections',
|
loadOptionsMethod: 'getCollections',
|
||||||
|
@ -177,7 +177,7 @@ export const groupFields: INodeProperties[] = [
|
||||||
displayName: 'External ID',
|
displayName: 'External ID',
|
||||||
name: 'externalId',
|
name: 'externalId',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
description: 'The external identifier to set to this group.',
|
description: 'The external identifier to set to this group',
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
@ -214,7 +214,7 @@ export const groupFields: INodeProperties[] = [
|
||||||
displayName: 'Collections',
|
displayName: 'Collections',
|
||||||
name: 'collections',
|
name: 'collections',
|
||||||
type: 'multiOptions',
|
type: 'multiOptions',
|
||||||
description: 'The collections to assign to this group.',
|
description: 'The collections to assign to this group',
|
||||||
default: [],
|
default: [],
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
loadOptionsMethod: 'getCollections',
|
loadOptionsMethod: 'getCollections',
|
||||||
|
@ -224,7 +224,7 @@ export const groupFields: INodeProperties[] = [
|
||||||
displayName: 'External ID',
|
displayName: 'External ID',
|
||||||
name: 'externalId',
|
name: 'externalId',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
description: 'The external identifier to set to this group.',
|
description: 'The external identifier to set to this group',
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -232,7 +232,7 @@ export const groupFields: INodeProperties[] = [
|
||||||
name: 'name',
|
name: 'name',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The name of the group to update.',
|
description: 'The name of the group to update',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
|
@ -255,7 +255,7 @@ export const groupFields: INodeProperties[] = [
|
||||||
name: 'memberIds',
|
name: 'memberIds',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Comma-separated list of IDs of members to set in a group.',
|
description: 'Comma-separated list of IDs of members to set in a group',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource: [
|
||||||
|
|
|
@ -58,7 +58,7 @@ export const memberFields: INodeProperties[] = [
|
||||||
name: 'memberId',
|
name: 'memberId',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
required: true,
|
required: true,
|
||||||
description: 'The identifier of the member.',
|
description: 'The identifier of the member',
|
||||||
default: '',
|
default: '',
|
||||||
placeholder: '5e59c8c7-e05a-4d17-8e85-acc301343926',
|
placeholder: '5e59c8c7-e05a-4d17-8e85-acc301343926',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
|
@ -119,7 +119,7 @@ export const memberFields: INodeProperties[] = [
|
||||||
name: 'returnAll',
|
name: 'returnAll',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Return all available results for the query.',
|
description: 'Return all available results for the query',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource: [
|
||||||
|
@ -136,7 +136,7 @@ export const memberFields: INodeProperties[] = [
|
||||||
name: 'limit',
|
name: 'limit',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
default: 10,
|
default: 10,
|
||||||
description: 'Number of results to return for the query.',
|
description: 'Number of results to return for the query',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource: [
|
||||||
|
@ -159,7 +159,7 @@ export const memberFields: INodeProperties[] = [
|
||||||
name: 'email',
|
name: 'email',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The email of the member to update.',
|
description: 'The email of the member to update',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource: [
|
||||||
|
@ -198,7 +198,7 @@ export const memberFields: INodeProperties[] = [
|
||||||
displayName: 'Collections',
|
displayName: 'Collections',
|
||||||
name: 'collections',
|
name: 'collections',
|
||||||
type: 'multiOptions',
|
type: 'multiOptions',
|
||||||
description: 'The collections to assign to this member.',
|
description: 'The collections to assign to this member',
|
||||||
default: [],
|
default: [],
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
loadOptionsMethod: 'getCollections',
|
loadOptionsMethod: 'getCollections',
|
||||||
|
@ -208,7 +208,7 @@ export const memberFields: INodeProperties[] = [
|
||||||
displayName: 'External ID',
|
displayName: 'External ID',
|
||||||
name: 'externalId',
|
name: 'externalId',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
description: 'The external identifier to set to this member.',
|
description: 'The external identifier to set to this member',
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
@ -261,7 +261,7 @@ export const memberFields: INodeProperties[] = [
|
||||||
displayName: 'Collections',
|
displayName: 'Collections',
|
||||||
name: 'collections',
|
name: 'collections',
|
||||||
type: 'multiOptions',
|
type: 'multiOptions',
|
||||||
description: 'The collections to assign to this member.',
|
description: 'The collections to assign to this member',
|
||||||
default: [],
|
default: [],
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
loadOptionsMethod: 'getCollections',
|
loadOptionsMethod: 'getCollections',
|
||||||
|
@ -271,7 +271,7 @@ export const memberFields: INodeProperties[] = [
|
||||||
displayName: 'External ID',
|
displayName: 'External ID',
|
||||||
name: 'externalId',
|
name: 'externalId',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
description: 'The external identifier to set to this member.',
|
description: 'The external identifier to set to this member',
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -300,7 +300,7 @@ export const memberFields: INodeProperties[] = [
|
||||||
name: 'groupIds',
|
name: 'groupIds',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Comma-separated list of IDs of groups to set for a member.',
|
description: 'Comma-separated list of IDs of groups to set for a member',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource: [
|
||||||
|
|
|
@ -70,7 +70,7 @@ export class BoxTrigger implements INodeType {
|
||||||
{
|
{
|
||||||
name: 'Collaboration Updated',
|
name: 'Collaboration Updated',
|
||||||
value: 'COLLABORATION.UPDATED',
|
value: 'COLLABORATION.UPDATED',
|
||||||
description: 'A collaboration has been updated.',
|
description: 'A collaboration has been updated',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Comment Created',
|
name: 'Comment Created',
|
||||||
|
@ -120,7 +120,7 @@ export class BoxTrigger implements INodeType {
|
||||||
{
|
{
|
||||||
name: 'File Renamed',
|
name: 'File Renamed',
|
||||||
value: 'FILE.RENAMED',
|
value: 'FILE.RENAMED',
|
||||||
description: 'A file was renamed.',
|
description: 'A file was renamed',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'File Restored',
|
name: 'File Restored',
|
||||||
|
@ -170,7 +170,7 @@ export class BoxTrigger implements INodeType {
|
||||||
{
|
{
|
||||||
name: 'Folder Renamed',
|
name: 'Folder Renamed',
|
||||||
value: 'FOLDER.RENAMED',
|
value: 'FOLDER.RENAMED',
|
||||||
description: 'A folder was renamed.',
|
description: 'A folder was renamed',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Folder Restored',
|
name: 'Folder Restored',
|
||||||
|
@ -230,7 +230,7 @@ export class BoxTrigger implements INodeType {
|
||||||
],
|
],
|
||||||
required: true,
|
required: true,
|
||||||
default: [],
|
default: [],
|
||||||
description: 'The events to listen to.',
|
description: 'The events to listen to',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Target Type',
|
displayName: 'Target Type',
|
||||||
|
|
|
@ -125,14 +125,14 @@ export const fileFields: INodeProperties[] = [
|
||||||
name: 'name',
|
name: 'name',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'An optional new name for the copied file.',
|
description: 'An optional new name for the copied file',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Version',
|
displayName: 'Version',
|
||||||
name: 'version',
|
name: 'version',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'An optional ID of the specific file version to copy.',
|
description: 'An optional ID of the specific file version to copy',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -194,7 +194,7 @@ export const fileFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'Name of the binary property to which to write the data of the read file.',
|
description: 'Name of the binary property to which to write the data of the read file',
|
||||||
},
|
},
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
|
@ -279,7 +279,7 @@ export const fileFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -303,7 +303,7 @@ export const fileFields: INodeProperties[] = [
|
||||||
maxValue: 500,
|
maxValue: 500,
|
||||||
},
|
},
|
||||||
default: 100,
|
default: 100,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Additional Fields',
|
displayName: 'Additional Fields',
|
||||||
|
@ -389,7 +389,7 @@ export const fileFields: INodeProperties[] = [
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
placeholder: 'pdf,png,gif',
|
placeholder: 'pdf,png,gif',
|
||||||
description: 'Limits search results to a comma-separated list of file extensions.',
|
description: 'Limits search results to a comma-separated list of file extensions',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Folder IDs',
|
displayName: 'Folder IDs',
|
||||||
|
@ -413,7 +413,7 @@ export const fileFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Limits search results to a user scope.',
|
description: 'Limits search results to a user scope',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Size Range',
|
displayName: 'Size Range',
|
||||||
|
@ -438,7 +438,7 @@ export const fileFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: 'relevance',
|
default: 'relevance',
|
||||||
description: 'returns the results ordered in descending order by date at which the item was last modified.',
|
description: 'returns the results ordered in descending order by date at which the item was last modified',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Trash Content',
|
displayName: 'Trash Content',
|
||||||
|
@ -455,7 +455,7 @@ export const fileFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: 'non_trashed_only',
|
default: 'non_trashed_only',
|
||||||
description: 'Controls if search results include the trash.',
|
description: 'Controls if search results include the trash',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Update At Range',
|
displayName: 'Update At Range',
|
||||||
|
@ -515,7 +515,7 @@ export const fileFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The ID of the file to share.',
|
description: 'The ID of the file to share',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Accessible By',
|
displayName: 'Accessible By',
|
||||||
|
@ -542,7 +542,7 @@ export const fileFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The type of object the file will be shared with.',
|
description: 'The type of object the file will be shared with',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Use Email',
|
displayName: 'Use Email',
|
||||||
|
@ -562,7 +562,7 @@ export const fileFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: true,
|
default: true,
|
||||||
description: 'Whether identify the user by email or ID.',
|
description: 'Whether identify the user by email or ID',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Email',
|
displayName: 'Email',
|
||||||
|
@ -585,7 +585,7 @@ export const fileFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: `The user's email address to share the file with.`,
|
description: 'The user\'s email address to share the file with',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'User ID',
|
displayName: 'User ID',
|
||||||
|
@ -608,7 +608,7 @@ export const fileFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: `The user's ID to share the file with.`,
|
description: 'The user\'s ID to share the file with',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Group ID',
|
displayName: 'Group ID',
|
||||||
|
@ -628,7 +628,7 @@ export const fileFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: `The group's ID to share the file with.`,
|
description: 'The group\'s ID to share the file with',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Role',
|
displayName: 'Role',
|
||||||
|
@ -682,7 +682,7 @@ export const fileFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: 'editor',
|
default: 'editor',
|
||||||
description: 'The level of access granted.',
|
description: 'The level of access granted',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Options',
|
displayName: 'Options',
|
||||||
|
@ -727,7 +727,7 @@ export const fileFields: INodeProperties[] = [
|
||||||
name: 'notify',
|
name: 'notify',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Whether if users should receive email notification for the action performed.',
|
description: 'Whether if users should receive email notification for the action performed',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -751,7 +751,7 @@ export const fileFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The name the file should be saved as.',
|
description: 'The name the file should be saved as',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Binary Data',
|
displayName: 'Binary Data',
|
||||||
|
@ -769,7 +769,7 @@ export const fileFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'If the data to upload should be taken from binary field.',
|
description: 'If the data to upload should be taken from binary field',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'File Content',
|
displayName: 'File Content',
|
||||||
|
@ -791,7 +791,7 @@ export const fileFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
|
|
||||||
},
|
},
|
||||||
description: 'The text content of the file.',
|
description: 'The text content of the file',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Binary Property',
|
displayName: 'Binary Property',
|
||||||
|
@ -813,7 +813,7 @@ export const fileFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
|
|
||||||
},
|
},
|
||||||
description: 'Name of the binary property which contains the data for the file.',
|
description: 'Name of the binary property which contains the data for the file',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Parent ID',
|
displayName: 'Parent ID',
|
||||||
|
|
|
@ -116,7 +116,7 @@ export const folderFields: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
name: 'Collaborators',
|
name: 'Collaborators',
|
||||||
value: 'collaborators',
|
value: 'collaborators',
|
||||||
description: 'Only emails from registered email addresses for collaborators will be accepted.',
|
description: 'Only emails from registered email addresses for collaborators will be accepted',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Open',
|
name: 'Open',
|
||||||
|
@ -193,7 +193,7 @@ export const folderFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Delete a folder that is not empty by recursively deleting the folder and all of its content.',
|
description: 'Delete a folder that is not empty by recursively deleting the folder and all of its content',
|
||||||
},
|
},
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
|
@ -231,7 +231,7 @@ export const folderFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -255,7 +255,7 @@ export const folderFields: INodeProperties[] = [
|
||||||
maxValue: 500,
|
maxValue: 500,
|
||||||
},
|
},
|
||||||
default: 100,
|
default: 100,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Additional Fields',
|
displayName: 'Additional Fields',
|
||||||
|
@ -341,7 +341,7 @@ export const folderFields: INodeProperties[] = [
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
placeholder: 'pdf,png,gif',
|
placeholder: 'pdf,png,gif',
|
||||||
description: 'Limits search results to a comma-separated list of file extensions.',
|
description: 'Limits search results to a comma-separated list of file extensions',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Folder IDs',
|
displayName: 'Folder IDs',
|
||||||
|
@ -365,7 +365,7 @@ export const folderFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Limits search results to a user scope.',
|
description: 'Limits search results to a user scope',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Size Range',
|
displayName: 'Size Range',
|
||||||
|
@ -390,7 +390,7 @@ export const folderFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: 'relevance',
|
default: 'relevance',
|
||||||
description: 'returns the results ordered in descending order by date at which the item was last modified.',
|
description: 'returns the results ordered in descending order by date at which the item was last modified',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Trash Content',
|
displayName: 'Trash Content',
|
||||||
|
@ -407,7 +407,7 @@ export const folderFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: 'non_trashed_only',
|
default: 'non_trashed_only',
|
||||||
description: 'Controls if search results include the trash.',
|
description: 'Controls if search results include the trash',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Update At Range',
|
displayName: 'Update At Range',
|
||||||
|
@ -467,7 +467,7 @@ export const folderFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The ID of the folder to share.',
|
description: 'The ID of the folder to share',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Accessible By',
|
displayName: 'Accessible By',
|
||||||
|
@ -494,7 +494,7 @@ export const folderFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: 'user',
|
default: 'user',
|
||||||
description: 'The type of object the file will be shared with.',
|
description: 'The type of object the file will be shared with',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Use Email',
|
displayName: 'Use Email',
|
||||||
|
@ -514,7 +514,7 @@ export const folderFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: true,
|
default: true,
|
||||||
description: 'Whether identify the user by email or ID.',
|
description: 'Whether identify the user by email or ID',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Email',
|
displayName: 'Email',
|
||||||
|
@ -537,7 +537,7 @@ export const folderFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: `The user's email address to share the folder with.`,
|
description: 'The user\'s email address to share the folder with',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'User ID',
|
displayName: 'User ID',
|
||||||
|
@ -560,7 +560,7 @@ export const folderFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: `The user's ID to share the folder with.`,
|
description: 'The user\'s ID to share the folder with',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Group ID',
|
displayName: 'Group ID',
|
||||||
|
@ -580,7 +580,7 @@ export const folderFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: `The group's ID to share the folder with.`,
|
description: 'The group\'s ID to share the folder with',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Role',
|
displayName: 'Role',
|
||||||
|
@ -634,7 +634,7 @@ export const folderFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: 'editor',
|
default: 'editor',
|
||||||
description: 'The level of access granted.',
|
description: 'The level of access granted',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Options',
|
displayName: 'Options',
|
||||||
|
@ -679,7 +679,7 @@ export const folderFields: INodeProperties[] = [
|
||||||
name: 'notify',
|
name: 'notify',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Whether if users should receive email notification for the action performed.',
|
description: 'Whether if users should receive email notification for the action performed',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -727,21 +727,21 @@ export const folderFields: INodeProperties[] = [
|
||||||
name: 'can_non_owners_invite',
|
name: 'can_non_owners_invite',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Specifies if users who are not the owner of the folder can invite new collaborators to the folder.',
|
description: 'Specifies if users who are not the owner of the folder can invite new collaborators to the folder',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Can Non-Owners View Colaborators',
|
displayName: 'Can Non-Owners View Colaborators',
|
||||||
name: 'can_non_owners_view_collaborators',
|
name: 'can_non_owners_view_collaborators',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Restricts collaborators who are not the owner of this folder from viewing other collaborations on this folder.',
|
description: 'Restricts collaborators who are not the owner of this folder from viewing other collaborations on this folder',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Description',
|
displayName: 'Description',
|
||||||
name: 'description',
|
name: 'description',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The optional description of this folder.',
|
description: 'The optional description of this folder',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Fields',
|
displayName: 'Fields',
|
||||||
|
@ -762,7 +762,7 @@ export const folderFields: INodeProperties[] = [
|
||||||
name: 'name',
|
name: 'name',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The optional new name for this folder.',
|
description: 'The optional new name for this folder',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Parent ID',
|
displayName: 'Parent ID',
|
||||||
|
@ -778,7 +778,7 @@ export const folderFields: INodeProperties[] = [
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
multipleValues: false,
|
multipleValues: false,
|
||||||
},
|
},
|
||||||
description: 'Share link information.',
|
description: 'Share link information',
|
||||||
placeholder: 'Add Shared Link Config',
|
placeholder: 'Add Shared Link Config',
|
||||||
default: {},
|
default: {},
|
||||||
options: [
|
options: [
|
||||||
|
@ -831,21 +831,21 @@ export const folderFields: INodeProperties[] = [
|
||||||
name: 'can_download',
|
name: 'can_download',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If the shared link allows for downloading of files.',
|
description: 'If the shared link allows for downloading of files',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Unshared At',
|
displayName: 'Unshared At',
|
||||||
name: 'unshared_at',
|
name: 'unshared_at',
|
||||||
type: 'dateTime',
|
type: 'dateTime',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The timestamp at which this shared link will expire.',
|
description: 'The timestamp at which this shared link will expire',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Vanity Name',
|
displayName: 'Vanity Name',
|
||||||
name: 'vanity_name',
|
name: 'vanity_name',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Defines a custom vanity name to use in the shared link URL, for example https://app.box.com/v/my-shared-link.',
|
description: 'Defines a custom vanity name to use in the shared link URL, for example https://app.box.com/v/my-shared-link',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
|
@ -78,7 +78,7 @@ export class Brandfetch implements INodeType {
|
||||||
name: 'domain',
|
name: 'domain',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The domain name of the company.',
|
description: 'The domain name of the company',
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -94,7 +94,7 @@ export class Brandfetch implements INodeType {
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'Name of the binary property to which to write the data of the read file.',
|
description: 'Name of the binary property to which to write the data of the read file',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Image Type',
|
displayName: 'Image Type',
|
||||||
|
@ -153,7 +153,7 @@ export class Brandfetch implements INodeType {
|
||||||
default: [
|
default: [
|
||||||
'png',
|
'png',
|
||||||
],
|
],
|
||||||
description: 'The image format in which the logo should be returned as.',
|
description: 'The image format in which the logo should be returned as',
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
|
@ -50,7 +50,7 @@ export const objectFields: INodeProperties[] = [
|
||||||
name: 'typeName',
|
name: 'typeName',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
required: true,
|
required: true,
|
||||||
description: 'Name of data type of the object to create.',
|
description: 'Name of data type of the object to create',
|
||||||
default: '',
|
default: '',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
|
@ -92,14 +92,14 @@ export const objectFields: INodeProperties[] = [
|
||||||
name: 'key',
|
name: 'key',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Field to set for the object to create.',
|
description: 'Field to set for the object to create',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Value',
|
displayName: 'Value',
|
||||||
name: 'value',
|
name: 'value',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Value to set for the object to create.',
|
description: 'Value to set for the object to create',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -114,7 +114,7 @@ export const objectFields: INodeProperties[] = [
|
||||||
name: 'typeName',
|
name: 'typeName',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
required: true,
|
required: true,
|
||||||
description: 'Name of data type of the object to retrieve.',
|
description: 'Name of data type of the object to retrieve',
|
||||||
default: '',
|
default: '',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
|
@ -133,7 +133,7 @@ export const objectFields: INodeProperties[] = [
|
||||||
name: 'objectId',
|
name: 'objectId',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
required: true,
|
required: true,
|
||||||
description: 'ID of the object to retrieve.',
|
description: 'ID of the object to retrieve',
|
||||||
default: '',
|
default: '',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
|
@ -156,7 +156,7 @@ export const objectFields: INodeProperties[] = [
|
||||||
name: 'typeName',
|
name: 'typeName',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
required: true,
|
required: true,
|
||||||
description: 'Name of data type of the object to update.',
|
description: 'Name of data type of the object to update',
|
||||||
default: '',
|
default: '',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
|
@ -174,7 +174,7 @@ export const objectFields: INodeProperties[] = [
|
||||||
name: 'objectId',
|
name: 'objectId',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
required: true,
|
required: true,
|
||||||
description: 'ID of the object to update.',
|
description: 'ID of the object to update',
|
||||||
default: '',
|
default: '',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
|
@ -216,14 +216,14 @@ export const objectFields: INodeProperties[] = [
|
||||||
name: 'key',
|
name: 'key',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Field to set for the object to create.',
|
description: 'Field to set for the object to create',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Value',
|
displayName: 'Value',
|
||||||
name: 'value',
|
name: 'value',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Value to set for the object to create.',
|
description: 'Value to set for the object to create',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -238,7 +238,7 @@ export const objectFields: INodeProperties[] = [
|
||||||
name: 'typeName',
|
name: 'typeName',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
required: true,
|
required: true,
|
||||||
description: 'Name of data type of the object to create.',
|
description: 'Name of data type of the object to create',
|
||||||
default: '',
|
default: '',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
|
@ -266,7 +266,7 @@ export const objectFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -290,7 +290,7 @@ export const objectFields: INodeProperties[] = [
|
||||||
maxValue: 100,
|
maxValue: 100,
|
||||||
},
|
},
|
||||||
default: 100,
|
default: 100,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'JSON Parameters',
|
displayName: 'JSON Parameters',
|
||||||
|
@ -351,7 +351,7 @@ export const objectFields: INodeProperties[] = [
|
||||||
name: 'key',
|
name: 'key',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Field to set for the object to create.',
|
description: 'Field to set for the object to create',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Constrain',
|
displayName: 'Constrain',
|
||||||
|
@ -361,7 +361,7 @@ export const objectFields: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
name: 'Equals',
|
name: 'Equals',
|
||||||
value: 'equals',
|
value: 'equals',
|
||||||
description: 'Use to test strict equality, for all field types.',
|
description: 'Use to test strict equality, for all field types',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Not Equal',
|
name: 'Not Equal',
|
||||||
|
@ -371,12 +371,12 @@ export const objectFields: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
name: 'Is Empty',
|
name: 'Is Empty',
|
||||||
value: 'is_empty',
|
value: 'is_empty',
|
||||||
description: `Use to test whether a thing's given field is empty, for all field types.`,
|
description: 'Use to test whether a thing\'s given field is empty, for all field types',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Is Not Empty',
|
name: 'Is Not Empty',
|
||||||
value: 'is_not_empty',
|
value: 'is_not_empty',
|
||||||
description: `Use to test whether a thing's given field is not empty, for all field types.`,
|
description: 'Use to test whether a thing\'s given field is not empty, for all field types',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Text Contains',
|
name: 'Text Contains',
|
||||||
|
@ -401,12 +401,12 @@ export const objectFields: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
name: 'In',
|
name: 'In',
|
||||||
value: 'in',
|
value: 'in',
|
||||||
description: `Use to test whether a thing's field is in a list, for all field types.`,
|
description: 'Use to test whether a thing\'s field is in a list, for all field types',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Not In',
|
name: 'Not In',
|
||||||
value: 'not in',
|
value: 'not in',
|
||||||
description: `Use to test whether a thing's field is not in a list, for all field types.`,
|
description: 'Use to test whether a thing\'s field is not in a list, for all field types',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Contains',
|
name: 'Contains',
|
||||||
|
@ -451,7 +451,7 @@ export const objectFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Value to set for the object to create.',
|
description: 'Value to set for the object to create',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
|
@ -127,41 +127,41 @@ export class Chargebee implements INodeType {
|
||||||
name: 'first_name',
|
name: 'first_name',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The first name of the customer.',
|
description: 'The first name of the customer',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Last Name',
|
displayName: 'Last Name',
|
||||||
name: 'last_name',
|
name: 'last_name',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The last name of the customer.',
|
description: 'The last name of the customer',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Email',
|
displayName: 'Email',
|
||||||
name: 'email',
|
name: 'email',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The email address of the customer.',
|
description: 'The email address of the customer',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Phone',
|
displayName: 'Phone',
|
||||||
name: 'phone',
|
name: 'phone',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The phone number of the customer.',
|
description: 'The phone number of the customer',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Company',
|
displayName: 'Company',
|
||||||
name: 'company',
|
name: 'company',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The company of the customer.',
|
description: 'The company of the customer',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Custom Properties',
|
displayName: 'Custom Properties',
|
||||||
name: 'customProperties',
|
name: 'customProperties',
|
||||||
placeholder: 'Add Custom Property',
|
placeholder: 'Add Custom Property',
|
||||||
description: 'Adds a custom property to set also values which have not been predefined.',
|
description: 'Adds a custom property to set also values which have not been predefined',
|
||||||
type: 'fixedCollection',
|
type: 'fixedCollection',
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
multipleValues: true,
|
multipleValues: true,
|
||||||
|
@ -177,14 +177,14 @@ export class Chargebee implements INodeType {
|
||||||
name: 'name',
|
name: 'name',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Name of the property to set.',
|
description: 'Name of the property to set',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Property Value',
|
displayName: 'Property Value',
|
||||||
name: 'value',
|
name: 'value',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Value of the property to set.',
|
description: 'Value of the property to set',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -254,7 +254,7 @@ export class Chargebee implements INodeType {
|
||||||
displayName: 'Filters',
|
displayName: 'Filters',
|
||||||
name: 'filters',
|
name: 'filters',
|
||||||
placeholder: 'Add Filter',
|
placeholder: 'Add Filter',
|
||||||
description: 'Filter for invoices.',
|
description: 'Filter for invoices',
|
||||||
type: 'fixedCollection',
|
type: 'fixedCollection',
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
multipleValues: true,
|
multipleValues: true,
|
||||||
|
@ -299,14 +299,14 @@ export class Chargebee implements INodeType {
|
||||||
|
|
||||||
],
|
],
|
||||||
default: 'after',
|
default: 'after',
|
||||||
description: 'Operation to decide where the the data should be mapped to.',
|
description: 'Operation to decide where the the data should be mapped to',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Date',
|
displayName: 'Date',
|
||||||
name: 'value',
|
name: 'value',
|
||||||
type: 'dateTime',
|
type: 'dateTime',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Query date.',
|
description: 'Query date',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -345,7 +345,7 @@ export class Chargebee implements INodeType {
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: 'gt',
|
default: 'gt',
|
||||||
description: 'Operation to decide where the the data should be mapped to.',
|
description: 'Operation to decide where the the data should be mapped to',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Amount',
|
displayName: 'Amount',
|
||||||
|
@ -355,7 +355,7 @@ export class Chargebee implements INodeType {
|
||||||
numberPrecision: 2,
|
numberPrecision: 2,
|
||||||
},
|
},
|
||||||
default: 0,
|
default: 0,
|
||||||
description: 'Query amount.',
|
description: 'Query amount',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -368,7 +368,7 @@ export class Chargebee implements INodeType {
|
||||||
{
|
{
|
||||||
displayName: 'Invoice Id',
|
displayName: 'Invoice Id',
|
||||||
name: 'invoiceId',
|
name: 'invoiceId',
|
||||||
description: 'The id of the invoice to get.',
|
description: 'The id of the invoice to get',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
required: true,
|
required: true,
|
||||||
|
@ -422,7 +422,7 @@ export class Chargebee implements INodeType {
|
||||||
{
|
{
|
||||||
displayName: 'Subscription Id',
|
displayName: 'Subscription Id',
|
||||||
name: 'subscriptionId',
|
name: 'subscriptionId',
|
||||||
description: 'The id of the subscription to cancel.',
|
description: 'The id of the subscription to cancel',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
required: true,
|
required: true,
|
||||||
|
@ -452,7 +452,7 @@ export class Chargebee implements INodeType {
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'If set it will not cancel it directly in will instead schedule the cancelation for the end of the term..',
|
description: 'If set it will not cancel it directly in will instead schedule the cancelation for the end of the term',
|
||||||
},
|
},
|
||||||
|
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
@ -461,7 +461,7 @@ export class Chargebee implements INodeType {
|
||||||
{
|
{
|
||||||
displayName: 'Subscription Id',
|
displayName: 'Subscription Id',
|
||||||
name: 'subscriptionId',
|
name: 'subscriptionId',
|
||||||
description: 'The id of the subscription to delete.',
|
description: 'The id of the subscription to delete',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
required: true,
|
required: true,
|
||||||
|
|
|
@ -43,57 +43,57 @@ export class ChargebeeTrigger implements INodeType {
|
||||||
{
|
{
|
||||||
name: '*',
|
name: '*',
|
||||||
value: '*',
|
value: '*',
|
||||||
description: 'Any time any event is triggered (Wildcard Event).',
|
description: 'Any time any event is triggered (Wildcard Event)',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Customer Created',
|
name: 'Customer Created',
|
||||||
value: 'customer_created',
|
value: 'customer_created',
|
||||||
description: 'Triggered when a customer is created.',
|
description: 'Triggered when a customer is created',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Customer Changed',
|
name: 'Customer Changed',
|
||||||
value: 'customer_changed',
|
value: 'customer_changed',
|
||||||
description: 'Triggered when a customer is changed.',
|
description: 'Triggered when a customer is changed',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Customer Deleted',
|
name: 'Customer Deleted',
|
||||||
value: 'customer_deleted',
|
value: 'customer_deleted',
|
||||||
description: 'Triggered when a customer is deleted.',
|
description: 'Triggered when a customer is deleted',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Subscription Created',
|
name: 'Subscription Created',
|
||||||
value: 'subscription_created',
|
value: 'subscription_created',
|
||||||
description: 'Triggered when a new subscription is created.',
|
description: 'Triggered when a new subscription is created',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Subscription Started',
|
name: 'Subscription Started',
|
||||||
value: 'subscription_started',
|
value: 'subscription_started',
|
||||||
description: 'Triggered when a "future" subscription gets started.',
|
description: 'Triggered when a "future" subscription gets started',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Subscription Trial Ending',
|
name: 'Subscription Trial Ending',
|
||||||
value: 'subscription_trial_ending',
|
value: 'subscription_trial_ending',
|
||||||
description: 'Triggered 6 days prior to the trial period\'s end date.',
|
description: 'Triggered 6 days prior to the trial period\'s end date',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Subscription Activated',
|
name: 'Subscription Activated',
|
||||||
value: 'subscription_activated',
|
value: 'subscription_activated',
|
||||||
description: 'Triggered after the subscription has been moved from "Trial" to "Active" state.',
|
description: 'Triggered after the subscription has been moved from "Trial" to "Active" state',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Subscription Changed',
|
name: 'Subscription Changed',
|
||||||
value: 'subscription_changed',
|
value: 'subscription_changed',
|
||||||
description: 'Triggered when the subscription\'s recurring items are changed.',
|
description: 'Triggered when the subscription\'s recurring items are changed',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Subscription Cancellation Scheduled',
|
name: 'Subscription Cancellation Scheduled',
|
||||||
value: 'subscription_cancellation_scheduled',
|
value: 'subscription_cancellation_scheduled',
|
||||||
description: 'Triggered when subscription is scheduled to cancel at end of current term.',
|
description: 'Triggered when subscription is scheduled to cancel at end of current term',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Subscription Cancelling',
|
name: 'Subscription Cancelling',
|
||||||
value: 'subscription_cancelling',
|
value: 'subscription_cancelling',
|
||||||
description: 'Triggered 6 days prior to the scheduled cancellation date.',
|
description: 'Triggered 6 days prior to the scheduled cancellation date',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Subscription Cancelled',
|
name: 'Subscription Cancelled',
|
||||||
|
@ -103,22 +103,22 @@ export class ChargebeeTrigger implements INodeType {
|
||||||
{
|
{
|
||||||
name: 'Subscription Reactivated',
|
name: 'Subscription Reactivated',
|
||||||
value: 'subscription_reactivated',
|
value: 'subscription_reactivated',
|
||||||
description: 'Triggered when the subscription is moved from cancelled state to "Active" or "Trial" state.',
|
description: 'Triggered when the subscription is moved from cancelled state to "Active" or "Trial" state',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Subscription Renewed',
|
name: 'Subscription Renewed',
|
||||||
value: 'subscription_renewed',
|
value: 'subscription_renewed',
|
||||||
description: 'Triggered when the subscription is renewed from the current term.',
|
description: 'Triggered when the subscription is renewed from the current term',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Subscription Scheduled Cancellation Removed',
|
name: 'Subscription Scheduled Cancellation Removed',
|
||||||
value: 'subscription_scheduled_cancellation_removed',
|
value: 'subscription_scheduled_cancellation_removed',
|
||||||
description: 'Triggered when scheduled cancellation is removed for the subscription.',
|
description: 'Triggered when scheduled cancellation is removed for the subscription',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Subscription Shipping Address Updated',
|
name: 'Subscription Shipping Address Updated',
|
||||||
value: 'subscription_shipping_address_updated',
|
value: 'subscription_shipping_address_updated',
|
||||||
description: 'Triggered when shipping address is added or updated for a subscription.',
|
description: 'Triggered when shipping address is added or updated for a subscription',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Subscription Deleted',
|
name: 'Subscription Deleted',
|
||||||
|
@ -138,22 +138,22 @@ export class ChargebeeTrigger implements INodeType {
|
||||||
{
|
{
|
||||||
name: 'Invoice Updated',
|
name: 'Invoice Updated',
|
||||||
value: 'invoice_updated',
|
value: 'invoice_updated',
|
||||||
description: 'Triggered when the invoice’s shipping/billing address is updated, if the invoice is voided, or when the amount due is modified due to payments applied/removed.',
|
description: 'Triggered when the invoice’s shipping/billing address is updated, if the invoice is voided, or when the amount due is modified due to payments applied/removed',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Invoice Deleted',
|
name: 'Invoice Deleted',
|
||||||
value: 'invoice_deleted',
|
value: 'invoice_deleted',
|
||||||
description: 'Event triggered when an invoice is deleted.',
|
description: 'Event triggered when an invoice is deleted',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Subscription Renewal Reminder',
|
name: 'Subscription Renewal Reminder',
|
||||||
value: 'subscription_renewal_reminder',
|
value: 'subscription_renewal_reminder',
|
||||||
description: 'Triggered 3 days before each subscription\'s renewal.',
|
description: 'Triggered 3 days before each subscription\'s renewal',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Transaction Created',
|
name: 'Transaction Created',
|
||||||
value: 'transaction_created',
|
value: 'transaction_created',
|
||||||
description: 'Triggered when a transaction is recorded.',
|
description: 'Triggered when a transaction is recorded',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Transaction Updated',
|
name: 'Transaction Updated',
|
||||||
|
@ -163,57 +163,57 @@ export class ChargebeeTrigger implements INodeType {
|
||||||
{
|
{
|
||||||
name: 'Transaction Deleted',
|
name: 'Transaction Deleted',
|
||||||
value: 'transaction_deleted',
|
value: 'transaction_deleted',
|
||||||
description: 'Triggered when a transaction is deleted.',
|
description: 'Triggered when a transaction is deleted',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Payment Succeeded',
|
name: 'Payment Succeeded',
|
||||||
value: 'payment_succeeded',
|
value: 'payment_succeeded',
|
||||||
description: 'Triggered when the payment is successfully collected.',
|
description: 'Triggered when the payment is successfully collected',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Payment Failed',
|
name: 'Payment Failed',
|
||||||
value: 'payment_failed',
|
value: 'payment_failed',
|
||||||
description: 'Triggered when attempt to charge customer\'s credit card fails.',
|
description: 'Triggered when attempt to charge customer\'s credit card fails',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Payment Refunded',
|
name: 'Payment Refunded',
|
||||||
value: 'payment_refunded',
|
value: 'payment_refunded',
|
||||||
description: 'Triggered when a payment refund is made.',
|
description: 'Triggered when a payment refund is made',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Payment Initiated',
|
name: 'Payment Initiated',
|
||||||
value: 'payment_initiated',
|
value: 'payment_initiated',
|
||||||
description: 'Triggered when a payment is initiated via direct debit.',
|
description: 'Triggered when a payment is initiated via direct debit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Refund Initiated',
|
name: 'Refund Initiated',
|
||||||
value: 'refund_initiated',
|
value: 'refund_initiated',
|
||||||
description: 'Triggered when a refund is initiated via direct debit.',
|
description: 'Triggered when a refund is initiated via direct debit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Card Added',
|
name: 'Card Added',
|
||||||
value: 'card_added',
|
value: 'card_added',
|
||||||
description: 'Triggered when a card is added for a customer.',
|
description: 'Triggered when a card is added for a customer',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Card Updated',
|
name: 'Card Updated',
|
||||||
value: 'card_updated',
|
value: 'card_updated',
|
||||||
description: 'Triggered when the card is updated for a customer.',
|
description: 'Triggered when the card is updated for a customer',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Card Expiring',
|
name: 'Card Expiring',
|
||||||
value: 'card_expiring',
|
value: 'card_expiring',
|
||||||
description: 'Triggered when the customer\'s credit card is expiring soon.Triggered 30 days before the expiry date.',
|
description: 'Triggered when the customer\'s credit card is expiring soon.Triggered 30 days before the expiry date',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Card Expired',
|
name: 'Card Expired',
|
||||||
value: 'card_expired',
|
value: 'card_expired',
|
||||||
description: 'Triggered when the card for a customer has expired.',
|
description: 'Triggered when the card for a customer has expired',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Card Deleted',
|
name: 'Card Deleted',
|
||||||
value: 'card_deleted',
|
value: 'card_deleted',
|
||||||
description: 'Triggered when a card is deleted for a customer.',
|
description: 'Triggered when a card is deleted for a customer',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
|
@ -133,7 +133,7 @@ export const pipelineFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -157,7 +157,7 @@ export const pipelineFields: INodeProperties[] = [
|
||||||
maxValue: 500,
|
maxValue: 500,
|
||||||
},
|
},
|
||||||
default: 100,
|
default: 100,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Filters',
|
displayName: 'Filters',
|
||||||
|
@ -181,7 +181,7 @@ export const pipelineFields: INodeProperties[] = [
|
||||||
name: 'branch',
|
name: 'branch',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The name of a vcs branch.',
|
description: 'The name of a vcs branch',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
|
@ -157,7 +157,7 @@ export function getActionInheritedProperties(): INodeProperties[] {
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
required: true,
|
required: true,
|
||||||
description: 'Label for button or link that represents this action.',
|
description: 'Label for button or link that represents this action',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Icon URL',
|
displayName: 'Icon URL',
|
||||||
|
@ -185,7 +185,7 @@ export function getActionInheritedProperties(): INodeProperties[] {
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: 'default',
|
default: 'default',
|
||||||
description: 'Controls the style of an Action, which influences how the action is displayed, spoken, etc.',
|
description: 'Controls the style of an Action, which influences how the action is displayed, spoken, etc',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
@ -445,7 +445,7 @@ export function getTextBlockProperties(): INodeProperties[] {
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'When true, draw a separating line at the top of the element.',
|
description: 'When true, draw a separating line at the top of the element',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Spacing',
|
displayName: 'Spacing',
|
||||||
|
|
|
@ -410,7 +410,7 @@ export const meetingFields: INodeProperties[] = [
|
||||||
name: 'sendEmail',
|
name: 'sendEmail',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: true,
|
default: true,
|
||||||
description: 'Whether or not to send emails to host and invitees.',
|
description: 'Whether or not to send emails to host and invitees',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -485,7 +485,7 @@ export const meetingFields: INodeProperties[] = [
|
||||||
name: 'returnAll',
|
name: 'returnAll',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Return all results.',
|
description: 'Return all results',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource: [
|
||||||
|
|
|
@ -132,7 +132,7 @@ export const meetingTranscriptFields: INodeProperties[] = [
|
||||||
name: 'returnAll',
|
name: 'returnAll',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Return all results.',
|
description: 'Return all results',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource: [
|
||||||
|
|
|
@ -57,7 +57,7 @@ export class Clearbit implements INodeType {
|
||||||
{
|
{
|
||||||
name: 'Person',
|
name: 'Person',
|
||||||
value: 'person',
|
value: 'person',
|
||||||
description: 'The Person API lets you retrieve social information associated with an email address, such as a person’s name, location and Twitter handle.',
|
description: 'The Person API lets you retrieve social information associated with an email address, such as a person’s name, location and Twitter handle',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: 'company',
|
default: 'company',
|
||||||
|
|
|
@ -50,7 +50,7 @@ export const companyFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The domain to look up.',
|
description: 'The domain to look up',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Additional Fields',
|
displayName: 'Additional Fields',
|
||||||
|
@ -74,28 +74,28 @@ export const companyFields: INodeProperties[] = [
|
||||||
name: 'companyName',
|
name: 'companyName',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The name of the company.',
|
description: 'The name of the company',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Facebook',
|
displayName: 'Facebook',
|
||||||
name: 'facebook',
|
name: 'facebook',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The Facebook URL for the company.',
|
description: 'The Facebook URL for the company',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Linkedin',
|
displayName: 'Linkedin',
|
||||||
name: 'linkedin',
|
name: 'linkedin',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The LinkedIn URL for the company.',
|
description: 'The LinkedIn URL for the company',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Twitter',
|
displayName: 'Twitter',
|
||||||
name: 'twitter',
|
name: 'twitter',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The Twitter handle for the company.',
|
description: 'The Twitter handle for the company',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -119,6 +119,6 @@ export const companyFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'Name is the partial name of the company.',
|
description: 'Name is the partial name of the company',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
|
@ -45,7 +45,7 @@ export const personFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The email address to look up.',
|
description: 'The email address to look up',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Additional Fields',
|
displayName: 'Additional Fields',
|
||||||
|
@ -69,21 +69,21 @@ export const personFields: INodeProperties[] = [
|
||||||
name: 'company',
|
name: 'company',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The name of the person’s employer.',
|
description: 'The name of the person’s employer',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Company Domain',
|
displayName: 'Company Domain',
|
||||||
name: 'companyDomain',
|
name: 'companyDomain',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The domain for the person’s employer.',
|
description: 'The domain for the person’s employer',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Facebook',
|
displayName: 'Facebook',
|
||||||
name: 'facebook',
|
name: 'facebook',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The Facebook URL for the person.',
|
description: 'The Facebook URL for the person',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Family Name',
|
displayName: 'Family Name',
|
||||||
|
@ -97,7 +97,7 @@ export const personFields: INodeProperties[] = [
|
||||||
name: 'givenName',
|
name: 'givenName',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'First name of person.',
|
description: 'First name of person',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'IP Address',
|
displayName: 'IP Address',
|
||||||
|
@ -111,21 +111,21 @@ export const personFields: INodeProperties[] = [
|
||||||
name: 'location',
|
name: 'location',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The city or country where the person resides.',
|
description: 'The city or country where the person resides',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'LinkedIn',
|
displayName: 'LinkedIn',
|
||||||
name: 'linkedIn',
|
name: 'linkedIn',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The LinkedIn URL for the person.',
|
description: 'The LinkedIn URL for the person',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Twitter',
|
displayName: 'Twitter',
|
||||||
name: 'twitter',
|
name: 'twitter',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The Twitter handle for the person.',
|
description: 'The Twitter handle for the person',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
|
@ -210,7 +210,7 @@ export const checklistItemFields: INodeProperties[] = [
|
||||||
name: 'parent',
|
name: 'parent',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Checklist item that you want to nest the target checklist item underneath.',
|
description: 'Checklist item that you want to nest the target checklist item underneath',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Resolved',
|
displayName: 'Resolved',
|
||||||
|
|
|
@ -137,7 +137,7 @@ export const commentFields: INodeProperties[] = [
|
||||||
name: 'notifyAll',
|
name: 'notifyAll',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If true, creation notifications will be sent to everyone including the creator of the comment.',
|
description: 'If true, creation notifications will be sent to everyone including the creator of the comment',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -232,7 +232,7 @@ export const commentFields: INodeProperties[] = [
|
||||||
maxValue: 100,
|
maxValue: 100,
|
||||||
},
|
},
|
||||||
default: 50,
|
default: 50,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
|
|
|
@ -317,7 +317,7 @@ export const folderFields: INodeProperties[] = [
|
||||||
maxValue: 100,
|
maxValue: 100,
|
||||||
},
|
},
|
||||||
default: 50,
|
default: 50,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Filters',
|
displayName: 'Filters',
|
||||||
|
|
|
@ -225,7 +225,7 @@ export const goalFields: INodeProperties[] = [
|
||||||
maxValue: 100,
|
maxValue: 100,
|
||||||
},
|
},
|
||||||
default: 50,
|
default: 50,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
|
|
|
@ -270,7 +270,7 @@ export const listFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: true,
|
default: true,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -294,7 +294,7 @@ export const listFields: INodeProperties[] = [
|
||||||
maxValue: 100,
|
maxValue: 100,
|
||||||
},
|
},
|
||||||
default: 50,
|
default: 50,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
/* list:customFields */
|
/* list:customFields */
|
||||||
|
@ -760,7 +760,7 @@ export const listFields: INodeProperties[] = [
|
||||||
maxValue: 100,
|
maxValue: 100,
|
||||||
},
|
},
|
||||||
default: 50,
|
default: 50,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Filters',
|
displayName: 'Filters',
|
||||||
|
|
|
@ -110,7 +110,7 @@ export const spaceTagFields: INodeProperties[] = [
|
||||||
displayName: 'New Name',
|
displayName: 'New Name',
|
||||||
name: 'newName',
|
name: 'newName',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
description: 'New name to set for the tag.',
|
description: 'New name to set for the tag',
|
||||||
default: '',
|
default: '',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
|
@ -175,7 +175,7 @@ export const spaceTagFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: true,
|
default: true,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -199,6 +199,6 @@ export const spaceTagFields: INodeProperties[] = [
|
||||||
maxValue: 100,
|
maxValue: 100,
|
||||||
},
|
},
|
||||||
default: 50,
|
default: 50,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
|
@ -669,7 +669,7 @@ export const taskFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: true,
|
default: true,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -693,7 +693,7 @@ export const taskFields: INodeProperties[] = [
|
||||||
maxValue: 100,
|
maxValue: 100,
|
||||||
},
|
},
|
||||||
default: 50,
|
default: 50,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Filters',
|
displayName: 'Filters',
|
||||||
|
@ -754,7 +754,7 @@ export const taskFields: INodeProperties[] = [
|
||||||
loadOptionsMethod: 'getCustomFields',
|
loadOptionsMethod: 'getCustomFields',
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The ID of the field to add custom field to.',
|
description: 'The ID of the field to add custom field to',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Operator',
|
displayName: 'Operator',
|
||||||
|
@ -795,7 +795,7 @@ export const taskFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: 'equal',
|
default: 'equal',
|
||||||
description: 'The value to set on custom field.',
|
description: 'The value to set on custom field',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Value',
|
displayName: 'Value',
|
||||||
|
@ -810,7 +810,7 @@ export const taskFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The value to set on custom field.',
|
description: 'The value to set on custom field',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -982,7 +982,7 @@ export const taskFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: true,
|
default: true,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -1006,7 +1006,7 @@ export const taskFields: INodeProperties[] = [
|
||||||
maxValue: 100,
|
maxValue: 100,
|
||||||
},
|
},
|
||||||
default: 50,
|
default: 50,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
|
@ -1028,7 +1028,7 @@ export const taskFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The ID of the task to add custom field to.',
|
description: 'The ID of the task to add custom field to',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Field ID',
|
displayName: 'Field ID',
|
||||||
|
@ -1046,7 +1046,7 @@ export const taskFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The ID of the field to add custom field to.',
|
description: 'The ID of the field to add custom field to',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Value is JSON',
|
displayName: 'Value is JSON',
|
||||||
|
@ -1081,6 +1081,6 @@ export const taskFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The value to set on custom field.',
|
description: 'The value to set on custom field',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
|
@ -96,7 +96,7 @@ export const timeEntryFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -120,7 +120,7 @@ export const timeEntryFields: INodeProperties[] = [
|
||||||
maxValue: 10,
|
maxValue: 10,
|
||||||
},
|
},
|
||||||
default: 5,
|
default: 5,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Filters',
|
displayName: 'Filters',
|
||||||
|
|
|
@ -76,7 +76,7 @@ export const timeEntryTagFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -100,7 +100,7 @@ export const timeEntryTagFields: INodeProperties[] = [
|
||||||
maxValue: 10,
|
maxValue: 10,
|
||||||
},
|
},
|
||||||
default: 5,
|
default: 5,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
|
|
|
@ -57,7 +57,7 @@ export const projectFields: INodeProperties[] = [
|
||||||
type: 'string',
|
type: 'string',
|
||||||
required: true,
|
required: true,
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Name of project being created.',
|
description: 'Name of project being created',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource: [
|
||||||
|
@ -223,7 +223,7 @@ export const projectFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -247,7 +247,7 @@ export const projectFields: INodeProperties[] = [
|
||||||
maxValue: 500,
|
maxValue: 500,
|
||||||
},
|
},
|
||||||
default: 100,
|
default: 100,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Additional Fields',
|
displayName: 'Additional Fields',
|
||||||
|
@ -312,21 +312,21 @@ export const projectFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: '',
|
default: '',
|
||||||
description: 'If provided, projects will be filtered by whether they have a client.',
|
description: 'If provided, projects will be filtered by whether they have a client',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Contains User',
|
displayName: 'Contains User',
|
||||||
name: 'contains-user',
|
name: 'contains-user',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If provided, projects will be filtered by whether they have users.',
|
description: 'If provided, projects will be filtered by whether they have users',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Is Template',
|
displayName: 'Is Template',
|
||||||
name: 'is-template',
|
name: 'is-template',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If provided, projects will be filtered by whether they are used as a template.',
|
description: 'If provided, projects will be filtered by whether they are used as a template',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Name',
|
displayName: 'Name',
|
||||||
|
@ -397,7 +397,7 @@ export const projectFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: '',
|
default: '',
|
||||||
description: 'If provided, projects will be filtered by whether they have a client.',
|
description: 'If provided, projects will be filtered by whether they have a client',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
|
@ -102,7 +102,7 @@ export const tagFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -126,7 +126,7 @@ export const tagFields: INodeProperties[] = [
|
||||||
maxValue: 500,
|
maxValue: 500,
|
||||||
},
|
},
|
||||||
default: 100,
|
default: 100,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Additional Fields',
|
displayName: 'Additional Fields',
|
||||||
|
|
|
@ -187,7 +187,7 @@ export const taskFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -211,7 +211,7 @@ export const taskFields: INodeProperties[] = [
|
||||||
maxValue: 500,
|
maxValue: 500,
|
||||||
},
|
},
|
||||||
default: 100,
|
default: 100,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Filters',
|
displayName: 'Filters',
|
||||||
|
|
|
@ -112,14 +112,14 @@ export const timeEntryFields: INodeProperties[] = [
|
||||||
loadOptionsMethod: 'loadCustomFieldsForWorkspace',
|
loadOptionsMethod: 'loadCustomFieldsForWorkspace',
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The ID of the field to add custom field to.',
|
description: 'The ID of the field to add custom field to',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Value',
|
displayName: 'Value',
|
||||||
name: 'value',
|
name: 'value',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The value to set on custom field.',
|
description: 'The value to set on custom field',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -235,7 +235,7 @@ export const timeEntryFields: INodeProperties[] = [
|
||||||
name: 'consider-duration-format',
|
name: 'consider-duration-format',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: `If provided, returned timeentry's duration will be rounded to minutes or seconds based on duration format (hh:mm or hh:mm:ss) from workspace settings.`,
|
description: 'If provided, returned timeentry\'s duration will be rounded to minutes or seconds based on duration format (hh:mm or hh:mm:ss) from workspace settings',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Hydrated',
|
displayName: 'Hydrated',
|
||||||
|
@ -315,14 +315,14 @@ export const timeEntryFields: INodeProperties[] = [
|
||||||
loadOptionsMethod: 'loadCustomFieldsForWorkspace',
|
loadOptionsMethod: 'loadCustomFieldsForWorkspace',
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The ID of the field to add custom field to.',
|
description: 'The ID of the field to add custom field to',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Value',
|
displayName: 'Value',
|
||||||
name: 'value',
|
name: 'value',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The value to set on custom field.',
|
description: 'The value to set on custom field',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
|
@ -51,7 +51,7 @@ export const collectionFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
required: true,
|
required: true,
|
||||||
description: 'Name of the collection to operate on.',
|
description: 'Name of the collection to operate on',
|
||||||
},
|
},
|
||||||
|
|
||||||
// Collection:entry:getAll
|
// Collection:entry:getAll
|
||||||
|
@ -70,7 +70,7 @@ export const collectionFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -94,7 +94,7 @@ export const collectionFields: INodeProperties[] = [
|
||||||
maxValue: 500,
|
maxValue: 500,
|
||||||
},
|
},
|
||||||
default: 100,
|
default: 100,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Options',
|
displayName: 'Options',
|
||||||
|
@ -122,7 +122,7 @@ export const collectionFields: INodeProperties[] = [
|
||||||
alwaysOpenEditWindow: true,
|
alwaysOpenEditWindow: true,
|
||||||
},
|
},
|
||||||
placeholder: '_id,name',
|
placeholder: '_id,name',
|
||||||
description: 'Comma-separated list of fields to get.',
|
description: 'Comma-separated list of fields to get',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Filter Query',
|
displayName: 'Filter Query',
|
||||||
|
@ -133,14 +133,14 @@ export const collectionFields: INodeProperties[] = [
|
||||||
alwaysOpenEditWindow: true,
|
alwaysOpenEditWindow: true,
|
||||||
},
|
},
|
||||||
placeholder: '{"name": "Jim"}',
|
placeholder: '{"name": "Jim"}',
|
||||||
description: 'Filter query in <a href="https://jeroen.github.io/mongolite/query-data.html">Mongolite format</a>.',
|
description: 'Filter query in <a href="https://jeroen.github.io/mongolite/query-data.html">Mongolite format</a>',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Language',
|
displayName: 'Language',
|
||||||
name: 'language',
|
name: 'language',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Return normalized language fields.',
|
description: 'Return normalized language fields',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Populate',
|
displayName: 'Populate',
|
||||||
|
@ -148,21 +148,21 @@ export const collectionFields: INodeProperties[] = [
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
required: true,
|
required: true,
|
||||||
default: true,
|
default: true,
|
||||||
description: 'Resolve linked collection items.',
|
description: 'Resolve linked collection items',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'RAW Data',
|
displayName: 'RAW Data',
|
||||||
name: 'rawData',
|
name: 'rawData',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: `Returns the data exactly in the way it got received from the API.`,
|
description: 'Returns the data exactly in the way it got received from the API',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Skip',
|
displayName: 'Skip',
|
||||||
name: 'skip',
|
name: 'skip',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Skip number of entries.',
|
description: 'Skip number of entries',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Sort Query',
|
displayName: 'Sort Query',
|
||||||
|
@ -170,7 +170,7 @@ export const collectionFields: INodeProperties[] = [
|
||||||
type: 'json',
|
type: 'json',
|
||||||
default: '',
|
default: '',
|
||||||
placeholder: '{"price": -1}',
|
placeholder: '{"price": -1}',
|
||||||
description: 'Sort query in <a href="https://jeroen.github.io/mongolite/query-data.html">Mongolite format</a>.',
|
description: 'Sort query in <a href="https://jeroen.github.io/mongolite/query-data.html">Mongolite format</a>',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -192,7 +192,7 @@ export const collectionFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The entry ID.',
|
description: 'The entry ID',
|
||||||
},
|
},
|
||||||
|
|
||||||
// Collection:entry:create
|
// Collection:entry:create
|
||||||
|
@ -213,7 +213,7 @@ export const collectionFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'If new entry fields should be set via the value-key pair UI or JSON.',
|
description: 'If new entry fields should be set via the value-key pair UI or JSON',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Entry Data',
|
displayName: 'Entry Data',
|
||||||
|
@ -237,7 +237,7 @@ export const collectionFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'Entry data to send as JSON.',
|
description: 'Entry data to send as JSON',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Entry Data',
|
displayName: 'Entry Data',
|
||||||
|
@ -271,18 +271,18 @@ export const collectionFields: INodeProperties[] = [
|
||||||
name: 'name',
|
name: 'name',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Name of the field.',
|
description: 'Name of the field',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Value',
|
displayName: 'Value',
|
||||||
name: 'value',
|
name: 'value',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Value of the field.',
|
description: 'Value of the field',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
description: 'Entry data to send.',
|
description: 'Entry data to send',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
|
@ -39,7 +39,7 @@ export const formFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
required: true,
|
required: true,
|
||||||
description: 'Name of the form to operate on.',
|
description: 'Name of the form to operate on',
|
||||||
},
|
},
|
||||||
|
|
||||||
// Form:submit
|
// Form:submit
|
||||||
|
@ -58,7 +58,7 @@ export const formFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'If form fields should be set via the value-key pair UI or JSON.',
|
description: 'If form fields should be set via the value-key pair UI or JSON',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Form Data',
|
displayName: 'Form Data',
|
||||||
|
@ -81,7 +81,7 @@ export const formFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'Form data to send as JSON.',
|
description: 'Form data to send as JSON',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Form Data',
|
displayName: 'Form Data',
|
||||||
|
@ -114,18 +114,18 @@ export const formFields: INodeProperties[] = [
|
||||||
name: 'name',
|
name: 'name',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Name of the field.',
|
description: 'Name of the field',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Value',
|
displayName: 'Value',
|
||||||
name: 'value',
|
name: 'value',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Value of the field.',
|
description: 'Value of the field',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
description: 'Form data to send.',
|
description: 'Form data to send',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
|
@ -41,6 +41,6 @@ export const singletonFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
required: true,
|
required: true,
|
||||||
description: 'Name of the singleton to operate on.',
|
description: 'Name of the singleton to operate on',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
|
@ -61,7 +61,7 @@ export class Coda implements INodeType {
|
||||||
{
|
{
|
||||||
name: 'Control',
|
name: 'Control',
|
||||||
value: 'control',
|
value: 'control',
|
||||||
description: 'Controls provide a user-friendly way to input a value that can affect other parts of the doc.',
|
description: 'Controls provide a user-friendly way to input a value that can affect other parts of the doc',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Formula',
|
name: 'Formula',
|
||||||
|
@ -71,12 +71,12 @@ export class Coda implements INodeType {
|
||||||
{
|
{
|
||||||
name: 'Table',
|
name: 'Table',
|
||||||
value: 'table',
|
value: 'table',
|
||||||
description: `Access data of tables in documents.`,
|
description: 'Access data of tables in documents',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'View',
|
name: 'View',
|
||||||
value: 'view',
|
value: 'view',
|
||||||
description: `Access data of views in documents.`,
|
description: 'Access data of views in documents',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: 'table',
|
default: 'table',
|
||||||
|
|
|
@ -53,7 +53,7 @@ export const controlFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'ID of the doc.',
|
description: 'ID of the doc',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Control ID',
|
displayName: 'Control ID',
|
||||||
|
@ -71,7 +71,7 @@ export const controlFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The control to get the row from.',
|
description: 'The control to get the row from',
|
||||||
},
|
},
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
/* control:getAll */
|
/* control:getAll */
|
||||||
|
@ -95,7 +95,7 @@ export const controlFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'ID of the doc.',
|
description: 'ID of the doc',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Return All',
|
displayName: 'Return All',
|
||||||
|
@ -112,7 +112,7 @@ export const controlFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -136,6 +136,6 @@ export const controlFields: INodeProperties[] = [
|
||||||
maxValue: 100,
|
maxValue: 100,
|
||||||
},
|
},
|
||||||
default: 50,
|
default: 50,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
|
@ -53,7 +53,7 @@ export const formulaFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'ID of the doc.',
|
description: 'ID of the doc',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Formula ID',
|
displayName: 'Formula ID',
|
||||||
|
@ -71,7 +71,7 @@ export const formulaFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The formula to get the row from.',
|
description: 'The formula to get the row from',
|
||||||
},
|
},
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
/* formula:getAll */
|
/* formula:getAll */
|
||||||
|
@ -95,7 +95,7 @@ export const formulaFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'ID of the doc.',
|
description: 'ID of the doc',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Return All',
|
displayName: 'Return All',
|
||||||
|
@ -112,7 +112,7 @@ export const formulaFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -136,6 +136,6 @@ export const formulaFields: INodeProperties[] = [
|
||||||
maxValue: 100,
|
maxValue: 100,
|
||||||
},
|
},
|
||||||
default: 50,
|
default: 50,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
|
@ -78,7 +78,7 @@ export const tableFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'ID of the doc.',
|
description: 'ID of the doc',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Table',
|
displayName: 'Table',
|
||||||
|
@ -102,7 +102,7 @@ export const tableFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The table to create the row in.',
|
description: 'The table to create the row in',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Options',
|
displayName: 'Options',
|
||||||
|
@ -126,7 +126,7 @@ export const tableFields: INodeProperties[] = [
|
||||||
name: 'disableParsing',
|
name: 'disableParsing',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: `If true, the API will not attempt to parse the data in any way.`,
|
description: 'If true, the API will not attempt to parse the data in any way',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Key Columns',
|
displayName: 'Key Columns',
|
||||||
|
@ -159,7 +159,7 @@ export const tableFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'ID of the doc.',
|
description: 'ID of the doc',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Table',
|
displayName: 'Table',
|
||||||
|
@ -183,7 +183,7 @@ export const tableFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The table to get the row from.',
|
description: 'The table to get the row from',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Row ID',
|
displayName: 'Row ID',
|
||||||
|
@ -225,7 +225,7 @@ export const tableFields: INodeProperties[] = [
|
||||||
name: 'rawData',
|
name: 'rawData',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: `Returns the data exactly in the way it got received from the API.`,
|
description: 'Returns the data exactly in the way it got received from the API',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Use Column Names',
|
displayName: 'Use Column Names',
|
||||||
|
@ -253,7 +253,7 @@ export const tableFields: INodeProperties[] = [
|
||||||
value: 'rich',
|
value: 'rich',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
description: `The format that cell values are returned as.`,
|
description: 'The format that cell values are returned as',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -279,7 +279,7 @@ export const tableFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'ID of the doc.',
|
description: 'ID of the doc',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Table',
|
displayName: 'Table',
|
||||||
|
@ -303,7 +303,7 @@ export const tableFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The table to get the rows from.',
|
description: 'The table to get the rows from',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Return All',
|
displayName: 'Return All',
|
||||||
|
@ -320,7 +320,7 @@ export const tableFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -344,7 +344,7 @@ export const tableFields: INodeProperties[] = [
|
||||||
maxValue: 100,
|
maxValue: 100,
|
||||||
},
|
},
|
||||||
default: 50,
|
default: 50,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Options',
|
displayName: 'Options',
|
||||||
|
@ -378,7 +378,7 @@ export const tableFields: INodeProperties[] = [
|
||||||
name: 'rawData',
|
name: 'rawData',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: `Returns the data exactly in the way it got received from the API.`,
|
description: 'Returns the data exactly in the way it got received from the API',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Sort By',
|
displayName: 'Sort By',
|
||||||
|
@ -423,14 +423,14 @@ export const tableFields: INodeProperties[] = [
|
||||||
value: 'rich',
|
value: 'rich',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
description: `The format that cell values are returned as.`,
|
description: 'The format that cell values are returned as',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Visible Only',
|
displayName: 'Visible Only',
|
||||||
name: 'visibleOnly',
|
name: 'visibleOnly',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: `If true, returns only visible rows and columns for the table.`,
|
description: 'If true, returns only visible rows and columns for the table',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -456,7 +456,7 @@ export const tableFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'ID of the doc.',
|
description: 'ID of the doc',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Table',
|
displayName: 'Table',
|
||||||
|
@ -480,7 +480,7 @@ export const tableFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The table to delete the row in.',
|
description: 'The table to delete the row in',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Row ID',
|
displayName: 'Row ID',
|
||||||
|
@ -498,7 +498,7 @@ export const tableFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'Row IDs to delete.',
|
description: 'Row IDs to delete',
|
||||||
},
|
},
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
/* table:pushButton */
|
/* table:pushButton */
|
||||||
|
@ -522,7 +522,7 @@ export const tableFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'ID of the doc.',
|
description: 'ID of the doc',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Table',
|
displayName: 'Table',
|
||||||
|
@ -546,7 +546,7 @@ export const tableFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The table to get the row from.',
|
description: 'The table to get the row from',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Row ID',
|
displayName: 'Row ID',
|
||||||
|
@ -612,7 +612,7 @@ export const tableFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'ID of the doc.',
|
description: 'ID of the doc',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Table',
|
displayName: 'Table',
|
||||||
|
@ -636,7 +636,7 @@ export const tableFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The table to get the row from.',
|
description: 'The table to get the row from',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Column ID',
|
displayName: 'Column ID',
|
||||||
|
@ -654,7 +654,7 @@ export const tableFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The table to get the row from.',
|
description: 'The table to get the row from',
|
||||||
},
|
},
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
/* table:getAllColumns */
|
/* table:getAllColumns */
|
||||||
|
@ -678,7 +678,7 @@ export const tableFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'ID of the doc.',
|
description: 'ID of the doc',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Table',
|
displayName: 'Table',
|
||||||
|
@ -702,7 +702,7 @@ export const tableFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The table to get the row from.',
|
description: 'The table to get the row from',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Return All',
|
displayName: 'Return All',
|
||||||
|
@ -719,7 +719,7 @@ export const tableFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -743,6 +743,6 @@ export const tableFields: INodeProperties[] = [
|
||||||
maxValue: 100,
|
maxValue: 100,
|
||||||
},
|
},
|
||||||
default: 50,
|
default: 50,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
|
@ -78,7 +78,7 @@ export const viewFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'ID of the doc.',
|
description: 'ID of the doc',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'View ID',
|
displayName: 'View ID',
|
||||||
|
@ -96,7 +96,7 @@ export const viewFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The view to get the row from.',
|
description: 'The view to get the row from',
|
||||||
},
|
},
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
/* view:getAll */
|
/* view:getAll */
|
||||||
|
@ -120,7 +120,7 @@ export const viewFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'ID of the doc.',
|
description: 'ID of the doc',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Return All',
|
displayName: 'Return All',
|
||||||
|
@ -137,7 +137,7 @@ export const viewFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -161,7 +161,7 @@ export const viewFields: INodeProperties[] = [
|
||||||
maxValue: 100,
|
maxValue: 100,
|
||||||
},
|
},
|
||||||
default: 50,
|
default: 50,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
/* view:getAllViewRows */
|
/* view:getAllViewRows */
|
||||||
|
@ -185,7 +185,7 @@ export const viewFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'ID of the doc.',
|
description: 'ID of the doc',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'View',
|
displayName: 'View',
|
||||||
|
@ -209,7 +209,7 @@ export const viewFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The table to get the rows from.',
|
description: 'The table to get the rows from',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Return All',
|
displayName: 'Return All',
|
||||||
|
@ -226,7 +226,7 @@ export const viewFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -250,7 +250,7 @@ export const viewFields: INodeProperties[] = [
|
||||||
maxValue: 100,
|
maxValue: 100,
|
||||||
},
|
},
|
||||||
default: 50,
|
default: 50,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Options',
|
displayName: 'Options',
|
||||||
|
@ -305,14 +305,14 @@ export const viewFields: INodeProperties[] = [
|
||||||
value: 'rich',
|
value: 'rich',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
description: `The format that cell values are returned as.`,
|
description: 'The format that cell values are returned as',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'RAW Data',
|
displayName: 'RAW Data',
|
||||||
name: 'rawData',
|
name: 'rawData',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: `Returns the data exactly in the way it got received from the API.`,
|
description: 'Returns the data exactly in the way it got received from the API',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Sort By',
|
displayName: 'Sort By',
|
||||||
|
@ -355,7 +355,7 @@ export const viewFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'ID of the doc.',
|
description: 'ID of the doc',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'View',
|
displayName: 'View',
|
||||||
|
@ -379,7 +379,7 @@ export const viewFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The table to get the rows from.',
|
description: 'The table to get the rows from',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Return All',
|
displayName: 'Return All',
|
||||||
|
@ -396,7 +396,7 @@ export const viewFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -420,7 +420,7 @@ export const viewFields: INodeProperties[] = [
|
||||||
maxValue: 100,
|
maxValue: 100,
|
||||||
},
|
},
|
||||||
default: 50,
|
default: 50,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
/* view:deleteViewRow */
|
/* view:deleteViewRow */
|
||||||
|
@ -444,7 +444,7 @@ export const viewFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'ID of the doc.',
|
description: 'ID of the doc',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'View',
|
displayName: 'View',
|
||||||
|
@ -468,7 +468,7 @@ export const viewFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The view to get the row from.',
|
description: 'The view to get the row from',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Row',
|
displayName: 'Row',
|
||||||
|
@ -492,7 +492,7 @@ export const viewFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The view to get the row from.',
|
description: 'The view to get the row from',
|
||||||
},
|
},
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
/* view:pushViewButton */
|
/* view:pushViewButton */
|
||||||
|
@ -516,7 +516,7 @@ export const viewFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'ID of the doc.',
|
description: 'ID of the doc',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'View',
|
displayName: 'View',
|
||||||
|
@ -540,7 +540,7 @@ export const viewFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The view to get the row from.',
|
description: 'The view to get the row from',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Row',
|
displayName: 'Row',
|
||||||
|
@ -564,7 +564,7 @@ export const viewFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The view to get the row from.',
|
description: 'The view to get the row from',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Column',
|
displayName: 'Column',
|
||||||
|
@ -612,7 +612,7 @@ export const viewFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'ID of the doc.',
|
description: 'ID of the doc',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'View',
|
displayName: 'View',
|
||||||
|
@ -636,7 +636,7 @@ export const viewFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The view to get the row from.',
|
description: 'The view to get the row from',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Row',
|
displayName: 'Row',
|
||||||
|
@ -660,7 +660,7 @@ export const viewFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The view to get the row from.',
|
description: 'The view to get the row from',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Key Name',
|
displayName: 'Key Name',
|
||||||
|
@ -678,7 +678,7 @@ export const viewFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The view to get the row from.',
|
description: 'The view to get the row from',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Options',
|
displayName: 'Options',
|
||||||
|
@ -702,7 +702,7 @@ export const viewFields: INodeProperties[] = [
|
||||||
name: 'disableParsing',
|
name: 'disableParsing',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: `If true, the API will not attempt to parse the data in any way.`,
|
description: 'If true, the API will not attempt to parse the data in any way',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
|
@ -89,7 +89,7 @@ export const coinFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: 'coinId',
|
default: 'coinId',
|
||||||
description: 'Search by coin ID or contract address.',
|
description: 'Search by coin ID or contract address',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Coin ID',
|
displayName: 'Coin ID',
|
||||||
|
@ -232,7 +232,7 @@ export const coinFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: 'ethereum',
|
default: 'ethereum',
|
||||||
description: 'The id of the platform issuing tokens.',
|
description: 'The id of the platform issuing tokens',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Contract address',
|
displayName: 'Contract address',
|
||||||
|
@ -254,7 +254,7 @@ export const coinFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'Token\'s contract address.',
|
description: 'Token\'s contract address',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Contract addresses',
|
displayName: 'Contract addresses',
|
||||||
|
@ -275,7 +275,7 @@ export const coinFields: INodeProperties[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The contract address of tokens, comma-separated.',
|
description: 'The contract address of tokens, comma-separated',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Base Currency',
|
displayName: 'Base Currency',
|
||||||
|
@ -400,7 +400,7 @@ export const coinFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Return data for this many days in the past from now.',
|
description: 'Return data for this many days in the past from now',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Date',
|
displayName: 'Date',
|
||||||
|
@ -418,7 +418,7 @@ export const coinFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The date of data snapshot.',
|
description: 'The date of data snapshot',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Return All',
|
displayName: 'Return All',
|
||||||
|
@ -437,7 +437,7 @@ export const coinFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -463,7 +463,7 @@ export const coinFields: INodeProperties[] = [
|
||||||
maxValue: 500,
|
maxValue: 500,
|
||||||
},
|
},
|
||||||
default: 100,
|
default: 100,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Options',
|
displayName: 'Options',
|
||||||
|
@ -488,7 +488,7 @@ export const coinFields: INodeProperties[] = [
|
||||||
type: 'string',
|
type: 'string',
|
||||||
placeholder: 'bitcoin',
|
placeholder: 'bitcoin',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Filter results by comma-separated list of coin ID.',
|
description: 'Filter results by comma-separated list of coin ID',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Category',
|
displayName: 'Category',
|
||||||
|
@ -501,7 +501,7 @@ export const coinFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: 'decentralized_finance_defi',
|
default: 'decentralized_finance_defi',
|
||||||
description: 'Filter by coin category.',
|
description: 'Filter by coin category',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Order',
|
displayName: 'Order',
|
||||||
|
@ -546,14 +546,14 @@ export const coinFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Sort results by field.',
|
description: 'Sort results by field',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Sparkline',
|
displayName: 'Sparkline',
|
||||||
name: 'sparkline',
|
name: 'sparkline',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Include sparkline 7 days data.',
|
description: 'Include sparkline 7 days data',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Price Change Percentage',
|
displayName: 'Price Change Percentage',
|
||||||
|
@ -590,7 +590,7 @@ export const coinFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: [],
|
default: [],
|
||||||
description: 'Include price change percentage for specified times.',
|
description: 'Include price change percentage for specified times',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -662,14 +662,14 @@ export const coinFields: INodeProperties[] = [
|
||||||
loadOptionsMethod: 'getExchanges',
|
loadOptionsMethod: 'getExchanges',
|
||||||
},
|
},
|
||||||
default: [],
|
default: [],
|
||||||
description: 'Filter results by exchange IDs.',
|
description: 'Filter results by exchange IDs',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Include Exchange Logo',
|
displayName: 'Include Exchange Logo',
|
||||||
name: 'include_exchange_logo',
|
name: 'include_exchange_logo',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Include exchange logo.',
|
description: 'Include exchange logo',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Order',
|
displayName: 'Order',
|
||||||
|
@ -690,7 +690,7 @@ export const coinFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: 'trust_score_desc',
|
default: 'trust_score_desc',
|
||||||
description: 'Sorts results by the selected rule.',
|
description: 'Sorts results by the selected rule',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -716,7 +716,7 @@ export const coinFields: INodeProperties[] = [
|
||||||
name: 'localization',
|
name: 'localization',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: true,
|
default: true,
|
||||||
description: 'Set to false to exclude localized languages in response.',
|
description: 'Set to false to exclude localized languages in response',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -742,28 +742,28 @@ export const coinFields: INodeProperties[] = [
|
||||||
name: 'community_data',
|
name: 'community_data',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Include community data.',
|
description: 'Include community data',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Developer data',
|
displayName: 'Developer data',
|
||||||
name: 'developer_data',
|
name: 'developer_data',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Include developer data.',
|
description: 'Include developer data',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Localization',
|
displayName: 'Localization',
|
||||||
name: 'localization',
|
name: 'localization',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Include all localized languages in response.',
|
description: 'Include all localized languages in response',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Market data',
|
displayName: 'Market data',
|
||||||
name: 'market_data',
|
name: 'market_data',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Include market data.',
|
description: 'Include market data',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Sparkline',
|
displayName: 'Sparkline',
|
||||||
|
@ -777,7 +777,7 @@ export const coinFields: INodeProperties[] = [
|
||||||
name: 'tickers',
|
name: 'tickers',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Include tickers data.',
|
description: 'Include tickers data',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
|
@ -41,7 +41,7 @@ export const eventFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -65,7 +65,7 @@ export const eventFields: INodeProperties[] = [
|
||||||
maxValue: 500,
|
maxValue: 500,
|
||||||
},
|
},
|
||||||
default: 100,
|
default: 100,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Options',
|
displayName: 'Options',
|
||||||
|
@ -92,21 +92,21 @@ export const eventFields: INodeProperties[] = [
|
||||||
loadOptionsMethod: 'getEventCountryCodes',
|
loadOptionsMethod: 'getEventCountryCodes',
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Country code of event.',
|
description: 'Country code of event',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'From date',
|
displayName: 'From date',
|
||||||
name: 'from_date',
|
name: 'from_date',
|
||||||
type: 'dateTime',
|
type: 'dateTime',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Lists events after this date.',
|
description: 'Lists events after this date',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'To date',
|
displayName: 'To date',
|
||||||
name: 'to_date',
|
name: 'to_date',
|
||||||
type: 'dateTime',
|
type: 'dateTime',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Lists events before this date.',
|
description: 'Lists events before this date',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Type',
|
displayName: 'Type',
|
||||||
|
@ -116,14 +116,14 @@ export const eventFields: INodeProperties[] = [
|
||||||
loadOptionsMethod: 'getEventTypes',
|
loadOptionsMethod: 'getEventTypes',
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Type of event.',
|
description: 'Type of event',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Upcoming events only',
|
displayName: 'Upcoming events only',
|
||||||
name: 'upcoming_events_only',
|
name: 'upcoming_events_only',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: true,
|
default: true,
|
||||||
description: 'Lists only upcoming events.',
|
description: 'Lists only upcoming events',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
|
@ -159,7 +159,7 @@ export class Compression implements INodeType {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
placeholder: '',
|
placeholder: '',
|
||||||
description: 'Name of the binary property to which to write the data of the compressed files.',
|
description: 'Name of the binary property to which to write the data of the compressed files',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Output Prefix',
|
displayName: 'Output Prefix',
|
||||||
|
|
|
@ -69,7 +69,7 @@ export const fields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -93,7 +93,7 @@ export const fields: INodeProperties[] = [
|
||||||
maxValue: 500,
|
maxValue: 500,
|
||||||
},
|
},
|
||||||
default: 100,
|
default: 100,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Asset ID',
|
displayName: 'Asset ID',
|
||||||
|
@ -197,7 +197,7 @@ export const fields: INodeProperties[] = [
|
||||||
name: 'rawData',
|
name: 'rawData',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If the data should be returned RAW instead of parsed.',
|
description: 'If the data should be returned RAW instead of parsed',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
|
@ -88,7 +88,7 @@ export const fields: INodeProperties[] = [
|
||||||
name: 'rawData',
|
name: 'rawData',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If the data should be returned RAW instead of parsed.',
|
description: 'If the data should be returned RAW instead of parsed',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
|
@ -69,7 +69,7 @@ export const fields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -93,7 +93,7 @@ export const fields: INodeProperties[] = [
|
||||||
maxValue: 500,
|
maxValue: 500,
|
||||||
},
|
},
|
||||||
default: 100,
|
default: 100,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Additional Fields',
|
displayName: 'Additional Fields',
|
||||||
|
@ -187,7 +187,7 @@ export const fields: INodeProperties[] = [
|
||||||
name: 'rawData',
|
name: 'rawData',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If the data should be returned RAW instead of parsed.',
|
description: 'If the data should be returned RAW instead of parsed',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
|
@ -65,7 +65,7 @@ export const fields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
description: 'If all results should be returned or only up to a given limit.',
|
description: 'If all results should be returned or only up to a given limit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Limit',
|
displayName: 'Limit',
|
||||||
|
@ -89,6 +89,6 @@ export const fields: INodeProperties[] = [
|
||||||
maxValue: 500,
|
maxValue: 500,
|
||||||
},
|
},
|
||||||
default: 100,
|
default: 100,
|
||||||
description: 'How many results to return.',
|
description: 'How many results to return',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
|
@ -4,7 +4,7 @@ export const fields: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
displayName: 'Search Parameters',
|
displayName: 'Search Parameters',
|
||||||
name: 'search_parameters',
|
name: 'search_parameters',
|
||||||
description: 'You can use a variety of query parameters to search and filter items.',
|
description: 'You can use a variety of query parameters to search and filter items',
|
||||||
placeholder: 'Add parameter',
|
placeholder: 'Add parameter',
|
||||||
type: 'fixedCollection',
|
type: 'fixedCollection',
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
|
@ -21,14 +21,14 @@ export const fields: INodeProperties[] = [
|
||||||
name: 'name',
|
name: 'name',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Name of the search parameter to set.',
|
description: 'Name of the search parameter to set',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Parameter Value',
|
displayName: 'Parameter Value',
|
||||||
name: 'value',
|
name: 'value',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Value of the search parameter to set.',
|
description: 'Value of the search parameter to set',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
|
@ -55,7 +55,7 @@ export class ConvertKitTrigger implements INodeType {
|
||||||
type: 'options',
|
type: 'options',
|
||||||
required: true,
|
required: true,
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The events that can trigger the webhook and whether they are enabled.',
|
description: 'The events that can trigger the webhook and whether they are enabled',
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
name: 'Form Subscribe',
|
name: 'Form Subscribe',
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue