@tillhub/schemas 6.368.0 → 6.370.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,22 @@
1
+ # [6.370.0](https://github.com/tillhub/schemas/compare/v6.369.0...v6.370.0) (2025-03-13)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **common:** device_info ([4c7f5ad](https://github.com/tillhub/schemas/commit/4c7f5ad))
7
+
8
+
9
+ ### Features
10
+
11
+ * **common:** device_info ([5db0470](https://github.com/tillhub/schemas/commit/5db0470))
12
+
13
+ # [6.369.0](https://github.com/tillhub/schemas/compare/v6.368.0...v6.369.0) (2025-03-12)
14
+
15
+
16
+ ### Features
17
+
18
+ * **common:** device_info ([3a689ff](https://github.com/tillhub/schemas/commit/3a689ff))
19
+
1
20
  # [6.368.0](https://github.com/tillhub/schemas/compare/v6.367.0...v6.368.0) (2025-03-06)
2
21
 
3
22
 
@@ -29,16 +29,20 @@ module.exports = {
29
29
  example: 'Simulator iPad (10th generation)'
30
30
  }),
31
31
  user: oneOf({
32
- type: 'string',
33
- description: 'Login email of the user',
34
- format: 'email',
35
- example: 'm@n.de'
36
- }),
37
- sub_user: oneOf({
38
- type: 'string',
39
- description: 'Login email of the sub-user',
40
- format: 'email',
41
- example: 'm@n.de'
32
+ type: 'object',
33
+ properties: {
34
+ email: oneOf({
35
+ type: 'string',
36
+ description: 'Login email of the user',
37
+ format: 'email',
38
+ example: 'khg0320@tillhub.de'
39
+ }),
40
+ organisation: oneOf({
41
+ type: 'string',
42
+ description: 'Organisation if present',
43
+ example: 'klier'
44
+ })
45
+ }
42
46
  })
43
47
  }
44
48
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/schemas",
3
- "version": "6.368.0",
3
+ "version": "6.370.0",
4
4
  "private": false,
5
5
  "description": "All Tillhub API OpenAPI 3 compatible JSON Schemas.",
6
6
  "main": "./lib/index.js",