@tillhub/schemas 6.203.0 → 6.204.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.204.0](https://github.com/tillhub/schemas/compare/v6.203.0...v6.204.0) (2023-03-31)
2
+
3
+
4
+ ### Features
5
+
6
+ * **balances:** tips ([3e251ce](https://github.com/tillhub/schemas/commit/3e251ce))
7
+
1
8
  # [6.203.0](https://github.com/tillhub/schemas/compare/v6.202.0...v6.203.0) (2023-03-22)
2
9
 
3
10
 
@@ -38,6 +38,14 @@ module.exports = {
38
38
  example: 1850,
39
39
  description: 'The per fa_account daily revenue amount (in cent-format: 1267 == 12.67€)'
40
40
  },
41
+ template_number: {
42
+ ...oneOf({
43
+ type: 'string',
44
+ example: '9977',
45
+ description: 'Custom identifier the template - currently the product number from the template'
46
+ }),
47
+ default: null
48
+ },
41
49
  vat_fa_account_number: {
42
50
  ...oneOf({
43
51
  type: 'string',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.203.0",
3
+ "version": "6.204.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",