@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
|
|
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
|
|
41
|
+
description: 'Whether this service can be booked online.',
|
|
46
42
|
type: 'boolean'
|
|
47
43
|
})
|
|
48
44
|
},
|