@tillhub/schemas 6.391.0 → 6.393.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/CHANGELOG.md CHANGED
@@ -1,3 +1,18 @@
1
+ # [6.393.0](https://github.com/tillhub/schemas/compare/v6.392.0...v6.393.0) (2025-06-19)
2
+
3
+
4
+ ### Features
5
+
6
+ * **table-layout:** update schema to allow additional properties ([#1075](https://github.com/tillhub/schemas/issues/1075)) ([5b93713](https://github.com/tillhub/schemas/commit/5b93713))
7
+
8
+ # [6.392.0](https://github.com/tillhub/schemas/compare/v6.391.0...v6.392.0) (2025-06-19)
9
+
10
+
11
+ ### Features
12
+
13
+ * **UNTIL-14137:** fixing linting ([73e4c7b](https://github.com/tillhub/schemas/commit/73e4c7b))
14
+ * **UNTIL-14137:** upgrading circleci pipeline to work with service account ([1ab0798](https://github.com/tillhub/schemas/commit/1ab0798))
15
+
1
16
  # [6.391.0](https://github.com/tillhub/schemas/compare/v6.390.1...v6.391.0) (2025-06-18)
2
17
 
3
18
 
@@ -3,8 +3,14 @@ const base = require('./base')
3
3
  module.exports.request = {
4
4
  $id: 'https://schemas.tillhub.com/v0/table_layout.update.request.schema.json',
5
5
  $schema: 'http://json-schema.org/draft-07/schema#',
6
- additionalProperties: false,
6
+ additionalProperties: true,
7
7
  type: 'object',
8
8
  required: [],
9
- properties: base
9
+ properties: {
10
+ ...base,
11
+ tables_count: { // @TODO: remove this field
12
+ type: 'number',
13
+ default: 0
14
+ }
15
+ }
10
16
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.391.0",
3
+ "version": "6.393.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",
@@ -72,12 +72,11 @@
72
72
  "eslint-plugin-promise": "^4.0.1",
73
73
  "eslint-plugin-react": "^7.12.4",
74
74
  "eslint-plugin-standard": "^4.0.0",
75
- "firebase-tools": "^7.11.0",
75
+ "firebase-tools": "^11.30.0",
76
76
  "gh-pages": "^1.2.0",
77
77
  "glob": "^7.1.2",
78
78
  "jsdoc": "^3.6.5",
79
79
  "jsdoc-to-markdown": "^4.0.1",
80
- "node": "^10.22.0",
81
80
  "nodemon": "^1.18.3",
82
81
  "nyc": "^12.0.2",
83
82
  "proxyquire": "^2.1.0",
@@ -152,7 +151,7 @@
152
151
  "publish": [
153
152
  {
154
153
  "path": "@semantic-release/exec",
155
- "cmd": "npm run deploy:static -- --token \"$FIREBASE_TOKEN\""
154
+ "cmd": "npm run deploy:static"
156
155
  },
157
156
  "@semantic-release/npm",
158
157
  "@semantic-release/github"