@tillhub/schemas 6.394.1 → 6.396.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 +14 -0
- package/lib/common/device_info.js +23 -15
- package/lib/v1/configurations/items/gastro.js +11 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [6.396.0](https://github.com/tillhub/schemas/compare/v6.395.0...v6.396.0) (2025-07-23)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **device_info:** user should extended to accept string ([8c08dce](https://github.com/tillhub/schemas/commit/8c08dce))
|
|
7
|
+
|
|
8
|
+
# [6.395.0](https://github.com/tillhub/schemas/compare/v6.394.1...v6.395.0) (2025-07-01)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **configurations:** gastro ([e578bc7](https://github.com/tillhub/schemas/commit/e578bc7))
|
|
14
|
+
|
|
1
15
|
## [6.394.1](https://github.com/tillhub/schemas/compare/v6.394.0...v6.394.1) (2025-06-24)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -28,21 +28,29 @@ module.exports = {
|
|
|
28
28
|
description: 'Device hardware',
|
|
29
29
|
example: 'Simulator iPad (10th generation)'
|
|
30
30
|
}),
|
|
31
|
-
user: oneOf(
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
31
|
+
user: oneOf([
|
|
32
|
+
{
|
|
33
|
+
type: 'string',
|
|
34
|
+
description: 'Login email of the user',
|
|
35
|
+
format: 'email',
|
|
36
|
+
example: 'm@n.de'
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
type: 'object',
|
|
40
|
+
properties: {
|
|
41
|
+
email: oneOf({
|
|
42
|
+
type: 'string',
|
|
43
|
+
description: 'Login email of the user',
|
|
44
|
+
format: 'email',
|
|
45
|
+
example: 'khg0320@tillhub.de'
|
|
46
|
+
}),
|
|
47
|
+
organisation: oneOf({
|
|
48
|
+
type: 'string',
|
|
49
|
+
description: 'Organisation if present',
|
|
50
|
+
example: 'klier'
|
|
51
|
+
})
|
|
52
|
+
}
|
|
45
53
|
}
|
|
46
|
-
|
|
54
|
+
])
|
|
47
55
|
}
|
|
48
56
|
}
|
|
@@ -83,6 +83,17 @@ module.exports = {
|
|
|
83
83
|
default: 25
|
|
84
84
|
})
|
|
85
85
|
}
|
|
86
|
+
}),
|
|
87
|
+
history: oneOf({
|
|
88
|
+
type: 'object',
|
|
89
|
+
description: 'Defines data on the Orderpro history view',
|
|
90
|
+
properties: {
|
|
91
|
+
transactions: oneOf({
|
|
92
|
+
description: 'Specifies if Orderpro should fetch transactions to potentially process cancellations and refunds',
|
|
93
|
+
type: 'boolean',
|
|
94
|
+
default: false
|
|
95
|
+
})
|
|
96
|
+
}
|
|
86
97
|
})
|
|
87
98
|
}
|
|
88
99
|
}),
|