@tillhub/schemas 6.155.0 → 6.156.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,11 @@
1
+ # [6.156.0](https://github.com/tillhub/schemas/compare/v6.155.0...v6.156.0) (2022-08-10)
2
+
3
+
4
+ ### Features
5
+
6
+ * **configurations:** receipts ([7c9d972](https://github.com/tillhub/schemas/commit/7c9d972))
7
+ * **configurations:** receipts ([31de842](https://github.com/tillhub/schemas/commit/31de842))
8
+
1
9
  # [6.155.0](https://github.com/tillhub/schemas/compare/v6.154.0...v6.155.0) (2022-08-08)
2
10
 
3
11
 
@@ -189,6 +189,16 @@ const cartReceipt = {
189
189
  type: 'boolean',
190
190
  default: true
191
191
  }),
192
+ signing_footer_style: oneOf({
193
+ description: 'Defines if signing footer is printed as text-only, qr-code-only or with text and qr-code. Legal requirements will always have precedence.',
194
+ type: 'string',
195
+ enum: [
196
+ 'qr_only',
197
+ 'text_only',
198
+ 'text_qr'
199
+ ],
200
+ default: 'qr_only'
201
+ }),
192
202
  refund_options: oneOf({
193
203
  description: 'If the sale is a refund - the following options will be considered',
194
204
  type: 'object',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.155.0",
3
+ "version": "6.156.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",