@tillhub/schemas 6.270.0 → 6.271.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,15 @@
1
+ # [6.271.0](https://github.com/tillhub/schemas/compare/v6.270.0...v6.271.0) (2023-10-31)
2
+
3
+
4
+ ### Features
5
+
6
+ * **at:** update fiscal configs ([4ecb0d7](https://github.com/tillhub/schemas/commit/4ecb0d7))
7
+ * **at:** update fiscal configs ([38d0e32](https://github.com/tillhub/schemas/commit/38d0e32))
8
+ * **at:** update fiscal configs ([373b87f](https://github.com/tillhub/schemas/commit/373b87f))
9
+ * **at:** update fiscal configs ([b79ba0a](https://github.com/tillhub/schemas/commit/b79ba0a))
10
+ * **fiscalization:** configurations ([63aef90](https://github.com/tillhub/schemas/commit/63aef90))
11
+ * **fiskalization:** at_fiskaly ([f321442](https://github.com/tillhub/schemas/commit/f321442))
12
+
1
13
  # [6.270.0](https://github.com/tillhub/schemas/compare/v6.269.0...v6.270.0) (2023-10-26)
2
14
 
3
15
 
@@ -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'
@@ -377,6 +377,32 @@ module.exports = {
377
377
  }
378
378
  }
379
379
  },
380
+ {
381
+ type: 'object',
382
+ description: 'Configuration object for Austria: Fiskaltrust',
383
+ properties: {
384
+ signature_type: {
385
+ description: 'The fiscal signing type to use - placeholder for future use',
386
+ type: 'string',
387
+ enum: [
388
+ 'fiskaltrust'
389
+ ]
390
+ }
391
+ }
392
+ },
393
+ {
394
+ type: 'object',
395
+ description: 'Configuration object for Austria: Fiskaly',
396
+ properties: {
397
+ signature_type: {
398
+ description: 'The fiscal signing type to use - placeholder for future use',
399
+ type: 'string',
400
+ enum: [
401
+ 'at_fiskaly'
402
+ ]
403
+ }
404
+ }
405
+ },
380
406
  {
381
407
  type: 'null'
382
408
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.270.0",
3
+ "version": "6.271.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",