@tillhub/schemas 6.220.0 → 6.222.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,17 @@
|
|
|
1
|
+
# [6.222.0](https://github.com/tillhub/schemas/compare/v6.221.0...v6.222.0) (2023-06-18)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **purchase-orders:** Typo fixed ([#812](https://github.com/tillhub/schemas/issues/812)) ([5b92323](https://github.com/tillhub/schemas/commit/5b92323))
|
|
7
|
+
|
|
8
|
+
# [6.221.0](https://github.com/tillhub/schemas/compare/v6.220.0...v6.221.0) (2023-06-18)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **purchase-orders:** Get full name of user, who creates purchase order ([#811](https://github.com/tillhub/schemas/issues/811)) ([c31f83e](https://github.com/tillhub/schemas/commit/c31f83e))
|
|
14
|
+
|
|
1
15
|
# [6.220.0](https://github.com/tillhub/schemas/compare/v6.219.0...v6.220.0) (2023-06-14)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -40,7 +40,14 @@ module.exports = {
|
|
|
40
40
|
]
|
|
41
41
|
},
|
|
42
42
|
createdBy: {
|
|
43
|
-
|
|
43
|
+
anyOf: [
|
|
44
|
+
{
|
|
45
|
+
type: 'string'
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
type: 'null'
|
|
49
|
+
}
|
|
50
|
+
]
|
|
44
51
|
},
|
|
45
52
|
creatorFullName: {
|
|
46
53
|
type: 'string'
|
|
@@ -254,7 +261,7 @@ module.exports = {
|
|
|
254
261
|
'company_name'
|
|
255
262
|
]
|
|
256
263
|
},
|
|
257
|
-
|
|
264
|
+
businessPartner: {
|
|
258
265
|
type: 'object',
|
|
259
266
|
properties: {
|
|
260
267
|
id: {
|
|
@@ -450,6 +457,6 @@ module.exports = {
|
|
|
450
457
|
required: [
|
|
451
458
|
'order',
|
|
452
459
|
'company',
|
|
453
|
-
'
|
|
460
|
+
'businessPartner'
|
|
454
461
|
]
|
|
455
462
|
}
|