@tillhub/schemas 6.270.0 → 6.272.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,22 @@
1
+ # [6.272.0](https://github.com/tillhub/schemas/compare/v6.271.0...v6.272.0) (2023-11-02)
2
+
3
+
4
+ ### Features
5
+
6
+ * **fiskaly:** schema validation to update fiskaly information in the register ([#892](https://github.com/tillhub/schemas/issues/892)) ([a2da4e3](https://github.com/tillhub/schemas/commit/a2da4e3))
7
+
8
+ # [6.271.0](https://github.com/tillhub/schemas/compare/v6.270.0...v6.271.0) (2023-10-31)
9
+
10
+
11
+ ### Features
12
+
13
+ * **at:** update fiscal configs ([4ecb0d7](https://github.com/tillhub/schemas/commit/4ecb0d7))
14
+ * **at:** update fiscal configs ([38d0e32](https://github.com/tillhub/schemas/commit/38d0e32))
15
+ * **at:** update fiscal configs ([373b87f](https://github.com/tillhub/schemas/commit/373b87f))
16
+ * **at:** update fiscal configs ([b79ba0a](https://github.com/tillhub/schemas/commit/b79ba0a))
17
+ * **fiscalization:** configurations ([63aef90](https://github.com/tillhub/schemas/commit/63aef90))
18
+ * **fiskalization:** at_fiskaly ([f321442](https://github.com/tillhub/schemas/commit/f321442))
19
+
1
20
  # [6.270.0](https://github.com/tillhub/schemas/compare/v6.269.0...v6.270.0) (2023-10-26)
2
21
 
3
22
 
@@ -397,7 +397,16 @@ module.exports = {
397
397
  anyOf: [
398
398
  {
399
399
  type: 'object',
400
- description: 'Existing configuration object for Austria: Fiskaltrust'
400
+ description: 'Configuration object for Austria: Fiskaltrust - INCOMPLETE definition',
401
+ properties: {
402
+ signature_type: {
403
+ description: 'Any allowed singing system provider as type, currently only Austria has per-branch licensing.',
404
+ type: 'string',
405
+ enum: [
406
+ 'fiskaltrust'
407
+ ]
408
+ }
409
+ }
401
410
  },
402
411
  {
403
412
  type: 'null'
@@ -167,6 +167,50 @@ module.exports = {
167
167
  type: 'boolean',
168
168
  default: false
169
169
  },
170
+ fiscal_signing_admin_config: {
171
+ anyOf: [
172
+ {
173
+ type: 'object',
174
+ additionalProperties: false,
175
+ properties: {
176
+ resource: {
177
+ type: 'string',
178
+ description: 'fiskaly cash register id',
179
+ example: 'uuid'
180
+ },
181
+ signature_type: {
182
+ type: 'string',
183
+ description: 'type of the signature',
184
+ example: 'at_fiskaly'
185
+ },
186
+ fiskaly: {
187
+ type: 'object',
188
+ description: 'fiskaly meta data',
189
+ properties: {
190
+ state: {
191
+ type: 'string',
192
+ description: 'state of the fiskaly cash register',
193
+ example: 'CREATED'
194
+ },
195
+ serial_number: {
196
+ type: 'string',
197
+ description: 'serial number of the fiskaly cash register',
198
+ example: 'serial-number'
199
+ },
200
+ turnover_counter: {
201
+ type: 'string',
202
+ description: 'turnover counter of the fiskaly cash register',
203
+ example: '12.311'
204
+ }
205
+ }
206
+ }
207
+ }
208
+ },
209
+ {
210
+ type: 'null'
211
+ }
212
+ ]
213
+ },
170
214
  device_configuration: {
171
215
  anyOf: [
172
216
  {
@@ -377,6 +421,32 @@ module.exports = {
377
421
  }
378
422
  }
379
423
  },
424
+ {
425
+ type: 'object',
426
+ description: 'Configuration object for Austria: Fiskaltrust',
427
+ properties: {
428
+ signature_type: {
429
+ description: 'The fiscal signing type to use - placeholder for future use',
430
+ type: 'string',
431
+ enum: [
432
+ 'fiskaltrust'
433
+ ]
434
+ }
435
+ }
436
+ },
437
+ {
438
+ type: 'object',
439
+ description: 'Configuration object for Austria: Fiskaly',
440
+ properties: {
441
+ signature_type: {
442
+ description: 'The fiscal signing type to use - placeholder for future use',
443
+ type: 'string',
444
+ enum: [
445
+ 'at_fiskaly'
446
+ ]
447
+ }
448
+ }
449
+ },
380
450
  {
381
451
  type: 'null'
382
452
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.270.0",
3
+ "version": "6.272.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",