@tillhub/schemas 6.440.0 → 6.441.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,10 @@
1
+ # [6.441.0](https://github.com/tillhub/schemas/compare/v6.440.0...v6.441.0) (2026-05-27)
2
+
3
+
4
+ ### Features
5
+
6
+ * **UNTIL-20265:** revert and remove is_reservations_service field from create and update request schemas ([#1159](https://github.com/tillhub/schemas/issues/1159)) ([aba0af8](https://github.com/tillhub/schemas/commit/aba0af8))
7
+
1
8
  # [6.440.0](https://github.com/tillhub/schemas/compare/v6.439.0...v6.440.0) (2026-05-22)
2
9
 
3
10
 
@@ -37,13 +37,8 @@ module.exports = {
37
37
  format: 'uuid'
38
38
  }
39
39
  }),
40
- is_reservations_service: {
41
- description: 'Whether this row is a reservation service. Defaults to true.',
42
- type: 'boolean',
43
- default: true
44
- },
45
40
  bookable_online: oneOf({
46
- description: 'Whether this reservation service can be booked online. Only allowed when is_reservations_service is true. defaults to true and must not be false for reservation services.',
41
+ description: 'Whether this service can be booked online. Defaults to true.',
47
42
  type: 'boolean'
48
43
  }, { default: true })
49
44
  },
@@ -37,12 +37,8 @@ module.exports = {
37
37
  format: 'uuid'
38
38
  }
39
39
  }),
40
- is_reservations_service: {
41
- description: 'Whether this row is a reservation service.',
42
- type: 'boolean'
43
- },
44
40
  bookable_online: oneOf({
45
- description: 'Whether this reservation service can be booked online. Only allowed when is_reservations_service is true and must not be false for reservation services.',
41
+ description: 'Whether this service can be booked online.',
46
42
  type: 'boolean'
47
43
  })
48
44
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.440.0",
3
+ "version": "6.441.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",