@swimlane/turbine-sdk 3.7.0 → 3.8.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 +34 -27
- 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/3.
|
|
38
|
+
@swimlane/turbine-sdk/3.8.1 linux-x64 node-v16.20.2
|
|
39
39
|
$ tsdk --help [COMMAND]
|
|
40
40
|
USAGE
|
|
41
41
|
$ tsdk COMMAND
|
|
@@ -53,7 +53,7 @@ USAGE
|
|
|
53
53
|
* [`tsdk autocomplete [SHELL]`](#tsdk-autocomplete-shell)
|
|
54
54
|
* [`tsdk commands`](#tsdk-commands)
|
|
55
55
|
* [`tsdk component create`](#tsdk-component-create)
|
|
56
|
-
* [`tsdk component
|
|
56
|
+
* [`tsdk component image`](#tsdk-component-image)
|
|
57
57
|
* [`tsdk component ssp`](#tsdk-component-ssp)
|
|
58
58
|
* [`tsdk connector build`](#tsdk-connector-build)
|
|
59
59
|
* [`tsdk connector create`](#tsdk-connector-create)
|
|
@@ -70,7 +70,7 @@ USAGE
|
|
|
70
70
|
* [`tsdk description connector`](#tsdk-description-connector)
|
|
71
71
|
* [`tsdk help [COMMANDS]`](#tsdk-help-commands)
|
|
72
72
|
* [`tsdk playbook create`](#tsdk-playbook-create)
|
|
73
|
-
* [`tsdk playbook
|
|
73
|
+
* [`tsdk playbook image`](#tsdk-playbook-image)
|
|
74
74
|
* [`tsdk playbook ssp`](#tsdk-playbook-ssp)
|
|
75
75
|
* [`tsdk plugins`](#tsdk-plugins)
|
|
76
76
|
* [`tsdk plugins:install PLUGIN...`](#tsdk-pluginsinstall-plugin)
|
|
@@ -82,7 +82,7 @@ USAGE
|
|
|
82
82
|
* [`tsdk plugins:uninstall PLUGIN...`](#tsdk-pluginsuninstall-plugin-2)
|
|
83
83
|
* [`tsdk plugins update`](#tsdk-plugins-update)
|
|
84
84
|
* [`tsdk solution create`](#tsdk-solution-create)
|
|
85
|
-
* [`tsdk solution
|
|
85
|
+
* [`tsdk solution image`](#tsdk-solution-image)
|
|
86
86
|
* [`tsdk solution ssp`](#tsdk-solution-ssp)
|
|
87
87
|
* [`tsdk turbine config list`](#tsdk-turbine-config-list)
|
|
88
88
|
* [`tsdk turbine config remove URL`](#tsdk-turbine-config-remove-url)
|
|
@@ -311,8 +311,9 @@ FLAGS
|
|
|
311
311
|
--description=<value> Description (e.g. CrowdStrike Alert Ingestion Component)
|
|
312
312
|
--homepage=<value> Component Author Support URL
|
|
313
313
|
--keywords=<value> Enter keywords
|
|
314
|
-
--logoPath=<value> URL or absolute path to logo file
|
|
315
|
-
|
|
314
|
+
--logoPath=<value> URL or absolute path to logo file. Image should be in 1:1 aspect ratio and min
|
|
315
|
+
resolution 200x200
|
|
316
|
+
--overviewImagePath=<value> URL or absolute path to overview image file. Min resolution 1100x660
|
|
316
317
|
--sspPath=<value> absolute path to .ssp file
|
|
317
318
|
--vendor=<value> Vendor (e.g. CrowdStrike)
|
|
318
319
|
|
|
@@ -320,23 +321,24 @@ DESCRIPTION
|
|
|
320
321
|
Scaffold a new Component
|
|
321
322
|
```
|
|
322
323
|
|
|
323
|
-
## `tsdk component
|
|
324
|
+
## `tsdk component image`
|
|
324
325
|
|
|
325
|
-
Update a Component
|
|
326
|
+
Update a Component image.
|
|
326
327
|
|
|
327
328
|
```
|
|
328
329
|
USAGE
|
|
329
|
-
$ tsdk component
|
|
330
|
+
$ tsdk component image [-d <value>] [-t <value>] [-n <value>] [-i <value>] [-p <value>] [-h]
|
|
330
331
|
|
|
331
332
|
FLAGS
|
|
332
333
|
-d, --directory=<value> [default: ./] root directory of the component folder.
|
|
333
334
|
-h, --help Show CLI help.
|
|
335
|
+
-i, --imageType=<value> Image Type (e.g. logo/overview)
|
|
334
336
|
-n, --componentName=<value> Component Name (e.g. google_alert_ingestion)
|
|
335
|
-
-p, --
|
|
337
|
+
-p, --imagePath=<value> path or URL to product image in PNG format.
|
|
336
338
|
-t, --componentType=<value> Component Type (e.g. classic)
|
|
337
339
|
|
|
338
340
|
DESCRIPTION
|
|
339
|
-
Update a Component
|
|
341
|
+
Update a Component image.
|
|
340
342
|
```
|
|
341
343
|
|
|
342
344
|
## `tsdk component ssp`
|
|
@@ -409,7 +411,8 @@ FLAGS
|
|
|
409
411
|
--description=<value> Description (e.g. CrowdStrike Host Query API)
|
|
410
412
|
--homepage=<value> Connector Author Support URL
|
|
411
413
|
--keywords=<value> Enter keywords (Comma-Separated)
|
|
412
|
-
--logoPath=<value> URL or absolute path to logo file
|
|
414
|
+
--logoPath=<value> URL or absolute path to logo file. Image should be in 1:1 aspect ratio and min
|
|
415
|
+
resolution 200x200
|
|
413
416
|
--product=<value> Product (e.g. Falcon)
|
|
414
417
|
--vendor=<value> Vendor (e.g. CrowdStrike)
|
|
415
418
|
|
|
@@ -674,8 +677,9 @@ FLAGS
|
|
|
674
677
|
--description=<value> Description (e.g. Text Aggregator Description)
|
|
675
678
|
--homepage=<value> Playbook Author Support URL
|
|
676
679
|
--keywords=<value> Enter keywords
|
|
677
|
-
--logoPath=<value> URL or absolute path to logo file
|
|
678
|
-
|
|
680
|
+
--logoPath=<value> URL or absolute path to logo file. Image should be in 1:1 aspect ratio and min resolution
|
|
681
|
+
200x200
|
|
682
|
+
--overviewImagePath=<value> URL or absolute path to overview image file. Min resolution 1100x660
|
|
679
683
|
--playbookFamily=<value> Playbook Family (e.g. classic | canvas)
|
|
680
684
|
--playbookName=<value> Playbook Name (e.g. Text Aggregator)
|
|
681
685
|
--sspPath=<value> absolute path to .ssp file
|
|
@@ -684,23 +688,24 @@ DESCRIPTION
|
|
|
684
688
|
Scaffold a new playbook
|
|
685
689
|
```
|
|
686
690
|
|
|
687
|
-
## `tsdk playbook
|
|
691
|
+
## `tsdk playbook image`
|
|
688
692
|
|
|
689
|
-
Update a Playbook
|
|
693
|
+
Update a Playbook image.
|
|
690
694
|
|
|
691
695
|
```
|
|
692
696
|
USAGE
|
|
693
|
-
$ tsdk playbook
|
|
697
|
+
$ tsdk playbook image [-d <value>] [-t <value>] [-n <value>] [-i <value>] [-p <value>] [-h]
|
|
694
698
|
|
|
695
699
|
FLAGS
|
|
696
700
|
-d, --directory=<value> [default: ./] root directory of the playbook folder.
|
|
697
701
|
-h, --help Show CLI help.
|
|
702
|
+
-i, --imageType=<value> Image Type (e.g. logo/overview)
|
|
698
703
|
-n, --componentName=<value> Playbook Name (e.g. google_alert_ingestion)
|
|
699
|
-
-p, --
|
|
704
|
+
-p, --imagePath=<value> path or URL to product image in PNG format.
|
|
700
705
|
-t, --componentType=<value> Playbook Type (e.g. classic)
|
|
701
706
|
|
|
702
707
|
DESCRIPTION
|
|
703
|
-
Update a Playbook
|
|
708
|
+
Update a Playbook image.
|
|
704
709
|
```
|
|
705
710
|
|
|
706
711
|
## `tsdk playbook ssp`
|
|
@@ -974,8 +979,9 @@ FLAGS
|
|
|
974
979
|
--authorEmail=<value> Solution Author Email
|
|
975
980
|
--description=<value> Description (e.g. SOC Solution Description)
|
|
976
981
|
--homepage=<value> Solution Author Support URL
|
|
977
|
-
--logoPath=<value> URL or absolute path to logo file
|
|
978
|
-
|
|
982
|
+
--logoPath=<value> URL or absolute path to logo file. Image should be in 1:1 aspect ratio and min resolution
|
|
983
|
+
200x200
|
|
984
|
+
--overviewImagePath=<value> URL or absolute path to overview image file. Min resolution 1100x660
|
|
979
985
|
--solutionFamily=<value> Solution Family (e.g. classic | canvas)
|
|
980
986
|
--solutionName=<value> Solution Name (e.g. SOC Solution)
|
|
981
987
|
--sspPath=<value> absolute path to .ssp file
|
|
@@ -984,23 +990,24 @@ DESCRIPTION
|
|
|
984
990
|
Scaffold a new Solution
|
|
985
991
|
```
|
|
986
992
|
|
|
987
|
-
## `tsdk solution
|
|
993
|
+
## `tsdk solution image`
|
|
988
994
|
|
|
989
|
-
Update a Solution
|
|
995
|
+
Update a Solution image.
|
|
990
996
|
|
|
991
997
|
```
|
|
992
998
|
USAGE
|
|
993
|
-
$ tsdk solution
|
|
999
|
+
$ tsdk solution image [-d <value>] [-t <value>] [-n <value>] [-i <value>] [-p <value>] [-h]
|
|
994
1000
|
|
|
995
1001
|
FLAGS
|
|
996
1002
|
-d, --directory=<value> [default: ./] root directory of the solution folder.
|
|
997
1003
|
-h, --help Show CLI help.
|
|
998
|
-
-
|
|
999
|
-
-
|
|
1004
|
+
-i, --imageType=<value> Image Type (e.g. logo/overview)
|
|
1005
|
+
-n, --solutionName=<value> Solution Name (e.g. google_alert_ingestion)
|
|
1006
|
+
-p, --imagePath=<value> path or URL to product image in PNG format.
|
|
1000
1007
|
-t, --solutionType=<value> Solution Type (e.g. classic)
|
|
1001
1008
|
|
|
1002
1009
|
DESCRIPTION
|
|
1003
|
-
Update a Solution
|
|
1010
|
+
Update a Solution image.
|
|
1004
1011
|
```
|
|
1005
1012
|
|
|
1006
1013
|
## `tsdk solution ssp`
|
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.
|
|
20
|
-
"@sw-tsdk/plugin-connector": "^3.
|
|
21
|
-
"@sw-tsdk/plugin-turbine": "^3.
|
|
19
|
+
"@sw-tsdk/core": "^3.8.1",
|
|
20
|
+
"@sw-tsdk/plugin-connector": "^3.8.1",
|
|
21
|
+
"@sw-tsdk/plugin-turbine": "^3.8.1",
|
|
22
22
|
"fs-extra": "11.1.1",
|
|
23
23
|
"inquirer": "8.2.2",
|
|
24
24
|
"npmlog": "7.0.1",
|
|
@@ -105,6 +105,6 @@
|
|
|
105
105
|
"dev:setup": "npm link"
|
|
106
106
|
},
|
|
107
107
|
"types": "lib/index.d.ts",
|
|
108
|
-
"version": "3.
|
|
109
|
-
"gitHead": "
|
|
108
|
+
"version": "3.8.1",
|
|
109
|
+
"gitHead": "8b6a4e2fd3295b919167e41edf453d45d97cab5a"
|
|
110
110
|
}
|