@tillhub/schemas 6.397.0 → 6.398.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.398.0](https://github.com/tillhub/schemas/compare/v6.397.0...v6.398.0) (2025-08-19)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **configurations:** features ([73417f6](https://github.com/tillhub/schemas/commit/73417f6))
|
|
7
|
+
|
|
1
8
|
# [6.397.0](https://github.com/tillhub/schemas/compare/v6.396.0...v6.397.0) (2025-07-24)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -117,6 +117,19 @@ module.exports = oneOf({
|
|
|
117
117
|
'online' // fallback to offline if no results
|
|
118
118
|
],
|
|
119
119
|
default: 'none'
|
|
120
|
+
}),
|
|
121
|
+
coop: oneOf({
|
|
122
|
+
description: 'Coop specific settings',
|
|
123
|
+
type: 'object',
|
|
124
|
+
additionalProperties: false,
|
|
125
|
+
properties: {
|
|
126
|
+
base_url: oneOf({
|
|
127
|
+
description: 'The URL of the cloudfunction to be used for online validation',
|
|
128
|
+
type: 'string',
|
|
129
|
+
format: 'uri',
|
|
130
|
+
example: 'https://europe-west3-unzer-gcp-shared-prod.cloudfunctions.net/tillhub-external-rewards-microservice-prod-api'
|
|
131
|
+
})
|
|
132
|
+
}
|
|
120
133
|
})
|
|
121
134
|
}
|
|
122
135
|
}),
|