@extrahorizon/exh-cli 1.12.0-dev-129-dc05e22 → 1.12.0-dev-131-de586fc
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
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
### v1.12.0
|
|
4
4
|
* Now adding `$schema` as the last property when creating a new schema via `exh data schemas init`
|
|
5
5
|
* The `exh tasks create-repo` command now creates `package.json` and `task-config.json` files with 2 spaces indentation instead of 4 spaces.
|
|
6
|
+
* You no longer need to include the `name` property when defining an index in a schema, as it was never actually used by the backend.
|
|
6
7
|
|
|
7
8
|
### v1.11.1
|
|
8
9
|
* Updated the ExH SDK to `8.8.2` to fix a security warning from `qs`
|
|
@@ -647,7 +647,10 @@
|
|
|
647
647
|
"Index": {
|
|
648
648
|
"type": "object",
|
|
649
649
|
"properties": {
|
|
650
|
-
"name": {
|
|
650
|
+
"name": {
|
|
651
|
+
"type": "string",
|
|
652
|
+
"description": "Deprecated! This property was never actually used."
|
|
653
|
+
},
|
|
651
654
|
"description": { "type": "string" },
|
|
652
655
|
"fields": {
|
|
653
656
|
"type": "array",
|
|
@@ -681,10 +684,7 @@
|
|
|
681
684
|
}
|
|
682
685
|
},
|
|
683
686
|
"additionalProperties": false,
|
|
684
|
-
"required": [
|
|
685
|
-
"name",
|
|
686
|
-
"fields"
|
|
687
|
-
]
|
|
687
|
+
"required": ["fields"]
|
|
688
688
|
},
|
|
689
689
|
"PermissionRequiredAccessMode": {
|
|
690
690
|
"const": "permissionRequired",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@extrahorizon/exh-cli",
|
|
3
|
-
"version": "1.12.0-dev-
|
|
3
|
+
"version": "1.12.0-dev-131-de586fc",
|
|
4
4
|
"main": "build/index.js",
|
|
5
5
|
"exports": "./build/index.js",
|
|
6
6
|
"license": "MIT",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"ajv": "^8.11.0",
|
|
46
46
|
"archiver": "^7.0.1",
|
|
47
47
|
"chalk": "^4.0.0",
|
|
48
|
-
"lodash": "^4.17.
|
|
48
|
+
"lodash": "^4.17.23",
|
|
49
49
|
"yargs": "^17.5.1"
|
|
50
50
|
}
|
|
51
51
|
}
|