@extrahorizon/exh-cli 1.11.1 → 1.12.0-dev-128-9562d29

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
@@ -1,6 +1,9 @@
1
1
  # Extra Horizon CLI changelog
2
2
 
3
- ## v1.11.1
3
+ ### v1.12.0
4
+ * Now adding `$schema` as the last property when creating a new schema via `exh data schemas init`
5
+
6
+ ### v1.11.1
4
7
  * Updated the ExH SDK to `8.8.2` to fix a security warning from `qs`
5
8
  * Updated the supported Task Service runtime options to include `dotnet10`
6
9
 
@@ -29,7 +29,6 @@ const handler = async function init({ name, path }) {
29
29
  exports.handler = handler;
30
30
  function createSchema(name) {
31
31
  return {
32
- $schema: (0, util_1.getSwaggerDocumentationUrl)('config-json-schemas/Schema.json'),
33
32
  name,
34
33
  description: `The ${name} schema`,
35
34
  createMode: 'allUsers',
@@ -49,5 +48,6 @@ function createSchema(name) {
49
48
  type: 'string',
50
49
  },
51
50
  },
51
+ $schema: (0, util_1.getSwaggerDocumentationUrl)('config-json-schemas/Schema.json'),
52
52
  };
53
53
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@extrahorizon/exh-cli",
3
- "version": "1.11.1",
3
+ "version": "1.12.0-dev-128-9562d29",
4
4
  "main": "build/index.js",
5
5
  "exports": "./build/index.js",
6
6
  "license": "MIT",