@tillhub/schemas 6.449.0 → 6.450.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.
@@ -1009,6 +1009,23 @@ module.exports = {
1009
1009
  },
1010
1010
  required: ['shop_name']
1011
1011
  },
1012
+ payment_links: {
1013
+ description: 'Payment link creation defaults.',
1014
+ type: 'object',
1015
+ additionalProperties: false,
1016
+ properties: {
1017
+ default_expiry_days: {
1018
+ description: 'Default lifetime of a LinkPay payment link in whole days.',
1019
+ type: 'integer',
1020
+ minimum: 1
1021
+ },
1022
+ default_usage_mode: {
1023
+ description: 'Default usage mode for LinkPay payment links.',
1024
+ type: 'string',
1025
+ enum: ['single_use', 'multi_use']
1026
+ }
1027
+ }
1028
+ },
1012
1029
  hide_empty_fields: oneOf({
1013
1030
  description: 'When enabled, fields with empty values will be hidden from view on Order and Transaction pages.',
1014
1031
  type: 'boolean',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.449.0",
3
+ "version": "6.450.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",