@tillhub/schemas 6.442.0 → 6.443.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.443.0](https://github.com/tillhub/schemas/compare/v6.442.0...v6.443.0) (2026-06-12)
2
+
3
+
4
+ ### Features
5
+
6
+ * **UNTIL-20591:** update bookable_online property to include default value and non-nullable ([#1165](https://github.com/tillhub/schemas/issues/1165)) ([4327164](https://github.com/tillhub/schemas/commit/4327164))
7
+
1
8
  # [6.442.0](https://github.com/tillhub/schemas/compare/v6.441.0...v6.442.0) (2026-06-10)
2
9
 
3
10
 
@@ -37,10 +37,11 @@ module.exports = {
37
37
  format: 'uuid'
38
38
  }
39
39
  }),
40
- bookable_online: oneOf({
40
+ bookable_online: {
41
41
  description: 'Whether this service can be booked online. Defaults to true.',
42
- type: 'boolean'
43
- }, { default: true })
42
+ type: 'boolean',
43
+ default: true
44
+ }
44
45
  },
45
46
  required: ['name', 'duration', 'linked_product'],
46
47
  $id: 'https://schemas.tillhub.com/v0/services.create.request.schema.json',
@@ -37,10 +37,10 @@ module.exports = {
37
37
  format: 'uuid'
38
38
  }
39
39
  }),
40
- bookable_online: oneOf({
40
+ bookable_online: {
41
41
  description: 'Whether this service can be booked online.',
42
42
  type: 'boolean'
43
- })
43
+ }
44
44
  },
45
45
  required: [],
46
46
  $id: 'https://schemas.tillhub.com/v0/services.update.request.schema.json',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.442.0",
3
+ "version": "6.443.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",