@tillhub/schemas 6.110.0 → 6.111.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.111.0](https://github.com/tillhub/schemas/compare/v6.110.0...v6.111.0) (2022-01-06)
2
+
3
+
4
+ ### Features
5
+
6
+ * **discounts:** add branch_groups to discounts ([39cbd66](https://github.com/tillhub/schemas/commit/39cbd66))
7
+
1
8
  # [6.110.0](https://github.com/tillhub/schemas/compare/v6.109.0...v6.110.0) (2022-01-04)
2
9
 
3
10
 
@@ -364,6 +364,20 @@ module.exports = {
364
364
  }
365
365
  ]
366
366
  },
367
+ branch_groups: {
368
+ oneOf: [
369
+ {
370
+ type: 'array',
371
+ items: {
372
+ type: 'string',
373
+ format: 'uuid'
374
+ }
375
+ },
376
+ {
377
+ type: 'null'
378
+ }
379
+ ]
380
+ },
367
381
  order: {
368
382
  oneOf: [
369
383
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.110.0",
3
+ "version": "6.111.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",