more-apartments-astro-integration 1.1.2 → 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 +55 -42
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.mts +588 -445
- package/dist/index.d.ts +588 -445
- package/dist/index.js +55 -42
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +55 -42
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
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;
|
|
@@ -567,7 +606,7 @@ declare const PropertySearchParamsSchema: z.ZodObject<{
|
|
|
567
606
|
bathrooms: z.ZodOptional<z.ZodNumber>;
|
|
568
607
|
maxPersons: z.ZodOptional<z.ZodNumber>;
|
|
569
608
|
elevator: z.ZodOptional<z.ZodBoolean>;
|
|
570
|
-
parking: z.ZodOptional<z.
|
|
609
|
+
parking: z.ZodOptional<z.ZodString>;
|
|
571
610
|
balcony: z.ZodOptional<z.ZodBoolean>;
|
|
572
611
|
}, "strip", z.ZodTypeAny, {
|
|
573
612
|
bedrooms?: number | undefined;
|
|
@@ -575,7 +614,8 @@ declare const PropertySearchParamsSchema: z.ZodObject<{
|
|
|
575
614
|
area?: string | undefined;
|
|
576
615
|
city?: string | undefined;
|
|
577
616
|
balcony?: boolean | undefined;
|
|
578
|
-
parking?:
|
|
617
|
+
parking?: string | undefined;
|
|
618
|
+
elevator?: boolean | undefined;
|
|
579
619
|
arrival?: string | undefined;
|
|
580
620
|
departure?: string | undefined;
|
|
581
621
|
guests?: number | undefined;
|
|
@@ -583,14 +623,14 @@ declare const PropertySearchParamsSchema: z.ZodObject<{
|
|
|
583
623
|
segment?: string | undefined;
|
|
584
624
|
propertyType?: string | undefined;
|
|
585
625
|
maxPersons?: number | undefined;
|
|
586
|
-
elevator?: boolean | undefined;
|
|
587
626
|
}, {
|
|
588
627
|
bedrooms?: number | undefined;
|
|
589
628
|
bathrooms?: number | undefined;
|
|
590
629
|
area?: string | undefined;
|
|
591
630
|
city?: string | undefined;
|
|
592
631
|
balcony?: boolean | undefined;
|
|
593
|
-
parking?:
|
|
632
|
+
parking?: string | undefined;
|
|
633
|
+
elevator?: boolean | undefined;
|
|
594
634
|
arrival?: string | undefined;
|
|
595
635
|
departure?: string | undefined;
|
|
596
636
|
guests?: number | undefined;
|
|
@@ -598,7 +638,6 @@ declare const PropertySearchParamsSchema: z.ZodObject<{
|
|
|
598
638
|
segment?: string | undefined;
|
|
599
639
|
propertyType?: string | undefined;
|
|
600
640
|
maxPersons?: number | undefined;
|
|
601
|
-
elevator?: boolean | undefined;
|
|
602
641
|
}>;
|
|
603
642
|
declare const PropertySearchResultSchema: z.ZodObject<{
|
|
604
643
|
data: z.ZodArray<z.ZodObject<{
|
|
@@ -610,6 +649,7 @@ declare const PropertySearchResultSchema: z.ZodObject<{
|
|
|
610
649
|
description: z.ZodString;
|
|
611
650
|
area_description: z.ZodNullable<z.ZodString>;
|
|
612
651
|
arrival_description: z.ZodNullable<z.ZodString>;
|
|
652
|
+
payment_description: z.ZodNullable<z.ZodString>;
|
|
613
653
|
type: z.ZodNullable<z.ZodString>;
|
|
614
654
|
max_persons: z.ZodNullable<z.ZodNumber>;
|
|
615
655
|
bedrooms: z.ZodNullable<z.ZodNumber>;
|
|
@@ -617,6 +657,7 @@ declare const PropertySearchResultSchema: z.ZodObject<{
|
|
|
617
657
|
toilets: z.ZodNullable<z.ZodNumber>;
|
|
618
658
|
size: z.ZodNullable<z.ZodNumber>;
|
|
619
659
|
floor: z.ZodNullable<z.ZodNumber>;
|
|
660
|
+
stairs: z.ZodNullable<z.ZodNumber>;
|
|
620
661
|
street: z.ZodNullable<z.ZodString>;
|
|
621
662
|
zipcode: z.ZodNullable<z.ZodString>;
|
|
622
663
|
area: z.ZodNullable<z.ZodString>;
|
|
@@ -629,54 +670,65 @@ declare const PropertySearchResultSchema: z.ZodObject<{
|
|
|
629
670
|
single_sofa: z.ZodNullable<z.ZodNumber>;
|
|
630
671
|
double_sofa: z.ZodNullable<z.ZodNumber>;
|
|
631
672
|
single_bunk: z.ZodNullable<z.ZodNumber>;
|
|
632
|
-
balcony: z.ZodBoolean
|
|
633
|
-
|
|
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>;
|
|
634
677
|
view: z.ZodNullable<z.ZodString>;
|
|
635
|
-
airco: z.ZodBoolean
|
|
636
|
-
fans: z.ZodBoolean
|
|
637
|
-
heating: z.ZodBoolean
|
|
678
|
+
airco: z.ZodNullable<z.ZodBoolean>;
|
|
679
|
+
fans: z.ZodNullable<z.ZodBoolean>;
|
|
680
|
+
heating: z.ZodNullable<z.ZodBoolean>;
|
|
638
681
|
internet: z.ZodNullable<z.ZodString>;
|
|
639
682
|
internet_connection: z.ZodNullable<z.ZodString>;
|
|
640
|
-
tv: z.ZodNullable<z.
|
|
683
|
+
tv: z.ZodNullable<z.ZodNumber>;
|
|
641
684
|
tv_connection: z.ZodNullable<z.ZodString>;
|
|
642
|
-
dvd: z.
|
|
643
|
-
computer: z.ZodBoolean
|
|
644
|
-
printer: z.ZodBoolean
|
|
645
|
-
dishwasher: z.ZodBoolean
|
|
646
|
-
oven: z.ZodBoolean
|
|
647
|
-
microwave: z.ZodBoolean
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
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>;
|
|
675
721
|
cleaning_costs: z.ZodNullable<z.ZodNumber>;
|
|
676
722
|
deposit_costs: z.ZodNullable<z.ZodNumber>;
|
|
677
|
-
|
|
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>;
|
|
678
728
|
minimal_nights: z.ZodNullable<z.ZodNumber>;
|
|
679
729
|
maximal_nights: z.ZodNullable<z.ZodNumber>;
|
|
730
|
+
available_start: z.ZodNullable<z.ZodString>;
|
|
731
|
+
available_end: z.ZodNullable<z.ZodString>;
|
|
680
732
|
check_in: z.ZodNullable<z.ZodString>;
|
|
681
733
|
check_out: z.ZodNullable<z.ZodString>;
|
|
682
734
|
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -718,12 +770,14 @@ declare const PropertySearchResultSchema: z.ZodObject<{
|
|
|
718
770
|
description: string;
|
|
719
771
|
area_description: string | null;
|
|
720
772
|
arrival_description: string | null;
|
|
773
|
+
payment_description: string | null;
|
|
721
774
|
max_persons: number | null;
|
|
722
775
|
bedrooms: number | null;
|
|
723
776
|
bathrooms: number | null;
|
|
724
777
|
toilets: number | null;
|
|
725
778
|
size: number | null;
|
|
726
779
|
floor: number | null;
|
|
780
|
+
stairs: number | null;
|
|
727
781
|
street: string | null;
|
|
728
782
|
zipcode: string | null;
|
|
729
783
|
area: string | null;
|
|
@@ -736,54 +790,65 @@ declare const PropertySearchResultSchema: z.ZodObject<{
|
|
|
736
790
|
single_sofa: number | null;
|
|
737
791
|
double_sofa: number | null;
|
|
738
792
|
single_bunk: number | null;
|
|
739
|
-
balcony: boolean;
|
|
740
|
-
|
|
793
|
+
balcony: boolean | null;
|
|
794
|
+
patio: number | null;
|
|
795
|
+
garden: number | null;
|
|
796
|
+
roof_terrace: number | null;
|
|
741
797
|
view: string | null;
|
|
742
|
-
airco: boolean;
|
|
743
|
-
fans: boolean;
|
|
744
|
-
heating: boolean;
|
|
798
|
+
airco: boolean | null;
|
|
799
|
+
fans: boolean | null;
|
|
800
|
+
heating: boolean | null;
|
|
745
801
|
internet: string | null;
|
|
746
802
|
internet_connection: string | null;
|
|
747
|
-
tv:
|
|
803
|
+
tv: number | null;
|
|
748
804
|
tv_connection: string | null;
|
|
749
|
-
dvd:
|
|
750
|
-
computer: boolean;
|
|
751
|
-
printer: boolean;
|
|
752
|
-
dishwasher: boolean;
|
|
753
|
-
oven: boolean;
|
|
754
|
-
microwave: boolean;
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
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;
|
|
782
841
|
cleaning_costs: number | null;
|
|
783
842
|
deposit_costs: number | null;
|
|
784
|
-
|
|
843
|
+
prepayment: number | null;
|
|
844
|
+
fee: number | null;
|
|
845
|
+
tax_vat: number | null;
|
|
846
|
+
tax_other: number | null;
|
|
847
|
+
tax_other_type: string | null;
|
|
785
848
|
minimal_nights: number | null;
|
|
786
849
|
maximal_nights: number | null;
|
|
850
|
+
available_start: string | null;
|
|
851
|
+
available_end: string | null;
|
|
787
852
|
check_in: string | null;
|
|
788
853
|
check_out: string | null;
|
|
789
854
|
provider_name: string | null;
|
|
@@ -809,12 +874,14 @@ declare const PropertySearchResultSchema: z.ZodObject<{
|
|
|
809
874
|
description: string;
|
|
810
875
|
area_description: string | null;
|
|
811
876
|
arrival_description: string | null;
|
|
877
|
+
payment_description: string | null;
|
|
812
878
|
max_persons: number | null;
|
|
813
879
|
bedrooms: number | null;
|
|
814
880
|
bathrooms: number | null;
|
|
815
881
|
toilets: number | null;
|
|
816
882
|
size: number | null;
|
|
817
883
|
floor: number | null;
|
|
884
|
+
stairs: number | null;
|
|
818
885
|
street: string | null;
|
|
819
886
|
zipcode: string | null;
|
|
820
887
|
area: string | null;
|
|
@@ -827,54 +894,65 @@ declare const PropertySearchResultSchema: z.ZodObject<{
|
|
|
827
894
|
single_sofa: number | null;
|
|
828
895
|
double_sofa: number | null;
|
|
829
896
|
single_bunk: number | null;
|
|
830
|
-
balcony: boolean;
|
|
831
|
-
|
|
897
|
+
balcony: boolean | null;
|
|
898
|
+
patio: number | null;
|
|
899
|
+
garden: number | null;
|
|
900
|
+
roof_terrace: number | null;
|
|
832
901
|
view: string | null;
|
|
833
|
-
airco: boolean;
|
|
834
|
-
fans: boolean;
|
|
835
|
-
heating: boolean;
|
|
902
|
+
airco: boolean | null;
|
|
903
|
+
fans: boolean | null;
|
|
904
|
+
heating: boolean | null;
|
|
836
905
|
internet: string | null;
|
|
837
906
|
internet_connection: string | null;
|
|
838
|
-
tv:
|
|
907
|
+
tv: number | null;
|
|
839
908
|
tv_connection: string | null;
|
|
840
|
-
dvd:
|
|
841
|
-
computer: boolean;
|
|
842
|
-
printer: boolean;
|
|
843
|
-
dishwasher: boolean;
|
|
844
|
-
oven: boolean;
|
|
845
|
-
microwave: boolean;
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
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;
|
|
873
945
|
cleaning_costs: number | null;
|
|
874
946
|
deposit_costs: number | null;
|
|
875
|
-
|
|
947
|
+
prepayment: number | null;
|
|
948
|
+
fee: number | null;
|
|
949
|
+
tax_vat: number | null;
|
|
950
|
+
tax_other: number | null;
|
|
951
|
+
tax_other_type: string | null;
|
|
876
952
|
minimal_nights: number | null;
|
|
877
953
|
maximal_nights: number | null;
|
|
954
|
+
available_start: string | null;
|
|
955
|
+
available_end: string | null;
|
|
878
956
|
check_in: string | null;
|
|
879
957
|
check_out: string | null;
|
|
880
958
|
provider_name: string | null;
|
|
@@ -902,12 +980,14 @@ declare const PropertySearchResultSchema: z.ZodObject<{
|
|
|
902
980
|
description: string;
|
|
903
981
|
area_description: string | null;
|
|
904
982
|
arrival_description: string | null;
|
|
983
|
+
payment_description: string | null;
|
|
905
984
|
max_persons: number | null;
|
|
906
985
|
bedrooms: number | null;
|
|
907
986
|
bathrooms: number | null;
|
|
908
987
|
toilets: number | null;
|
|
909
988
|
size: number | null;
|
|
910
989
|
floor: number | null;
|
|
990
|
+
stairs: number | null;
|
|
911
991
|
street: string | null;
|
|
912
992
|
zipcode: string | null;
|
|
913
993
|
area: string | null;
|
|
@@ -920,54 +1000,65 @@ declare const PropertySearchResultSchema: z.ZodObject<{
|
|
|
920
1000
|
single_sofa: number | null;
|
|
921
1001
|
double_sofa: number | null;
|
|
922
1002
|
single_bunk: number | null;
|
|
923
|
-
balcony: boolean;
|
|
924
|
-
|
|
1003
|
+
balcony: boolean | null;
|
|
1004
|
+
patio: number | null;
|
|
1005
|
+
garden: number | null;
|
|
1006
|
+
roof_terrace: number | null;
|
|
925
1007
|
view: string | null;
|
|
926
|
-
airco: boolean;
|
|
927
|
-
fans: boolean;
|
|
928
|
-
heating: boolean;
|
|
1008
|
+
airco: boolean | null;
|
|
1009
|
+
fans: boolean | null;
|
|
1010
|
+
heating: boolean | null;
|
|
929
1011
|
internet: string | null;
|
|
930
1012
|
internet_connection: string | null;
|
|
931
|
-
tv:
|
|
1013
|
+
tv: number | null;
|
|
932
1014
|
tv_connection: string | null;
|
|
933
|
-
dvd:
|
|
934
|
-
computer: boolean;
|
|
935
|
-
printer: boolean;
|
|
936
|
-
dishwasher: boolean;
|
|
937
|
-
oven: boolean;
|
|
938
|
-
microwave: boolean;
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
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;
|
|
966
1051
|
cleaning_costs: number | null;
|
|
967
1052
|
deposit_costs: number | null;
|
|
968
|
-
|
|
1053
|
+
prepayment: number | null;
|
|
1054
|
+
fee: number | null;
|
|
1055
|
+
tax_vat: number | null;
|
|
1056
|
+
tax_other: number | null;
|
|
1057
|
+
tax_other_type: string | null;
|
|
969
1058
|
minimal_nights: number | null;
|
|
970
1059
|
maximal_nights: number | null;
|
|
1060
|
+
available_start: string | null;
|
|
1061
|
+
available_end: string | null;
|
|
971
1062
|
check_in: string | null;
|
|
972
1063
|
check_out: string | null;
|
|
973
1064
|
provider_name: string | null;
|
|
@@ -995,12 +1086,14 @@ declare const PropertySearchResultSchema: z.ZodObject<{
|
|
|
995
1086
|
description: string;
|
|
996
1087
|
area_description: string | null;
|
|
997
1088
|
arrival_description: string | null;
|
|
1089
|
+
payment_description: string | null;
|
|
998
1090
|
max_persons: number | null;
|
|
999
1091
|
bedrooms: number | null;
|
|
1000
1092
|
bathrooms: number | null;
|
|
1001
1093
|
toilets: number | null;
|
|
1002
1094
|
size: number | null;
|
|
1003
1095
|
floor: number | null;
|
|
1096
|
+
stairs: number | null;
|
|
1004
1097
|
street: string | null;
|
|
1005
1098
|
zipcode: string | null;
|
|
1006
1099
|
area: string | null;
|
|
@@ -1013,54 +1106,65 @@ declare const PropertySearchResultSchema: z.ZodObject<{
|
|
|
1013
1106
|
single_sofa: number | null;
|
|
1014
1107
|
double_sofa: number | null;
|
|
1015
1108
|
single_bunk: number | null;
|
|
1016
|
-
balcony: boolean;
|
|
1017
|
-
|
|
1109
|
+
balcony: boolean | null;
|
|
1110
|
+
patio: number | null;
|
|
1111
|
+
garden: number | null;
|
|
1112
|
+
roof_terrace: number | null;
|
|
1018
1113
|
view: string | null;
|
|
1019
|
-
airco: boolean;
|
|
1020
|
-
fans: boolean;
|
|
1021
|
-
heating: boolean;
|
|
1114
|
+
airco: boolean | null;
|
|
1115
|
+
fans: boolean | null;
|
|
1116
|
+
heating: boolean | null;
|
|
1022
1117
|
internet: string | null;
|
|
1023
1118
|
internet_connection: string | null;
|
|
1024
|
-
tv:
|
|
1119
|
+
tv: number | null;
|
|
1025
1120
|
tv_connection: string | null;
|
|
1026
|
-
dvd:
|
|
1027
|
-
computer: boolean;
|
|
1028
|
-
printer: boolean;
|
|
1029
|
-
dishwasher: boolean;
|
|
1030
|
-
oven: boolean;
|
|
1031
|
-
microwave: boolean;
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
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;
|
|
1059
1157
|
cleaning_costs: number | null;
|
|
1060
1158
|
deposit_costs: number | null;
|
|
1061
|
-
|
|
1159
|
+
prepayment: number | null;
|
|
1160
|
+
fee: number | null;
|
|
1161
|
+
tax_vat: number | null;
|
|
1162
|
+
tax_other: number | null;
|
|
1163
|
+
tax_other_type: string | null;
|
|
1062
1164
|
minimal_nights: number | null;
|
|
1063
1165
|
maximal_nights: number | null;
|
|
1166
|
+
available_start: string | null;
|
|
1167
|
+
available_end: string | null;
|
|
1064
1168
|
check_in: string | null;
|
|
1065
1169
|
check_out: string | null;
|
|
1066
1170
|
provider_name: string | null;
|
|
@@ -2258,12 +2362,14 @@ declare function fetchProperties(client: MoreApartmentsClient, params?: {
|
|
|
2258
2362
|
description: string;
|
|
2259
2363
|
area_description: string | null;
|
|
2260
2364
|
arrival_description: string | null;
|
|
2365
|
+
payment_description: string | null;
|
|
2261
2366
|
max_persons: number | null;
|
|
2262
2367
|
bedrooms: number | null;
|
|
2263
2368
|
bathrooms: number | null;
|
|
2264
2369
|
toilets: number | null;
|
|
2265
2370
|
size: number | null;
|
|
2266
2371
|
floor: number | null;
|
|
2372
|
+
stairs: number | null;
|
|
2267
2373
|
street: string | null;
|
|
2268
2374
|
zipcode: string | null;
|
|
2269
2375
|
area: string | null;
|
|
@@ -2276,54 +2382,65 @@ declare function fetchProperties(client: MoreApartmentsClient, params?: {
|
|
|
2276
2382
|
single_sofa: number | null;
|
|
2277
2383
|
double_sofa: number | null;
|
|
2278
2384
|
single_bunk: number | null;
|
|
2279
|
-
balcony: boolean;
|
|
2280
|
-
|
|
2385
|
+
balcony: boolean | null;
|
|
2386
|
+
patio: number | null;
|
|
2387
|
+
garden: number | null;
|
|
2388
|
+
roof_terrace: number | null;
|
|
2281
2389
|
view: string | null;
|
|
2282
|
-
airco: boolean;
|
|
2283
|
-
fans: boolean;
|
|
2284
|
-
heating: boolean;
|
|
2390
|
+
airco: boolean | null;
|
|
2391
|
+
fans: boolean | null;
|
|
2392
|
+
heating: boolean | null;
|
|
2285
2393
|
internet: string | null;
|
|
2286
2394
|
internet_connection: string | null;
|
|
2287
|
-
tv:
|
|
2395
|
+
tv: number | null;
|
|
2288
2396
|
tv_connection: string | null;
|
|
2289
|
-
dvd:
|
|
2290
|
-
computer: boolean;
|
|
2291
|
-
printer: boolean;
|
|
2292
|
-
dishwasher: boolean;
|
|
2293
|
-
oven: boolean;
|
|
2294
|
-
microwave: boolean;
|
|
2295
|
-
|
|
2296
|
-
|
|
2297
|
-
|
|
2298
|
-
|
|
2299
|
-
|
|
2300
|
-
|
|
2301
|
-
|
|
2302
|
-
|
|
2303
|
-
|
|
2304
|
-
|
|
2305
|
-
|
|
2306
|
-
|
|
2307
|
-
|
|
2308
|
-
|
|
2309
|
-
|
|
2310
|
-
|
|
2311
|
-
|
|
2312
|
-
|
|
2313
|
-
|
|
2314
|
-
|
|
2315
|
-
|
|
2316
|
-
|
|
2317
|
-
|
|
2318
|
-
|
|
2319
|
-
|
|
2320
|
-
|
|
2321
|
-
|
|
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;
|
|
2322
2433
|
cleaning_costs: number | null;
|
|
2323
2434
|
deposit_costs: number | null;
|
|
2324
|
-
|
|
2435
|
+
prepayment: number | null;
|
|
2436
|
+
fee: number | null;
|
|
2437
|
+
tax_vat: number | null;
|
|
2438
|
+
tax_other: number | null;
|
|
2439
|
+
tax_other_type: string | null;
|
|
2325
2440
|
minimal_nights: number | null;
|
|
2326
2441
|
maximal_nights: number | null;
|
|
2442
|
+
available_start: string | null;
|
|
2443
|
+
available_end: string | null;
|
|
2327
2444
|
check_in: string | null;
|
|
2328
2445
|
check_out: string | null;
|
|
2329
2446
|
provider_name: string | null;
|
|
@@ -2366,12 +2483,14 @@ declare function fetchProperty(client: MoreApartmentsClient, idOrSlug: number |
|
|
|
2366
2483
|
description: string;
|
|
2367
2484
|
area_description: string | null;
|
|
2368
2485
|
arrival_description: string | null;
|
|
2486
|
+
payment_description: string | null;
|
|
2369
2487
|
max_persons: number | null;
|
|
2370
2488
|
bedrooms: number | null;
|
|
2371
2489
|
bathrooms: number | null;
|
|
2372
2490
|
toilets: number | null;
|
|
2373
2491
|
size: number | null;
|
|
2374
2492
|
floor: number | null;
|
|
2493
|
+
stairs: number | null;
|
|
2375
2494
|
street: string | null;
|
|
2376
2495
|
zipcode: string | null;
|
|
2377
2496
|
area: string | null;
|
|
@@ -2384,54 +2503,65 @@ declare function fetchProperty(client: MoreApartmentsClient, idOrSlug: number |
|
|
|
2384
2503
|
single_sofa: number | null;
|
|
2385
2504
|
double_sofa: number | null;
|
|
2386
2505
|
single_bunk: number | null;
|
|
2387
|
-
balcony: boolean;
|
|
2388
|
-
|
|
2506
|
+
balcony: boolean | null;
|
|
2507
|
+
patio: number | null;
|
|
2508
|
+
garden: number | null;
|
|
2509
|
+
roof_terrace: number | null;
|
|
2389
2510
|
view: string | null;
|
|
2390
|
-
airco: boolean;
|
|
2391
|
-
fans: boolean;
|
|
2392
|
-
heating: boolean;
|
|
2511
|
+
airco: boolean | null;
|
|
2512
|
+
fans: boolean | null;
|
|
2513
|
+
heating: boolean | null;
|
|
2393
2514
|
internet: string | null;
|
|
2394
2515
|
internet_connection: string | null;
|
|
2395
|
-
tv:
|
|
2516
|
+
tv: number | null;
|
|
2396
2517
|
tv_connection: string | null;
|
|
2397
|
-
dvd:
|
|
2398
|
-
computer: boolean;
|
|
2399
|
-
printer: boolean;
|
|
2400
|
-
dishwasher: boolean;
|
|
2401
|
-
oven: boolean;
|
|
2402
|
-
microwave: boolean;
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
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;
|
|
2430
2554
|
cleaning_costs: number | null;
|
|
2431
2555
|
deposit_costs: number | null;
|
|
2432
|
-
|
|
2556
|
+
prepayment: number | null;
|
|
2557
|
+
fee: number | null;
|
|
2558
|
+
tax_vat: number | null;
|
|
2559
|
+
tax_other: number | null;
|
|
2560
|
+
tax_other_type: string | null;
|
|
2433
2561
|
minimal_nights: number | null;
|
|
2434
2562
|
maximal_nights: number | null;
|
|
2563
|
+
available_start: string | null;
|
|
2564
|
+
available_end: string | null;
|
|
2435
2565
|
check_in: string | null;
|
|
2436
2566
|
check_out: string | null;
|
|
2437
2567
|
provider_name: string | null;
|
|
@@ -2713,12 +2843,14 @@ declare function searchProperties(client: MoreApartmentsClient, params: Property
|
|
|
2713
2843
|
description: string;
|
|
2714
2844
|
area_description: string | null;
|
|
2715
2845
|
arrival_description: string | null;
|
|
2846
|
+
payment_description: string | null;
|
|
2716
2847
|
max_persons: number | null;
|
|
2717
2848
|
bedrooms: number | null;
|
|
2718
2849
|
bathrooms: number | null;
|
|
2719
2850
|
toilets: number | null;
|
|
2720
2851
|
size: number | null;
|
|
2721
2852
|
floor: number | null;
|
|
2853
|
+
stairs: number | null;
|
|
2722
2854
|
street: string | null;
|
|
2723
2855
|
zipcode: string | null;
|
|
2724
2856
|
area: string | null;
|
|
@@ -2731,54 +2863,65 @@ declare function searchProperties(client: MoreApartmentsClient, params: Property
|
|
|
2731
2863
|
single_sofa: number | null;
|
|
2732
2864
|
double_sofa: number | null;
|
|
2733
2865
|
single_bunk: number | null;
|
|
2734
|
-
balcony: boolean;
|
|
2735
|
-
|
|
2866
|
+
balcony: boolean | null;
|
|
2867
|
+
patio: number | null;
|
|
2868
|
+
garden: number | null;
|
|
2869
|
+
roof_terrace: number | null;
|
|
2736
2870
|
view: string | null;
|
|
2737
|
-
airco: boolean;
|
|
2738
|
-
fans: boolean;
|
|
2739
|
-
heating: boolean;
|
|
2871
|
+
airco: boolean | null;
|
|
2872
|
+
fans: boolean | null;
|
|
2873
|
+
heating: boolean | null;
|
|
2740
2874
|
internet: string | null;
|
|
2741
2875
|
internet_connection: string | null;
|
|
2742
|
-
tv:
|
|
2876
|
+
tv: number | null;
|
|
2743
2877
|
tv_connection: string | null;
|
|
2744
|
-
dvd:
|
|
2745
|
-
computer: boolean;
|
|
2746
|
-
printer: boolean;
|
|
2747
|
-
dishwasher: boolean;
|
|
2748
|
-
oven: boolean;
|
|
2749
|
-
microwave: boolean;
|
|
2750
|
-
|
|
2751
|
-
|
|
2752
|
-
|
|
2753
|
-
|
|
2754
|
-
|
|
2755
|
-
|
|
2756
|
-
|
|
2757
|
-
|
|
2758
|
-
|
|
2759
|
-
|
|
2760
|
-
|
|
2761
|
-
|
|
2762
|
-
|
|
2763
|
-
|
|
2764
|
-
|
|
2765
|
-
|
|
2766
|
-
|
|
2767
|
-
|
|
2768
|
-
|
|
2769
|
-
|
|
2770
|
-
|
|
2771
|
-
|
|
2772
|
-
|
|
2773
|
-
|
|
2774
|
-
|
|
2775
|
-
|
|
2776
|
-
|
|
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;
|
|
2777
2914
|
cleaning_costs: number | null;
|
|
2778
2915
|
deposit_costs: number | null;
|
|
2779
|
-
|
|
2916
|
+
prepayment: number | null;
|
|
2917
|
+
fee: number | null;
|
|
2918
|
+
tax_vat: number | null;
|
|
2919
|
+
tax_other: number | null;
|
|
2920
|
+
tax_other_type: string | null;
|
|
2780
2921
|
minimal_nights: number | null;
|
|
2781
2922
|
maximal_nights: number | null;
|
|
2923
|
+
available_start: string | null;
|
|
2924
|
+
available_end: string | null;
|
|
2782
2925
|
check_in: string | null;
|
|
2783
2926
|
check_out: string | null;
|
|
2784
2927
|
provider_name: string | null;
|