@kohost/api-client 3.3.4 → 3.3.6
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/dist/cjs/schemas/property.json +6 -0
- package/dist/cjs/schemas/user.json +4 -0
- package/dist/esm/Models.js +10 -0
- package/dist/esm/Models.js.map +2 -2
- package/dist/esm/utils.js +10 -0
- package/dist/esm/utils.js.map +2 -2
- package/dist/types/schemas/PropertySchema.d.ts +1 -0
- package/dist/types/schemas/UserSchema.d.ts +4 -0
- package/package.json +1 -1
|
@@ -25,6 +25,12 @@
|
|
|
25
25
|
"type": ["string", "null"],
|
|
26
26
|
"description": "Reference (id) to the organization that owns this property"
|
|
27
27
|
},
|
|
28
|
+
"departments": {
|
|
29
|
+
"type": "array",
|
|
30
|
+
"items": {
|
|
31
|
+
"type": "string"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
28
34
|
"testModeEnabled": {
|
|
29
35
|
"type": "boolean"
|
|
30
36
|
},
|
package/dist/esm/Models.js
CHANGED
|
@@ -9544,6 +9544,10 @@ var require_user = __commonJS({
|
|
|
9544
9544
|
"SuperAdmin"
|
|
9545
9545
|
]
|
|
9546
9546
|
},
|
|
9547
|
+
department: {
|
|
9548
|
+
type: "string",
|
|
9549
|
+
description: "The department the user belongs to."
|
|
9550
|
+
},
|
|
9547
9551
|
policyIds: {
|
|
9548
9552
|
type: "array",
|
|
9549
9553
|
items: {
|
|
@@ -13295,6 +13299,12 @@ var require_property = __commonJS({
|
|
|
13295
13299
|
type: ["string", "null"],
|
|
13296
13300
|
description: "Reference (id) to the organization that owns this property"
|
|
13297
13301
|
},
|
|
13302
|
+
departments: {
|
|
13303
|
+
type: "array",
|
|
13304
|
+
items: {
|
|
13305
|
+
type: "string"
|
|
13306
|
+
}
|
|
13307
|
+
},
|
|
13298
13308
|
testModeEnabled: {
|
|
13299
13309
|
type: "boolean"
|
|
13300
13310
|
},
|