@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
package/dist/esm/utils.js
CHANGED
|
@@ -9601,6 +9601,10 @@ var require_user = __commonJS({
|
|
|
9601
9601
|
"SuperAdmin"
|
|
9602
9602
|
]
|
|
9603
9603
|
},
|
|
9604
|
+
department: {
|
|
9605
|
+
type: "string",
|
|
9606
|
+
description: "The department the user belongs to."
|
|
9607
|
+
},
|
|
9604
9608
|
policyIds: {
|
|
9605
9609
|
type: "array",
|
|
9606
9610
|
items: {
|
|
@@ -13352,6 +13356,12 @@ var require_property = __commonJS({
|
|
|
13352
13356
|
type: ["string", "null"],
|
|
13353
13357
|
description: "Reference (id) to the organization that owns this property"
|
|
13354
13358
|
},
|
|
13359
|
+
departments: {
|
|
13360
|
+
type: "array",
|
|
13361
|
+
items: {
|
|
13362
|
+
type: "string"
|
|
13363
|
+
}
|
|
13364
|
+
},
|
|
13355
13365
|
testModeEnabled: {
|
|
13356
13366
|
type: "boolean"
|
|
13357
13367
|
},
|