@tillhub/schemas 6.258.0 → 6.259.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 +7 -0
- package/lib/v0/staff/base.js +15 -0
- package/lib/v1/configurations/items/validations.js +13 -13
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [6.259.0](https://github.com/tillhub/schemas/compare/v6.258.0...v6.259.0) (2023-09-12)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **staff:** add staff.services ([#866](https://github.com/tillhub/schemas/issues/866)) ([a3966f6](https://github.com/tillhub/schemas/commit/a3966f6))
|
|
7
|
+
|
|
1
8
|
# [6.258.0](https://github.com/tillhub/schemas/compare/v6.257.0...v6.258.0) (2023-09-11)
|
|
2
9
|
|
|
3
10
|
|
package/lib/v0/staff/base.js
CHANGED
|
@@ -540,5 +540,20 @@ module.exports = {
|
|
|
540
540
|
}
|
|
541
541
|
}
|
|
542
542
|
}
|
|
543
|
+
},
|
|
544
|
+
services: {
|
|
545
|
+
description: 'List of ids for the services this staff member is capable of performing',
|
|
546
|
+
oneOf: [
|
|
547
|
+
{
|
|
548
|
+
type: 'array',
|
|
549
|
+
items: {
|
|
550
|
+
type: 'string',
|
|
551
|
+
format: 'uuid'
|
|
552
|
+
}
|
|
553
|
+
},
|
|
554
|
+
{
|
|
555
|
+
type: 'null'
|
|
556
|
+
}
|
|
557
|
+
]
|
|
543
558
|
}
|
|
544
559
|
}
|
|
@@ -13,19 +13,19 @@ module.exports = oneOf({
|
|
|
13
13
|
type: 'object',
|
|
14
14
|
description: 'A dictionary <string, string> describing all validation values',
|
|
15
15
|
properties: {
|
|
16
|
-
all: validationType,
|
|
17
|
-
accounts: validationType,
|
|
18
|
-
carts: validationType,
|
|
19
|
-
transactions: validationType,
|
|
20
|
-
balances: validationType,
|
|
21
|
-
items: validationType,
|
|
22
|
-
products: validationType,
|
|
23
|
-
|
|
24
|
-
taxes: validationType,
|
|
25
|
-
vouchers: validationType,
|
|
26
|
-
payments: validationType,
|
|
27
|
-
discounts: validationType,
|
|
28
|
-
customers: validationType
|
|
16
|
+
all: validationType, // default for all objects that are not covered below yet
|
|
17
|
+
accounts: validationType, // financial accounts
|
|
18
|
+
carts: validationType, // saved carts and active cart
|
|
19
|
+
transactions: validationType, // sales, expenses etc.
|
|
20
|
+
balances: validationType, // balances
|
|
21
|
+
items: validationType, // items within all containers
|
|
22
|
+
products: validationType, // products and product images
|
|
23
|
+
product_groups: validationType, // product groups
|
|
24
|
+
taxes: validationType, // taxes master data
|
|
25
|
+
vouchers: validationType, // vouchers in transactions, items or payments
|
|
26
|
+
payments: validationType, // payments in transactions
|
|
27
|
+
discounts: validationType, // master data discounts and discounts in transactions
|
|
28
|
+
customers: validationType // master data customers
|
|
29
29
|
},
|
|
30
30
|
additionalProperties: validationType
|
|
31
31
|
})
|