@tillhub/schemas 6.140.0 → 6.141.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.141.0](https://github.com/tillhub/schemas/compare/v6.140.0...v6.141.0) (2022-05-30)
2
+
3
+
4
+ ### Features
5
+
6
+ * **configurations:** order_receipts ([f9d5f14](https://github.com/tillhub/schemas/commit/f9d5f14))
7
+
1
8
  # [6.140.0](https://github.com/tillhub/schemas/compare/v6.139.0...v6.140.0) (2022-05-20)
2
9
 
3
10
 
@@ -369,6 +369,14 @@ module.exports = oneOf({
369
369
  type: 'boolean',
370
370
  default: true
371
371
  },
372
+ size_type: oneOf({
373
+ type: 'string',
374
+ enum: [
375
+ 'regular',
376
+ 'large'
377
+ ],
378
+ default: 'large'
379
+ }),
372
380
  triggers: oneOf({
373
381
  type: 'object',
374
382
  additionalProperties: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.140.0",
3
+ "version": "6.141.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",