@tillhub/schemas 6.428.0 → 6.431.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,29 @@
|
|
|
1
|
+
# [6.431.0](https://github.com/tillhub/schemas/compare/v6.430.0...v6.431.0) (2026-04-01)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **UNTIL-18961:** adjusting release permissions ([1908b6a](https://github.com/tillhub/schemas/commit/1908b6a))
|
|
7
|
+
* **UNTIL-18961:** tuning new deploy pipeline ([060713b](https://github.com/tillhub/schemas/commit/060713b))
|
|
8
|
+
|
|
9
|
+
# [6.430.0](https://github.com/tillhub/schemas/compare/v6.429.0...v6.430.0) (2026-04-01)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
* **UNTIL-17787:** branch selection schema ([56b124b](https://github.com/tillhub/schemas/commit/56b124b))
|
|
15
|
+
* **UNTIL-17787:** optimization ([80292ac](https://github.com/tillhub/schemas/commit/80292ac))
|
|
16
|
+
* **UNTIL-18961:** introducing deploy with GA ([964c27a](https://github.com/tillhub/schemas/commit/964c27a))
|
|
17
|
+
* **UNTIL-19467:** add customer_document_type and customer_document_id_suffix context key examples ([b6d89c1](https://github.com/tillhub/schemas/commit/b6d89c1))
|
|
18
|
+
* **UNTIL-19467:** add missing payment_link_id to payment context name examples ([1447be2](https://github.com/tillhub/schemas/commit/1447be2))
|
|
19
|
+
|
|
20
|
+
# [6.429.0](https://github.com/tillhub/schemas/compare/v6.428.0...v6.429.0) (2026-03-30)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Features
|
|
24
|
+
|
|
25
|
+
* **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))
|
|
26
|
+
|
|
1
27
|
# [6.428.0](https://github.com/tillhub/schemas/compare/v6.427.0...v6.428.0) (2026-03-30)
|
|
2
28
|
|
|
3
29
|
|
|
@@ -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
|
})
|
|
@@ -163,7 +163,10 @@ module.exports = {
|
|
|
163
163
|
'cardTerminalProvider', // If available, the provider identifier for the used terminal
|
|
164
164
|
'cardTransactionID', // The unique terminal transaction identifier within the given terminal API context
|
|
165
165
|
'isTerminalConnected', // If true, the terminal was used via it\'s API and the above fields are mandatory. If false, the cashier is responsible for handling disconnected card payments
|
|
166
|
-
'bnpl_purchase_id' // The unique purchase identifier within the given Unzer BNPL context
|
|
166
|
+
'bnpl_purchase_id', // The unique purchase identifier within the given Unzer BNPL context
|
|
167
|
+
'payment_link_id', // The unique identifier of the payment link associated with this transaction
|
|
168
|
+
'customer_document_type', // Type of ID document (drivers_license | identity_card | passport | residence_permit)
|
|
169
|
+
'customer_document_id_suffix' // Last 5 digits of the customer's ID document number
|
|
167
170
|
]
|
|
168
171
|
},
|
|
169
172
|
value: oneOf({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tillhub/schemas",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.431.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
|
|
6
6
|
"main": "./lib/index.js",
|
|
@@ -130,7 +130,8 @@
|
|
|
130
130
|
"verifyConditions": [
|
|
131
131
|
"@semantic-release/changelog",
|
|
132
132
|
"@semantic-release/npm",
|
|
133
|
-
"@semantic-release/git"
|
|
133
|
+
"@semantic-release/git",
|
|
134
|
+
"@semantic-release/github"
|
|
134
135
|
],
|
|
135
136
|
"prepare": [
|
|
136
137
|
"@semantic-release/npm",
|