@tillhub/schemas 6.436.0 → 6.437.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,11 @@
1
+ # [6.437.0](https://github.com/tillhub/schemas/compare/v6.436.0...v6.437.0) (2026-04-20)
2
+
3
+
4
+ ### Features
5
+
6
+ * **configurations:** tips ([bef1174](https://github.com/tillhub/schemas/commit/bef1174))
7
+ * **transactions:** payments ([0bcbb5e](https://github.com/tillhub/schemas/commit/0bcbb5e))
8
+
1
9
  # [6.436.0](https://github.com/tillhub/schemas/compare/v6.435.0...v6.436.0) (2026-04-15)
2
10
 
3
11
 
@@ -92,7 +92,7 @@ module.exports = oneOf({
92
92
  items: {
93
93
  ...currencyAmountObject
94
94
  },
95
- default: [ { 'amounnt': 200.0, 'currency': 'EUR' } ]
95
+ default: [{ 'amounnt': 200.0, 'currency': 'EUR' }]
96
96
  }),
97
97
  auto_propose: oneOf({
98
98
  description: 'if true, automatically selects the highest tip possible according to the given amount or the max_factor, no tips otherwise',
@@ -118,6 +118,15 @@ module.exports = oneOf({
118
118
  'card_opi' // deprecated, use 'card' instead
119
119
  ]
120
120
  }
121
+ }),
122
+ percentage_proposals: oneOf({
123
+ description: 'Defines an array of percentage tipping proposals',
124
+ type: 'array',
125
+ items: {
126
+ type: 'number',
127
+ minimum: 0.0,
128
+ maximum: 1.0
129
+ }
121
130
  })
122
131
  }
123
132
  })
@@ -259,7 +259,13 @@ module.exports = {
259
259
  ...payLaterObject
260
260
  }),
261
261
  default: null
262
- }
262
+ },
263
+ remote_payment_id: oneOf({
264
+ type: 'string',
265
+ format: 'uuid',
266
+ description: 'External remote payment identifier',
267
+ example: 'a5380b42-6025-49de-bb1d-c9357df96506'
268
+ })
263
269
  }
264
270
  })
265
271
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.436.0",
3
+ "version": "6.437.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",