@swimlane/turbine-sdk 2.18.0 → 2.20.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 +82 -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.0 linux-x64 node-v16.20.2
|
|
39
39
|
$ tsdk --help [COMMAND]
|
|
40
40
|
USAGE
|
|
41
41
|
$ tsdk COMMAND
|
|
@@ -64,6 +64,10 @@ USAGE
|
|
|
64
64
|
* [`tsdk connector sign`](#tsdk-connector-sign)
|
|
65
65
|
* [`tsdk connector update`](#tsdk-connector-update)
|
|
66
66
|
* [`tsdk connector validate`](#tsdk-connector-validate)
|
|
67
|
+
* [`tsdk description action`](#tsdk-description-action)
|
|
68
|
+
* [`tsdk description actions`](#tsdk-description-actions)
|
|
69
|
+
* [`tsdk description component`](#tsdk-description-component)
|
|
70
|
+
* [`tsdk description connector`](#tsdk-description-connector)
|
|
67
71
|
* [`tsdk help [COMMANDS]`](#tsdk-help-commands)
|
|
68
72
|
* [`tsdk plugins`](#tsdk-plugins)
|
|
69
73
|
* [`tsdk plugins:install PLUGIN...`](#tsdk-pluginsinstall-plugin)
|
|
@@ -546,6 +550,83 @@ DESCRIPTION
|
|
|
546
550
|
Use to validate an integration
|
|
547
551
|
```
|
|
548
552
|
|
|
553
|
+
## `tsdk description action`
|
|
554
|
+
|
|
555
|
+
Use to generate action description
|
|
556
|
+
|
|
557
|
+
```
|
|
558
|
+
USAGE
|
|
559
|
+
$ tsdk description action [-h] [-i <value>] [-s] [-d <value>] [-a <value>]
|
|
560
|
+
|
|
561
|
+
FLAGS
|
|
562
|
+
-a, --action=<value> Generate description for specific action
|
|
563
|
+
-d, --directory=<value> [default: ./] current directory to mount
|
|
564
|
+
-h, --help Show CLI help.
|
|
565
|
+
-i, --image=<value> image to use
|
|
566
|
+
-s, --skip-pull skips pulling the image
|
|
567
|
+
|
|
568
|
+
DESCRIPTION
|
|
569
|
+
Use to generate action description
|
|
570
|
+
```
|
|
571
|
+
|
|
572
|
+
## `tsdk description actions`
|
|
573
|
+
|
|
574
|
+
Use to generate description for all actions
|
|
575
|
+
|
|
576
|
+
```
|
|
577
|
+
USAGE
|
|
578
|
+
$ tsdk description actions [-h] [-i <value>] [-s] [-d <value>]
|
|
579
|
+
|
|
580
|
+
FLAGS
|
|
581
|
+
-d, --directory=<value> [default: ./] current directory to mount
|
|
582
|
+
-h, --help Show CLI help.
|
|
583
|
+
-i, --image=<value> image to use
|
|
584
|
+
-s, --skip-pull skips pulling the image
|
|
585
|
+
|
|
586
|
+
DESCRIPTION
|
|
587
|
+
Use to generate description for all actions
|
|
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
|
+
|
|
612
|
+
## `tsdk description connector`
|
|
613
|
+
|
|
614
|
+
Use to generate connector descriptions
|
|
615
|
+
|
|
616
|
+
```
|
|
617
|
+
USAGE
|
|
618
|
+
$ tsdk description connector [-h] [-i <value>] [-s] [-d <value>]
|
|
619
|
+
|
|
620
|
+
FLAGS
|
|
621
|
+
-d, --directory=<value> [default: ./] current directory to mount
|
|
622
|
+
-h, --help Show CLI help.
|
|
623
|
+
-i, --image=<value> image to use
|
|
624
|
+
-s, --skip-pull skips pulling the image
|
|
625
|
+
|
|
626
|
+
DESCRIPTION
|
|
627
|
+
Use to generate connector descriptions
|
|
628
|
+
```
|
|
629
|
+
|
|
549
630
|
## `tsdk help [COMMANDS]`
|
|
550
631
|
|
|
551
632
|
Display help for tsdk.
|
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.0",
|
|
20
|
+
"@sw-tsdk/plugin-connector": "^2.20.0",
|
|
21
|
+
"@sw-tsdk/plugin-turbine": "^2.20.0",
|
|
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.0",
|
|
108
|
+
"gitHead": "24136935b8debbbebd3be6563429c11e1d78f85b"
|
|
109
109
|
}
|