@tillhub/schemas 6.164.0 → 6.166.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.166.0](https://github.com/tillhub/schemas/compare/v6.165.0...v6.166.0) (2022-10-31)
2
+
3
+
4
+ ### Features
5
+
6
+ * **staff_sync:** sync staff per branch ([9963673](https://github.com/tillhub/schemas/commit/9963673))
7
+
8
+ # [6.165.0](https://github.com/tillhub/schemas/compare/v6.164.0...v6.165.0) (2022-10-20)
9
+
10
+
11
+ ### Features
12
+
13
+ * **configurations:** interfaces ([1206a31](https://github.com/tillhub/schemas/commit/1206a31))
14
+
1
15
  # [6.164.0](https://github.com/tillhub/schemas/compare/v6.163.0...v6.164.0) (2022-10-20)
2
16
 
3
17
 
@@ -141,6 +141,11 @@ module.exports = {
141
141
  type: 'boolean',
142
142
  default: false
143
143
  }),
144
+ omit_amount_on_reversals: oneOf({
145
+ description: 'Defines if amount can be omitted in reversals',
146
+ type: 'boolean',
147
+ default: false
148
+ }),
144
149
  inter_call_delay_seconds: oneOf({
145
150
  type: 'number',
146
151
  description: 'Artificial delay between a previous terminal response and the next terminal request when performed automatically (some devices require additional cooldowns to avoid \'busy\' states)',
@@ -32,6 +32,13 @@ module.exports = {
32
32
  'default': false
33
33
  })
34
34
  },
35
+ staff_per_branch: {
36
+ 'description': 'If true, staff will be synchronized per branch by sending it branch UUID as a request parameter',
37
+ ...oneOf({
38
+ 'type': 'boolean',
39
+ 'default': false
40
+ })
41
+ },
35
42
  cashier_pin_logout_enabled: {
36
43
  'description': 'If true, a cashier is allowed to logout on a mandatory PIN request.',
37
44
  ...oneOf({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.164.0",
3
+ "version": "6.166.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",