n8n-nodes-pinterest 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -122,14 +122,18 @@ class PinterestCookie {
|
|
|
122
122
|
name: 'title',
|
|
123
123
|
type: 'string',
|
|
124
124
|
default: '',
|
|
125
|
+
typeOptions: { maxLength: 100 },
|
|
125
126
|
displayOptions: { show: { resource: ['pin'], operation: ['create'] } },
|
|
127
|
+
description: 'Maximum 100 characters',
|
|
126
128
|
},
|
|
127
129
|
{
|
|
128
130
|
displayName: 'Description',
|
|
129
131
|
name: 'description',
|
|
130
132
|
type: 'string',
|
|
131
133
|
default: '',
|
|
134
|
+
typeOptions: { maxLength: 800 },
|
|
132
135
|
displayOptions: { show: { resource: ['pin'], operation: ['create'] } },
|
|
136
|
+
description: 'Maximum 800 characters',
|
|
133
137
|
},
|
|
134
138
|
{
|
|
135
139
|
displayName: 'Link',
|