@swimlane/turbine-sdk 2.19.0 → 2.20.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.
- package/README.md +24 -1
- package/oclif.manifest.json +1 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -35,7 +35,7 @@ $ npm install -g @swimlane/turbine-sdk
|
|
|
35
35
|
$ tsdk COMMAND
|
|
36
36
|
running command...
|
|
37
37
|
$ tsdk (--version|-v)
|
|
38
|
-
@swimlane/turbine-sdk/2.
|
|
38
|
+
@swimlane/turbine-sdk/2.20.1 linux-x64 node-v16.20.2
|
|
39
39
|
$ tsdk --help [COMMAND]
|
|
40
40
|
USAGE
|
|
41
41
|
$ tsdk COMMAND
|
|
@@ -66,6 +66,7 @@ USAGE
|
|
|
66
66
|
* [`tsdk connector validate`](#tsdk-connector-validate)
|
|
67
67
|
* [`tsdk description action`](#tsdk-description-action)
|
|
68
68
|
* [`tsdk description actions`](#tsdk-description-actions)
|
|
69
|
+
* [`tsdk description component`](#tsdk-description-component)
|
|
69
70
|
* [`tsdk description connector`](#tsdk-description-connector)
|
|
70
71
|
* [`tsdk help [COMMANDS]`](#tsdk-help-commands)
|
|
71
72
|
* [`tsdk plugins`](#tsdk-plugins)
|
|
@@ -586,6 +587,28 @@ DESCRIPTION
|
|
|
586
587
|
Use to generate description for all actions
|
|
587
588
|
```
|
|
588
589
|
|
|
590
|
+
## `tsdk description component`
|
|
591
|
+
|
|
592
|
+
Use to generate component descriptions
|
|
593
|
+
|
|
594
|
+
```
|
|
595
|
+
USAGE
|
|
596
|
+
$ tsdk description component [-h] [-i <value>] [-s] [-d <value>] [-c <value>] [-t <value>] [-v <value>] [-p <value>]
|
|
597
|
+
|
|
598
|
+
FLAGS
|
|
599
|
+
-c, --componentName=<value> component name
|
|
600
|
+
-d, --directory=<value> [default: ./] current directory to mount
|
|
601
|
+
-h, --help Show CLI help.
|
|
602
|
+
-i, --image=<value> image to use
|
|
603
|
+
-p, --connectorLocalPath=<value> local path to connector
|
|
604
|
+
-s, --skip-pull skips pulling the image
|
|
605
|
+
-t, --componentType=<value> [default: ingestion] ingestion | enrichment | remediation
|
|
606
|
+
-v, --componentVariety=<value> [default: classic] classic | canvas
|
|
607
|
+
|
|
608
|
+
DESCRIPTION
|
|
609
|
+
Use to generate component descriptions
|
|
610
|
+
```
|
|
611
|
+
|
|
589
612
|
## `tsdk description connector`
|
|
590
613
|
|
|
591
614
|
Use to generate connector descriptions
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
"@oclif/plugin-version": "1.3.4",
|
|
17
17
|
"@oclif/plugin-warn-if-update-available": "2.0.37",
|
|
18
18
|
"@oclif/plugin-which": "2.2.21",
|
|
19
|
-
"@sw-tsdk/core": "^2.
|
|
20
|
-
"@sw-tsdk/plugin-connector": "^2.
|
|
21
|
-
"@sw-tsdk/plugin-turbine": "^2.
|
|
19
|
+
"@sw-tsdk/core": "^2.20.1",
|
|
20
|
+
"@sw-tsdk/plugin-connector": "^2.20.1",
|
|
21
|
+
"@sw-tsdk/plugin-turbine": "^2.20.1",
|
|
22
22
|
"fs-extra": "11.1.1",
|
|
23
23
|
"inquirer": "8.2.2",
|
|
24
24
|
"npmlog": "7.0.1",
|
|
@@ -104,6 +104,6 @@
|
|
|
104
104
|
"dev:setup": "npm link"
|
|
105
105
|
},
|
|
106
106
|
"types": "lib/index.d.ts",
|
|
107
|
-
"version": "2.
|
|
108
|
-
"gitHead": "
|
|
107
|
+
"version": "2.20.1",
|
|
108
|
+
"gitHead": "dfc66023ec19995d81a4d30012dd2edc70aaecb9"
|
|
109
109
|
}
|