@tillhub/schemas 6.253.0 → 6.254.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.254.0](https://github.com/tillhub/schemas/compare/v6.253.0...v6.254.0) (2023-08-28)
2
+
3
+
4
+ ### Features
5
+
6
+ * **customers:** add price_book_id ([c633970](https://github.com/tillhub/schemas/commit/c633970))
7
+
1
8
  # [6.253.0](https://github.com/tillhub/schemas/compare/v6.252.1...v6.253.0) (2023-08-24)
2
9
 
3
10
 
@@ -425,5 +425,12 @@ module.exports = {
425
425
  type: 'string',
426
426
  format: 'uuid'
427
427
  })
428
+ },
429
+ price_book_id: {
430
+ description: 'in cases where the customer is going to have personal pricebook (like for discounts in pharmacy by personal insurance number), price_book_id is required',
431
+ ...oneOf({
432
+ type: 'string',
433
+ format: 'uuid'
434
+ })
428
435
  }
429
436
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.253.0",
3
+ "version": "6.254.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",