@tillhub/schemas 6.402.0 → 6.403.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.403.0](https://github.com/tillhub/schemas/compare/v6.402.0...v6.403.0) (2025-10-09)
2
+
3
+
4
+ ### Features
5
+
6
+ * **settings:** adding new property - keep_unlocked: boolean ([547ab86](https://github.com/tillhub/schemas/commit/547ab86))
7
+
1
8
  # [6.402.0](https://github.com/tillhub/schemas/compare/v6.401.0...v6.402.0) (2025-10-07)
2
9
 
3
10
 
@@ -223,6 +223,11 @@ module.exports = {
223
223
  })
224
224
  }
225
225
  }),
226
+ keep_unlocked: oneOf({
227
+ description: 'Keeps POS devices unlocked after cashiers enter their PIN code',
228
+ type: 'boolean',
229
+ default: false
230
+ }),
226
231
  third_party: {
227
232
  deprecated: true,
228
233
  description: stripIndents`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.402.0",
3
+ "version": "6.403.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",