@swimlane/turbine-sdk 3.11.1 → 3.11.3
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 +11 -11
- package/oclif.manifest.json +1 -1
- package/package.json +10 -6
package/README.md
CHANGED
|
@@ -66,7 +66,7 @@ $ npm install -g @swimlane/turbine-sdk
|
|
|
66
66
|
$ tsdk COMMAND
|
|
67
67
|
running command...
|
|
68
68
|
$ tsdk (--version|-v)
|
|
69
|
-
@swimlane/turbine-sdk/3.11.
|
|
69
|
+
@swimlane/turbine-sdk/3.11.3 linux-x64 node-v18.20.8
|
|
70
70
|
$ tsdk --help [COMMAND]
|
|
71
71
|
USAGE
|
|
72
72
|
$ tsdk COMMAND
|
|
@@ -706,19 +706,19 @@ Convert scripts and forked plugins from Swimlane V10x to connectors.
|
|
|
706
706
|
|
|
707
707
|
```
|
|
708
708
|
USAGE
|
|
709
|
-
$ tsdk migrator convert
|
|
709
|
+
$ tsdk migrator convert -t <value> [-s <value>] [--vendor <value>] [--product <value>] [--description <value>]
|
|
710
710
|
[--author <value>] [--authorEmail <value>] [--homepage <value>] [-h]
|
|
711
711
|
|
|
712
712
|
FLAGS
|
|
713
|
-
-
|
|
714
|
-
-
|
|
715
|
-
-t, --toDirectory=<value>
|
|
716
|
-
--author=<value>
|
|
717
|
-
--authorEmail=<value>
|
|
718
|
-
--description=<value>
|
|
719
|
-
--homepage=<value>
|
|
720
|
-
--product=<value>
|
|
721
|
-
--vendor=<value>
|
|
713
|
+
-h, --help Show CLI help.
|
|
714
|
+
-s, --source=<value> [default: ./] Source zip of the 10X export.
|
|
715
|
+
-t, --toDirectory=<value> (required) Root directory of the destination repository.
|
|
716
|
+
--author=<value> Connector Author
|
|
717
|
+
--authorEmail=<value> Connector Author Email
|
|
718
|
+
--description=<value> Description (e.g. CrowdStrike Host Query API)
|
|
719
|
+
--homepage=<value> Connector Author Support URL
|
|
720
|
+
--product=<value> Product (e.g. Falcon)
|
|
721
|
+
--vendor=<value> Vendor (e.g. CrowdStrike)
|
|
722
722
|
|
|
723
723
|
DESCRIPTION
|
|
724
724
|
Convert scripts and forked plugins from Swimlane V10x to connectors.
|
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": "^3.11.
|
|
20
|
-
"@sw-tsdk/plugin-connector": "^3.11.
|
|
21
|
-
"@sw-tsdk/plugin-turbine": "^3.11.
|
|
19
|
+
"@sw-tsdk/core": "^3.11.3",
|
|
20
|
+
"@sw-tsdk/plugin-connector": "^3.11.3",
|
|
21
|
+
"@sw-tsdk/plugin-turbine": "^3.11.3",
|
|
22
22
|
"fs-extra": "11.1.1",
|
|
23
23
|
"inquirer": "8.2.2",
|
|
24
24
|
"npmlog": "7.0.1",
|
|
@@ -102,9 +102,13 @@
|
|
|
102
102
|
"postpack": "shx rm -f oclif.manifest.json",
|
|
103
103
|
"prepack": "yarn build && oclif manifest && oclif readme",
|
|
104
104
|
"docs": "oclif readme --multi --dir ../../docs && oclif readme",
|
|
105
|
-
"dev:setup": "
|
|
105
|
+
"dev:setup": "yarn link --force"
|
|
106
106
|
},
|
|
107
107
|
"types": "lib/index.d.ts",
|
|
108
|
-
"version": "3.11.
|
|
109
|
-
"
|
|
108
|
+
"version": "3.11.3",
|
|
109
|
+
"volta": {
|
|
110
|
+
"node": "18.20.7",
|
|
111
|
+
"yarn": "1.22.22"
|
|
112
|
+
},
|
|
113
|
+
"gitHead": "54e0b12d79957f780c0ab00355e43954a96ce77e"
|
|
110
114
|
}
|