@extrahorizon/exh-cli 1.12.0-dev-159-eb2ad99 → 1.12.0-dev-161-4bf4c7e

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/CHANGELOG.md CHANGED
@@ -8,6 +8,15 @@
8
8
  * For the features mentioned above
9
9
  * For an `axios` update to resolve a warning about `CVE-2026-25639` (not affecting the CLI)
10
10
  * Updated the `qs` package to resolve a warning about `CVE-2026-2391` (not affecting the CLI)
11
+ * Added support for the template service V2 in the all `exh templates` commands.
12
+ * `exh templates list` lists templates from both template service V1 and template service V2.
13
+ * `exh templates get` gets templates from both template service V1 and template service V2.
14
+ * `exh templates delete` deletes templates from both template service V1 and template service V2.
15
+ * `exh templates sync` now syncs templates to the template service V2 and template service V1 depending on the properties in the `template.json` file.
16
+ * Added autocomplete support and inline documentation for `template.json`
17
+ * Via `"$schema": "https://swagger.extrahorizon.com/cli/1.12.0/config-json-schemas/Template.json"`
18
+ * Added autocomplete support and inline documentation for `dispatchers.json`
19
+ * Via `"$schema": "https://swagger.extrahorizon.com/cli/1.12.0/config-json-schemas/Dispatchers.json"`
11
20
 
12
21
  ### v1.11.1
13
22
  * Updated the ExH SDK to `8.8.2` to fix a security warning from `qs`
@@ -35,7 +35,10 @@
35
35
  "properties": {
36
36
  "version": { "const": 2 },
37
37
  "$schema": { "type": "string" },
38
- "description": { "type": "string" },
38
+ "description": {
39
+ "type": "string",
40
+ "minLength": 1
41
+ },
39
42
  "extendsTemplate": { "type": "string" },
40
43
  "inputs": {
41
44
  "type": "object",
@@ -43,7 +46,10 @@
43
46
  },
44
47
  "outputs": {
45
48
  "type": "object",
46
- "additionalProperties": { "type": "string" }
49
+ "additionalProperties": {
50
+ "type": "string",
51
+ "minLength": 1
52
+ }
47
53
  },
48
54
  "variables": {
49
55
  "type": "object",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@extrahorizon/exh-cli",
3
- "version": "1.12.0-dev-159-eb2ad99",
3
+ "version": "1.12.0-dev-161-4bf4c7e",
4
4
  "main": "build/index.js",
5
5
  "exports": "./build/index.js",
6
6
  "license": "MIT",