n8n-node-dev 0.67.0 → 0.68.0
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.
- package/README.md +10 -11
- package/oclif.manifest.json +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -217,19 +217,18 @@ The following properties can be set in the node property options.
|
|
|
217
217
|
|
|
218
218
|
All properties are optional. However, most only work when the node-property is of a specfic type.
|
|
219
219
|
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
220
|
+
- **alwaysOpenEditWindow** [type: string]: If set then the "Editor Window" will always open when the user tries to edit the field. Helpful if long text is typically used in the property.
|
|
221
|
+
- **loadOptionsMethod** [type: options]: Method to use to load options from an external service
|
|
222
|
+
- **maxValue** [type: number]: Maximum value of the number
|
|
223
|
+
- **minValue** [type: number]: Minimum value of the number
|
|
224
|
+
- **multipleValues** [type: all]: If set the property gets turned into an Array and the user can add multiple values
|
|
225
|
+
- **multipleValueButtonText** [type: all]: Custom text for add button in case "multipleValues" got set
|
|
226
|
+
- **numberPrecision** [type: number]: The precision of the number. By default it is "0" and will so only allow integers.
|
|
227
|
+
- **password** [type: string]: If a password field should be displayed (normally only used by credentials because all node data is not encrypted and get saved in clear-text)
|
|
228
|
+
- **rows** [type: string]: Number of rows the input field should have. By default it is "1"
|
|
230
229
|
|
|
231
230
|
## License
|
|
232
231
|
|
|
233
232
|
n8n is [fair-code](http://faircode.io) distributed under the [**Sustainable Use License**](https://github.com/n8n-io/n8n/blob/master/packages/cli/LICENSE.md).
|
|
234
233
|
|
|
235
|
-
Additional information
|
|
234
|
+
Additional information about the license can be found in the [docs](https://docs.n8n.io/reference/license/).
|
package/oclif.manifest.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"0.
|
|
1
|
+
{"version":"0.68.0","commands":{"build":{"id":"build","description":"Builds credentials and nodes and copies it to n8n custom extension folder","pluginName":"n8n-node-dev","pluginType":"core","aliases":[],"examples":["$ n8n-node-dev build","$ n8n-node-dev build --destination ~/n8n-nodes","$ n8n-node-dev build --watch"],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"show CLI help","allowNo":false},"destination":{"name":"destination","type":"option","char":"d","description":"The path to copy the compiles files to [default: /home/user/.n8n/custom]"},"watch":{"name":"watch","type":"boolean","description":"Starts in watch mode and automatically builds and copies file whenever they change","allowNo":false}},"args":[]},"new":{"id":"new","description":"Create new credentials/node","pluginName":"n8n-node-dev","pluginType":"core","aliases":[],"examples":["$ n8n-node-dev new"],"flags":{},"args":[]}}}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-node-dev",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.68.0",
|
|
4
4
|
"description": "CLI to simplify n8n credentials/node development",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"homepage": "https://n8n.io",
|
|
@@ -60,8 +60,8 @@
|
|
|
60
60
|
"change-case": "^4.1.1",
|
|
61
61
|
"copyfiles": "^2.1.1",
|
|
62
62
|
"inquirer": "^7.0.1",
|
|
63
|
-
"n8n-core": "~0.
|
|
64
|
-
"n8n-workflow": "~0.
|
|
63
|
+
"n8n-core": "~0.129.0",
|
|
64
|
+
"n8n-workflow": "~0.111.0",
|
|
65
65
|
"oauth-1.0a": "^2.2.6",
|
|
66
66
|
"replace-in-file": "^6.0.0",
|
|
67
67
|
"request": "^2.88.2",
|