@swimlane/turbine-sdk 2.0.1-next.72 → 2.0.1-next.76
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 +32 -24
- 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.0.1-next.
|
|
38
|
+
@swimlane/turbine-sdk/2.0.1-next.76+267ad21 linux-x64 node-v16.18.0
|
|
39
39
|
$ tsdk --help [COMMAND]
|
|
40
40
|
USAGE
|
|
41
41
|
$ tsdk COMMAND
|
|
@@ -691,15 +691,17 @@ Use to generate and store signing keys in Turbine
|
|
|
691
691
|
```
|
|
692
692
|
USAGE
|
|
693
693
|
$ tsdk turbine connector keys generate --turbine-url <value> [-u <value>] [-p <value>] [--signing-password <value>] [--key-name
|
|
694
|
-
<value>] [-h]
|
|
694
|
+
<value>] [-b] [-h]
|
|
695
695
|
|
|
696
696
|
FLAGS
|
|
697
|
-
-
|
|
698
|
-
|
|
699
|
-
-
|
|
700
|
-
--
|
|
701
|
-
--
|
|
702
|
-
--
|
|
697
|
+
-b, --bypass-certificate-check disable certificate validation for Turbine instance (ENV:
|
|
698
|
+
TURBINE_BYPASS_CERTIFICATE_CHECK)
|
|
699
|
+
-h, --help Show CLI help.
|
|
700
|
+
-p, --password=<value> Turbine password (ENV: TURBINE_PASSWORD)
|
|
701
|
+
-u, --username=<value> Turbine username
|
|
702
|
+
--key-name=<value> name used for the key (default: username)
|
|
703
|
+
--signing-password=<value> password used for the private key (ENV: TURBINE_SIGNING_PASSWORD)
|
|
704
|
+
--turbine-url=<value> (required) the url of the turbine instance [https://turbine.acme.com]
|
|
703
705
|
|
|
704
706
|
DESCRIPTION
|
|
705
707
|
Use to generate and store signing keys in Turbine
|
|
@@ -726,13 +728,15 @@ Use to list remote keys
|
|
|
726
728
|
|
|
727
729
|
```
|
|
728
730
|
USAGE
|
|
729
|
-
$ tsdk turbine connector keys list remote --turbine-url <value> [-u <value>] [-p <value>] [-h]
|
|
731
|
+
$ tsdk turbine connector keys list remote --turbine-url <value> [-u <value>] [-p <value>] [-b] [-h]
|
|
730
732
|
|
|
731
733
|
FLAGS
|
|
732
|
-
-
|
|
733
|
-
|
|
734
|
-
-
|
|
735
|
-
--
|
|
734
|
+
-b, --bypass-certificate-check disable certificate validation for Turbine instance (ENV:
|
|
735
|
+
TURBINE_BYPASS_CERTIFICATE_CHECK)
|
|
736
|
+
-h, --help Show CLI help.
|
|
737
|
+
-p, --password=<value> Turbine password (ENV: TURBINE_PASSWORD)
|
|
738
|
+
-u, --username=<value> Turbine username
|
|
739
|
+
--turbine-url=<value> (required) the url of the turbine instance [https://turbine.acme.com]
|
|
736
740
|
|
|
737
741
|
DESCRIPTION
|
|
738
742
|
Use to list remote keys
|
|
@@ -744,14 +748,16 @@ Use to push an integration to Turbine
|
|
|
744
748
|
|
|
745
749
|
```
|
|
746
750
|
USAGE
|
|
747
|
-
$ tsdk turbine connector push -f <value> --turbine-url <value> [-u <value>] [-p <value>] [-h]
|
|
751
|
+
$ tsdk turbine connector push -f <value> --turbine-url <value> [-u <value>] [-p <value>] [-b] [-h]
|
|
748
752
|
|
|
749
753
|
FLAGS
|
|
750
|
-
-
|
|
751
|
-
|
|
752
|
-
-
|
|
753
|
-
-
|
|
754
|
-
--
|
|
754
|
+
-b, --bypass-certificate-check disable certificate validation for Turbine instance (ENV:
|
|
755
|
+
TURBINE_BYPASS_CERTIFICATE_CHECK)
|
|
756
|
+
-f, --file=<value> (required) path of the file to be uploaded to Turbine
|
|
757
|
+
-h, --help Show CLI help.
|
|
758
|
+
-p, --password=<value> Turbine password (ENV: TURBINE_PASSWORD)
|
|
759
|
+
-u, --username=<value> Turbine username
|
|
760
|
+
--turbine-url=<value> (required) the url of the turbine instance [https://turbine.acme.com]
|
|
755
761
|
|
|
756
762
|
DESCRIPTION
|
|
757
763
|
Use to push an integration to Turbine
|
|
@@ -763,13 +769,15 @@ Use to login to Turbine
|
|
|
763
769
|
|
|
764
770
|
```
|
|
765
771
|
USAGE
|
|
766
|
-
$ tsdk turbine login --turbine-url <value> [-u <value>] [-p <value>] [-h]
|
|
772
|
+
$ tsdk turbine login --turbine-url <value> [-u <value>] [-p <value>] [-b] [-h]
|
|
767
773
|
|
|
768
774
|
FLAGS
|
|
769
|
-
-
|
|
770
|
-
|
|
771
|
-
-
|
|
772
|
-
--
|
|
775
|
+
-b, --bypass-certificate-check disable certificate validation for Turbine instance (ENV:
|
|
776
|
+
TURBINE_BYPASS_CERTIFICATE_CHECK)
|
|
777
|
+
-h, --help Show CLI help.
|
|
778
|
+
-p, --password=<value> Turbine password (ENV: TURBINE_PASSWORD)
|
|
779
|
+
-u, --username=<value> Turbine username
|
|
780
|
+
--turbine-url=<value> (required) the url of the turbine instance [https://turbine.acme.com]
|
|
773
781
|
|
|
774
782
|
DESCRIPTION
|
|
775
783
|
Use to login to Turbine
|
package/oclif.manifest.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"2.0.1-next.
|
|
1
|
+
{"version":"2.0.1-next.76+267ad21","commands":{}}
|
package/package.json
CHANGED
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
"@oclif/plugin-version": "1.0.4",
|
|
17
17
|
"@oclif/plugin-warn-if-update-available": "2.0.4",
|
|
18
18
|
"@oclif/plugin-which": "2.1.0",
|
|
19
|
-
"@sw-tsdk/core": "^2.0.1-next.
|
|
20
|
-
"@sw-tsdk/plugin-connector": "^2.0.1-next.
|
|
21
|
-
"@sw-tsdk/plugin-turbine": "^2.0.1-next.
|
|
19
|
+
"@sw-tsdk/core": "^2.0.1-next.76+267ad21",
|
|
20
|
+
"@sw-tsdk/plugin-connector": "^2.0.1-next.76+267ad21",
|
|
21
|
+
"@sw-tsdk/plugin-turbine": "^2.0.1-next.76+267ad21",
|
|
22
22
|
"fs-extra": "10.0.1",
|
|
23
23
|
"inquirer": "8.2.2",
|
|
24
24
|
"npmlog": "6.0.1",
|
|
@@ -104,6 +104,6 @@
|
|
|
104
104
|
"dev:setup": "npm link"
|
|
105
105
|
},
|
|
106
106
|
"types": "lib/index.d.ts",
|
|
107
|
-
"version": "2.0.1-next.
|
|
108
|
-
"gitHead": "
|
|
107
|
+
"version": "2.0.1-next.76+267ad21",
|
|
108
|
+
"gitHead": "267ad2117121112403645c366588b7c198f8c83a"
|
|
109
109
|
}
|