@tillhub/schemas 6.189.0 → 6.190.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.190.0](https://github.com/tillhub/schemas/compare/v6.189.0...v6.190.0) (2023-02-06)
2
+
3
+
4
+ ### Features
5
+
6
+ * **branch:** sales print config & currency ([b99cc13](https://github.com/tillhub/schemas/commit/b99cc13))
7
+
1
8
  # [6.189.0](https://github.com/tillhub/schemas/compare/v6.188.0...v6.189.0) (2023-02-02)
2
9
 
3
10
 
@@ -3,7 +3,9 @@ const availableCurrencies = [
3
3
  'USD',
4
4
  'GBP',
5
5
  'CHF',
6
- 'HUF'
6
+ 'HUF',
7
+ 'DKK',
8
+ 'SEK'
7
9
  ]
8
10
 
9
11
  module.exports.available_currency = {
@@ -42,6 +42,7 @@ const salespersonConfiguration = {
42
42
  description: 'Defines how the salesperson will be printed, it will not be printed at all if NULL',
43
43
  type: 'string',
44
44
  enum: [
45
+ 'none',
45
46
  'number',
46
47
  'name',
47
48
  'first_name', // first name only
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.189.0",
3
+ "version": "6.190.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",