@swimlane/turbine-sdk 3.3.1 → 3.5.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 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.3.1 linux-x64 node-v16.20.2
38
+ @swimlane/turbine-sdk/3.5.0 linux-x64 node-v16.20.2
39
39
  $ tsdk --help [COMMAND]
40
40
  USAGE
41
41
  $ tsdk COMMAND
@@ -69,6 +69,8 @@ USAGE
69
69
  * [`tsdk description component`](#tsdk-description-component)
70
70
  * [`tsdk description connector`](#tsdk-description-connector)
71
71
  * [`tsdk help [COMMANDS]`](#tsdk-help-commands)
72
+ * [`tsdk playbook create`](#tsdk-playbook-create)
73
+ * [`tsdk playbook ssp`](#tsdk-playbook-ssp)
72
74
  * [`tsdk plugins`](#tsdk-plugins)
73
75
  * [`tsdk plugins:install PLUGIN...`](#tsdk-pluginsinstall-plugin)
74
76
  * [`tsdk plugins:inspect PLUGIN...`](#tsdk-pluginsinspect-plugin)
@@ -652,6 +654,52 @@ DESCRIPTION
652
654
 
653
655
  _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.2.9/src/commands/help.ts)_
654
656
 
657
+ ## `tsdk playbook create`
658
+
659
+ Scaffold a new playbook
660
+
661
+ ```
662
+ USAGE
663
+ $ tsdk playbook create [-d <value>] [--playbookFamily <value>] [--playbookName <value>] [--keywords <value>]
664
+ [--description <value>] [--logoPath <value>] [--overviewImagePath <value>] [--sspPath <value>] [--author <value>]
665
+ [--authorEmail <value>] [--homepage <value>] [-h]
666
+
667
+ FLAGS
668
+ -d, --directory=<value> [default: ./] root directory for where to store Playbook.
669
+ -h, --help Show CLI help.
670
+ --author=<value> Playbook Author
671
+ --authorEmail=<value> Playbook Author Email
672
+ --description=<value> Description (e.g. Text Aggregator Description)
673
+ --homepage=<value> Playbook Author Support URL
674
+ --keywords=<value> Enter keywords
675
+ --logoPath=<value> URL or absolute path to logo file
676
+ --overviewImagePath=<value> URL or absolute path to overview image file
677
+ --playbookFamily=<value> Playbook Family (e.g. classic | canvas)
678
+ --playbookName=<value> Playbook Name (e.g. Text Aggregator)
679
+ --sspPath=<value> absolute path to .ssp file
680
+
681
+ DESCRIPTION
682
+ Scaffold a new playbook
683
+ ```
684
+
685
+ ## `tsdk playbook ssp`
686
+
687
+ Update an SSP
688
+
689
+ ```
690
+ USAGE
691
+ $ tsdk playbook ssp [-d <value>] [-n <value>] [-p <value>] [-h]
692
+
693
+ FLAGS
694
+ -d, --directory=<value> [default: ./] root directory of the playbook folder.
695
+ -h, --help Show CLI help.
696
+ -n, --playbookName=<value> Playbook Name (e.g. text_aggregator)
697
+ -p, --sspPath=<value> Absolute path to .SSP file
698
+
699
+ DESCRIPTION
700
+ Update an SSP
701
+ ```
702
+
655
703
  ## `tsdk plugins`
656
704
 
657
705
  List installed plugins.
@@ -1,4 +1,4 @@
1
1
  {
2
- "version": "3.3.1",
2
+ "version": "3.5.0",
3
3
  "commands": {}
4
4
  }
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.3.1",
20
- "@sw-tsdk/plugin-connector": "^3.3.1",
21
- "@sw-tsdk/plugin-turbine": "^3.3.1",
19
+ "@sw-tsdk/core": "^3.5.0",
20
+ "@sw-tsdk/plugin-connector": "^3.5.0",
21
+ "@sw-tsdk/plugin-turbine": "^3.5.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.3.1",
109
- "gitHead": "452fa36772cc35620ddfb2928f100a684480c467"
108
+ "version": "3.5.0",
109
+ "gitHead": "166711ae58ad963765003fcd1ee13540b900171b"
110
110
  }