@tillhub/schemas 6.234.0 → 6.235.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,11 @@
1
+ # [6.235.0](https://github.com/tillhub/schemas/compare/v6.234.0...v6.235.0) (2023-07-20)
2
+
3
+
4
+ ### Features
5
+
6
+ * **cartItem:** add external_reference_id ([622af81](https://github.com/tillhub/schemas/commit/622af81))
7
+ * **staffs:** owner ([096aee6](https://github.com/tillhub/schemas/commit/096aee6))
8
+
1
9
  # [6.234.0](https://github.com/tillhub/schemas/compare/v6.233.0...v6.234.0) (2023-07-20)
2
10
 
3
11
 
@@ -441,6 +441,12 @@ const base = {
441
441
  type: 'string',
442
442
  maxLength: 128
443
443
  },
444
+ external_reference_id: oneOf({
445
+ type: 'string',
446
+ example: '823742686434462376376376473647346',
447
+ maxLength: 128,
448
+ description: 'Any identifier a user wants to store in the transaction system. E.g. an ID in a thirdy party ERP.'
449
+ }),
444
450
  custom_properties: {
445
451
  ...customProperties.implementation
446
452
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.234.0",
3
+ "version": "6.235.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",