@tillhub/schemas 6.244.0 → 6.245.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.245.0](https://github.com/tillhub/schemas/compare/v6.244.0...v6.245.0) (2023-08-09)
2
+
3
+
4
+ ### Features
5
+
6
+ * **configurations:** staff ([d4226a8](https://github.com/tillhub/schemas/commit/d4226a8))
7
+
1
8
  # [6.244.0](https://github.com/tillhub/schemas/compare/v6.243.0...v6.244.0) (2023-08-08)
2
9
 
3
10
 
@@ -311,7 +311,7 @@ const balanceReceipt = {
311
311
  default: true
312
312
  }),
313
313
  print_extended_stats: oneOf({
314
- description: 'Defines if the extended balance stats will be printed.',
314
+ description: 'Defines if the extended balance stats will be printed. Requires configurations.balances.extended_report and related data.',
315
315
  type: 'boolean',
316
316
  default: true
317
317
  }),
@@ -54,7 +54,8 @@ module.exports = {
54
54
  'after',
55
55
  'before',
56
56
  'none'
57
- ]
57
+ ],
58
+ default: 'none'
58
59
  })
59
60
  },
60
61
  cashier_pin_policy: {
@@ -66,7 +67,8 @@ module.exports = {
66
67
  'none',
67
68
  'after',
68
69
  'before'
69
- ]
70
+ ],
71
+ default: 'none'
70
72
  })
71
73
  },
72
74
  show_staff_number: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.244.0",
3
+ "version": "6.245.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",