@tillhub/schemas 6.273.0 → 6.274.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,16 @@
1
+ # [6.274.0](https://github.com/tillhub/schemas/compare/v6.273.0...v6.274.0) (2023-11-20)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **eslint:** fix test ([#898](https://github.com/tillhub/schemas/issues/898)) ([216e8d2](https://github.com/tillhub/schemas/commit/216e8d2))
7
+
8
+
9
+ ### Features
10
+
11
+ * **fiskaly:** add branch signing_configuration ([944375b](https://github.com/tillhub/schemas/commit/944375b))
12
+ * **paymentOptions:** add buy now pay later option ([093487f](https://github.com/tillhub/schemas/commit/093487f))
13
+
1
14
  # [6.273.0](https://github.com/tillhub/schemas/compare/v6.272.0...v6.273.0) (2023-11-02)
2
15
 
3
16
 
@@ -403,9 +403,27 @@ module.exports = {
403
403
  description: 'Any allowed singing system provider as type, currently only Austria has per-branch licensing.',
404
404
  type: 'string',
405
405
  enum: [
406
- 'fiskaltrust'
406
+ 'fiskaltrust',
407
+ 'at_fiskaly'
407
408
  ]
409
+ },
410
+ auth: {
411
+ description: 'Keeping auth data for the branch, in this case just for at_fiskaly',
412
+ type: 'object',
413
+ properties: {
414
+ key: {
415
+ type: 'string'
416
+ },
417
+ secret: {
418
+ type: 'string'
419
+ }
420
+ }
421
+ },
422
+ resource: {
423
+ description: 'In case of at_fiskaly its organization_id',
424
+ type: 'string'
408
425
  }
426
+
409
427
  }
410
428
  },
411
429
  {
@@ -21,7 +21,8 @@ module.exports = {
21
21
  'default',
22
22
  'undefined',
23
23
  'voucher',
24
- 'sumup'
24
+ 'sumup',
25
+ 'buy_now_pay_later' // Unzer: Buy-Now-Pay-Later
25
26
  ]
26
27
  },
27
28
  metadata: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.273.0",
3
+ "version": "6.274.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",