@tillhub/schemas 6.360.0 → 6.362.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,18 @@
|
|
|
1
|
+
# [6.362.0](https://github.com/tillhub/schemas/compare/v6.361.0...v6.362.0) (2025-02-25)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **configurations:** gastro ([b5736a9](https://github.com/tillhub/schemas/commit/b5736a9))
|
|
7
|
+
|
|
8
|
+
# [6.361.0](https://github.com/tillhub/schemas/compare/v6.360.0...v6.361.0) (2025-02-21)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **configurations:** vouchers ([c1451c5](https://github.com/tillhub/schemas/commit/c1451c5))
|
|
14
|
+
* **registers:** device_configuration ([29096d8](https://github.com/tillhub/schemas/commit/29096d8))
|
|
15
|
+
|
|
1
16
|
# [6.360.0](https://github.com/tillhub/schemas/compare/v6.359.0...v6.360.0) (2025-02-19)
|
|
2
17
|
|
|
3
18
|
|
|
@@ -77,6 +77,16 @@ module.exports = {
|
|
|
77
77
|
}
|
|
78
78
|
})
|
|
79
79
|
}
|
|
80
|
+
}),
|
|
81
|
+
floor_layout: oneOf({
|
|
82
|
+
description: 'Specifies if the classic grid or the visual layout will be used',
|
|
83
|
+
example: 'visual',
|
|
84
|
+
type: 'string',
|
|
85
|
+
enum: [
|
|
86
|
+
'grid',
|
|
87
|
+
'visual'
|
|
88
|
+
],
|
|
89
|
+
default: 'grid'
|
|
80
90
|
})
|
|
81
91
|
}
|
|
82
92
|
}
|
|
@@ -12,6 +12,13 @@ module.exports = oneOf({
|
|
|
12
12
|
description: 'Specifies if vouchers can be redeemed as cart items with negative quantity.',
|
|
13
13
|
type: 'boolean',
|
|
14
14
|
default: true
|
|
15
|
+
}),
|
|
16
|
+
api_timeout: oneOf({
|
|
17
|
+
description: 'Specifies the applications timeout for voucher-api-requests.',
|
|
18
|
+
type: 'number',
|
|
19
|
+
minimum: 5.0,
|
|
20
|
+
maximum: 120.0,
|
|
21
|
+
default: 30.0
|
|
15
22
|
})
|
|
16
23
|
}
|
|
17
24
|
})
|
package/lib/v1/registers/base.js
CHANGED
|
@@ -224,20 +224,17 @@ module.exports = {
|
|
|
224
224
|
example: 'de.tillhub.tillhubstage'
|
|
225
225
|
})
|
|
226
226
|
},
|
|
227
|
-
network: {
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
required: ['ip']
|
|
239
|
-
})
|
|
240
|
-
},
|
|
227
|
+
network: oneOf({
|
|
228
|
+
type: 'object',
|
|
229
|
+
additionalProperties: false,
|
|
230
|
+
properties: {
|
|
231
|
+
ip: oneOf({
|
|
232
|
+
type: 'string',
|
|
233
|
+
description: 'The local IP-address of the client application',
|
|
234
|
+
example: '192.168.1.147'
|
|
235
|
+
})
|
|
236
|
+
}
|
|
237
|
+
}),
|
|
241
238
|
counting_decisions: {
|
|
242
239
|
...oneOf({
|
|
243
240
|
type: 'array',
|