@swimlane/turbine-sdk 3.11.2 → 3.11.3-next.93c741f
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 +28 -29
- package/oclif.manifest.json +1 -1
- package/package.json +11 -7
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ Swimlane Turbine SDK
|
|
|
21
21
|
docker run -d -p 5000:5000 --name registry registry:2
|
|
22
22
|
```
|
|
23
23
|
* [Volta] (https://volta.sh/)
|
|
24
|
-
* Node >=
|
|
24
|
+
* Node >= 20
|
|
25
25
|
|
|
26
26
|
# Installation
|
|
27
27
|
|
|
@@ -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-next.93c741f linux-x64 node-v20.19.0
|
|
70
70
|
$ tsdk --help [COMMAND]
|
|
71
71
|
USAGE
|
|
72
72
|
$ tsdk COMMAND
|
|
@@ -437,25 +437,24 @@ Scaffold a new connector
|
|
|
437
437
|
USAGE
|
|
438
438
|
$ tsdk connector create [-d <value>] [-t python_310_definition|python_311_definition|python_3] [--vendor <value>]
|
|
439
439
|
[--product <value>] [--keywords <value>] [--description <value>] [--logoPath <value>] [--author <value>]
|
|
440
|
-
[--authorEmail <value>] [--homepage <value>] [-h] [--
|
|
440
|
+
[--authorEmail <value>] [--homepage <value>] [-h] [--createSrcFolder <value>]
|
|
441
441
|
|
|
442
442
|
FLAGS
|
|
443
|
-
-d, --directory=<value>
|
|
444
|
-
|
|
445
|
-
-h, --help
|
|
446
|
-
-t, --template=<option>
|
|
447
|
-
|
|
448
|
-
--
|
|
449
|
-
--
|
|
450
|
-
--
|
|
451
|
-
--
|
|
452
|
-
--
|
|
453
|
-
--
|
|
454
|
-
--
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
--
|
|
458
|
-
--vendor=<value> Vendor (e.g. CrowdStrike)
|
|
443
|
+
-d, --directory=<value> [default: ./] root directory for where to store connectors, the connector directory will be
|
|
444
|
+
generated.
|
|
445
|
+
-h, --help Show CLI help.
|
|
446
|
+
-t, --template=<option> [default: python_311_definition] connector template to scaffold
|
|
447
|
+
<options: python_310_definition|python_311_definition|python_3>
|
|
448
|
+
--author=<value> Connector Author
|
|
449
|
+
--authorEmail=<value> Connector Author Email
|
|
450
|
+
--createSrcFolder=<value> Create Connector src folder? (e.g. false, true)
|
|
451
|
+
--description=<value> Description (e.g. CrowdStrike Host Query API)
|
|
452
|
+
--homepage=<value> Connector Author Support URL
|
|
453
|
+
--keywords=<value> Enter keywords (Comma-Separated)
|
|
454
|
+
--logoPath=<value> URL or absolute path to logo file. Image should be in 1:1 aspect ratio and min resolution
|
|
455
|
+
200x200
|
|
456
|
+
--product=<value> Product (e.g. Falcon)
|
|
457
|
+
--vendor=<value> Vendor (e.g. CrowdStrike)
|
|
459
458
|
|
|
460
459
|
DESCRIPTION
|
|
461
460
|
Scaffold a new connector
|
|
@@ -706,19 +705,19 @@ Convert scripts and forked plugins from Swimlane V10x to connectors.
|
|
|
706
705
|
|
|
707
706
|
```
|
|
708
707
|
USAGE
|
|
709
|
-
$ tsdk migrator convert
|
|
708
|
+
$ tsdk migrator convert -t <value> [-s <value>] [--vendor <value>] [--product <value>] [--description <value>]
|
|
710
709
|
[--author <value>] [--authorEmail <value>] [--homepage <value>] [-h]
|
|
711
710
|
|
|
712
711
|
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>
|
|
712
|
+
-h, --help Show CLI help.
|
|
713
|
+
-s, --source=<value> [default: ./] Source zip of the 10X export.
|
|
714
|
+
-t, --toDirectory=<value> (required) Root directory of the destination repository.
|
|
715
|
+
--author=<value> Connector Author
|
|
716
|
+
--authorEmail=<value> Connector Author Email
|
|
717
|
+
--description=<value> Description (e.g. CrowdStrike Host Query API)
|
|
718
|
+
--homepage=<value> Connector Author Support URL
|
|
719
|
+
--product=<value> Product (e.g. Falcon)
|
|
720
|
+
--vendor=<value> Vendor (e.g. CrowdStrike)
|
|
722
721
|
|
|
723
722
|
DESCRIPTION
|
|
724
723
|
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-next.93c741f",
|
|
20
|
+
"@sw-tsdk/plugin-connector": "^3.11.3-next.93c741f",
|
|
21
|
+
"@sw-tsdk/plugin-turbine": "^3.11.3-next.93c741f",
|
|
22
22
|
"fs-extra": "11.1.1",
|
|
23
23
|
"inquirer": "8.2.2",
|
|
24
24
|
"npmlog": "7.0.1",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
},
|
|
27
27
|
"description": "Turbine SDK",
|
|
28
28
|
"engines": {
|
|
29
|
-
"node": ">=
|
|
29
|
+
"node": ">=20"
|
|
30
30
|
},
|
|
31
31
|
"files": [
|
|
32
32
|
"/bin",
|
|
@@ -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-next.93c741f",
|
|
109
|
+
"volta": {
|
|
110
|
+
"node": "20.19.0",
|
|
111
|
+
"yarn": "1.22.22"
|
|
112
|
+
},
|
|
113
|
+
"gitHead": "93c741fc6bb8d9fa448043175e96d0f4afec0a2c"
|
|
110
114
|
}
|