@tillhub/schemas 6.290.0 → 6.292.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.292.0](https://github.com/tillhub/schemas/compare/v6.291.0...v6.292.0) (2024-03-01)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **configurations:** fix defaults ([b1538e2](https://github.com/tillhub/schemas/commit/b1538e2))
|
|
7
|
+
|
|
8
|
+
# [6.291.0](https://github.com/tillhub/schemas/compare/v6.290.0...v6.291.0) (2024-02-26)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **configurations:** balances ([9053e0c](https://github.com/tillhub/schemas/commit/9053e0c))
|
|
14
|
+
* **configurations:** settings ([514bf1c](https://github.com/tillhub/schemas/commit/514bf1c))
|
|
15
|
+
|
|
1
16
|
# [6.290.0](https://github.com/tillhub/schemas/compare/v6.289.0...v6.290.0) (2024-02-15)
|
|
2
17
|
|
|
3
18
|
|
|
@@ -160,6 +160,18 @@ module.exports = {
|
|
|
160
160
|
],
|
|
161
161
|
default: 'optional'
|
|
162
162
|
},
|
|
163
|
+
signing_data_exports: oneOf({
|
|
164
|
+
type: 'object',
|
|
165
|
+
additionalProperties: false,
|
|
166
|
+
description: 'Defines if and how signing data should be exported alongside conducting a balance.',
|
|
167
|
+
properties: {
|
|
168
|
+
enabled: {
|
|
169
|
+
description: 'If true AND the signing type supports exports from the POS (tse_epson), the export dialog will be triggered.',
|
|
170
|
+
type: 'boolean',
|
|
171
|
+
default: true // clients using an Epson TSE will have this enabled when the POS application starts supporting the technology (iOS 4.30.0)
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
}),
|
|
163
175
|
show_account_names: {
|
|
164
176
|
description: 'Defines if account names are shown additionally to the numbers.',
|
|
165
177
|
default: false,
|
|
@@ -298,22 +298,22 @@ const balanceReceipt = {
|
|
|
298
298
|
print_total_sales: oneOf({
|
|
299
299
|
description: 'Defines if the total number of sales will be printed.',
|
|
300
300
|
type: 'boolean',
|
|
301
|
-
default:
|
|
301
|
+
default: false
|
|
302
302
|
}),
|
|
303
303
|
print_tips_section: oneOf({
|
|
304
304
|
description: 'Defines if the extended tips-section will be printed.',
|
|
305
305
|
type: 'boolean',
|
|
306
|
-
default:
|
|
306
|
+
default: false
|
|
307
307
|
}),
|
|
308
308
|
print_cash_units_section: oneOf({
|
|
309
309
|
description: 'Defines if the counted cash units will be printed.',
|
|
310
310
|
type: 'boolean',
|
|
311
|
-
default:
|
|
311
|
+
default: false
|
|
312
312
|
}),
|
|
313
313
|
print_extended_stats: oneOf({
|
|
314
314
|
description: 'Defines if the extended balance stats will be printed. Requires configurations.balances.extended_report and related data.',
|
|
315
315
|
type: 'boolean',
|
|
316
|
-
default:
|
|
316
|
+
default: false
|
|
317
317
|
}),
|
|
318
318
|
print_account_names: oneOf({
|
|
319
319
|
description: 'Defines if account names are printed additionally to the numbers.',
|
|
@@ -132,6 +132,11 @@ module.exports = {
|
|
|
132
132
|
maximum: 120
|
|
133
133
|
}
|
|
134
134
|
}
|
|
135
|
+
}),
|
|
136
|
+
allow_time_adjustment_for_archiving: oneOf({
|
|
137
|
+
description: 'defines if exports (archives only) should be tried for expired certificates, HANDLE WITH CARE',
|
|
138
|
+
type: 'boolean',
|
|
139
|
+
default: false
|
|
135
140
|
})
|
|
136
141
|
}
|
|
137
142
|
}),
|
|
@@ -341,7 +346,7 @@ module.exports = {
|
|
|
341
346
|
},
|
|
342
347
|
active: {
|
|
343
348
|
// supported on POS, FALSE for e.g. KHG, TRUE by default
|
|
344
|
-
description: 'If true,
|
|
349
|
+
description: 'If true, customers will be downloaded to the POS',
|
|
345
350
|
default: true,
|
|
346
351
|
type: 'boolean'
|
|
347
352
|
}
|