@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
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
},
|
|
27
27
|
"discriminator": {
|
|
28
28
|
"type": "string",
|
|
29
|
-
"enum": ["hospitality", "education", "commercial"]
|
|
29
|
+
"enum": ["hospitality", "education", "commercial", "storage"]
|
|
30
30
|
},
|
|
31
31
|
"organization": {
|
|
32
32
|
"type": ["string", "null"],
|
|
@@ -204,6 +204,27 @@
|
|
|
204
204
|
"tipping": {
|
|
205
205
|
"type": "boolean",
|
|
206
206
|
"default": false
|
|
207
|
+
},
|
|
208
|
+
"quickServices": {
|
|
209
|
+
"type": "array",
|
|
210
|
+
"items": {
|
|
211
|
+
"type": "object",
|
|
212
|
+
"properties": {
|
|
213
|
+
"name": {
|
|
214
|
+
"type": "string"
|
|
215
|
+
},
|
|
216
|
+
"description": {
|
|
217
|
+
"type": "string"
|
|
218
|
+
},
|
|
219
|
+
"department": {
|
|
220
|
+
"type": "string"
|
|
221
|
+
},
|
|
222
|
+
"image": {
|
|
223
|
+
"$ref": "mediaFile.json"
|
|
224
|
+
}
|
|
225
|
+
},
|
|
226
|
+
"required": ["name", "description", "image"]
|
|
227
|
+
}
|
|
207
228
|
}
|
|
208
229
|
}
|
|
209
230
|
},
|
package/dist/esm/Models.js
CHANGED
|
@@ -11279,7 +11279,8 @@ var require_space = __commonJS({
|
|
|
11279
11279
|
"lobby",
|
|
11280
11280
|
"gym",
|
|
11281
11281
|
"pool",
|
|
11282
|
-
"restaurant"
|
|
11282
|
+
"restaurant",
|
|
11283
|
+
"unit"
|
|
11283
11284
|
]
|
|
11284
11285
|
},
|
|
11285
11286
|
driver: {
|
|
@@ -13318,7 +13319,7 @@ var require_property = __commonJS({
|
|
|
13318
13319
|
},
|
|
13319
13320
|
discriminator: {
|
|
13320
13321
|
type: "string",
|
|
13321
|
-
enum: ["hospitality", "education", "commercial"]
|
|
13322
|
+
enum: ["hospitality", "education", "commercial", "storage"]
|
|
13322
13323
|
},
|
|
13323
13324
|
organization: {
|
|
13324
13325
|
type: ["string", "null"],
|
|
@@ -13496,6 +13497,27 @@ var require_property = __commonJS({
|
|
|
13496
13497
|
tipping: {
|
|
13497
13498
|
type: "boolean",
|
|
13498
13499
|
default: false
|
|
13500
|
+
},
|
|
13501
|
+
quickServices: {
|
|
13502
|
+
type: "array",
|
|
13503
|
+
items: {
|
|
13504
|
+
type: "object",
|
|
13505
|
+
properties: {
|
|
13506
|
+
name: {
|
|
13507
|
+
type: "string"
|
|
13508
|
+
},
|
|
13509
|
+
description: {
|
|
13510
|
+
type: "string"
|
|
13511
|
+
},
|
|
13512
|
+
department: {
|
|
13513
|
+
type: "string"
|
|
13514
|
+
},
|
|
13515
|
+
image: {
|
|
13516
|
+
$ref: "mediaFile.json"
|
|
13517
|
+
}
|
|
13518
|
+
},
|
|
13519
|
+
required: ["name", "description", "image"]
|
|
13520
|
+
}
|
|
13499
13521
|
}
|
|
13500
13522
|
}
|
|
13501
13523
|
},
|