@kohost/api-client 3.3.9 → 3.3.11
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 +22 -1
- package/dist/cjs/schemas/space.json +2 -1
- package/dist/esm/Models.js +24 -2
- package/dist/esm/Models.js.map +2 -2
- package/dist/esm/utils.js +24 -2
- package/dist/esm/utils.js.map +2 -2
- package/dist/types/schemas/PropertySchema.d.ts +48 -1
- package/dist/types/schemas/SpaceSchema.d.ts +2 -1
- package/package.json +1 -1
package/dist/esm/utils.js
CHANGED
|
@@ -11336,7 +11336,8 @@ var require_space = __commonJS({
|
|
|
11336
11336
|
"lobby",
|
|
11337
11337
|
"gym",
|
|
11338
11338
|
"pool",
|
|
11339
|
-
"restaurant"
|
|
11339
|
+
"restaurant",
|
|
11340
|
+
"unit"
|
|
11340
11341
|
]
|
|
11341
11342
|
},
|
|
11342
11343
|
driver: {
|
|
@@ -13375,7 +13376,7 @@ var require_property = __commonJS({
|
|
|
13375
13376
|
},
|
|
13376
13377
|
discriminator: {
|
|
13377
13378
|
type: "string",
|
|
13378
|
-
enum: ["hospitality", "education", "commercial"]
|
|
13379
|
+
enum: ["hospitality", "education", "commercial", "storage"]
|
|
13379
13380
|
},
|
|
13380
13381
|
organization: {
|
|
13381
13382
|
type: ["string", "null"],
|
|
@@ -13553,6 +13554,27 @@ var require_property = __commonJS({
|
|
|
13553
13554
|
tipping: {
|
|
13554
13555
|
type: "boolean",
|
|
13555
13556
|
default: false
|
|
13557
|
+
},
|
|
13558
|
+
quickServices: {
|
|
13559
|
+
type: "array",
|
|
13560
|
+
items: {
|
|
13561
|
+
type: "object",
|
|
13562
|
+
properties: {
|
|
13563
|
+
name: {
|
|
13564
|
+
type: "string"
|
|
13565
|
+
},
|
|
13566
|
+
description: {
|
|
13567
|
+
type: "string"
|
|
13568
|
+
},
|
|
13569
|
+
department: {
|
|
13570
|
+
type: "string"
|
|
13571
|
+
},
|
|
13572
|
+
image: {
|
|
13573
|
+
$ref: "mediaFile.json"
|
|
13574
|
+
}
|
|
13575
|
+
},
|
|
13576
|
+
required: ["name", "description", "image"]
|
|
13577
|
+
}
|
|
13556
13578
|
}
|
|
13557
13579
|
}
|
|
13558
13580
|
},
|