@tillhub/schemas 6.196.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 +12 -0
- package/lib/v0/taxes/base.js +18 -3
- package/lib/v1/products/base.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
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
|
+
|
|
1
13
|
# [6.196.0](https://github.com/tillhub/schemas/compare/v6.195.0...v6.196.0) (2023-03-01)
|
|
2
14
|
|
|
3
15
|
|
package/lib/v0/taxes/base.js
CHANGED
|
@@ -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
|
{
|
package/lib/v1/products/base.js
CHANGED
|
@@ -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'
|