@tillhub/schemas 6.223.0 → 6.224.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.224.0](https://github.com/tillhub/schemas/compare/v6.223.0...v6.224.0) (2023-06-20)
2
+
3
+
4
+ ### Features
5
+
6
+ * **staff:** added description to field owner ([85bdf1f](https://github.com/tillhub/schemas/commit/85bdf1f))
7
+ * **staff:** added staff type to requests ([3162e9d](https://github.com/tillhub/schemas/commit/3162e9d))
8
+
1
9
  # [6.223.0](https://github.com/tillhub/schemas/compare/v6.222.0...v6.223.0) (2023-06-19)
2
10
 
3
11
 
@@ -488,6 +488,11 @@ module.exports = {
488
488
  default: {
489
489
  type: 'boolean'
490
490
  },
491
+ owner: {
492
+ description: 'Defines if this staff is considered to be an owner of the business and thus might be taxed differently for tips.',
493
+ type: 'boolean',
494
+ default: false
495
+ },
491
496
  external_reference_id: {
492
497
  description: 'A caller defined custom ID for the purpose of syncing from external resources, or to use in analytics.',
493
498
  oneOf: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.223.0",
3
+ "version": "6.224.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",