@tillhub/schemas 6.224.0 → 6.225.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.225.0](https://github.com/tillhub/schemas/compare/v6.224.0...v6.225.0) (2023-06-21)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **configuration:** custom endpoint printing feature configuration ([14134dd](https://github.com/tillhub/schemas/commit/14134dd))
|
|
7
|
+
|
|
1
8
|
# [6.224.0](https://github.com/tillhub/schemas/compare/v6.223.0...v6.224.0) (2023-06-20)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -87,6 +87,31 @@ module.exports = oneOf({
|
|
|
87
87
|
}
|
|
88
88
|
}
|
|
89
89
|
}),
|
|
90
|
+
custom_endpoint_printing: oneOf({
|
|
91
|
+
description: 'Custom endpoint printing from cart menu',
|
|
92
|
+
type: 'object',
|
|
93
|
+
additionalProperties: false,
|
|
94
|
+
properties: {
|
|
95
|
+
enabled: {
|
|
96
|
+
description: 'Specifies if the feature is available.',
|
|
97
|
+
type: 'boolean',
|
|
98
|
+
default: false
|
|
99
|
+
},
|
|
100
|
+
url: {
|
|
101
|
+
description: 'The URL of the endpoint',
|
|
102
|
+
type: 'string',
|
|
103
|
+
format: 'uri'
|
|
104
|
+
},
|
|
105
|
+
token: {
|
|
106
|
+
description: 'Authorization bearer token',
|
|
107
|
+
type: 'string'
|
|
108
|
+
},
|
|
109
|
+
name: {
|
|
110
|
+
description: 'Display name of the action',
|
|
111
|
+
type: 'string'
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}),
|
|
90
115
|
gastro_tables: oneOf({
|
|
91
116
|
type: 'object',
|
|
92
117
|
additionalProperties: false,
|