@tillhub/schemas 6.397.0 → 6.399.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.399.0](https://github.com/tillhub/schemas/compare/v6.398.0...v6.399.0) (2025-09-08)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **configurations:** gastro ([6f9e357](https://github.com/tillhub/schemas/commit/6f9e357))
|
|
7
|
+
|
|
8
|
+
# [6.398.0](https://github.com/tillhub/schemas/compare/v6.397.0...v6.398.0) (2025-08-19)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **configurations:** features ([73417f6](https://github.com/tillhub/schemas/commit/73417f6))
|
|
14
|
+
|
|
1
15
|
# [6.397.0](https://github.com/tillhub/schemas/compare/v6.396.0...v6.397.0) (2025-07-24)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -117,6 +117,19 @@ module.exports = oneOf({
|
|
|
117
117
|
'online' // fallback to offline if no results
|
|
118
118
|
],
|
|
119
119
|
default: 'none'
|
|
120
|
+
}),
|
|
121
|
+
coop: oneOf({
|
|
122
|
+
description: 'Coop specific settings',
|
|
123
|
+
type: 'object',
|
|
124
|
+
additionalProperties: false,
|
|
125
|
+
properties: {
|
|
126
|
+
base_url: oneOf({
|
|
127
|
+
description: 'The URL of the cloudfunction to be used for online validation',
|
|
128
|
+
type: 'string',
|
|
129
|
+
format: 'uri',
|
|
130
|
+
example: 'https://europe-west3-unzer-gcp-shared-prod.cloudfunctions.net/tillhub-external-rewards-microservice-prod-api'
|
|
131
|
+
})
|
|
132
|
+
}
|
|
120
133
|
})
|
|
121
134
|
}
|
|
122
135
|
}),
|
|
@@ -39,6 +39,11 @@ module.exports = {
|
|
|
39
39
|
description: 'defines whether remote access is available on the main POS.',
|
|
40
40
|
default: 'false'
|
|
41
41
|
},
|
|
42
|
+
drawer_open: oneOf({
|
|
43
|
+
type: 'boolean',
|
|
44
|
+
description: 'defines whether cash drawers will be automatically opened when checking out remotely.',
|
|
45
|
+
default: 'false'
|
|
46
|
+
}),
|
|
42
47
|
background_release_seconds: {
|
|
43
48
|
description: 'The time in seconds that the Local Server will stay available when the app is send to the background.',
|
|
44
49
|
type: 'integer',
|