@swimlane/turbine-sdk 3.8.1 → 3.9.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 +69 -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/3.
|
|
38
|
+
@swimlane/turbine-sdk/3.9.0 linux-x64 node-v16.20.2
|
|
39
39
|
$ tsdk --help [COMMAND]
|
|
40
40
|
USAGE
|
|
41
41
|
$ tsdk COMMAND
|
|
@@ -95,6 +95,9 @@ USAGE
|
|
|
95
95
|
* [`tsdk turbine connector push FILE URL`](#tsdk-turbine-connector-push-file-url)
|
|
96
96
|
* [`tsdk version`](#tsdk-version)
|
|
97
97
|
* [`tsdk which`](#tsdk-which)
|
|
98
|
+
* [`tsdk widget create`](#tsdk-widget-create)
|
|
99
|
+
* [`tsdk widget image`](#tsdk-widget-image)
|
|
100
|
+
* [`tsdk widget ssp`](#tsdk-widget-ssp)
|
|
98
101
|
|
|
99
102
|
## `tsdk action add`
|
|
100
103
|
|
|
@@ -1267,4 +1270,69 @@ EXAMPLES
|
|
|
1267
1270
|
```
|
|
1268
1271
|
|
|
1269
1272
|
_See code: [@oclif/plugin-which](https://github.com/oclif/plugin-which/blob/v2.2.21/src/commands/which.ts)_
|
|
1273
|
+
|
|
1274
|
+
## `tsdk widget create`
|
|
1275
|
+
|
|
1276
|
+
Scaffold a new widget
|
|
1277
|
+
|
|
1278
|
+
```
|
|
1279
|
+
USAGE
|
|
1280
|
+
$ tsdk widget create [-d <value>] [--widgetName <value>] [--keywords <value>] [--description <value>] [--logoPath
|
|
1281
|
+
<value>] [--overviewImagePath <value>] [--sspPath <value>] [--author <value>] [--authorEmail <value>] [--homepage
|
|
1282
|
+
<value>] [-h]
|
|
1283
|
+
|
|
1284
|
+
FLAGS
|
|
1285
|
+
-d, --directory=<value> [default: ./] root directory for where to store Widget.
|
|
1286
|
+
-h, --help Show CLI help.
|
|
1287
|
+
--author=<value> Widget Author
|
|
1288
|
+
--authorEmail=<value> Widget Author Email
|
|
1289
|
+
--description=<value> Description (e.g. Action Buttons Description)
|
|
1290
|
+
--homepage=<value> Widget Author Support URL
|
|
1291
|
+
--keywords=<value> Enter keywords
|
|
1292
|
+
--logoPath=<value> URL or absolute path to logo file. Image should be in 1:1 aspect ratio and min resolution
|
|
1293
|
+
200x200
|
|
1294
|
+
--overviewImagePath=<value> URL or absolute path to overview image file. Min resolution 1100x660
|
|
1295
|
+
--sspPath=<value> absolute path to .ssp file
|
|
1296
|
+
--widgetName=<value> Widget Name (e.g. Action Buttons)
|
|
1297
|
+
|
|
1298
|
+
DESCRIPTION
|
|
1299
|
+
Scaffold a new widget
|
|
1300
|
+
```
|
|
1301
|
+
|
|
1302
|
+
## `tsdk widget image`
|
|
1303
|
+
|
|
1304
|
+
Update a Widget image.
|
|
1305
|
+
|
|
1306
|
+
```
|
|
1307
|
+
USAGE
|
|
1308
|
+
$ tsdk widget image [-d <value>] [-n <value>] [-i <value>] [-p <value>] [-h]
|
|
1309
|
+
|
|
1310
|
+
FLAGS
|
|
1311
|
+
-d, --directory=<value> [default: ./] root directory of the widget folder.
|
|
1312
|
+
-h, --help Show CLI help.
|
|
1313
|
+
-i, --imageType=<value> Image Type (e.g. logo/overview)
|
|
1314
|
+
-n, --componentName=<value> Widget Name (e.g. action_buttons)
|
|
1315
|
+
-p, --imagePath=<value> path or URL to product image in PNG format.
|
|
1316
|
+
|
|
1317
|
+
DESCRIPTION
|
|
1318
|
+
Update a Widget image.
|
|
1319
|
+
```
|
|
1320
|
+
|
|
1321
|
+
## `tsdk widget ssp`
|
|
1322
|
+
|
|
1323
|
+
Update an SSP
|
|
1324
|
+
|
|
1325
|
+
```
|
|
1326
|
+
USAGE
|
|
1327
|
+
$ tsdk widget ssp [-d <value>] [-n <value>] [-p <value>] [-h]
|
|
1328
|
+
|
|
1329
|
+
FLAGS
|
|
1330
|
+
-d, --directory=<value> [default: ./] root directory of the widget folder.
|
|
1331
|
+
-h, --help Show CLI help.
|
|
1332
|
+
-n, --widgetName=<value> Widget Name (e.g. action_buttons)
|
|
1333
|
+
-p, --sspPath=<value> Absolute path to .SSP file
|
|
1334
|
+
|
|
1335
|
+
DESCRIPTION
|
|
1336
|
+
Update an SSP
|
|
1337
|
+
```
|
|
1270
1338
|
<!-- commandsstop -->
|
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.9.0",
|
|
20
|
+
"@sw-tsdk/plugin-connector": "^3.9.0",
|
|
21
|
+
"@sw-tsdk/plugin-turbine": "^3.9.0",
|
|
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.9.0",
|
|
109
|
+
"gitHead": "3e0fa61126cbeb1a84e0ddc459c5825d4783741d"
|
|
110
110
|
}
|