more-apartments-astro-integration 1.1.0 → 1.1.3
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/cli/index.js +70 -43
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.mts +608 -445
- package/dist/index.d.ts +608 -445
- package/dist/index.js +72 -45
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +72 -45
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/routes/availability.js +1 -1
- package/routes/property.js +1 -1
- package/src/components/PropertySearchGrid.astro +9 -9
package/dist/index.d.ts
CHANGED
|
@@ -217,6 +217,7 @@ declare const PropertySchema: z.ZodObject<{
|
|
|
217
217
|
description: z.ZodString;
|
|
218
218
|
area_description: z.ZodNullable<z.ZodString>;
|
|
219
219
|
arrival_description: z.ZodNullable<z.ZodString>;
|
|
220
|
+
payment_description: z.ZodNullable<z.ZodString>;
|
|
220
221
|
type: z.ZodNullable<z.ZodString>;
|
|
221
222
|
max_persons: z.ZodNullable<z.ZodNumber>;
|
|
222
223
|
bedrooms: z.ZodNullable<z.ZodNumber>;
|
|
@@ -224,6 +225,7 @@ declare const PropertySchema: z.ZodObject<{
|
|
|
224
225
|
toilets: z.ZodNullable<z.ZodNumber>;
|
|
225
226
|
size: z.ZodNullable<z.ZodNumber>;
|
|
226
227
|
floor: z.ZodNullable<z.ZodNumber>;
|
|
228
|
+
stairs: z.ZodNullable<z.ZodNumber>;
|
|
227
229
|
street: z.ZodNullable<z.ZodString>;
|
|
228
230
|
zipcode: z.ZodNullable<z.ZodString>;
|
|
229
231
|
area: z.ZodNullable<z.ZodString>;
|
|
@@ -236,54 +238,65 @@ declare const PropertySchema: z.ZodObject<{
|
|
|
236
238
|
single_sofa: z.ZodNullable<z.ZodNumber>;
|
|
237
239
|
double_sofa: z.ZodNullable<z.ZodNumber>;
|
|
238
240
|
single_bunk: z.ZodNullable<z.ZodNumber>;
|
|
239
|
-
balcony: z.ZodBoolean
|
|
240
|
-
|
|
241
|
+
balcony: z.ZodNullable<z.ZodBoolean>;
|
|
242
|
+
patio: z.ZodNullable<z.ZodNumber>;
|
|
243
|
+
garden: z.ZodNullable<z.ZodNumber>;
|
|
244
|
+
roof_terrace: z.ZodNullable<z.ZodNumber>;
|
|
241
245
|
view: z.ZodNullable<z.ZodString>;
|
|
242
|
-
airco: z.ZodBoolean
|
|
243
|
-
fans: z.ZodBoolean
|
|
244
|
-
heating: z.ZodBoolean
|
|
246
|
+
airco: z.ZodNullable<z.ZodBoolean>;
|
|
247
|
+
fans: z.ZodNullable<z.ZodBoolean>;
|
|
248
|
+
heating: z.ZodNullable<z.ZodBoolean>;
|
|
245
249
|
internet: z.ZodNullable<z.ZodString>;
|
|
246
250
|
internet_connection: z.ZodNullable<z.ZodString>;
|
|
247
|
-
tv: z.ZodNullable<z.
|
|
251
|
+
tv: z.ZodNullable<z.ZodNumber>;
|
|
248
252
|
tv_connection: z.ZodNullable<z.ZodString>;
|
|
249
|
-
dvd: z.
|
|
250
|
-
computer: z.ZodBoolean
|
|
251
|
-
printer: z.ZodBoolean
|
|
252
|
-
dishwasher: z.ZodBoolean
|
|
253
|
-
oven: z.ZodBoolean
|
|
254
|
-
microwave: z.ZodBoolean
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
253
|
+
dvd: z.ZodNullable<z.ZodNumber>;
|
|
254
|
+
computer: z.ZodNullable<z.ZodBoolean>;
|
|
255
|
+
printer: z.ZodNullable<z.ZodBoolean>;
|
|
256
|
+
dishwasher: z.ZodNullable<z.ZodBoolean>;
|
|
257
|
+
oven: z.ZodNullable<z.ZodBoolean>;
|
|
258
|
+
microwave: z.ZodNullable<z.ZodBoolean>;
|
|
259
|
+
grill: z.ZodNullable<z.ZodNumber>;
|
|
260
|
+
hob: z.ZodNullable<z.ZodNumber>;
|
|
261
|
+
fridge: z.ZodNullable<z.ZodBoolean>;
|
|
262
|
+
freezer: z.ZodNullable<z.ZodBoolean>;
|
|
263
|
+
toaster: z.ZodNullable<z.ZodBoolean>;
|
|
264
|
+
kettle: z.ZodNullable<z.ZodBoolean>;
|
|
265
|
+
coffeemachine: z.ZodNullable<z.ZodBoolean>;
|
|
266
|
+
washingmachine: z.ZodNullable<z.ZodBoolean>;
|
|
267
|
+
dryer: z.ZodNullable<z.ZodBoolean>;
|
|
268
|
+
iron: z.ZodNullable<z.ZodBoolean>;
|
|
269
|
+
bathtub: z.ZodNullable<z.ZodBoolean>;
|
|
270
|
+
jacuzzi: z.ZodNullable<z.ZodBoolean>;
|
|
271
|
+
shower_regular: z.ZodNullable<z.ZodBoolean>;
|
|
272
|
+
shower_steam: z.ZodNullable<z.ZodBoolean>;
|
|
273
|
+
hairdryer: z.ZodNullable<z.ZodBoolean>;
|
|
274
|
+
swimmingpool: z.ZodNullable<z.ZodNumber>;
|
|
275
|
+
sauna: z.ZodNullable<z.ZodNumber>;
|
|
276
|
+
parking: z.ZodNullable<z.ZodNumber>;
|
|
277
|
+
elevator: z.ZodNullable<z.ZodNumber>;
|
|
278
|
+
entresol: z.ZodNullable<z.ZodBoolean>;
|
|
279
|
+
wheelchair_friendly: z.ZodNullable<z.ZodBoolean>;
|
|
280
|
+
smoking_allowed: z.ZodNullable<z.ZodBoolean>;
|
|
281
|
+
pets_allowed: z.ZodNullable<z.ZodBoolean>;
|
|
282
|
+
supplies_coffee: z.ZodNullable<z.ZodBoolean>;
|
|
283
|
+
supplies_tea: z.ZodNullable<z.ZodBoolean>;
|
|
284
|
+
supplies_milk: z.ZodNullable<z.ZodBoolean>;
|
|
285
|
+
supplies_sugar: z.ZodNullable<z.ZodBoolean>;
|
|
286
|
+
supplies_dishwasher_tablets: z.ZodNullable<z.ZodBoolean>;
|
|
287
|
+
service_linen: z.ZodNullable<z.ZodBoolean>;
|
|
288
|
+
service_towels: z.ZodNullable<z.ZodBoolean>;
|
|
282
289
|
cleaning_costs: z.ZodNullable<z.ZodNumber>;
|
|
283
290
|
deposit_costs: z.ZodNullable<z.ZodNumber>;
|
|
284
|
-
|
|
291
|
+
prepayment: z.ZodNullable<z.ZodNumber>;
|
|
292
|
+
fee: z.ZodNullable<z.ZodNumber>;
|
|
293
|
+
tax_vat: z.ZodNullable<z.ZodNumber>;
|
|
294
|
+
tax_other: z.ZodNullable<z.ZodNumber>;
|
|
295
|
+
tax_other_type: z.ZodNullable<z.ZodString>;
|
|
285
296
|
minimal_nights: z.ZodNullable<z.ZodNumber>;
|
|
286
297
|
maximal_nights: z.ZodNullable<z.ZodNumber>;
|
|
298
|
+
available_start: z.ZodNullable<z.ZodString>;
|
|
299
|
+
available_end: z.ZodNullable<z.ZodString>;
|
|
287
300
|
check_in: z.ZodNullable<z.ZodString>;
|
|
288
301
|
check_out: z.ZodNullable<z.ZodString>;
|
|
289
302
|
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -325,12 +338,14 @@ declare const PropertySchema: z.ZodObject<{
|
|
|
325
338
|
description: string;
|
|
326
339
|
area_description: string | null;
|
|
327
340
|
arrival_description: string | null;
|
|
341
|
+
payment_description: string | null;
|
|
328
342
|
max_persons: number | null;
|
|
329
343
|
bedrooms: number | null;
|
|
330
344
|
bathrooms: number | null;
|
|
331
345
|
toilets: number | null;
|
|
332
346
|
size: number | null;
|
|
333
347
|
floor: number | null;
|
|
348
|
+
stairs: number | null;
|
|
334
349
|
street: string | null;
|
|
335
350
|
zipcode: string | null;
|
|
336
351
|
area: string | null;
|
|
@@ -343,54 +358,65 @@ declare const PropertySchema: z.ZodObject<{
|
|
|
343
358
|
single_sofa: number | null;
|
|
344
359
|
double_sofa: number | null;
|
|
345
360
|
single_bunk: number | null;
|
|
346
|
-
balcony: boolean;
|
|
347
|
-
|
|
361
|
+
balcony: boolean | null;
|
|
362
|
+
patio: number | null;
|
|
363
|
+
garden: number | null;
|
|
364
|
+
roof_terrace: number | null;
|
|
348
365
|
view: string | null;
|
|
349
|
-
airco: boolean;
|
|
350
|
-
fans: boolean;
|
|
351
|
-
heating: boolean;
|
|
366
|
+
airco: boolean | null;
|
|
367
|
+
fans: boolean | null;
|
|
368
|
+
heating: boolean | null;
|
|
352
369
|
internet: string | null;
|
|
353
370
|
internet_connection: string | null;
|
|
354
|
-
tv:
|
|
371
|
+
tv: number | null;
|
|
355
372
|
tv_connection: string | null;
|
|
356
|
-
dvd:
|
|
357
|
-
computer: boolean;
|
|
358
|
-
printer: boolean;
|
|
359
|
-
dishwasher: boolean;
|
|
360
|
-
oven: boolean;
|
|
361
|
-
microwave: boolean;
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
373
|
+
dvd: number | null;
|
|
374
|
+
computer: boolean | null;
|
|
375
|
+
printer: boolean | null;
|
|
376
|
+
dishwasher: boolean | null;
|
|
377
|
+
oven: boolean | null;
|
|
378
|
+
microwave: boolean | null;
|
|
379
|
+
grill: number | null;
|
|
380
|
+
hob: number | null;
|
|
381
|
+
fridge: boolean | null;
|
|
382
|
+
freezer: boolean | null;
|
|
383
|
+
toaster: boolean | null;
|
|
384
|
+
kettle: boolean | null;
|
|
385
|
+
coffeemachine: boolean | null;
|
|
386
|
+
washingmachine: boolean | null;
|
|
387
|
+
dryer: boolean | null;
|
|
388
|
+
iron: boolean | null;
|
|
389
|
+
bathtub: boolean | null;
|
|
390
|
+
jacuzzi: boolean | null;
|
|
391
|
+
shower_regular: boolean | null;
|
|
392
|
+
shower_steam: boolean | null;
|
|
393
|
+
hairdryer: boolean | null;
|
|
394
|
+
swimmingpool: number | null;
|
|
395
|
+
sauna: number | null;
|
|
396
|
+
parking: number | null;
|
|
397
|
+
elevator: number | null;
|
|
398
|
+
entresol: boolean | null;
|
|
399
|
+
wheelchair_friendly: boolean | null;
|
|
400
|
+
smoking_allowed: boolean | null;
|
|
401
|
+
pets_allowed: boolean | null;
|
|
402
|
+
supplies_coffee: boolean | null;
|
|
403
|
+
supplies_tea: boolean | null;
|
|
404
|
+
supplies_milk: boolean | null;
|
|
405
|
+
supplies_sugar: boolean | null;
|
|
406
|
+
supplies_dishwasher_tablets: boolean | null;
|
|
407
|
+
service_linen: boolean | null;
|
|
408
|
+
service_towels: boolean | null;
|
|
389
409
|
cleaning_costs: number | null;
|
|
390
410
|
deposit_costs: number | null;
|
|
391
|
-
|
|
411
|
+
prepayment: number | null;
|
|
412
|
+
fee: number | null;
|
|
413
|
+
tax_vat: number | null;
|
|
414
|
+
tax_other: number | null;
|
|
415
|
+
tax_other_type: string | null;
|
|
392
416
|
minimal_nights: number | null;
|
|
393
417
|
maximal_nights: number | null;
|
|
418
|
+
available_start: string | null;
|
|
419
|
+
available_end: string | null;
|
|
394
420
|
check_in: string | null;
|
|
395
421
|
check_out: string | null;
|
|
396
422
|
provider_name: string | null;
|
|
@@ -416,12 +442,14 @@ declare const PropertySchema: z.ZodObject<{
|
|
|
416
442
|
description: string;
|
|
417
443
|
area_description: string | null;
|
|
418
444
|
arrival_description: string | null;
|
|
445
|
+
payment_description: string | null;
|
|
419
446
|
max_persons: number | null;
|
|
420
447
|
bedrooms: number | null;
|
|
421
448
|
bathrooms: number | null;
|
|
422
449
|
toilets: number | null;
|
|
423
450
|
size: number | null;
|
|
424
451
|
floor: number | null;
|
|
452
|
+
stairs: number | null;
|
|
425
453
|
street: string | null;
|
|
426
454
|
zipcode: string | null;
|
|
427
455
|
area: string | null;
|
|
@@ -434,54 +462,65 @@ declare const PropertySchema: z.ZodObject<{
|
|
|
434
462
|
single_sofa: number | null;
|
|
435
463
|
double_sofa: number | null;
|
|
436
464
|
single_bunk: number | null;
|
|
437
|
-
balcony: boolean;
|
|
438
|
-
|
|
465
|
+
balcony: boolean | null;
|
|
466
|
+
patio: number | null;
|
|
467
|
+
garden: number | null;
|
|
468
|
+
roof_terrace: number | null;
|
|
439
469
|
view: string | null;
|
|
440
|
-
airco: boolean;
|
|
441
|
-
fans: boolean;
|
|
442
|
-
heating: boolean;
|
|
470
|
+
airco: boolean | null;
|
|
471
|
+
fans: boolean | null;
|
|
472
|
+
heating: boolean | null;
|
|
443
473
|
internet: string | null;
|
|
444
474
|
internet_connection: string | null;
|
|
445
|
-
tv:
|
|
475
|
+
tv: number | null;
|
|
446
476
|
tv_connection: string | null;
|
|
447
|
-
dvd:
|
|
448
|
-
computer: boolean;
|
|
449
|
-
printer: boolean;
|
|
450
|
-
dishwasher: boolean;
|
|
451
|
-
oven: boolean;
|
|
452
|
-
microwave: boolean;
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
477
|
+
dvd: number | null;
|
|
478
|
+
computer: boolean | null;
|
|
479
|
+
printer: boolean | null;
|
|
480
|
+
dishwasher: boolean | null;
|
|
481
|
+
oven: boolean | null;
|
|
482
|
+
microwave: boolean | null;
|
|
483
|
+
grill: number | null;
|
|
484
|
+
hob: number | null;
|
|
485
|
+
fridge: boolean | null;
|
|
486
|
+
freezer: boolean | null;
|
|
487
|
+
toaster: boolean | null;
|
|
488
|
+
kettle: boolean | null;
|
|
489
|
+
coffeemachine: boolean | null;
|
|
490
|
+
washingmachine: boolean | null;
|
|
491
|
+
dryer: boolean | null;
|
|
492
|
+
iron: boolean | null;
|
|
493
|
+
bathtub: boolean | null;
|
|
494
|
+
jacuzzi: boolean | null;
|
|
495
|
+
shower_regular: boolean | null;
|
|
496
|
+
shower_steam: boolean | null;
|
|
497
|
+
hairdryer: boolean | null;
|
|
498
|
+
swimmingpool: number | null;
|
|
499
|
+
sauna: number | null;
|
|
500
|
+
parking: number | null;
|
|
501
|
+
elevator: number | null;
|
|
502
|
+
entresol: boolean | null;
|
|
503
|
+
wheelchair_friendly: boolean | null;
|
|
504
|
+
smoking_allowed: boolean | null;
|
|
505
|
+
pets_allowed: boolean | null;
|
|
506
|
+
supplies_coffee: boolean | null;
|
|
507
|
+
supplies_tea: boolean | null;
|
|
508
|
+
supplies_milk: boolean | null;
|
|
509
|
+
supplies_sugar: boolean | null;
|
|
510
|
+
supplies_dishwasher_tablets: boolean | null;
|
|
511
|
+
service_linen: boolean | null;
|
|
512
|
+
service_towels: boolean | null;
|
|
480
513
|
cleaning_costs: number | null;
|
|
481
514
|
deposit_costs: number | null;
|
|
482
|
-
|
|
515
|
+
prepayment: number | null;
|
|
516
|
+
fee: number | null;
|
|
517
|
+
tax_vat: number | null;
|
|
518
|
+
tax_other: number | null;
|
|
519
|
+
tax_other_type: string | null;
|
|
483
520
|
minimal_nights: number | null;
|
|
484
521
|
maximal_nights: number | null;
|
|
522
|
+
available_start: string | null;
|
|
523
|
+
available_end: string | null;
|
|
485
524
|
check_in: string | null;
|
|
486
525
|
check_out: string | null;
|
|
487
526
|
provider_name: string | null;
|
|
@@ -503,16 +542,19 @@ declare const AvailableDay: z.ZodObject<{
|
|
|
503
542
|
morning_available: z.ZodBoolean;
|
|
504
543
|
date: z.ZodString;
|
|
505
544
|
day: z.ZodNumber;
|
|
545
|
+
stay_minimum: z.ZodNumber;
|
|
506
546
|
}, "strip", z.ZodTypeAny, {
|
|
507
547
|
date: string;
|
|
508
548
|
available: boolean;
|
|
509
549
|
morning_available: boolean;
|
|
510
550
|
day: number;
|
|
551
|
+
stay_minimum: number;
|
|
511
552
|
}, {
|
|
512
553
|
date: string;
|
|
513
554
|
available: boolean;
|
|
514
555
|
morning_available: boolean;
|
|
515
556
|
day: number;
|
|
557
|
+
stay_minimum: number;
|
|
516
558
|
}>;
|
|
517
559
|
declare const AvailabilitySchema: z.ZodObject<{
|
|
518
560
|
days: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -520,16 +562,19 @@ declare const AvailabilitySchema: z.ZodObject<{
|
|
|
520
562
|
morning_available: z.ZodBoolean;
|
|
521
563
|
date: z.ZodString;
|
|
522
564
|
day: z.ZodNumber;
|
|
565
|
+
stay_minimum: z.ZodNumber;
|
|
523
566
|
}, "strip", z.ZodTypeAny, {
|
|
524
567
|
date: string;
|
|
525
568
|
available: boolean;
|
|
526
569
|
morning_available: boolean;
|
|
527
570
|
day: number;
|
|
571
|
+
stay_minimum: number;
|
|
528
572
|
}, {
|
|
529
573
|
date: string;
|
|
530
574
|
available: boolean;
|
|
531
575
|
morning_available: boolean;
|
|
532
576
|
day: number;
|
|
577
|
+
stay_minimum: number;
|
|
533
578
|
}>>;
|
|
534
579
|
}, "strip", z.ZodTypeAny, {
|
|
535
580
|
days: Record<string, {
|
|
@@ -537,6 +582,7 @@ declare const AvailabilitySchema: z.ZodObject<{
|
|
|
537
582
|
available: boolean;
|
|
538
583
|
morning_available: boolean;
|
|
539
584
|
day: number;
|
|
585
|
+
stay_minimum: number;
|
|
540
586
|
}>;
|
|
541
587
|
}, {
|
|
542
588
|
days: Record<string, {
|
|
@@ -544,6 +590,7 @@ declare const AvailabilitySchema: z.ZodObject<{
|
|
|
544
590
|
available: boolean;
|
|
545
591
|
morning_available: boolean;
|
|
546
592
|
day: number;
|
|
593
|
+
stay_minimum: number;
|
|
547
594
|
}>;
|
|
548
595
|
}>;
|
|
549
596
|
declare const PropertySearchParamsSchema: z.ZodObject<{
|
|
@@ -559,7 +606,7 @@ declare const PropertySearchParamsSchema: z.ZodObject<{
|
|
|
559
606
|
bathrooms: z.ZodOptional<z.ZodNumber>;
|
|
560
607
|
maxPersons: z.ZodOptional<z.ZodNumber>;
|
|
561
608
|
elevator: z.ZodOptional<z.ZodBoolean>;
|
|
562
|
-
parking: z.ZodOptional<z.
|
|
609
|
+
parking: z.ZodOptional<z.ZodString>;
|
|
563
610
|
balcony: z.ZodOptional<z.ZodBoolean>;
|
|
564
611
|
}, "strip", z.ZodTypeAny, {
|
|
565
612
|
bedrooms?: number | undefined;
|
|
@@ -567,7 +614,8 @@ declare const PropertySearchParamsSchema: z.ZodObject<{
|
|
|
567
614
|
area?: string | undefined;
|
|
568
615
|
city?: string | undefined;
|
|
569
616
|
balcony?: boolean | undefined;
|
|
570
|
-
parking?:
|
|
617
|
+
parking?: string | undefined;
|
|
618
|
+
elevator?: boolean | undefined;
|
|
571
619
|
arrival?: string | undefined;
|
|
572
620
|
departure?: string | undefined;
|
|
573
621
|
guests?: number | undefined;
|
|
@@ -575,14 +623,14 @@ declare const PropertySearchParamsSchema: z.ZodObject<{
|
|
|
575
623
|
segment?: string | undefined;
|
|
576
624
|
propertyType?: string | undefined;
|
|
577
625
|
maxPersons?: number | undefined;
|
|
578
|
-
elevator?: boolean | undefined;
|
|
579
626
|
}, {
|
|
580
627
|
bedrooms?: number | undefined;
|
|
581
628
|
bathrooms?: number | undefined;
|
|
582
629
|
area?: string | undefined;
|
|
583
630
|
city?: string | undefined;
|
|
584
631
|
balcony?: boolean | undefined;
|
|
585
|
-
parking?:
|
|
632
|
+
parking?: string | undefined;
|
|
633
|
+
elevator?: boolean | undefined;
|
|
586
634
|
arrival?: string | undefined;
|
|
587
635
|
departure?: string | undefined;
|
|
588
636
|
guests?: number | undefined;
|
|
@@ -590,7 +638,6 @@ declare const PropertySearchParamsSchema: z.ZodObject<{
|
|
|
590
638
|
segment?: string | undefined;
|
|
591
639
|
propertyType?: string | undefined;
|
|
592
640
|
maxPersons?: number | undefined;
|
|
593
|
-
elevator?: boolean | undefined;
|
|
594
641
|
}>;
|
|
595
642
|
declare const PropertySearchResultSchema: z.ZodObject<{
|
|
596
643
|
data: z.ZodArray<z.ZodObject<{
|
|
@@ -602,6 +649,7 @@ declare const PropertySearchResultSchema: z.ZodObject<{
|
|
|
602
649
|
description: z.ZodString;
|
|
603
650
|
area_description: z.ZodNullable<z.ZodString>;
|
|
604
651
|
arrival_description: z.ZodNullable<z.ZodString>;
|
|
652
|
+
payment_description: z.ZodNullable<z.ZodString>;
|
|
605
653
|
type: z.ZodNullable<z.ZodString>;
|
|
606
654
|
max_persons: z.ZodNullable<z.ZodNumber>;
|
|
607
655
|
bedrooms: z.ZodNullable<z.ZodNumber>;
|
|
@@ -609,6 +657,7 @@ declare const PropertySearchResultSchema: z.ZodObject<{
|
|
|
609
657
|
toilets: z.ZodNullable<z.ZodNumber>;
|
|
610
658
|
size: z.ZodNullable<z.ZodNumber>;
|
|
611
659
|
floor: z.ZodNullable<z.ZodNumber>;
|
|
660
|
+
stairs: z.ZodNullable<z.ZodNumber>;
|
|
612
661
|
street: z.ZodNullable<z.ZodString>;
|
|
613
662
|
zipcode: z.ZodNullable<z.ZodString>;
|
|
614
663
|
area: z.ZodNullable<z.ZodString>;
|
|
@@ -621,54 +670,65 @@ declare const PropertySearchResultSchema: z.ZodObject<{
|
|
|
621
670
|
single_sofa: z.ZodNullable<z.ZodNumber>;
|
|
622
671
|
double_sofa: z.ZodNullable<z.ZodNumber>;
|
|
623
672
|
single_bunk: z.ZodNullable<z.ZodNumber>;
|
|
624
|
-
balcony: z.ZodBoolean
|
|
625
|
-
|
|
673
|
+
balcony: z.ZodNullable<z.ZodBoolean>;
|
|
674
|
+
patio: z.ZodNullable<z.ZodNumber>;
|
|
675
|
+
garden: z.ZodNullable<z.ZodNumber>;
|
|
676
|
+
roof_terrace: z.ZodNullable<z.ZodNumber>;
|
|
626
677
|
view: z.ZodNullable<z.ZodString>;
|
|
627
|
-
airco: z.ZodBoolean
|
|
628
|
-
fans: z.ZodBoolean
|
|
629
|
-
heating: z.ZodBoolean
|
|
678
|
+
airco: z.ZodNullable<z.ZodBoolean>;
|
|
679
|
+
fans: z.ZodNullable<z.ZodBoolean>;
|
|
680
|
+
heating: z.ZodNullable<z.ZodBoolean>;
|
|
630
681
|
internet: z.ZodNullable<z.ZodString>;
|
|
631
682
|
internet_connection: z.ZodNullable<z.ZodString>;
|
|
632
|
-
tv: z.ZodNullable<z.
|
|
683
|
+
tv: z.ZodNullable<z.ZodNumber>;
|
|
633
684
|
tv_connection: z.ZodNullable<z.ZodString>;
|
|
634
|
-
dvd: z.
|
|
635
|
-
computer: z.ZodBoolean
|
|
636
|
-
printer: z.ZodBoolean
|
|
637
|
-
dishwasher: z.ZodBoolean
|
|
638
|
-
oven: z.ZodBoolean
|
|
639
|
-
microwave: z.ZodBoolean
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
685
|
+
dvd: z.ZodNullable<z.ZodNumber>;
|
|
686
|
+
computer: z.ZodNullable<z.ZodBoolean>;
|
|
687
|
+
printer: z.ZodNullable<z.ZodBoolean>;
|
|
688
|
+
dishwasher: z.ZodNullable<z.ZodBoolean>;
|
|
689
|
+
oven: z.ZodNullable<z.ZodBoolean>;
|
|
690
|
+
microwave: z.ZodNullable<z.ZodBoolean>;
|
|
691
|
+
grill: z.ZodNullable<z.ZodNumber>;
|
|
692
|
+
hob: z.ZodNullable<z.ZodNumber>;
|
|
693
|
+
fridge: z.ZodNullable<z.ZodBoolean>;
|
|
694
|
+
freezer: z.ZodNullable<z.ZodBoolean>;
|
|
695
|
+
toaster: z.ZodNullable<z.ZodBoolean>;
|
|
696
|
+
kettle: z.ZodNullable<z.ZodBoolean>;
|
|
697
|
+
coffeemachine: z.ZodNullable<z.ZodBoolean>;
|
|
698
|
+
washingmachine: z.ZodNullable<z.ZodBoolean>;
|
|
699
|
+
dryer: z.ZodNullable<z.ZodBoolean>;
|
|
700
|
+
iron: z.ZodNullable<z.ZodBoolean>;
|
|
701
|
+
bathtub: z.ZodNullable<z.ZodBoolean>;
|
|
702
|
+
jacuzzi: z.ZodNullable<z.ZodBoolean>;
|
|
703
|
+
shower_regular: z.ZodNullable<z.ZodBoolean>;
|
|
704
|
+
shower_steam: z.ZodNullable<z.ZodBoolean>;
|
|
705
|
+
hairdryer: z.ZodNullable<z.ZodBoolean>;
|
|
706
|
+
swimmingpool: z.ZodNullable<z.ZodNumber>;
|
|
707
|
+
sauna: z.ZodNullable<z.ZodNumber>;
|
|
708
|
+
parking: z.ZodNullable<z.ZodNumber>;
|
|
709
|
+
elevator: z.ZodNullable<z.ZodNumber>;
|
|
710
|
+
entresol: z.ZodNullable<z.ZodBoolean>;
|
|
711
|
+
wheelchair_friendly: z.ZodNullable<z.ZodBoolean>;
|
|
712
|
+
smoking_allowed: z.ZodNullable<z.ZodBoolean>;
|
|
713
|
+
pets_allowed: z.ZodNullable<z.ZodBoolean>;
|
|
714
|
+
supplies_coffee: z.ZodNullable<z.ZodBoolean>;
|
|
715
|
+
supplies_tea: z.ZodNullable<z.ZodBoolean>;
|
|
716
|
+
supplies_milk: z.ZodNullable<z.ZodBoolean>;
|
|
717
|
+
supplies_sugar: z.ZodNullable<z.ZodBoolean>;
|
|
718
|
+
supplies_dishwasher_tablets: z.ZodNullable<z.ZodBoolean>;
|
|
719
|
+
service_linen: z.ZodNullable<z.ZodBoolean>;
|
|
720
|
+
service_towels: z.ZodNullable<z.ZodBoolean>;
|
|
667
721
|
cleaning_costs: z.ZodNullable<z.ZodNumber>;
|
|
668
722
|
deposit_costs: z.ZodNullable<z.ZodNumber>;
|
|
669
|
-
|
|
723
|
+
prepayment: z.ZodNullable<z.ZodNumber>;
|
|
724
|
+
fee: z.ZodNullable<z.ZodNumber>;
|
|
725
|
+
tax_vat: z.ZodNullable<z.ZodNumber>;
|
|
726
|
+
tax_other: z.ZodNullable<z.ZodNumber>;
|
|
727
|
+
tax_other_type: z.ZodNullable<z.ZodString>;
|
|
670
728
|
minimal_nights: z.ZodNullable<z.ZodNumber>;
|
|
671
729
|
maximal_nights: z.ZodNullable<z.ZodNumber>;
|
|
730
|
+
available_start: z.ZodNullable<z.ZodString>;
|
|
731
|
+
available_end: z.ZodNullable<z.ZodString>;
|
|
672
732
|
check_in: z.ZodNullable<z.ZodString>;
|
|
673
733
|
check_out: z.ZodNullable<z.ZodString>;
|
|
674
734
|
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -710,12 +770,14 @@ declare const PropertySearchResultSchema: z.ZodObject<{
|
|
|
710
770
|
description: string;
|
|
711
771
|
area_description: string | null;
|
|
712
772
|
arrival_description: string | null;
|
|
773
|
+
payment_description: string | null;
|
|
713
774
|
max_persons: number | null;
|
|
714
775
|
bedrooms: number | null;
|
|
715
776
|
bathrooms: number | null;
|
|
716
777
|
toilets: number | null;
|
|
717
778
|
size: number | null;
|
|
718
779
|
floor: number | null;
|
|
780
|
+
stairs: number | null;
|
|
719
781
|
street: string | null;
|
|
720
782
|
zipcode: string | null;
|
|
721
783
|
area: string | null;
|
|
@@ -728,54 +790,65 @@ declare const PropertySearchResultSchema: z.ZodObject<{
|
|
|
728
790
|
single_sofa: number | null;
|
|
729
791
|
double_sofa: number | null;
|
|
730
792
|
single_bunk: number | null;
|
|
731
|
-
balcony: boolean;
|
|
732
|
-
|
|
793
|
+
balcony: boolean | null;
|
|
794
|
+
patio: number | null;
|
|
795
|
+
garden: number | null;
|
|
796
|
+
roof_terrace: number | null;
|
|
733
797
|
view: string | null;
|
|
734
|
-
airco: boolean;
|
|
735
|
-
fans: boolean;
|
|
736
|
-
heating: boolean;
|
|
798
|
+
airco: boolean | null;
|
|
799
|
+
fans: boolean | null;
|
|
800
|
+
heating: boolean | null;
|
|
737
801
|
internet: string | null;
|
|
738
802
|
internet_connection: string | null;
|
|
739
|
-
tv:
|
|
803
|
+
tv: number | null;
|
|
740
804
|
tv_connection: string | null;
|
|
741
|
-
dvd:
|
|
742
|
-
computer: boolean;
|
|
743
|
-
printer: boolean;
|
|
744
|
-
dishwasher: boolean;
|
|
745
|
-
oven: boolean;
|
|
746
|
-
microwave: boolean;
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
805
|
+
dvd: number | null;
|
|
806
|
+
computer: boolean | null;
|
|
807
|
+
printer: boolean | null;
|
|
808
|
+
dishwasher: boolean | null;
|
|
809
|
+
oven: boolean | null;
|
|
810
|
+
microwave: boolean | null;
|
|
811
|
+
grill: number | null;
|
|
812
|
+
hob: number | null;
|
|
813
|
+
fridge: boolean | null;
|
|
814
|
+
freezer: boolean | null;
|
|
815
|
+
toaster: boolean | null;
|
|
816
|
+
kettle: boolean | null;
|
|
817
|
+
coffeemachine: boolean | null;
|
|
818
|
+
washingmachine: boolean | null;
|
|
819
|
+
dryer: boolean | null;
|
|
820
|
+
iron: boolean | null;
|
|
821
|
+
bathtub: boolean | null;
|
|
822
|
+
jacuzzi: boolean | null;
|
|
823
|
+
shower_regular: boolean | null;
|
|
824
|
+
shower_steam: boolean | null;
|
|
825
|
+
hairdryer: boolean | null;
|
|
826
|
+
swimmingpool: number | null;
|
|
827
|
+
sauna: number | null;
|
|
828
|
+
parking: number | null;
|
|
829
|
+
elevator: number | null;
|
|
830
|
+
entresol: boolean | null;
|
|
831
|
+
wheelchair_friendly: boolean | null;
|
|
832
|
+
smoking_allowed: boolean | null;
|
|
833
|
+
pets_allowed: boolean | null;
|
|
834
|
+
supplies_coffee: boolean | null;
|
|
835
|
+
supplies_tea: boolean | null;
|
|
836
|
+
supplies_milk: boolean | null;
|
|
837
|
+
supplies_sugar: boolean | null;
|
|
838
|
+
supplies_dishwasher_tablets: boolean | null;
|
|
839
|
+
service_linen: boolean | null;
|
|
840
|
+
service_towels: boolean | null;
|
|
774
841
|
cleaning_costs: number | null;
|
|
775
842
|
deposit_costs: number | null;
|
|
776
|
-
|
|
843
|
+
prepayment: number | null;
|
|
844
|
+
fee: number | null;
|
|
845
|
+
tax_vat: number | null;
|
|
846
|
+
tax_other: number | null;
|
|
847
|
+
tax_other_type: string | null;
|
|
777
848
|
minimal_nights: number | null;
|
|
778
849
|
maximal_nights: number | null;
|
|
850
|
+
available_start: string | null;
|
|
851
|
+
available_end: string | null;
|
|
779
852
|
check_in: string | null;
|
|
780
853
|
check_out: string | null;
|
|
781
854
|
provider_name: string | null;
|
|
@@ -801,12 +874,14 @@ declare const PropertySearchResultSchema: z.ZodObject<{
|
|
|
801
874
|
description: string;
|
|
802
875
|
area_description: string | null;
|
|
803
876
|
arrival_description: string | null;
|
|
877
|
+
payment_description: string | null;
|
|
804
878
|
max_persons: number | null;
|
|
805
879
|
bedrooms: number | null;
|
|
806
880
|
bathrooms: number | null;
|
|
807
881
|
toilets: number | null;
|
|
808
882
|
size: number | null;
|
|
809
883
|
floor: number | null;
|
|
884
|
+
stairs: number | null;
|
|
810
885
|
street: string | null;
|
|
811
886
|
zipcode: string | null;
|
|
812
887
|
area: string | null;
|
|
@@ -819,54 +894,65 @@ declare const PropertySearchResultSchema: z.ZodObject<{
|
|
|
819
894
|
single_sofa: number | null;
|
|
820
895
|
double_sofa: number | null;
|
|
821
896
|
single_bunk: number | null;
|
|
822
|
-
balcony: boolean;
|
|
823
|
-
|
|
897
|
+
balcony: boolean | null;
|
|
898
|
+
patio: number | null;
|
|
899
|
+
garden: number | null;
|
|
900
|
+
roof_terrace: number | null;
|
|
824
901
|
view: string | null;
|
|
825
|
-
airco: boolean;
|
|
826
|
-
fans: boolean;
|
|
827
|
-
heating: boolean;
|
|
902
|
+
airco: boolean | null;
|
|
903
|
+
fans: boolean | null;
|
|
904
|
+
heating: boolean | null;
|
|
828
905
|
internet: string | null;
|
|
829
906
|
internet_connection: string | null;
|
|
830
|
-
tv:
|
|
907
|
+
tv: number | null;
|
|
831
908
|
tv_connection: string | null;
|
|
832
|
-
dvd:
|
|
833
|
-
computer: boolean;
|
|
834
|
-
printer: boolean;
|
|
835
|
-
dishwasher: boolean;
|
|
836
|
-
oven: boolean;
|
|
837
|
-
microwave: boolean;
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
909
|
+
dvd: number | null;
|
|
910
|
+
computer: boolean | null;
|
|
911
|
+
printer: boolean | null;
|
|
912
|
+
dishwasher: boolean | null;
|
|
913
|
+
oven: boolean | null;
|
|
914
|
+
microwave: boolean | null;
|
|
915
|
+
grill: number | null;
|
|
916
|
+
hob: number | null;
|
|
917
|
+
fridge: boolean | null;
|
|
918
|
+
freezer: boolean | null;
|
|
919
|
+
toaster: boolean | null;
|
|
920
|
+
kettle: boolean | null;
|
|
921
|
+
coffeemachine: boolean | null;
|
|
922
|
+
washingmachine: boolean | null;
|
|
923
|
+
dryer: boolean | null;
|
|
924
|
+
iron: boolean | null;
|
|
925
|
+
bathtub: boolean | null;
|
|
926
|
+
jacuzzi: boolean | null;
|
|
927
|
+
shower_regular: boolean | null;
|
|
928
|
+
shower_steam: boolean | null;
|
|
929
|
+
hairdryer: boolean | null;
|
|
930
|
+
swimmingpool: number | null;
|
|
931
|
+
sauna: number | null;
|
|
932
|
+
parking: number | null;
|
|
933
|
+
elevator: number | null;
|
|
934
|
+
entresol: boolean | null;
|
|
935
|
+
wheelchair_friendly: boolean | null;
|
|
936
|
+
smoking_allowed: boolean | null;
|
|
937
|
+
pets_allowed: boolean | null;
|
|
938
|
+
supplies_coffee: boolean | null;
|
|
939
|
+
supplies_tea: boolean | null;
|
|
940
|
+
supplies_milk: boolean | null;
|
|
941
|
+
supplies_sugar: boolean | null;
|
|
942
|
+
supplies_dishwasher_tablets: boolean | null;
|
|
943
|
+
service_linen: boolean | null;
|
|
944
|
+
service_towels: boolean | null;
|
|
865
945
|
cleaning_costs: number | null;
|
|
866
946
|
deposit_costs: number | null;
|
|
867
|
-
|
|
947
|
+
prepayment: number | null;
|
|
948
|
+
fee: number | null;
|
|
949
|
+
tax_vat: number | null;
|
|
950
|
+
tax_other: number | null;
|
|
951
|
+
tax_other_type: string | null;
|
|
868
952
|
minimal_nights: number | null;
|
|
869
953
|
maximal_nights: number | null;
|
|
954
|
+
available_start: string | null;
|
|
955
|
+
available_end: string | null;
|
|
870
956
|
check_in: string | null;
|
|
871
957
|
check_out: string | null;
|
|
872
958
|
provider_name: string | null;
|
|
@@ -894,12 +980,14 @@ declare const PropertySearchResultSchema: z.ZodObject<{
|
|
|
894
980
|
description: string;
|
|
895
981
|
area_description: string | null;
|
|
896
982
|
arrival_description: string | null;
|
|
983
|
+
payment_description: string | null;
|
|
897
984
|
max_persons: number | null;
|
|
898
985
|
bedrooms: number | null;
|
|
899
986
|
bathrooms: number | null;
|
|
900
987
|
toilets: number | null;
|
|
901
988
|
size: number | null;
|
|
902
989
|
floor: number | null;
|
|
990
|
+
stairs: number | null;
|
|
903
991
|
street: string | null;
|
|
904
992
|
zipcode: string | null;
|
|
905
993
|
area: string | null;
|
|
@@ -912,54 +1000,65 @@ declare const PropertySearchResultSchema: z.ZodObject<{
|
|
|
912
1000
|
single_sofa: number | null;
|
|
913
1001
|
double_sofa: number | null;
|
|
914
1002
|
single_bunk: number | null;
|
|
915
|
-
balcony: boolean;
|
|
916
|
-
|
|
1003
|
+
balcony: boolean | null;
|
|
1004
|
+
patio: number | null;
|
|
1005
|
+
garden: number | null;
|
|
1006
|
+
roof_terrace: number | null;
|
|
917
1007
|
view: string | null;
|
|
918
|
-
airco: boolean;
|
|
919
|
-
fans: boolean;
|
|
920
|
-
heating: boolean;
|
|
1008
|
+
airco: boolean | null;
|
|
1009
|
+
fans: boolean | null;
|
|
1010
|
+
heating: boolean | null;
|
|
921
1011
|
internet: string | null;
|
|
922
1012
|
internet_connection: string | null;
|
|
923
|
-
tv:
|
|
1013
|
+
tv: number | null;
|
|
924
1014
|
tv_connection: string | null;
|
|
925
|
-
dvd:
|
|
926
|
-
computer: boolean;
|
|
927
|
-
printer: boolean;
|
|
928
|
-
dishwasher: boolean;
|
|
929
|
-
oven: boolean;
|
|
930
|
-
microwave: boolean;
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
1015
|
+
dvd: number | null;
|
|
1016
|
+
computer: boolean | null;
|
|
1017
|
+
printer: boolean | null;
|
|
1018
|
+
dishwasher: boolean | null;
|
|
1019
|
+
oven: boolean | null;
|
|
1020
|
+
microwave: boolean | null;
|
|
1021
|
+
grill: number | null;
|
|
1022
|
+
hob: number | null;
|
|
1023
|
+
fridge: boolean | null;
|
|
1024
|
+
freezer: boolean | null;
|
|
1025
|
+
toaster: boolean | null;
|
|
1026
|
+
kettle: boolean | null;
|
|
1027
|
+
coffeemachine: boolean | null;
|
|
1028
|
+
washingmachine: boolean | null;
|
|
1029
|
+
dryer: boolean | null;
|
|
1030
|
+
iron: boolean | null;
|
|
1031
|
+
bathtub: boolean | null;
|
|
1032
|
+
jacuzzi: boolean | null;
|
|
1033
|
+
shower_regular: boolean | null;
|
|
1034
|
+
shower_steam: boolean | null;
|
|
1035
|
+
hairdryer: boolean | null;
|
|
1036
|
+
swimmingpool: number | null;
|
|
1037
|
+
sauna: number | null;
|
|
1038
|
+
parking: number | null;
|
|
1039
|
+
elevator: number | null;
|
|
1040
|
+
entresol: boolean | null;
|
|
1041
|
+
wheelchair_friendly: boolean | null;
|
|
1042
|
+
smoking_allowed: boolean | null;
|
|
1043
|
+
pets_allowed: boolean | null;
|
|
1044
|
+
supplies_coffee: boolean | null;
|
|
1045
|
+
supplies_tea: boolean | null;
|
|
1046
|
+
supplies_milk: boolean | null;
|
|
1047
|
+
supplies_sugar: boolean | null;
|
|
1048
|
+
supplies_dishwasher_tablets: boolean | null;
|
|
1049
|
+
service_linen: boolean | null;
|
|
1050
|
+
service_towels: boolean | null;
|
|
958
1051
|
cleaning_costs: number | null;
|
|
959
1052
|
deposit_costs: number | null;
|
|
960
|
-
|
|
1053
|
+
prepayment: number | null;
|
|
1054
|
+
fee: number | null;
|
|
1055
|
+
tax_vat: number | null;
|
|
1056
|
+
tax_other: number | null;
|
|
1057
|
+
tax_other_type: string | null;
|
|
961
1058
|
minimal_nights: number | null;
|
|
962
1059
|
maximal_nights: number | null;
|
|
1060
|
+
available_start: string | null;
|
|
1061
|
+
available_end: string | null;
|
|
963
1062
|
check_in: string | null;
|
|
964
1063
|
check_out: string | null;
|
|
965
1064
|
provider_name: string | null;
|
|
@@ -987,12 +1086,14 @@ declare const PropertySearchResultSchema: z.ZodObject<{
|
|
|
987
1086
|
description: string;
|
|
988
1087
|
area_description: string | null;
|
|
989
1088
|
arrival_description: string | null;
|
|
1089
|
+
payment_description: string | null;
|
|
990
1090
|
max_persons: number | null;
|
|
991
1091
|
bedrooms: number | null;
|
|
992
1092
|
bathrooms: number | null;
|
|
993
1093
|
toilets: number | null;
|
|
994
1094
|
size: number | null;
|
|
995
1095
|
floor: number | null;
|
|
1096
|
+
stairs: number | null;
|
|
996
1097
|
street: string | null;
|
|
997
1098
|
zipcode: string | null;
|
|
998
1099
|
area: string | null;
|
|
@@ -1005,54 +1106,65 @@ declare const PropertySearchResultSchema: z.ZodObject<{
|
|
|
1005
1106
|
single_sofa: number | null;
|
|
1006
1107
|
double_sofa: number | null;
|
|
1007
1108
|
single_bunk: number | null;
|
|
1008
|
-
balcony: boolean;
|
|
1009
|
-
|
|
1109
|
+
balcony: boolean | null;
|
|
1110
|
+
patio: number | null;
|
|
1111
|
+
garden: number | null;
|
|
1112
|
+
roof_terrace: number | null;
|
|
1010
1113
|
view: string | null;
|
|
1011
|
-
airco: boolean;
|
|
1012
|
-
fans: boolean;
|
|
1013
|
-
heating: boolean;
|
|
1114
|
+
airco: boolean | null;
|
|
1115
|
+
fans: boolean | null;
|
|
1116
|
+
heating: boolean | null;
|
|
1014
1117
|
internet: string | null;
|
|
1015
1118
|
internet_connection: string | null;
|
|
1016
|
-
tv:
|
|
1119
|
+
tv: number | null;
|
|
1017
1120
|
tv_connection: string | null;
|
|
1018
|
-
dvd:
|
|
1019
|
-
computer: boolean;
|
|
1020
|
-
printer: boolean;
|
|
1021
|
-
dishwasher: boolean;
|
|
1022
|
-
oven: boolean;
|
|
1023
|
-
microwave: boolean;
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1121
|
+
dvd: number | null;
|
|
1122
|
+
computer: boolean | null;
|
|
1123
|
+
printer: boolean | null;
|
|
1124
|
+
dishwasher: boolean | null;
|
|
1125
|
+
oven: boolean | null;
|
|
1126
|
+
microwave: boolean | null;
|
|
1127
|
+
grill: number | null;
|
|
1128
|
+
hob: number | null;
|
|
1129
|
+
fridge: boolean | null;
|
|
1130
|
+
freezer: boolean | null;
|
|
1131
|
+
toaster: boolean | null;
|
|
1132
|
+
kettle: boolean | null;
|
|
1133
|
+
coffeemachine: boolean | null;
|
|
1134
|
+
washingmachine: boolean | null;
|
|
1135
|
+
dryer: boolean | null;
|
|
1136
|
+
iron: boolean | null;
|
|
1137
|
+
bathtub: boolean | null;
|
|
1138
|
+
jacuzzi: boolean | null;
|
|
1139
|
+
shower_regular: boolean | null;
|
|
1140
|
+
shower_steam: boolean | null;
|
|
1141
|
+
hairdryer: boolean | null;
|
|
1142
|
+
swimmingpool: number | null;
|
|
1143
|
+
sauna: number | null;
|
|
1144
|
+
parking: number | null;
|
|
1145
|
+
elevator: number | null;
|
|
1146
|
+
entresol: boolean | null;
|
|
1147
|
+
wheelchair_friendly: boolean | null;
|
|
1148
|
+
smoking_allowed: boolean | null;
|
|
1149
|
+
pets_allowed: boolean | null;
|
|
1150
|
+
supplies_coffee: boolean | null;
|
|
1151
|
+
supplies_tea: boolean | null;
|
|
1152
|
+
supplies_milk: boolean | null;
|
|
1153
|
+
supplies_sugar: boolean | null;
|
|
1154
|
+
supplies_dishwasher_tablets: boolean | null;
|
|
1155
|
+
service_linen: boolean | null;
|
|
1156
|
+
service_towels: boolean | null;
|
|
1051
1157
|
cleaning_costs: number | null;
|
|
1052
1158
|
deposit_costs: number | null;
|
|
1053
|
-
|
|
1159
|
+
prepayment: number | null;
|
|
1160
|
+
fee: number | null;
|
|
1161
|
+
tax_vat: number | null;
|
|
1162
|
+
tax_other: number | null;
|
|
1163
|
+
tax_other_type: string | null;
|
|
1054
1164
|
minimal_nights: number | null;
|
|
1055
1165
|
maximal_nights: number | null;
|
|
1166
|
+
available_start: string | null;
|
|
1167
|
+
available_end: string | null;
|
|
1056
1168
|
check_in: string | null;
|
|
1057
1169
|
check_out: string | null;
|
|
1058
1170
|
provider_name: string | null;
|
|
@@ -2091,6 +2203,17 @@ declare class MoreApartmentsClient {
|
|
|
2091
2203
|
}): Promise<PaginatedResponse<Property>>;
|
|
2092
2204
|
getProperty(propertyIdOrSlug: number | string): Promise<Property>;
|
|
2093
2205
|
getAvailability(propertySlug: string, startDate: string, endDate: string): Promise<Availability>;
|
|
2206
|
+
/**
|
|
2207
|
+
* Get property calendar with pricing information (legacy endpoint)
|
|
2208
|
+
* Returns daily rates and availability for the specified date range
|
|
2209
|
+
*/
|
|
2210
|
+
getPropertyCalendar(propertySlug: string, fromDate: string, toDate: string): Promise<Array<{
|
|
2211
|
+
date: string;
|
|
2212
|
+
available: boolean;
|
|
2213
|
+
season: string;
|
|
2214
|
+
final_rate: number;
|
|
2215
|
+
stay_minimum: number;
|
|
2216
|
+
}>>;
|
|
2094
2217
|
getPages(): Promise<Page[]>;
|
|
2095
2218
|
getPage(slug: string): Promise<Page>;
|
|
2096
2219
|
getPosts(params?: {
|
|
@@ -2239,12 +2362,14 @@ declare function fetchProperties(client: MoreApartmentsClient, params?: {
|
|
|
2239
2362
|
description: string;
|
|
2240
2363
|
area_description: string | null;
|
|
2241
2364
|
arrival_description: string | null;
|
|
2365
|
+
payment_description: string | null;
|
|
2242
2366
|
max_persons: number | null;
|
|
2243
2367
|
bedrooms: number | null;
|
|
2244
2368
|
bathrooms: number | null;
|
|
2245
2369
|
toilets: number | null;
|
|
2246
2370
|
size: number | null;
|
|
2247
2371
|
floor: number | null;
|
|
2372
|
+
stairs: number | null;
|
|
2248
2373
|
street: string | null;
|
|
2249
2374
|
zipcode: string | null;
|
|
2250
2375
|
area: string | null;
|
|
@@ -2257,54 +2382,65 @@ declare function fetchProperties(client: MoreApartmentsClient, params?: {
|
|
|
2257
2382
|
single_sofa: number | null;
|
|
2258
2383
|
double_sofa: number | null;
|
|
2259
2384
|
single_bunk: number | null;
|
|
2260
|
-
balcony: boolean;
|
|
2261
|
-
|
|
2385
|
+
balcony: boolean | null;
|
|
2386
|
+
patio: number | null;
|
|
2387
|
+
garden: number | null;
|
|
2388
|
+
roof_terrace: number | null;
|
|
2262
2389
|
view: string | null;
|
|
2263
|
-
airco: boolean;
|
|
2264
|
-
fans: boolean;
|
|
2265
|
-
heating: boolean;
|
|
2390
|
+
airco: boolean | null;
|
|
2391
|
+
fans: boolean | null;
|
|
2392
|
+
heating: boolean | null;
|
|
2266
2393
|
internet: string | null;
|
|
2267
2394
|
internet_connection: string | null;
|
|
2268
|
-
tv:
|
|
2395
|
+
tv: number | null;
|
|
2269
2396
|
tv_connection: string | null;
|
|
2270
|
-
dvd:
|
|
2271
|
-
computer: boolean;
|
|
2272
|
-
printer: boolean;
|
|
2273
|
-
dishwasher: boolean;
|
|
2274
|
-
oven: boolean;
|
|
2275
|
-
microwave: boolean;
|
|
2276
|
-
|
|
2277
|
-
|
|
2278
|
-
|
|
2279
|
-
|
|
2280
|
-
|
|
2281
|
-
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
|
|
2286
|
-
|
|
2287
|
-
|
|
2288
|
-
|
|
2289
|
-
|
|
2290
|
-
|
|
2291
|
-
|
|
2292
|
-
|
|
2293
|
-
|
|
2294
|
-
|
|
2295
|
-
|
|
2296
|
-
|
|
2297
|
-
|
|
2298
|
-
|
|
2299
|
-
|
|
2300
|
-
|
|
2301
|
-
|
|
2302
|
-
|
|
2397
|
+
dvd: number | null;
|
|
2398
|
+
computer: boolean | null;
|
|
2399
|
+
printer: boolean | null;
|
|
2400
|
+
dishwasher: boolean | null;
|
|
2401
|
+
oven: boolean | null;
|
|
2402
|
+
microwave: boolean | null;
|
|
2403
|
+
grill: number | null;
|
|
2404
|
+
hob: number | null;
|
|
2405
|
+
fridge: boolean | null;
|
|
2406
|
+
freezer: boolean | null;
|
|
2407
|
+
toaster: boolean | null;
|
|
2408
|
+
kettle: boolean | null;
|
|
2409
|
+
coffeemachine: boolean | null;
|
|
2410
|
+
washingmachine: boolean | null;
|
|
2411
|
+
dryer: boolean | null;
|
|
2412
|
+
iron: boolean | null;
|
|
2413
|
+
bathtub: boolean | null;
|
|
2414
|
+
jacuzzi: boolean | null;
|
|
2415
|
+
shower_regular: boolean | null;
|
|
2416
|
+
shower_steam: boolean | null;
|
|
2417
|
+
hairdryer: boolean | null;
|
|
2418
|
+
swimmingpool: number | null;
|
|
2419
|
+
sauna: number | null;
|
|
2420
|
+
parking: number | null;
|
|
2421
|
+
elevator: number | null;
|
|
2422
|
+
entresol: boolean | null;
|
|
2423
|
+
wheelchair_friendly: boolean | null;
|
|
2424
|
+
smoking_allowed: boolean | null;
|
|
2425
|
+
pets_allowed: boolean | null;
|
|
2426
|
+
supplies_coffee: boolean | null;
|
|
2427
|
+
supplies_tea: boolean | null;
|
|
2428
|
+
supplies_milk: boolean | null;
|
|
2429
|
+
supplies_sugar: boolean | null;
|
|
2430
|
+
supplies_dishwasher_tablets: boolean | null;
|
|
2431
|
+
service_linen: boolean | null;
|
|
2432
|
+
service_towels: boolean | null;
|
|
2303
2433
|
cleaning_costs: number | null;
|
|
2304
2434
|
deposit_costs: number | null;
|
|
2305
|
-
|
|
2435
|
+
prepayment: number | null;
|
|
2436
|
+
fee: number | null;
|
|
2437
|
+
tax_vat: number | null;
|
|
2438
|
+
tax_other: number | null;
|
|
2439
|
+
tax_other_type: string | null;
|
|
2306
2440
|
minimal_nights: number | null;
|
|
2307
2441
|
maximal_nights: number | null;
|
|
2442
|
+
available_start: string | null;
|
|
2443
|
+
available_end: string | null;
|
|
2308
2444
|
check_in: string | null;
|
|
2309
2445
|
check_out: string | null;
|
|
2310
2446
|
provider_name: string | null;
|
|
@@ -2347,12 +2483,14 @@ declare function fetchProperty(client: MoreApartmentsClient, idOrSlug: number |
|
|
|
2347
2483
|
description: string;
|
|
2348
2484
|
area_description: string | null;
|
|
2349
2485
|
arrival_description: string | null;
|
|
2486
|
+
payment_description: string | null;
|
|
2350
2487
|
max_persons: number | null;
|
|
2351
2488
|
bedrooms: number | null;
|
|
2352
2489
|
bathrooms: number | null;
|
|
2353
2490
|
toilets: number | null;
|
|
2354
2491
|
size: number | null;
|
|
2355
2492
|
floor: number | null;
|
|
2493
|
+
stairs: number | null;
|
|
2356
2494
|
street: string | null;
|
|
2357
2495
|
zipcode: string | null;
|
|
2358
2496
|
area: string | null;
|
|
@@ -2365,54 +2503,65 @@ declare function fetchProperty(client: MoreApartmentsClient, idOrSlug: number |
|
|
|
2365
2503
|
single_sofa: number | null;
|
|
2366
2504
|
double_sofa: number | null;
|
|
2367
2505
|
single_bunk: number | null;
|
|
2368
|
-
balcony: boolean;
|
|
2369
|
-
|
|
2506
|
+
balcony: boolean | null;
|
|
2507
|
+
patio: number | null;
|
|
2508
|
+
garden: number | null;
|
|
2509
|
+
roof_terrace: number | null;
|
|
2370
2510
|
view: string | null;
|
|
2371
|
-
airco: boolean;
|
|
2372
|
-
fans: boolean;
|
|
2373
|
-
heating: boolean;
|
|
2511
|
+
airco: boolean | null;
|
|
2512
|
+
fans: boolean | null;
|
|
2513
|
+
heating: boolean | null;
|
|
2374
2514
|
internet: string | null;
|
|
2375
2515
|
internet_connection: string | null;
|
|
2376
|
-
tv:
|
|
2516
|
+
tv: number | null;
|
|
2377
2517
|
tv_connection: string | null;
|
|
2378
|
-
dvd:
|
|
2379
|
-
computer: boolean;
|
|
2380
|
-
printer: boolean;
|
|
2381
|
-
dishwasher: boolean;
|
|
2382
|
-
oven: boolean;
|
|
2383
|
-
microwave: boolean;
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2518
|
+
dvd: number | null;
|
|
2519
|
+
computer: boolean | null;
|
|
2520
|
+
printer: boolean | null;
|
|
2521
|
+
dishwasher: boolean | null;
|
|
2522
|
+
oven: boolean | null;
|
|
2523
|
+
microwave: boolean | null;
|
|
2524
|
+
grill: number | null;
|
|
2525
|
+
hob: number | null;
|
|
2526
|
+
fridge: boolean | null;
|
|
2527
|
+
freezer: boolean | null;
|
|
2528
|
+
toaster: boolean | null;
|
|
2529
|
+
kettle: boolean | null;
|
|
2530
|
+
coffeemachine: boolean | null;
|
|
2531
|
+
washingmachine: boolean | null;
|
|
2532
|
+
dryer: boolean | null;
|
|
2533
|
+
iron: boolean | null;
|
|
2534
|
+
bathtub: boolean | null;
|
|
2535
|
+
jacuzzi: boolean | null;
|
|
2536
|
+
shower_regular: boolean | null;
|
|
2537
|
+
shower_steam: boolean | null;
|
|
2538
|
+
hairdryer: boolean | null;
|
|
2539
|
+
swimmingpool: number | null;
|
|
2540
|
+
sauna: number | null;
|
|
2541
|
+
parking: number | null;
|
|
2542
|
+
elevator: number | null;
|
|
2543
|
+
entresol: boolean | null;
|
|
2544
|
+
wheelchair_friendly: boolean | null;
|
|
2545
|
+
smoking_allowed: boolean | null;
|
|
2546
|
+
pets_allowed: boolean | null;
|
|
2547
|
+
supplies_coffee: boolean | null;
|
|
2548
|
+
supplies_tea: boolean | null;
|
|
2549
|
+
supplies_milk: boolean | null;
|
|
2550
|
+
supplies_sugar: boolean | null;
|
|
2551
|
+
supplies_dishwasher_tablets: boolean | null;
|
|
2552
|
+
service_linen: boolean | null;
|
|
2553
|
+
service_towels: boolean | null;
|
|
2411
2554
|
cleaning_costs: number | null;
|
|
2412
2555
|
deposit_costs: number | null;
|
|
2413
|
-
|
|
2556
|
+
prepayment: number | null;
|
|
2557
|
+
fee: number | null;
|
|
2558
|
+
tax_vat: number | null;
|
|
2559
|
+
tax_other: number | null;
|
|
2560
|
+
tax_other_type: string | null;
|
|
2414
2561
|
minimal_nights: number | null;
|
|
2415
2562
|
maximal_nights: number | null;
|
|
2563
|
+
available_start: string | null;
|
|
2564
|
+
available_end: string | null;
|
|
2416
2565
|
check_in: string | null;
|
|
2417
2566
|
check_out: string | null;
|
|
2418
2567
|
provider_name: string | null;
|
|
@@ -2449,6 +2598,7 @@ declare function fetchAvailability(client: MoreApartmentsClient, propertySlug: s
|
|
|
2449
2598
|
available: boolean;
|
|
2450
2599
|
morning_available: boolean;
|
|
2451
2600
|
day: number;
|
|
2601
|
+
stay_minimum: number;
|
|
2452
2602
|
}>;
|
|
2453
2603
|
} | null>;
|
|
2454
2604
|
/**
|
|
@@ -2693,12 +2843,14 @@ declare function searchProperties(client: MoreApartmentsClient, params: Property
|
|
|
2693
2843
|
description: string;
|
|
2694
2844
|
area_description: string | null;
|
|
2695
2845
|
arrival_description: string | null;
|
|
2846
|
+
payment_description: string | null;
|
|
2696
2847
|
max_persons: number | null;
|
|
2697
2848
|
bedrooms: number | null;
|
|
2698
2849
|
bathrooms: number | null;
|
|
2699
2850
|
toilets: number | null;
|
|
2700
2851
|
size: number | null;
|
|
2701
2852
|
floor: number | null;
|
|
2853
|
+
stairs: number | null;
|
|
2702
2854
|
street: string | null;
|
|
2703
2855
|
zipcode: string | null;
|
|
2704
2856
|
area: string | null;
|
|
@@ -2711,54 +2863,65 @@ declare function searchProperties(client: MoreApartmentsClient, params: Property
|
|
|
2711
2863
|
single_sofa: number | null;
|
|
2712
2864
|
double_sofa: number | null;
|
|
2713
2865
|
single_bunk: number | null;
|
|
2714
|
-
balcony: boolean;
|
|
2715
|
-
|
|
2866
|
+
balcony: boolean | null;
|
|
2867
|
+
patio: number | null;
|
|
2868
|
+
garden: number | null;
|
|
2869
|
+
roof_terrace: number | null;
|
|
2716
2870
|
view: string | null;
|
|
2717
|
-
airco: boolean;
|
|
2718
|
-
fans: boolean;
|
|
2719
|
-
heating: boolean;
|
|
2871
|
+
airco: boolean | null;
|
|
2872
|
+
fans: boolean | null;
|
|
2873
|
+
heating: boolean | null;
|
|
2720
2874
|
internet: string | null;
|
|
2721
2875
|
internet_connection: string | null;
|
|
2722
|
-
tv:
|
|
2876
|
+
tv: number | null;
|
|
2723
2877
|
tv_connection: string | null;
|
|
2724
|
-
dvd:
|
|
2725
|
-
computer: boolean;
|
|
2726
|
-
printer: boolean;
|
|
2727
|
-
dishwasher: boolean;
|
|
2728
|
-
oven: boolean;
|
|
2729
|
-
microwave: boolean;
|
|
2730
|
-
|
|
2731
|
-
|
|
2732
|
-
|
|
2733
|
-
|
|
2734
|
-
|
|
2735
|
-
|
|
2736
|
-
|
|
2737
|
-
|
|
2738
|
-
|
|
2739
|
-
|
|
2740
|
-
|
|
2741
|
-
|
|
2742
|
-
|
|
2743
|
-
|
|
2744
|
-
|
|
2745
|
-
|
|
2746
|
-
|
|
2747
|
-
|
|
2748
|
-
|
|
2749
|
-
|
|
2750
|
-
|
|
2751
|
-
|
|
2752
|
-
|
|
2753
|
-
|
|
2754
|
-
|
|
2755
|
-
|
|
2756
|
-
|
|
2878
|
+
dvd: number | null;
|
|
2879
|
+
computer: boolean | null;
|
|
2880
|
+
printer: boolean | null;
|
|
2881
|
+
dishwasher: boolean | null;
|
|
2882
|
+
oven: boolean | null;
|
|
2883
|
+
microwave: boolean | null;
|
|
2884
|
+
grill: number | null;
|
|
2885
|
+
hob: number | null;
|
|
2886
|
+
fridge: boolean | null;
|
|
2887
|
+
freezer: boolean | null;
|
|
2888
|
+
toaster: boolean | null;
|
|
2889
|
+
kettle: boolean | null;
|
|
2890
|
+
coffeemachine: boolean | null;
|
|
2891
|
+
washingmachine: boolean | null;
|
|
2892
|
+
dryer: boolean | null;
|
|
2893
|
+
iron: boolean | null;
|
|
2894
|
+
bathtub: boolean | null;
|
|
2895
|
+
jacuzzi: boolean | null;
|
|
2896
|
+
shower_regular: boolean | null;
|
|
2897
|
+
shower_steam: boolean | null;
|
|
2898
|
+
hairdryer: boolean | null;
|
|
2899
|
+
swimmingpool: number | null;
|
|
2900
|
+
sauna: number | null;
|
|
2901
|
+
parking: number | null;
|
|
2902
|
+
elevator: number | null;
|
|
2903
|
+
entresol: boolean | null;
|
|
2904
|
+
wheelchair_friendly: boolean | null;
|
|
2905
|
+
smoking_allowed: boolean | null;
|
|
2906
|
+
pets_allowed: boolean | null;
|
|
2907
|
+
supplies_coffee: boolean | null;
|
|
2908
|
+
supplies_tea: boolean | null;
|
|
2909
|
+
supplies_milk: boolean | null;
|
|
2910
|
+
supplies_sugar: boolean | null;
|
|
2911
|
+
supplies_dishwasher_tablets: boolean | null;
|
|
2912
|
+
service_linen: boolean | null;
|
|
2913
|
+
service_towels: boolean | null;
|
|
2757
2914
|
cleaning_costs: number | null;
|
|
2758
2915
|
deposit_costs: number | null;
|
|
2759
|
-
|
|
2916
|
+
prepayment: number | null;
|
|
2917
|
+
fee: number | null;
|
|
2918
|
+
tax_vat: number | null;
|
|
2919
|
+
tax_other: number | null;
|
|
2920
|
+
tax_other_type: string | null;
|
|
2760
2921
|
minimal_nights: number | null;
|
|
2761
2922
|
maximal_nights: number | null;
|
|
2923
|
+
available_start: string | null;
|
|
2924
|
+
available_end: string | null;
|
|
2762
2925
|
check_in: string | null;
|
|
2763
2926
|
check_out: string | null;
|
|
2764
2927
|
provider_name: string | null;
|