more-apartments-astro-integration 1.1.3 → 1.2.0

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/index.d.ts CHANGED
@@ -210,7 +210,7 @@ declare const PropertyImageSchema: z.ZodObject<{
210
210
  }>;
211
211
  declare const PropertySchema: z.ZodObject<{
212
212
  id: z.ZodNumber;
213
- external_id: z.ZodOptional<z.ZodNumber>;
213
+ external_id: z.ZodNullable<z.ZodString>;
214
214
  name: z.ZodString;
215
215
  slug: z.ZodString;
216
216
  short_description: z.ZodNullable<z.ZodString>;
@@ -225,7 +225,7 @@ declare const PropertySchema: z.ZodObject<{
225
225
  toilets: z.ZodNullable<z.ZodNumber>;
226
226
  size: z.ZodNullable<z.ZodNumber>;
227
227
  floor: z.ZodNullable<z.ZodNumber>;
228
- stairs: z.ZodNullable<z.ZodNumber>;
228
+ stairs: z.ZodNullable<z.ZodBoolean>;
229
229
  street: z.ZodNullable<z.ZodString>;
230
230
  zipcode: z.ZodNullable<z.ZodString>;
231
231
  area: z.ZodNullable<z.ZodString>;
@@ -238,54 +238,54 @@ declare const PropertySchema: z.ZodObject<{
238
238
  single_sofa: z.ZodNullable<z.ZodNumber>;
239
239
  double_sofa: z.ZodNullable<z.ZodNumber>;
240
240
  single_bunk: z.ZodNullable<z.ZodNumber>;
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
+ balcony: z.ZodBoolean;
242
+ patio: z.ZodNullable<z.ZodBoolean>;
243
+ garden: z.ZodNullable<z.ZodBoolean>;
244
+ roof_terrace: z.ZodNullable<z.ZodBoolean>;
245
245
  view: z.ZodNullable<z.ZodString>;
246
- airco: z.ZodNullable<z.ZodBoolean>;
247
- fans: z.ZodNullable<z.ZodBoolean>;
248
- heating: z.ZodNullable<z.ZodBoolean>;
246
+ airco: z.ZodBoolean;
247
+ fans: z.ZodBoolean;
248
+ heating: z.ZodBoolean;
249
249
  internet: z.ZodNullable<z.ZodString>;
250
250
  internet_connection: z.ZodNullable<z.ZodString>;
251
- tv: z.ZodNullable<z.ZodNumber>;
251
+ tv: z.ZodString;
252
252
  tv_connection: z.ZodNullable<z.ZodString>;
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>;
253
+ dvd: z.ZodString;
254
+ computer: z.ZodBoolean;
255
+ printer: z.ZodBoolean;
256
+ dishwasher: z.ZodBoolean;
257
+ oven: z.ZodBoolean;
258
+ microwave: z.ZodBoolean;
259
259
  grill: z.ZodNullable<z.ZodNumber>;
260
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>;
261
+ fridge: z.ZodBoolean;
262
+ freezer: z.ZodBoolean;
263
+ toaster: z.ZodBoolean;
264
+ kettle: z.ZodBoolean;
265
+ coffeemachine: z.ZodBoolean;
266
+ washingmachine: z.ZodBoolean;
267
+ dryer: z.ZodBoolean;
268
+ iron: z.ZodBoolean;
269
+ bathtub: z.ZodBoolean;
270
+ jacuzzi: z.ZodBoolean;
271
+ shower_regular: z.ZodBoolean;
272
+ shower_steam: z.ZodBoolean;
273
+ hairdryer: z.ZodBoolean;
274
+ swimmingpool: z.ZodString;
275
+ sauna: z.ZodString;
276
+ parking: z.ZodString;
277
+ elevator: z.ZodNullable<z.ZodBoolean>;
278
+ entresol: z.ZodBoolean;
279
+ wheelchair_friendly: z.ZodBoolean;
280
+ smoking_allowed: z.ZodBoolean;
281
+ pets_allowed: z.ZodBoolean;
282
+ supplies_coffee: z.ZodBoolean;
283
+ supplies_tea: z.ZodBoolean;
284
+ supplies_milk: z.ZodBoolean;
285
+ supplies_sugar: z.ZodBoolean;
286
+ supplies_dishwasher_tablets: z.ZodBoolean;
287
+ service_linen: z.ZodBoolean;
288
+ service_towels: z.ZodBoolean;
289
289
  cleaning_costs: z.ZodNullable<z.ZodNumber>;
290
290
  deposit_costs: z.ZodNullable<z.ZodNumber>;
291
291
  prepayment: z.ZodNullable<z.ZodNumber>;
@@ -332,6 +332,7 @@ declare const PropertySchema: z.ZodObject<{
332
332
  type: string | null;
333
333
  status: string | null;
334
334
  id: number;
335
+ external_id: string | null;
335
336
  name: string;
336
337
  slug: string;
337
338
  short_description: string | null;
@@ -345,7 +346,7 @@ declare const PropertySchema: z.ZodObject<{
345
346
  toilets: number | null;
346
347
  size: number | null;
347
348
  floor: number | null;
348
- stairs: number | null;
349
+ stairs: boolean | null;
349
350
  street: string | null;
350
351
  zipcode: string | null;
351
352
  area: string | null;
@@ -358,54 +359,54 @@ declare const PropertySchema: z.ZodObject<{
358
359
  single_sofa: number | null;
359
360
  double_sofa: number | null;
360
361
  single_bunk: number | null;
361
- balcony: boolean | null;
362
- patio: number | null;
363
- garden: number | null;
364
- roof_terrace: number | null;
362
+ balcony: boolean;
363
+ patio: boolean | null;
364
+ garden: boolean | null;
365
+ roof_terrace: boolean | null;
365
366
  view: string | null;
366
- airco: boolean | null;
367
- fans: boolean | null;
368
- heating: boolean | null;
367
+ airco: boolean;
368
+ fans: boolean;
369
+ heating: boolean;
369
370
  internet: string | null;
370
371
  internet_connection: string | null;
371
- tv: number | null;
372
+ tv: string;
372
373
  tv_connection: string | null;
373
- dvd: number | null;
374
- computer: boolean | null;
375
- printer: boolean | null;
376
- dishwasher: boolean | null;
377
- oven: boolean | null;
378
- microwave: boolean | null;
374
+ dvd: string;
375
+ computer: boolean;
376
+ printer: boolean;
377
+ dishwasher: boolean;
378
+ oven: boolean;
379
+ microwave: boolean;
379
380
  grill: number | null;
380
381
  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;
382
+ fridge: boolean;
383
+ freezer: boolean;
384
+ toaster: boolean;
385
+ kettle: boolean;
386
+ coffeemachine: boolean;
387
+ washingmachine: boolean;
388
+ dryer: boolean;
389
+ iron: boolean;
390
+ bathtub: boolean;
391
+ jacuzzi: boolean;
392
+ shower_regular: boolean;
393
+ shower_steam: boolean;
394
+ hairdryer: boolean;
395
+ swimmingpool: string;
396
+ sauna: string;
397
+ parking: string;
398
+ elevator: boolean | null;
399
+ entresol: boolean;
400
+ wheelchair_friendly: boolean;
401
+ smoking_allowed: boolean;
402
+ pets_allowed: boolean;
403
+ supplies_coffee: boolean;
404
+ supplies_tea: boolean;
405
+ supplies_milk: boolean;
406
+ supplies_sugar: boolean;
407
+ supplies_dishwasher_tablets: boolean;
408
+ service_linen: boolean;
409
+ service_towels: boolean;
409
410
  cleaning_costs: number | null;
410
411
  deposit_costs: number | null;
411
412
  prepayment: number | null;
@@ -422,7 +423,6 @@ declare const PropertySchema: z.ZodObject<{
422
423
  provider_name: string | null;
423
424
  created_at: string;
424
425
  updated_at: string;
425
- external_id?: number | undefined;
426
426
  images?: {
427
427
  id: number;
428
428
  alt: string;
@@ -436,6 +436,7 @@ declare const PropertySchema: z.ZodObject<{
436
436
  type: string | null;
437
437
  status: string | null;
438
438
  id: number;
439
+ external_id: string | null;
439
440
  name: string;
440
441
  slug: string;
441
442
  short_description: string | null;
@@ -449,7 +450,7 @@ declare const PropertySchema: z.ZodObject<{
449
450
  toilets: number | null;
450
451
  size: number | null;
451
452
  floor: number | null;
452
- stairs: number | null;
453
+ stairs: boolean | null;
453
454
  street: string | null;
454
455
  zipcode: string | null;
455
456
  area: string | null;
@@ -462,54 +463,54 @@ declare const PropertySchema: z.ZodObject<{
462
463
  single_sofa: number | null;
463
464
  double_sofa: number | null;
464
465
  single_bunk: number | null;
465
- balcony: boolean | null;
466
- patio: number | null;
467
- garden: number | null;
468
- roof_terrace: number | null;
466
+ balcony: boolean;
467
+ patio: boolean | null;
468
+ garden: boolean | null;
469
+ roof_terrace: boolean | null;
469
470
  view: string | null;
470
- airco: boolean | null;
471
- fans: boolean | null;
472
- heating: boolean | null;
471
+ airco: boolean;
472
+ fans: boolean;
473
+ heating: boolean;
473
474
  internet: string | null;
474
475
  internet_connection: string | null;
475
- tv: number | null;
476
+ tv: string;
476
477
  tv_connection: string | null;
477
- dvd: number | null;
478
- computer: boolean | null;
479
- printer: boolean | null;
480
- dishwasher: boolean | null;
481
- oven: boolean | null;
482
- microwave: boolean | null;
478
+ dvd: string;
479
+ computer: boolean;
480
+ printer: boolean;
481
+ dishwasher: boolean;
482
+ oven: boolean;
483
+ microwave: boolean;
483
484
  grill: number | null;
484
485
  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;
486
+ fridge: boolean;
487
+ freezer: boolean;
488
+ toaster: boolean;
489
+ kettle: boolean;
490
+ coffeemachine: boolean;
491
+ washingmachine: boolean;
492
+ dryer: boolean;
493
+ iron: boolean;
494
+ bathtub: boolean;
495
+ jacuzzi: boolean;
496
+ shower_regular: boolean;
497
+ shower_steam: boolean;
498
+ hairdryer: boolean;
499
+ swimmingpool: string;
500
+ sauna: string;
501
+ parking: string;
502
+ elevator: boolean | null;
503
+ entresol: boolean;
504
+ wheelchair_friendly: boolean;
505
+ smoking_allowed: boolean;
506
+ pets_allowed: boolean;
507
+ supplies_coffee: boolean;
508
+ supplies_tea: boolean;
509
+ supplies_milk: boolean;
510
+ supplies_sugar: boolean;
511
+ supplies_dishwasher_tablets: boolean;
512
+ service_linen: boolean;
513
+ service_towels: boolean;
513
514
  cleaning_costs: number | null;
514
515
  deposit_costs: number | null;
515
516
  prepayment: number | null;
@@ -526,7 +527,6 @@ declare const PropertySchema: z.ZodObject<{
526
527
  provider_name: string | null;
527
528
  created_at: string;
528
529
  updated_at: string;
529
- external_id?: number | undefined;
530
530
  images?: {
531
531
  id: number;
532
532
  alt: string;
@@ -642,7 +642,7 @@ declare const PropertySearchParamsSchema: z.ZodObject<{
642
642
  declare const PropertySearchResultSchema: z.ZodObject<{
643
643
  data: z.ZodArray<z.ZodObject<{
644
644
  id: z.ZodNumber;
645
- external_id: z.ZodOptional<z.ZodNumber>;
645
+ external_id: z.ZodNullable<z.ZodString>;
646
646
  name: z.ZodString;
647
647
  slug: z.ZodString;
648
648
  short_description: z.ZodNullable<z.ZodString>;
@@ -657,7 +657,7 @@ declare const PropertySearchResultSchema: z.ZodObject<{
657
657
  toilets: z.ZodNullable<z.ZodNumber>;
658
658
  size: z.ZodNullable<z.ZodNumber>;
659
659
  floor: z.ZodNullable<z.ZodNumber>;
660
- stairs: z.ZodNullable<z.ZodNumber>;
660
+ stairs: z.ZodNullable<z.ZodBoolean>;
661
661
  street: z.ZodNullable<z.ZodString>;
662
662
  zipcode: z.ZodNullable<z.ZodString>;
663
663
  area: z.ZodNullable<z.ZodString>;
@@ -670,54 +670,54 @@ declare const PropertySearchResultSchema: z.ZodObject<{
670
670
  single_sofa: z.ZodNullable<z.ZodNumber>;
671
671
  double_sofa: z.ZodNullable<z.ZodNumber>;
672
672
  single_bunk: z.ZodNullable<z.ZodNumber>;
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>;
673
+ balcony: z.ZodBoolean;
674
+ patio: z.ZodNullable<z.ZodBoolean>;
675
+ garden: z.ZodNullable<z.ZodBoolean>;
676
+ roof_terrace: z.ZodNullable<z.ZodBoolean>;
677
677
  view: z.ZodNullable<z.ZodString>;
678
- airco: z.ZodNullable<z.ZodBoolean>;
679
- fans: z.ZodNullable<z.ZodBoolean>;
680
- heating: z.ZodNullable<z.ZodBoolean>;
678
+ airco: z.ZodBoolean;
679
+ fans: z.ZodBoolean;
680
+ heating: z.ZodBoolean;
681
681
  internet: z.ZodNullable<z.ZodString>;
682
682
  internet_connection: z.ZodNullable<z.ZodString>;
683
- tv: z.ZodNullable<z.ZodNumber>;
683
+ tv: z.ZodString;
684
684
  tv_connection: z.ZodNullable<z.ZodString>;
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>;
685
+ dvd: z.ZodString;
686
+ computer: z.ZodBoolean;
687
+ printer: z.ZodBoolean;
688
+ dishwasher: z.ZodBoolean;
689
+ oven: z.ZodBoolean;
690
+ microwave: z.ZodBoolean;
691
691
  grill: z.ZodNullable<z.ZodNumber>;
692
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>;
693
+ fridge: z.ZodBoolean;
694
+ freezer: z.ZodBoolean;
695
+ toaster: z.ZodBoolean;
696
+ kettle: z.ZodBoolean;
697
+ coffeemachine: z.ZodBoolean;
698
+ washingmachine: z.ZodBoolean;
699
+ dryer: z.ZodBoolean;
700
+ iron: z.ZodBoolean;
701
+ bathtub: z.ZodBoolean;
702
+ jacuzzi: z.ZodBoolean;
703
+ shower_regular: z.ZodBoolean;
704
+ shower_steam: z.ZodBoolean;
705
+ hairdryer: z.ZodBoolean;
706
+ swimmingpool: z.ZodString;
707
+ sauna: z.ZodString;
708
+ parking: z.ZodString;
709
+ elevator: z.ZodNullable<z.ZodBoolean>;
710
+ entresol: z.ZodBoolean;
711
+ wheelchair_friendly: z.ZodBoolean;
712
+ smoking_allowed: z.ZodBoolean;
713
+ pets_allowed: z.ZodBoolean;
714
+ supplies_coffee: z.ZodBoolean;
715
+ supplies_tea: z.ZodBoolean;
716
+ supplies_milk: z.ZodBoolean;
717
+ supplies_sugar: z.ZodBoolean;
718
+ supplies_dishwasher_tablets: z.ZodBoolean;
719
+ service_linen: z.ZodBoolean;
720
+ service_towels: z.ZodBoolean;
721
721
  cleaning_costs: z.ZodNullable<z.ZodNumber>;
722
722
  deposit_costs: z.ZodNullable<z.ZodNumber>;
723
723
  prepayment: z.ZodNullable<z.ZodNumber>;
@@ -764,6 +764,7 @@ declare const PropertySearchResultSchema: z.ZodObject<{
764
764
  type: string | null;
765
765
  status: string | null;
766
766
  id: number;
767
+ external_id: string | null;
767
768
  name: string;
768
769
  slug: string;
769
770
  short_description: string | null;
@@ -777,7 +778,7 @@ declare const PropertySearchResultSchema: z.ZodObject<{
777
778
  toilets: number | null;
778
779
  size: number | null;
779
780
  floor: number | null;
780
- stairs: number | null;
781
+ stairs: boolean | null;
781
782
  street: string | null;
782
783
  zipcode: string | null;
783
784
  area: string | null;
@@ -790,54 +791,54 @@ declare const PropertySearchResultSchema: z.ZodObject<{
790
791
  single_sofa: number | null;
791
792
  double_sofa: number | null;
792
793
  single_bunk: number | null;
793
- balcony: boolean | null;
794
- patio: number | null;
795
- garden: number | null;
796
- roof_terrace: number | null;
794
+ balcony: boolean;
795
+ patio: boolean | null;
796
+ garden: boolean | null;
797
+ roof_terrace: boolean | null;
797
798
  view: string | null;
798
- airco: boolean | null;
799
- fans: boolean | null;
800
- heating: boolean | null;
799
+ airco: boolean;
800
+ fans: boolean;
801
+ heating: boolean;
801
802
  internet: string | null;
802
803
  internet_connection: string | null;
803
- tv: number | null;
804
+ tv: string;
804
805
  tv_connection: string | null;
805
- dvd: number | null;
806
- computer: boolean | null;
807
- printer: boolean | null;
808
- dishwasher: boolean | null;
809
- oven: boolean | null;
810
- microwave: boolean | null;
806
+ dvd: string;
807
+ computer: boolean;
808
+ printer: boolean;
809
+ dishwasher: boolean;
810
+ oven: boolean;
811
+ microwave: boolean;
811
812
  grill: number | null;
812
813
  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;
814
+ fridge: boolean;
815
+ freezer: boolean;
816
+ toaster: boolean;
817
+ kettle: boolean;
818
+ coffeemachine: boolean;
819
+ washingmachine: boolean;
820
+ dryer: boolean;
821
+ iron: boolean;
822
+ bathtub: boolean;
823
+ jacuzzi: boolean;
824
+ shower_regular: boolean;
825
+ shower_steam: boolean;
826
+ hairdryer: boolean;
827
+ swimmingpool: string;
828
+ sauna: string;
829
+ parking: string;
830
+ elevator: boolean | null;
831
+ entresol: boolean;
832
+ wheelchair_friendly: boolean;
833
+ smoking_allowed: boolean;
834
+ pets_allowed: boolean;
835
+ supplies_coffee: boolean;
836
+ supplies_tea: boolean;
837
+ supplies_milk: boolean;
838
+ supplies_sugar: boolean;
839
+ supplies_dishwasher_tablets: boolean;
840
+ service_linen: boolean;
841
+ service_towels: boolean;
841
842
  cleaning_costs: number | null;
842
843
  deposit_costs: number | null;
843
844
  prepayment: number | null;
@@ -854,7 +855,6 @@ declare const PropertySearchResultSchema: z.ZodObject<{
854
855
  provider_name: string | null;
855
856
  created_at: string;
856
857
  updated_at: string;
857
- external_id?: number | undefined;
858
858
  images?: {
859
859
  id: number;
860
860
  alt: string;
@@ -868,6 +868,7 @@ declare const PropertySearchResultSchema: z.ZodObject<{
868
868
  type: string | null;
869
869
  status: string | null;
870
870
  id: number;
871
+ external_id: string | null;
871
872
  name: string;
872
873
  slug: string;
873
874
  short_description: string | null;
@@ -881,7 +882,7 @@ declare const PropertySearchResultSchema: z.ZodObject<{
881
882
  toilets: number | null;
882
883
  size: number | null;
883
884
  floor: number | null;
884
- stairs: number | null;
885
+ stairs: boolean | null;
885
886
  street: string | null;
886
887
  zipcode: string | null;
887
888
  area: string | null;
@@ -894,54 +895,54 @@ declare const PropertySearchResultSchema: z.ZodObject<{
894
895
  single_sofa: number | null;
895
896
  double_sofa: number | null;
896
897
  single_bunk: number | null;
897
- balcony: boolean | null;
898
- patio: number | null;
899
- garden: number | null;
900
- roof_terrace: number | null;
898
+ balcony: boolean;
899
+ patio: boolean | null;
900
+ garden: boolean | null;
901
+ roof_terrace: boolean | null;
901
902
  view: string | null;
902
- airco: boolean | null;
903
- fans: boolean | null;
904
- heating: boolean | null;
903
+ airco: boolean;
904
+ fans: boolean;
905
+ heating: boolean;
905
906
  internet: string | null;
906
907
  internet_connection: string | null;
907
- tv: number | null;
908
+ tv: string;
908
909
  tv_connection: string | null;
909
- dvd: number | null;
910
- computer: boolean | null;
911
- printer: boolean | null;
912
- dishwasher: boolean | null;
913
- oven: boolean | null;
914
- microwave: boolean | null;
910
+ dvd: string;
911
+ computer: boolean;
912
+ printer: boolean;
913
+ dishwasher: boolean;
914
+ oven: boolean;
915
+ microwave: boolean;
915
916
  grill: number | null;
916
917
  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;
918
+ fridge: boolean;
919
+ freezer: boolean;
920
+ toaster: boolean;
921
+ kettle: boolean;
922
+ coffeemachine: boolean;
923
+ washingmachine: boolean;
924
+ dryer: boolean;
925
+ iron: boolean;
926
+ bathtub: boolean;
927
+ jacuzzi: boolean;
928
+ shower_regular: boolean;
929
+ shower_steam: boolean;
930
+ hairdryer: boolean;
931
+ swimmingpool: string;
932
+ sauna: string;
933
+ parking: string;
934
+ elevator: boolean | null;
935
+ entresol: boolean;
936
+ wheelchair_friendly: boolean;
937
+ smoking_allowed: boolean;
938
+ pets_allowed: boolean;
939
+ supplies_coffee: boolean;
940
+ supplies_tea: boolean;
941
+ supplies_milk: boolean;
942
+ supplies_sugar: boolean;
943
+ supplies_dishwasher_tablets: boolean;
944
+ service_linen: boolean;
945
+ service_towels: boolean;
945
946
  cleaning_costs: number | null;
946
947
  deposit_costs: number | null;
947
948
  prepayment: number | null;
@@ -958,7 +959,6 @@ declare const PropertySearchResultSchema: z.ZodObject<{
958
959
  provider_name: string | null;
959
960
  created_at: string;
960
961
  updated_at: string;
961
- external_id?: number | undefined;
962
962
  images?: {
963
963
  id: number;
964
964
  alt: string;
@@ -974,6 +974,7 @@ declare const PropertySearchResultSchema: z.ZodObject<{
974
974
  type: string | null;
975
975
  status: string | null;
976
976
  id: number;
977
+ external_id: string | null;
977
978
  name: string;
978
979
  slug: string;
979
980
  short_description: string | null;
@@ -987,7 +988,7 @@ declare const PropertySearchResultSchema: z.ZodObject<{
987
988
  toilets: number | null;
988
989
  size: number | null;
989
990
  floor: number | null;
990
- stairs: number | null;
991
+ stairs: boolean | null;
991
992
  street: string | null;
992
993
  zipcode: string | null;
993
994
  area: string | null;
@@ -1000,54 +1001,54 @@ declare const PropertySearchResultSchema: z.ZodObject<{
1000
1001
  single_sofa: number | null;
1001
1002
  double_sofa: number | null;
1002
1003
  single_bunk: number | null;
1003
- balcony: boolean | null;
1004
- patio: number | null;
1005
- garden: number | null;
1006
- roof_terrace: number | null;
1004
+ balcony: boolean;
1005
+ patio: boolean | null;
1006
+ garden: boolean | null;
1007
+ roof_terrace: boolean | null;
1007
1008
  view: string | null;
1008
- airco: boolean | null;
1009
- fans: boolean | null;
1010
- heating: boolean | null;
1009
+ airco: boolean;
1010
+ fans: boolean;
1011
+ heating: boolean;
1011
1012
  internet: string | null;
1012
1013
  internet_connection: string | null;
1013
- tv: number | null;
1014
+ tv: string;
1014
1015
  tv_connection: string | null;
1015
- dvd: number | null;
1016
- computer: boolean | null;
1017
- printer: boolean | null;
1018
- dishwasher: boolean | null;
1019
- oven: boolean | null;
1020
- microwave: boolean | null;
1016
+ dvd: string;
1017
+ computer: boolean;
1018
+ printer: boolean;
1019
+ dishwasher: boolean;
1020
+ oven: boolean;
1021
+ microwave: boolean;
1021
1022
  grill: number | null;
1022
1023
  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;
1024
+ fridge: boolean;
1025
+ freezer: boolean;
1026
+ toaster: boolean;
1027
+ kettle: boolean;
1028
+ coffeemachine: boolean;
1029
+ washingmachine: boolean;
1030
+ dryer: boolean;
1031
+ iron: boolean;
1032
+ bathtub: boolean;
1033
+ jacuzzi: boolean;
1034
+ shower_regular: boolean;
1035
+ shower_steam: boolean;
1036
+ hairdryer: boolean;
1037
+ swimmingpool: string;
1038
+ sauna: string;
1039
+ parking: string;
1040
+ elevator: boolean | null;
1041
+ entresol: boolean;
1042
+ wheelchair_friendly: boolean;
1043
+ smoking_allowed: boolean;
1044
+ pets_allowed: boolean;
1045
+ supplies_coffee: boolean;
1046
+ supplies_tea: boolean;
1047
+ supplies_milk: boolean;
1048
+ supplies_sugar: boolean;
1049
+ supplies_dishwasher_tablets: boolean;
1050
+ service_linen: boolean;
1051
+ service_towels: boolean;
1051
1052
  cleaning_costs: number | null;
1052
1053
  deposit_costs: number | null;
1053
1054
  prepayment: number | null;
@@ -1064,7 +1065,6 @@ declare const PropertySearchResultSchema: z.ZodObject<{
1064
1065
  provider_name: string | null;
1065
1066
  created_at: string;
1066
1067
  updated_at: string;
1067
- external_id?: number | undefined;
1068
1068
  images?: {
1069
1069
  id: number;
1070
1070
  alt: string;
@@ -1080,6 +1080,7 @@ declare const PropertySearchResultSchema: z.ZodObject<{
1080
1080
  type: string | null;
1081
1081
  status: string | null;
1082
1082
  id: number;
1083
+ external_id: string | null;
1083
1084
  name: string;
1084
1085
  slug: string;
1085
1086
  short_description: string | null;
@@ -1093,7 +1094,7 @@ declare const PropertySearchResultSchema: z.ZodObject<{
1093
1094
  toilets: number | null;
1094
1095
  size: number | null;
1095
1096
  floor: number | null;
1096
- stairs: number | null;
1097
+ stairs: boolean | null;
1097
1098
  street: string | null;
1098
1099
  zipcode: string | null;
1099
1100
  area: string | null;
@@ -1106,54 +1107,54 @@ declare const PropertySearchResultSchema: z.ZodObject<{
1106
1107
  single_sofa: number | null;
1107
1108
  double_sofa: number | null;
1108
1109
  single_bunk: number | null;
1109
- balcony: boolean | null;
1110
- patio: number | null;
1111
- garden: number | null;
1112
- roof_terrace: number | null;
1110
+ balcony: boolean;
1111
+ patio: boolean | null;
1112
+ garden: boolean | null;
1113
+ roof_terrace: boolean | null;
1113
1114
  view: string | null;
1114
- airco: boolean | null;
1115
- fans: boolean | null;
1116
- heating: boolean | null;
1115
+ airco: boolean;
1116
+ fans: boolean;
1117
+ heating: boolean;
1117
1118
  internet: string | null;
1118
1119
  internet_connection: string | null;
1119
- tv: number | null;
1120
+ tv: string;
1120
1121
  tv_connection: string | null;
1121
- dvd: number | null;
1122
- computer: boolean | null;
1123
- printer: boolean | null;
1124
- dishwasher: boolean | null;
1125
- oven: boolean | null;
1126
- microwave: boolean | null;
1122
+ dvd: string;
1123
+ computer: boolean;
1124
+ printer: boolean;
1125
+ dishwasher: boolean;
1126
+ oven: boolean;
1127
+ microwave: boolean;
1127
1128
  grill: number | null;
1128
1129
  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;
1130
+ fridge: boolean;
1131
+ freezer: boolean;
1132
+ toaster: boolean;
1133
+ kettle: boolean;
1134
+ coffeemachine: boolean;
1135
+ washingmachine: boolean;
1136
+ dryer: boolean;
1137
+ iron: boolean;
1138
+ bathtub: boolean;
1139
+ jacuzzi: boolean;
1140
+ shower_regular: boolean;
1141
+ shower_steam: boolean;
1142
+ hairdryer: boolean;
1143
+ swimmingpool: string;
1144
+ sauna: string;
1145
+ parking: string;
1146
+ elevator: boolean | null;
1147
+ entresol: boolean;
1148
+ wheelchair_friendly: boolean;
1149
+ smoking_allowed: boolean;
1150
+ pets_allowed: boolean;
1151
+ supplies_coffee: boolean;
1152
+ supplies_tea: boolean;
1153
+ supplies_milk: boolean;
1154
+ supplies_sugar: boolean;
1155
+ supplies_dishwasher_tablets: boolean;
1156
+ service_linen: boolean;
1157
+ service_towels: boolean;
1157
1158
  cleaning_costs: number | null;
1158
1159
  deposit_costs: number | null;
1159
1160
  prepayment: number | null;
@@ -1170,7 +1171,6 @@ declare const PropertySearchResultSchema: z.ZodObject<{
1170
1171
  provider_name: string | null;
1171
1172
  created_at: string;
1172
1173
  updated_at: string;
1173
- external_id?: number | undefined;
1174
1174
  images?: {
1175
1175
  id: number;
1176
1176
  alt: string;
@@ -2356,6 +2356,7 @@ declare function fetchProperties(client: MoreApartmentsClient, params?: {
2356
2356
  type: string | null;
2357
2357
  status: string | null;
2358
2358
  id: number;
2359
+ external_id: string | null;
2359
2360
  name: string;
2360
2361
  slug: string;
2361
2362
  short_description: string | null;
@@ -2369,7 +2370,7 @@ declare function fetchProperties(client: MoreApartmentsClient, params?: {
2369
2370
  toilets: number | null;
2370
2371
  size: number | null;
2371
2372
  floor: number | null;
2372
- stairs: number | null;
2373
+ stairs: boolean | null;
2373
2374
  street: string | null;
2374
2375
  zipcode: string | null;
2375
2376
  area: string | null;
@@ -2382,54 +2383,54 @@ declare function fetchProperties(client: MoreApartmentsClient, params?: {
2382
2383
  single_sofa: number | null;
2383
2384
  double_sofa: number | null;
2384
2385
  single_bunk: number | null;
2385
- balcony: boolean | null;
2386
- patio: number | null;
2387
- garden: number | null;
2388
- roof_terrace: number | null;
2386
+ balcony: boolean;
2387
+ patio: boolean | null;
2388
+ garden: boolean | null;
2389
+ roof_terrace: boolean | null;
2389
2390
  view: string | null;
2390
- airco: boolean | null;
2391
- fans: boolean | null;
2392
- heating: boolean | null;
2391
+ airco: boolean;
2392
+ fans: boolean;
2393
+ heating: boolean;
2393
2394
  internet: string | null;
2394
2395
  internet_connection: string | null;
2395
- tv: number | null;
2396
+ tv: string;
2396
2397
  tv_connection: string | null;
2397
- dvd: number | null;
2398
- computer: boolean | null;
2399
- printer: boolean | null;
2400
- dishwasher: boolean | null;
2401
- oven: boolean | null;
2402
- microwave: boolean | null;
2398
+ dvd: string;
2399
+ computer: boolean;
2400
+ printer: boolean;
2401
+ dishwasher: boolean;
2402
+ oven: boolean;
2403
+ microwave: boolean;
2403
2404
  grill: number | null;
2404
2405
  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;
2406
+ fridge: boolean;
2407
+ freezer: boolean;
2408
+ toaster: boolean;
2409
+ kettle: boolean;
2410
+ coffeemachine: boolean;
2411
+ washingmachine: boolean;
2412
+ dryer: boolean;
2413
+ iron: boolean;
2414
+ bathtub: boolean;
2415
+ jacuzzi: boolean;
2416
+ shower_regular: boolean;
2417
+ shower_steam: boolean;
2418
+ hairdryer: boolean;
2419
+ swimmingpool: string;
2420
+ sauna: string;
2421
+ parking: string;
2422
+ elevator: boolean | null;
2423
+ entresol: boolean;
2424
+ wheelchair_friendly: boolean;
2425
+ smoking_allowed: boolean;
2426
+ pets_allowed: boolean;
2427
+ supplies_coffee: boolean;
2428
+ supplies_tea: boolean;
2429
+ supplies_milk: boolean;
2430
+ supplies_sugar: boolean;
2431
+ supplies_dishwasher_tablets: boolean;
2432
+ service_linen: boolean;
2433
+ service_towels: boolean;
2433
2434
  cleaning_costs: number | null;
2434
2435
  deposit_costs: number | null;
2435
2436
  prepayment: number | null;
@@ -2446,7 +2447,6 @@ declare function fetchProperties(client: MoreApartmentsClient, params?: {
2446
2447
  provider_name: string | null;
2447
2448
  created_at: string;
2448
2449
  updated_at: string;
2449
- external_id?: number | undefined;
2450
2450
  images?: {
2451
2451
  id: number;
2452
2452
  alt: string;
@@ -2477,6 +2477,7 @@ declare function fetchProperty(client: MoreApartmentsClient, idOrSlug: number |
2477
2477
  type: string | null;
2478
2478
  status: string | null;
2479
2479
  id: number;
2480
+ external_id: string | null;
2480
2481
  name: string;
2481
2482
  slug: string;
2482
2483
  short_description: string | null;
@@ -2490,7 +2491,7 @@ declare function fetchProperty(client: MoreApartmentsClient, idOrSlug: number |
2490
2491
  toilets: number | null;
2491
2492
  size: number | null;
2492
2493
  floor: number | null;
2493
- stairs: number | null;
2494
+ stairs: boolean | null;
2494
2495
  street: string | null;
2495
2496
  zipcode: string | null;
2496
2497
  area: string | null;
@@ -2503,54 +2504,54 @@ declare function fetchProperty(client: MoreApartmentsClient, idOrSlug: number |
2503
2504
  single_sofa: number | null;
2504
2505
  double_sofa: number | null;
2505
2506
  single_bunk: number | null;
2506
- balcony: boolean | null;
2507
- patio: number | null;
2508
- garden: number | null;
2509
- roof_terrace: number | null;
2507
+ balcony: boolean;
2508
+ patio: boolean | null;
2509
+ garden: boolean | null;
2510
+ roof_terrace: boolean | null;
2510
2511
  view: string | null;
2511
- airco: boolean | null;
2512
- fans: boolean | null;
2513
- heating: boolean | null;
2512
+ airco: boolean;
2513
+ fans: boolean;
2514
+ heating: boolean;
2514
2515
  internet: string | null;
2515
2516
  internet_connection: string | null;
2516
- tv: number | null;
2517
+ tv: string;
2517
2518
  tv_connection: string | null;
2518
- dvd: number | null;
2519
- computer: boolean | null;
2520
- printer: boolean | null;
2521
- dishwasher: boolean | null;
2522
- oven: boolean | null;
2523
- microwave: boolean | null;
2519
+ dvd: string;
2520
+ computer: boolean;
2521
+ printer: boolean;
2522
+ dishwasher: boolean;
2523
+ oven: boolean;
2524
+ microwave: boolean;
2524
2525
  grill: number | null;
2525
2526
  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;
2527
+ fridge: boolean;
2528
+ freezer: boolean;
2529
+ toaster: boolean;
2530
+ kettle: boolean;
2531
+ coffeemachine: boolean;
2532
+ washingmachine: boolean;
2533
+ dryer: boolean;
2534
+ iron: boolean;
2535
+ bathtub: boolean;
2536
+ jacuzzi: boolean;
2537
+ shower_regular: boolean;
2538
+ shower_steam: boolean;
2539
+ hairdryer: boolean;
2540
+ swimmingpool: string;
2541
+ sauna: string;
2542
+ parking: string;
2543
+ elevator: boolean | null;
2544
+ entresol: boolean;
2545
+ wheelchair_friendly: boolean;
2546
+ smoking_allowed: boolean;
2547
+ pets_allowed: boolean;
2548
+ supplies_coffee: boolean;
2549
+ supplies_tea: boolean;
2550
+ supplies_milk: boolean;
2551
+ supplies_sugar: boolean;
2552
+ supplies_dishwasher_tablets: boolean;
2553
+ service_linen: boolean;
2554
+ service_towels: boolean;
2554
2555
  cleaning_costs: number | null;
2555
2556
  deposit_costs: number | null;
2556
2557
  prepayment: number | null;
@@ -2567,7 +2568,6 @@ declare function fetchProperty(client: MoreApartmentsClient, idOrSlug: number |
2567
2568
  provider_name: string | null;
2568
2569
  created_at: string;
2569
2570
  updated_at: string;
2570
- external_id?: number | undefined;
2571
2571
  images?: {
2572
2572
  id: number;
2573
2573
  alt: string;
@@ -2837,6 +2837,7 @@ declare function searchProperties(client: MoreApartmentsClient, params: Property
2837
2837
  type: string | null;
2838
2838
  status: string | null;
2839
2839
  id: number;
2840
+ external_id: string | null;
2840
2841
  name: string;
2841
2842
  slug: string;
2842
2843
  short_description: string | null;
@@ -2850,7 +2851,7 @@ declare function searchProperties(client: MoreApartmentsClient, params: Property
2850
2851
  toilets: number | null;
2851
2852
  size: number | null;
2852
2853
  floor: number | null;
2853
- stairs: number | null;
2854
+ stairs: boolean | null;
2854
2855
  street: string | null;
2855
2856
  zipcode: string | null;
2856
2857
  area: string | null;
@@ -2863,54 +2864,54 @@ declare function searchProperties(client: MoreApartmentsClient, params: Property
2863
2864
  single_sofa: number | null;
2864
2865
  double_sofa: number | null;
2865
2866
  single_bunk: number | null;
2866
- balcony: boolean | null;
2867
- patio: number | null;
2868
- garden: number | null;
2869
- roof_terrace: number | null;
2867
+ balcony: boolean;
2868
+ patio: boolean | null;
2869
+ garden: boolean | null;
2870
+ roof_terrace: boolean | null;
2870
2871
  view: string | null;
2871
- airco: boolean | null;
2872
- fans: boolean | null;
2873
- heating: boolean | null;
2872
+ airco: boolean;
2873
+ fans: boolean;
2874
+ heating: boolean;
2874
2875
  internet: string | null;
2875
2876
  internet_connection: string | null;
2876
- tv: number | null;
2877
+ tv: string;
2877
2878
  tv_connection: string | null;
2878
- dvd: number | null;
2879
- computer: boolean | null;
2880
- printer: boolean | null;
2881
- dishwasher: boolean | null;
2882
- oven: boolean | null;
2883
- microwave: boolean | null;
2879
+ dvd: string;
2880
+ computer: boolean;
2881
+ printer: boolean;
2882
+ dishwasher: boolean;
2883
+ oven: boolean;
2884
+ microwave: boolean;
2884
2885
  grill: number | null;
2885
2886
  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;
2887
+ fridge: boolean;
2888
+ freezer: boolean;
2889
+ toaster: boolean;
2890
+ kettle: boolean;
2891
+ coffeemachine: boolean;
2892
+ washingmachine: boolean;
2893
+ dryer: boolean;
2894
+ iron: boolean;
2895
+ bathtub: boolean;
2896
+ jacuzzi: boolean;
2897
+ shower_regular: boolean;
2898
+ shower_steam: boolean;
2899
+ hairdryer: boolean;
2900
+ swimmingpool: string;
2901
+ sauna: string;
2902
+ parking: string;
2903
+ elevator: boolean | null;
2904
+ entresol: boolean;
2905
+ wheelchair_friendly: boolean;
2906
+ smoking_allowed: boolean;
2907
+ pets_allowed: boolean;
2908
+ supplies_coffee: boolean;
2909
+ supplies_tea: boolean;
2910
+ supplies_milk: boolean;
2911
+ supplies_sugar: boolean;
2912
+ supplies_dishwasher_tablets: boolean;
2913
+ service_linen: boolean;
2914
+ service_towels: boolean;
2914
2915
  cleaning_costs: number | null;
2915
2916
  deposit_costs: number | null;
2916
2917
  prepayment: number | null;
@@ -2927,7 +2928,6 @@ declare function searchProperties(client: MoreApartmentsClient, params: Property
2927
2928
  provider_name: string | null;
2928
2929
  created_at: string;
2929
2930
  updated_at: string;
2930
- external_id?: number | undefined;
2931
2931
  images?: {
2932
2932
  id: number;
2933
2933
  alt: string;