@tillhub/schemas 6.321.0 → 6.323.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,17 @@
1
+ # [6.323.0](https://github.com/tillhub/schemas/compare/v6.322.0...v6.323.0) (2024-06-24)
2
+
3
+
4
+ ### Features
5
+
6
+ * **configurations:** settings ([eff2061](https://github.com/tillhub/schemas/commit/eff2061))
7
+
8
+ # [6.322.0](https://github.com/tillhub/schemas/compare/v6.321.0...v6.322.0) (2024-06-20)
9
+
10
+
11
+ ### Features
12
+
13
+ * **configurations:** ui ([6c2f72d](https://github.com/tillhub/schemas/commit/6c2f72d))
14
+
1
15
  # [6.321.0](https://github.com/tillhub/schemas/compare/v6.320.0...v6.321.0) (2024-06-20)
2
16
 
3
17
 
@@ -427,6 +427,21 @@ module.exports = {
427
427
  }
428
428
  }
429
429
  },
430
+ promotions: oneOf({
431
+ type: 'object',
432
+ additionalProperties: false,
433
+ properties: {
434
+ version: oneOf({
435
+ description: 'Controls the version filter of the GET call',
436
+ type: 'string',
437
+ enum: [
438
+ 'v2', // ...&version=2
439
+ 'v2v3' // ...&version%5B%5D=2&version%5B%5D=3'
440
+ ],
441
+ default: 'v2' // will call existing '&version=2'
442
+ })
443
+ }
444
+ }),
430
445
  transactions: {
431
446
  type: 'object',
432
447
  additionalProperties: false,
@@ -77,6 +77,10 @@ module.exports = {
77
77
  description: 'Defines the \'E-Mail Quittance\' button - only non-invoiced sales',
78
78
  ...buttonUIConfiguration
79
79
  }),
80
+ print_quittance: oneOf({
81
+ description: 'Defines the \'Print Quittance\' button - only non-invoiced sales',
82
+ ...buttonUIConfiguration
83
+ }),
80
84
  email_invoice: oneOf({
81
85
  description: 'Defines the \'E-Mail Invoice\' button - only invoiced sales',
82
86
  ...buttonUIConfiguration
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.321.0",
3
+ "version": "6.323.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",