@tillhub/schemas 6.428.0 → 6.429.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.429.0](https://github.com/tillhub/schemas/compare/v6.428.0...v6.429.0) (2026-03-30)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **UNTIL-19587:** add appointment reminder configuration to reservations schema ([#1118](https://github.com/tillhub/schemas/issues/1118)) ([acf9a94](https://github.com/tillhub/schemas/commit/acf9a94))
|
|
7
|
+
|
|
1
8
|
# [6.428.0](https://github.com/tillhub/schemas/compare/v6.427.0...v6.428.0) (2026-03-30)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -160,6 +160,23 @@ module.exports = oneOf({
|
|
|
160
160
|
}
|
|
161
161
|
}
|
|
162
162
|
}
|
|
163
|
+
},
|
|
164
|
+
appointment_reminder: {
|
|
165
|
+
type: 'boolean'
|
|
166
|
+
},
|
|
167
|
+
appointment_reminder_lead_time: {
|
|
168
|
+
type: 'object',
|
|
169
|
+
additionalProperties: false,
|
|
170
|
+
properties: {
|
|
171
|
+
type: {
|
|
172
|
+
type: 'string',
|
|
173
|
+
enum: ['hour', 'day', 'month', 'week']
|
|
174
|
+
},
|
|
175
|
+
value: {
|
|
176
|
+
type: 'number'
|
|
177
|
+
}
|
|
178
|
+
},
|
|
179
|
+
required: ['type', 'value']
|
|
163
180
|
}
|
|
164
181
|
}
|
|
165
182
|
})
|