@tillhub/schemas 6.210.0 → 6.211.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.211.0](https://github.com/tillhub/schemas/compare/v6.210.0...v6.211.0) (2023-04-25)
2
+
3
+
4
+ ### Features
5
+
6
+ * **branch-mms:** missing deleted_by ([6683f7d](https://github.com/tillhub/schemas/commit/6683f7d))
7
+
1
8
  # [6.210.0](https://github.com/tillhub/schemas/compare/v6.209.0...v6.210.0) (2023-04-25)
2
9
 
3
10
 
@@ -23,6 +23,12 @@ module.exports = {
23
23
  maxLength: 255,
24
24
  minLength: 1
25
25
  }),
26
+ deleted_by: oneOf({
27
+ description: 'Last time it was updated in Mms.',
28
+ type: 'string',
29
+ maxLength: 255,
30
+ minLength: 1
31
+ }),
26
32
  scope: oneOf({
27
33
  description: 'The scope from Mms.',
28
34
  type: 'string',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.210.0",
3
+ "version": "6.211.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",