@tillhub/schemas 6.188.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,17 @@
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
+
8
+ # [6.189.0](https://github.com/tillhub/schemas/compare/v6.188.0...v6.189.0) (2023-02-02)
9
+
10
+
11
+ ### Features
12
+
13
+ * **configuration:** saved carts logs flag ([4cf480b](https://github.com/tillhub/schemas/commit/4cf480b))
14
+
1
15
  # [6.188.0](https://github.com/tillhub/schemas/compare/v6.187.0...v6.188.0) (2023-01-30)
2
16
 
3
17
 
@@ -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 = {
@@ -128,6 +128,11 @@ module.exports = {
128
128
  type: 'boolean',
129
129
  default: true
130
130
  },
131
+ logs_enabled: {
132
+ description: 'Specifies if saved carts logging is enabled.',
133
+ type: 'boolean',
134
+ default: false
135
+ },
131
136
  confirm_deletion: {
132
137
  description: 'Specifies if the deletion of saved carts must be confirmed.',
133
138
  type: 'boolean',
@@ -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.188.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",