@kohost/api-client 3.2.4 → 3.2.5
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.
|
@@ -123,7 +123,14 @@ export interface Property {
|
|
|
123
123
|
};
|
|
124
124
|
Elevator?: unknown;
|
|
125
125
|
Experiences?: unknown;
|
|
126
|
-
Dining?:
|
|
126
|
+
Dining?: {
|
|
127
|
+
system?: "gotab";
|
|
128
|
+
systemConfig?: {
|
|
129
|
+
landingUrl?: string;
|
|
130
|
+
includeUserDetails?: boolean;
|
|
131
|
+
};
|
|
132
|
+
[k: string]: unknown;
|
|
133
|
+
};
|
|
127
134
|
Rentals?: unknown;
|
|
128
135
|
Shop?: unknown;
|
|
129
136
|
Spa?: unknown;
|
|
@@ -281,7 +281,28 @@
|
|
|
281
281
|
},
|
|
282
282
|
"Elevator": {},
|
|
283
283
|
"Experiences": {},
|
|
284
|
-
"Dining": {
|
|
284
|
+
"Dining": {
|
|
285
|
+
"type": "object",
|
|
286
|
+
"properties": {
|
|
287
|
+
"system": {
|
|
288
|
+
"type": "string",
|
|
289
|
+
"enum": ["gotab"]
|
|
290
|
+
},
|
|
291
|
+
"systemConfig": {
|
|
292
|
+
"type": "object",
|
|
293
|
+
"properties": {
|
|
294
|
+
"landingUrl": {
|
|
295
|
+
"type": "string",
|
|
296
|
+
"format": "uri"
|
|
297
|
+
},
|
|
298
|
+
"includeUserDetails": {
|
|
299
|
+
"type": "boolean"
|
|
300
|
+
}
|
|
301
|
+
},
|
|
302
|
+
"additionalProperties": false
|
|
303
|
+
}
|
|
304
|
+
}
|
|
305
|
+
},
|
|
285
306
|
"Rentals": {},
|
|
286
307
|
"Shop": {},
|
|
287
308
|
"Spa": {},
|
package/dist/esm/Models.js
CHANGED
|
@@ -13467,7 +13467,28 @@ var require_property = __commonJS({
|
|
|
13467
13467
|
},
|
|
13468
13468
|
Elevator: {},
|
|
13469
13469
|
Experiences: {},
|
|
13470
|
-
Dining: {
|
|
13470
|
+
Dining: {
|
|
13471
|
+
type: "object",
|
|
13472
|
+
properties: {
|
|
13473
|
+
system: {
|
|
13474
|
+
type: "string",
|
|
13475
|
+
enum: ["gotab"]
|
|
13476
|
+
},
|
|
13477
|
+
systemConfig: {
|
|
13478
|
+
type: "object",
|
|
13479
|
+
properties: {
|
|
13480
|
+
landingUrl: {
|
|
13481
|
+
type: "string",
|
|
13482
|
+
format: "uri"
|
|
13483
|
+
},
|
|
13484
|
+
includeUserDetails: {
|
|
13485
|
+
type: "boolean"
|
|
13486
|
+
}
|
|
13487
|
+
},
|
|
13488
|
+
additionalProperties: false
|
|
13489
|
+
}
|
|
13490
|
+
}
|
|
13491
|
+
},
|
|
13471
13492
|
Rentals: {},
|
|
13472
13493
|
Shop: {},
|
|
13473
13494
|
Spa: {},
|