@tillhub/schemas 6.195.0 → 6.197.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,22 @@
1
+ # [6.197.0](https://github.com/tillhub/schemas/compare/v6.196.0...v6.197.0) (2023-03-02)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **taxes_base_jurisdictions:** fix test, remove duplicate item ([16f70d6](https://github.com/tillhub/schemas/commit/16f70d6))
7
+
8
+
9
+ ### Features
10
+
11
+ * **flush:** new version ([19c7997](https://github.com/tillhub/schemas/commit/19c7997))
12
+
13
+ # [6.196.0](https://github.com/tillhub/schemas/compare/v6.195.0...v6.196.0) (2023-03-01)
14
+
15
+
16
+ ### Features
17
+
18
+ * **configurations:** interfaces ([4eff50d](https://github.com/tillhub/schemas/commit/4eff50d))
19
+
1
20
  # [6.195.0](https://github.com/tillhub/schemas/compare/v6.194.0...v6.195.0) (2023-02-21)
2
21
 
3
22
 
@@ -76,11 +76,26 @@ module.exports = {
76
76
  'hungary',
77
77
  'italy',
78
78
  'ireland',
79
- 'jungholz',
80
- 'mittelberg',
81
79
  'monaco',
82
80
  'spain',
83
- 'switzerland'
81
+ 'switzerland',
82
+ 'sweden',
83
+ 'belgium',
84
+ 'bulgaria',
85
+ 'croatia',
86
+ 'finland',
87
+ 'cyprus',
88
+ 'estonia',
89
+ 'greece',
90
+ 'latvia',
91
+ 'lithuania',
92
+ 'luxembourg',
93
+ 'malta',
94
+ 'poland',
95
+ 'portugal',
96
+ 'romania',
97
+ 'slovakia',
98
+ 'slovenia'
84
99
  ]
85
100
  },
86
101
  {
@@ -153,6 +153,14 @@ module.exports = {
153
153
  maximum: 10.0,
154
154
  multipleOf: 0.001,
155
155
  default: 1.0 // defaults to 3.0 if Swiss
156
+ }),
157
+ language_code: oneOf({
158
+ type: 'string',
159
+ description: 'Language code send in card service requests. ISO 639-1:2002.',
160
+ example: 'de',
161
+ minLength: 2,
162
+ maxLength: 2,
163
+ default: null // fallback is defined by the current POS language
156
164
  })
157
165
  }
158
166
  },
@@ -272,7 +272,7 @@ const request = {
272
272
  ]
273
273
  },
274
274
  categories: {
275
- description: 'Defines a list of Tillhub categories, which is list of uuids. The category trees will then determine where it is placed.',
275
+ description: 'Defines a list of "Tillhub" categories, which is list of uuids. The category trees will then determine where it is placed.',
276
276
  anyOf: [
277
277
  {
278
278
  type: 'array'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.195.0",
3
+ "version": "6.197.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",