@tillhub/schemas 6.439.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,17 @@
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
+
8
+ # [6.440.0](https://github.com/tillhub/schemas/compare/v6.439.0...v6.440.0) (2026-05-22)
9
+
10
+
11
+ ### Features
12
+
13
+ * **UNTIL-20265:** add is_reservations_service field to create and update request schemas ([#1154](https://github.com/tillhub/schemas/issues/1154)) ([3a6384c](https://github.com/tillhub/schemas/commit/3a6384c))
14
+
1
15
  # [6.439.0](https://github.com/tillhub/schemas/compare/v6.438.0...v6.439.0) (2026-05-19)
2
16
 
3
17
 
@@ -38,9 +38,9 @@ module.exports = {
38
38
  }
39
39
  }),
40
40
  bookable_online: oneOf({
41
- description: 'Whether this reservation service can be booked online',
41
+ description: 'Whether this service can be booked online. Defaults to true.',
42
42
  type: 'boolean'
43
- })
43
+ }, { default: true })
44
44
  },
45
45
  required: ['name', 'duration', 'linked_product'],
46
46
  $id: 'https://schemas.tillhub.com/v0/services.create.request.schema.json',
@@ -38,7 +38,7 @@ module.exports = {
38
38
  }
39
39
  }),
40
40
  bookable_online: oneOf({
41
- description: 'Whether this reservation service can be booked online',
41
+ description: 'Whether this service can be booked online.',
42
42
  type: 'boolean'
43
43
  })
44
44
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.439.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",