@tillhub/schemas 6.286.0 → 6.287.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,10 @@
1
+ # [6.287.0](https://github.com/tillhub/schemas/compare/v6.286.0...v6.287.0) (2024-02-08)
2
+
3
+
4
+ ### Features
5
+
6
+ * **UNTIL_9446_branchSwitchingConf:** add ([cc5fd90](https://github.com/tillhub/schemas/commit/cc5fd90))
7
+
1
8
  # [6.286.0](https://github.com/tillhub/schemas/compare/v6.285.0...v6.286.0) (2024-02-08)
2
9
 
3
10
 
@@ -68,6 +68,12 @@ module.exports = {
68
68
  type: 'string',
69
69
  description: 'Configured secret for the Unzer BNPL API',
70
70
  example: 'QmSgQtMNfm0uZjVedM1BvqGRIQ3D9wjclLYDZcXPZve'
71
+ }),
72
+ success_url: oneOf({
73
+ type: 'string',
74
+ description: 'Configured success url, customers will be redirected to it after finishing the pay-later flow',
75
+ default: 'https://bnpl.tillhub.com/?data=',
76
+ example: 'https://bnpl.tillhub.com/?data=BNPL-{CART_UUID}'
71
77
  })
72
78
  }
73
79
  })
@@ -778,7 +778,12 @@ module.exports = {
778
778
  }
779
779
  })
780
780
  }
781
- })
781
+ }),
782
+ branch_register_switching_allowed: {
783
+ description: 'Defines if the branch and register selection UI is enabled in the POS settings.',
784
+ type: 'boolean',
785
+ default: false
786
+ }
782
787
  }
783
788
  }
784
789
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.286.0",
3
+ "version": "6.287.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",