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/cli/index.js +44 -44
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.mts +484 -484
- package/dist/index.d.ts +484 -484
- package/dist/index.js +44 -44
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +44 -44
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -1
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.
|
|
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.
|
|
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.
|
|
242
|
-
patio: z.ZodNullable<z.
|
|
243
|
-
garden: z.ZodNullable<z.
|
|
244
|
-
roof_terrace: z.ZodNullable<z.
|
|
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.
|
|
247
|
-
fans: z.
|
|
248
|
-
heating: z.
|
|
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.
|
|
251
|
+
tv: z.ZodString;
|
|
252
252
|
tv_connection: z.ZodNullable<z.ZodString>;
|
|
253
|
-
dvd: z.
|
|
254
|
-
computer: z.
|
|
255
|
-
printer: z.
|
|
256
|
-
dishwasher: z.
|
|
257
|
-
oven: z.
|
|
258
|
-
microwave: z.
|
|
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.
|
|
262
|
-
freezer: z.
|
|
263
|
-
toaster: z.
|
|
264
|
-
kettle: z.
|
|
265
|
-
coffeemachine: z.
|
|
266
|
-
washingmachine: z.
|
|
267
|
-
dryer: z.
|
|
268
|
-
iron: z.
|
|
269
|
-
bathtub: z.
|
|
270
|
-
jacuzzi: z.
|
|
271
|
-
shower_regular: z.
|
|
272
|
-
shower_steam: z.
|
|
273
|
-
hairdryer: z.
|
|
274
|
-
swimmingpool: z.
|
|
275
|
-
sauna: z.
|
|
276
|
-
parking: z.
|
|
277
|
-
elevator: z.ZodNullable<z.
|
|
278
|
-
entresol: z.
|
|
279
|
-
wheelchair_friendly: z.
|
|
280
|
-
smoking_allowed: z.
|
|
281
|
-
pets_allowed: z.
|
|
282
|
-
supplies_coffee: z.
|
|
283
|
-
supplies_tea: z.
|
|
284
|
-
supplies_milk: z.
|
|
285
|
-
supplies_sugar: z.
|
|
286
|
-
supplies_dishwasher_tablets: z.
|
|
287
|
-
service_linen: z.
|
|
288
|
-
service_towels: z.
|
|
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:
|
|
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
|
|
362
|
-
patio:
|
|
363
|
-
garden:
|
|
364
|
-
roof_terrace:
|
|
362
|
+
balcony: boolean;
|
|
363
|
+
patio: boolean | null;
|
|
364
|
+
garden: boolean | null;
|
|
365
|
+
roof_terrace: boolean | null;
|
|
365
366
|
view: string | null;
|
|
366
|
-
airco: boolean
|
|
367
|
-
fans: boolean
|
|
368
|
-
heating: boolean
|
|
367
|
+
airco: boolean;
|
|
368
|
+
fans: boolean;
|
|
369
|
+
heating: boolean;
|
|
369
370
|
internet: string | null;
|
|
370
371
|
internet_connection: string | null;
|
|
371
|
-
tv:
|
|
372
|
+
tv: string;
|
|
372
373
|
tv_connection: string | null;
|
|
373
|
-
dvd:
|
|
374
|
-
computer: boolean
|
|
375
|
-
printer: boolean
|
|
376
|
-
dishwasher: boolean
|
|
377
|
-
oven: boolean
|
|
378
|
-
microwave: boolean
|
|
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
|
|
382
|
-
freezer: boolean
|
|
383
|
-
toaster: boolean
|
|
384
|
-
kettle: boolean
|
|
385
|
-
coffeemachine: boolean
|
|
386
|
-
washingmachine: boolean
|
|
387
|
-
dryer: boolean
|
|
388
|
-
iron: boolean
|
|
389
|
-
bathtub: boolean
|
|
390
|
-
jacuzzi: boolean
|
|
391
|
-
shower_regular: boolean
|
|
392
|
-
shower_steam: boolean
|
|
393
|
-
hairdryer: boolean
|
|
394
|
-
swimmingpool:
|
|
395
|
-
sauna:
|
|
396
|
-
parking:
|
|
397
|
-
elevator:
|
|
398
|
-
entresol: boolean
|
|
399
|
-
wheelchair_friendly: boolean
|
|
400
|
-
smoking_allowed: boolean
|
|
401
|
-
pets_allowed: boolean
|
|
402
|
-
supplies_coffee: boolean
|
|
403
|
-
supplies_tea: boolean
|
|
404
|
-
supplies_milk: boolean
|
|
405
|
-
supplies_sugar: boolean
|
|
406
|
-
supplies_dishwasher_tablets: boolean
|
|
407
|
-
service_linen: boolean
|
|
408
|
-
service_towels: boolean
|
|
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:
|
|
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
|
|
466
|
-
patio:
|
|
467
|
-
garden:
|
|
468
|
-
roof_terrace:
|
|
466
|
+
balcony: boolean;
|
|
467
|
+
patio: boolean | null;
|
|
468
|
+
garden: boolean | null;
|
|
469
|
+
roof_terrace: boolean | null;
|
|
469
470
|
view: string | null;
|
|
470
|
-
airco: boolean
|
|
471
|
-
fans: boolean
|
|
472
|
-
heating: boolean
|
|
471
|
+
airco: boolean;
|
|
472
|
+
fans: boolean;
|
|
473
|
+
heating: boolean;
|
|
473
474
|
internet: string | null;
|
|
474
475
|
internet_connection: string | null;
|
|
475
|
-
tv:
|
|
476
|
+
tv: string;
|
|
476
477
|
tv_connection: string | null;
|
|
477
|
-
dvd:
|
|
478
|
-
computer: boolean
|
|
479
|
-
printer: boolean
|
|
480
|
-
dishwasher: boolean
|
|
481
|
-
oven: boolean
|
|
482
|
-
microwave: boolean
|
|
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
|
|
486
|
-
freezer: boolean
|
|
487
|
-
toaster: boolean
|
|
488
|
-
kettle: boolean
|
|
489
|
-
coffeemachine: boolean
|
|
490
|
-
washingmachine: boolean
|
|
491
|
-
dryer: boolean
|
|
492
|
-
iron: boolean
|
|
493
|
-
bathtub: boolean
|
|
494
|
-
jacuzzi: boolean
|
|
495
|
-
shower_regular: boolean
|
|
496
|
-
shower_steam: boolean
|
|
497
|
-
hairdryer: boolean
|
|
498
|
-
swimmingpool:
|
|
499
|
-
sauna:
|
|
500
|
-
parking:
|
|
501
|
-
elevator:
|
|
502
|
-
entresol: boolean
|
|
503
|
-
wheelchair_friendly: boolean
|
|
504
|
-
smoking_allowed: boolean
|
|
505
|
-
pets_allowed: boolean
|
|
506
|
-
supplies_coffee: boolean
|
|
507
|
-
supplies_tea: boolean
|
|
508
|
-
supplies_milk: boolean
|
|
509
|
-
supplies_sugar: boolean
|
|
510
|
-
supplies_dishwasher_tablets: boolean
|
|
511
|
-
service_linen: boolean
|
|
512
|
-
service_towels: boolean
|
|
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.
|
|
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.
|
|
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.
|
|
674
|
-
patio: z.ZodNullable<z.
|
|
675
|
-
garden: z.ZodNullable<z.
|
|
676
|
-
roof_terrace: z.ZodNullable<z.
|
|
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.
|
|
679
|
-
fans: z.
|
|
680
|
-
heating: z.
|
|
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.
|
|
683
|
+
tv: z.ZodString;
|
|
684
684
|
tv_connection: z.ZodNullable<z.ZodString>;
|
|
685
|
-
dvd: z.
|
|
686
|
-
computer: z.
|
|
687
|
-
printer: z.
|
|
688
|
-
dishwasher: z.
|
|
689
|
-
oven: z.
|
|
690
|
-
microwave: z.
|
|
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.
|
|
694
|
-
freezer: z.
|
|
695
|
-
toaster: z.
|
|
696
|
-
kettle: z.
|
|
697
|
-
coffeemachine: z.
|
|
698
|
-
washingmachine: z.
|
|
699
|
-
dryer: z.
|
|
700
|
-
iron: z.
|
|
701
|
-
bathtub: z.
|
|
702
|
-
jacuzzi: z.
|
|
703
|
-
shower_regular: z.
|
|
704
|
-
shower_steam: z.
|
|
705
|
-
hairdryer: z.
|
|
706
|
-
swimmingpool: z.
|
|
707
|
-
sauna: z.
|
|
708
|
-
parking: z.
|
|
709
|
-
elevator: z.ZodNullable<z.
|
|
710
|
-
entresol: z.
|
|
711
|
-
wheelchair_friendly: z.
|
|
712
|
-
smoking_allowed: z.
|
|
713
|
-
pets_allowed: z.
|
|
714
|
-
supplies_coffee: z.
|
|
715
|
-
supplies_tea: z.
|
|
716
|
-
supplies_milk: z.
|
|
717
|
-
supplies_sugar: z.
|
|
718
|
-
supplies_dishwasher_tablets: z.
|
|
719
|
-
service_linen: z.
|
|
720
|
-
service_towels: z.
|
|
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:
|
|
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
|
|
794
|
-
patio:
|
|
795
|
-
garden:
|
|
796
|
-
roof_terrace:
|
|
794
|
+
balcony: boolean;
|
|
795
|
+
patio: boolean | null;
|
|
796
|
+
garden: boolean | null;
|
|
797
|
+
roof_terrace: boolean | null;
|
|
797
798
|
view: string | null;
|
|
798
|
-
airco: boolean
|
|
799
|
-
fans: boolean
|
|
800
|
-
heating: boolean
|
|
799
|
+
airco: boolean;
|
|
800
|
+
fans: boolean;
|
|
801
|
+
heating: boolean;
|
|
801
802
|
internet: string | null;
|
|
802
803
|
internet_connection: string | null;
|
|
803
|
-
tv:
|
|
804
|
+
tv: string;
|
|
804
805
|
tv_connection: string | null;
|
|
805
|
-
dvd:
|
|
806
|
-
computer: boolean
|
|
807
|
-
printer: boolean
|
|
808
|
-
dishwasher: boolean
|
|
809
|
-
oven: boolean
|
|
810
|
-
microwave: boolean
|
|
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
|
|
814
|
-
freezer: boolean
|
|
815
|
-
toaster: boolean
|
|
816
|
-
kettle: boolean
|
|
817
|
-
coffeemachine: boolean
|
|
818
|
-
washingmachine: boolean
|
|
819
|
-
dryer: boolean
|
|
820
|
-
iron: boolean
|
|
821
|
-
bathtub: boolean
|
|
822
|
-
jacuzzi: boolean
|
|
823
|
-
shower_regular: boolean
|
|
824
|
-
shower_steam: boolean
|
|
825
|
-
hairdryer: boolean
|
|
826
|
-
swimmingpool:
|
|
827
|
-
sauna:
|
|
828
|
-
parking:
|
|
829
|
-
elevator:
|
|
830
|
-
entresol: boolean
|
|
831
|
-
wheelchair_friendly: boolean
|
|
832
|
-
smoking_allowed: boolean
|
|
833
|
-
pets_allowed: boolean
|
|
834
|
-
supplies_coffee: boolean
|
|
835
|
-
supplies_tea: boolean
|
|
836
|
-
supplies_milk: boolean
|
|
837
|
-
supplies_sugar: boolean
|
|
838
|
-
supplies_dishwasher_tablets: boolean
|
|
839
|
-
service_linen: boolean
|
|
840
|
-
service_towels: boolean
|
|
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:
|
|
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
|
|
898
|
-
patio:
|
|
899
|
-
garden:
|
|
900
|
-
roof_terrace:
|
|
898
|
+
balcony: boolean;
|
|
899
|
+
patio: boolean | null;
|
|
900
|
+
garden: boolean | null;
|
|
901
|
+
roof_terrace: boolean | null;
|
|
901
902
|
view: string | null;
|
|
902
|
-
airco: boolean
|
|
903
|
-
fans: boolean
|
|
904
|
-
heating: boolean
|
|
903
|
+
airco: boolean;
|
|
904
|
+
fans: boolean;
|
|
905
|
+
heating: boolean;
|
|
905
906
|
internet: string | null;
|
|
906
907
|
internet_connection: string | null;
|
|
907
|
-
tv:
|
|
908
|
+
tv: string;
|
|
908
909
|
tv_connection: string | null;
|
|
909
|
-
dvd:
|
|
910
|
-
computer: boolean
|
|
911
|
-
printer: boolean
|
|
912
|
-
dishwasher: boolean
|
|
913
|
-
oven: boolean
|
|
914
|
-
microwave: boolean
|
|
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
|
|
918
|
-
freezer: boolean
|
|
919
|
-
toaster: boolean
|
|
920
|
-
kettle: boolean
|
|
921
|
-
coffeemachine: boolean
|
|
922
|
-
washingmachine: boolean
|
|
923
|
-
dryer: boolean
|
|
924
|
-
iron: boolean
|
|
925
|
-
bathtub: boolean
|
|
926
|
-
jacuzzi: boolean
|
|
927
|
-
shower_regular: boolean
|
|
928
|
-
shower_steam: boolean
|
|
929
|
-
hairdryer: boolean
|
|
930
|
-
swimmingpool:
|
|
931
|
-
sauna:
|
|
932
|
-
parking:
|
|
933
|
-
elevator:
|
|
934
|
-
entresol: boolean
|
|
935
|
-
wheelchair_friendly: boolean
|
|
936
|
-
smoking_allowed: boolean
|
|
937
|
-
pets_allowed: boolean
|
|
938
|
-
supplies_coffee: boolean
|
|
939
|
-
supplies_tea: boolean
|
|
940
|
-
supplies_milk: boolean
|
|
941
|
-
supplies_sugar: boolean
|
|
942
|
-
supplies_dishwasher_tablets: boolean
|
|
943
|
-
service_linen: boolean
|
|
944
|
-
service_towels: boolean
|
|
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:
|
|
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
|
|
1004
|
-
patio:
|
|
1005
|
-
garden:
|
|
1006
|
-
roof_terrace:
|
|
1004
|
+
balcony: boolean;
|
|
1005
|
+
patio: boolean | null;
|
|
1006
|
+
garden: boolean | null;
|
|
1007
|
+
roof_terrace: boolean | null;
|
|
1007
1008
|
view: string | null;
|
|
1008
|
-
airco: boolean
|
|
1009
|
-
fans: boolean
|
|
1010
|
-
heating: boolean
|
|
1009
|
+
airco: boolean;
|
|
1010
|
+
fans: boolean;
|
|
1011
|
+
heating: boolean;
|
|
1011
1012
|
internet: string | null;
|
|
1012
1013
|
internet_connection: string | null;
|
|
1013
|
-
tv:
|
|
1014
|
+
tv: string;
|
|
1014
1015
|
tv_connection: string | null;
|
|
1015
|
-
dvd:
|
|
1016
|
-
computer: boolean
|
|
1017
|
-
printer: boolean
|
|
1018
|
-
dishwasher: boolean
|
|
1019
|
-
oven: boolean
|
|
1020
|
-
microwave: boolean
|
|
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
|
|
1024
|
-
freezer: boolean
|
|
1025
|
-
toaster: boolean
|
|
1026
|
-
kettle: boolean
|
|
1027
|
-
coffeemachine: boolean
|
|
1028
|
-
washingmachine: boolean
|
|
1029
|
-
dryer: boolean
|
|
1030
|
-
iron: boolean
|
|
1031
|
-
bathtub: boolean
|
|
1032
|
-
jacuzzi: boolean
|
|
1033
|
-
shower_regular: boolean
|
|
1034
|
-
shower_steam: boolean
|
|
1035
|
-
hairdryer: boolean
|
|
1036
|
-
swimmingpool:
|
|
1037
|
-
sauna:
|
|
1038
|
-
parking:
|
|
1039
|
-
elevator:
|
|
1040
|
-
entresol: boolean
|
|
1041
|
-
wheelchair_friendly: boolean
|
|
1042
|
-
smoking_allowed: boolean
|
|
1043
|
-
pets_allowed: boolean
|
|
1044
|
-
supplies_coffee: boolean
|
|
1045
|
-
supplies_tea: boolean
|
|
1046
|
-
supplies_milk: boolean
|
|
1047
|
-
supplies_sugar: boolean
|
|
1048
|
-
supplies_dishwasher_tablets: boolean
|
|
1049
|
-
service_linen: boolean
|
|
1050
|
-
service_towels: boolean
|
|
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:
|
|
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
|
|
1110
|
-
patio:
|
|
1111
|
-
garden:
|
|
1112
|
-
roof_terrace:
|
|
1110
|
+
balcony: boolean;
|
|
1111
|
+
patio: boolean | null;
|
|
1112
|
+
garden: boolean | null;
|
|
1113
|
+
roof_terrace: boolean | null;
|
|
1113
1114
|
view: string | null;
|
|
1114
|
-
airco: boolean
|
|
1115
|
-
fans: boolean
|
|
1116
|
-
heating: boolean
|
|
1115
|
+
airco: boolean;
|
|
1116
|
+
fans: boolean;
|
|
1117
|
+
heating: boolean;
|
|
1117
1118
|
internet: string | null;
|
|
1118
1119
|
internet_connection: string | null;
|
|
1119
|
-
tv:
|
|
1120
|
+
tv: string;
|
|
1120
1121
|
tv_connection: string | null;
|
|
1121
|
-
dvd:
|
|
1122
|
-
computer: boolean
|
|
1123
|
-
printer: boolean
|
|
1124
|
-
dishwasher: boolean
|
|
1125
|
-
oven: boolean
|
|
1126
|
-
microwave: boolean
|
|
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
|
|
1130
|
-
freezer: boolean
|
|
1131
|
-
toaster: boolean
|
|
1132
|
-
kettle: boolean
|
|
1133
|
-
coffeemachine: boolean
|
|
1134
|
-
washingmachine: boolean
|
|
1135
|
-
dryer: boolean
|
|
1136
|
-
iron: boolean
|
|
1137
|
-
bathtub: boolean
|
|
1138
|
-
jacuzzi: boolean
|
|
1139
|
-
shower_regular: boolean
|
|
1140
|
-
shower_steam: boolean
|
|
1141
|
-
hairdryer: boolean
|
|
1142
|
-
swimmingpool:
|
|
1143
|
-
sauna:
|
|
1144
|
-
parking:
|
|
1145
|
-
elevator:
|
|
1146
|
-
entresol: boolean
|
|
1147
|
-
wheelchair_friendly: boolean
|
|
1148
|
-
smoking_allowed: boolean
|
|
1149
|
-
pets_allowed: boolean
|
|
1150
|
-
supplies_coffee: boolean
|
|
1151
|
-
supplies_tea: boolean
|
|
1152
|
-
supplies_milk: boolean
|
|
1153
|
-
supplies_sugar: boolean
|
|
1154
|
-
supplies_dishwasher_tablets: boolean
|
|
1155
|
-
service_linen: boolean
|
|
1156
|
-
service_towels: boolean
|
|
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:
|
|
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
|
|
2386
|
-
patio:
|
|
2387
|
-
garden:
|
|
2388
|
-
roof_terrace:
|
|
2386
|
+
balcony: boolean;
|
|
2387
|
+
patio: boolean | null;
|
|
2388
|
+
garden: boolean | null;
|
|
2389
|
+
roof_terrace: boolean | null;
|
|
2389
2390
|
view: string | null;
|
|
2390
|
-
airco: boolean
|
|
2391
|
-
fans: boolean
|
|
2392
|
-
heating: boolean
|
|
2391
|
+
airco: boolean;
|
|
2392
|
+
fans: boolean;
|
|
2393
|
+
heating: boolean;
|
|
2393
2394
|
internet: string | null;
|
|
2394
2395
|
internet_connection: string | null;
|
|
2395
|
-
tv:
|
|
2396
|
+
tv: string;
|
|
2396
2397
|
tv_connection: string | null;
|
|
2397
|
-
dvd:
|
|
2398
|
-
computer: boolean
|
|
2399
|
-
printer: boolean
|
|
2400
|
-
dishwasher: boolean
|
|
2401
|
-
oven: boolean
|
|
2402
|
-
microwave: boolean
|
|
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
|
|
2406
|
-
freezer: boolean
|
|
2407
|
-
toaster: boolean
|
|
2408
|
-
kettle: boolean
|
|
2409
|
-
coffeemachine: boolean
|
|
2410
|
-
washingmachine: boolean
|
|
2411
|
-
dryer: boolean
|
|
2412
|
-
iron: boolean
|
|
2413
|
-
bathtub: boolean
|
|
2414
|
-
jacuzzi: boolean
|
|
2415
|
-
shower_regular: boolean
|
|
2416
|
-
shower_steam: boolean
|
|
2417
|
-
hairdryer: boolean
|
|
2418
|
-
swimmingpool:
|
|
2419
|
-
sauna:
|
|
2420
|
-
parking:
|
|
2421
|
-
elevator:
|
|
2422
|
-
entresol: boolean
|
|
2423
|
-
wheelchair_friendly: boolean
|
|
2424
|
-
smoking_allowed: boolean
|
|
2425
|
-
pets_allowed: boolean
|
|
2426
|
-
supplies_coffee: boolean
|
|
2427
|
-
supplies_tea: boolean
|
|
2428
|
-
supplies_milk: boolean
|
|
2429
|
-
supplies_sugar: boolean
|
|
2430
|
-
supplies_dishwasher_tablets: boolean
|
|
2431
|
-
service_linen: boolean
|
|
2432
|
-
service_towels: boolean
|
|
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:
|
|
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
|
|
2507
|
-
patio:
|
|
2508
|
-
garden:
|
|
2509
|
-
roof_terrace:
|
|
2507
|
+
balcony: boolean;
|
|
2508
|
+
patio: boolean | null;
|
|
2509
|
+
garden: boolean | null;
|
|
2510
|
+
roof_terrace: boolean | null;
|
|
2510
2511
|
view: string | null;
|
|
2511
|
-
airco: boolean
|
|
2512
|
-
fans: boolean
|
|
2513
|
-
heating: boolean
|
|
2512
|
+
airco: boolean;
|
|
2513
|
+
fans: boolean;
|
|
2514
|
+
heating: boolean;
|
|
2514
2515
|
internet: string | null;
|
|
2515
2516
|
internet_connection: string | null;
|
|
2516
|
-
tv:
|
|
2517
|
+
tv: string;
|
|
2517
2518
|
tv_connection: string | null;
|
|
2518
|
-
dvd:
|
|
2519
|
-
computer: boolean
|
|
2520
|
-
printer: boolean
|
|
2521
|
-
dishwasher: boolean
|
|
2522
|
-
oven: boolean
|
|
2523
|
-
microwave: boolean
|
|
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
|
|
2527
|
-
freezer: boolean
|
|
2528
|
-
toaster: boolean
|
|
2529
|
-
kettle: boolean
|
|
2530
|
-
coffeemachine: boolean
|
|
2531
|
-
washingmachine: boolean
|
|
2532
|
-
dryer: boolean
|
|
2533
|
-
iron: boolean
|
|
2534
|
-
bathtub: boolean
|
|
2535
|
-
jacuzzi: boolean
|
|
2536
|
-
shower_regular: boolean
|
|
2537
|
-
shower_steam: boolean
|
|
2538
|
-
hairdryer: boolean
|
|
2539
|
-
swimmingpool:
|
|
2540
|
-
sauna:
|
|
2541
|
-
parking:
|
|
2542
|
-
elevator:
|
|
2543
|
-
entresol: boolean
|
|
2544
|
-
wheelchair_friendly: boolean
|
|
2545
|
-
smoking_allowed: boolean
|
|
2546
|
-
pets_allowed: boolean
|
|
2547
|
-
supplies_coffee: boolean
|
|
2548
|
-
supplies_tea: boolean
|
|
2549
|
-
supplies_milk: boolean
|
|
2550
|
-
supplies_sugar: boolean
|
|
2551
|
-
supplies_dishwasher_tablets: boolean
|
|
2552
|
-
service_linen: boolean
|
|
2553
|
-
service_towels: boolean
|
|
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:
|
|
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
|
|
2867
|
-
patio:
|
|
2868
|
-
garden:
|
|
2869
|
-
roof_terrace:
|
|
2867
|
+
balcony: boolean;
|
|
2868
|
+
patio: boolean | null;
|
|
2869
|
+
garden: boolean | null;
|
|
2870
|
+
roof_terrace: boolean | null;
|
|
2870
2871
|
view: string | null;
|
|
2871
|
-
airco: boolean
|
|
2872
|
-
fans: boolean
|
|
2873
|
-
heating: boolean
|
|
2872
|
+
airco: boolean;
|
|
2873
|
+
fans: boolean;
|
|
2874
|
+
heating: boolean;
|
|
2874
2875
|
internet: string | null;
|
|
2875
2876
|
internet_connection: string | null;
|
|
2876
|
-
tv:
|
|
2877
|
+
tv: string;
|
|
2877
2878
|
tv_connection: string | null;
|
|
2878
|
-
dvd:
|
|
2879
|
-
computer: boolean
|
|
2880
|
-
printer: boolean
|
|
2881
|
-
dishwasher: boolean
|
|
2882
|
-
oven: boolean
|
|
2883
|
-
microwave: boolean
|
|
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
|
|
2887
|
-
freezer: boolean
|
|
2888
|
-
toaster: boolean
|
|
2889
|
-
kettle: boolean
|
|
2890
|
-
coffeemachine: boolean
|
|
2891
|
-
washingmachine: boolean
|
|
2892
|
-
dryer: boolean
|
|
2893
|
-
iron: boolean
|
|
2894
|
-
bathtub: boolean
|
|
2895
|
-
jacuzzi: boolean
|
|
2896
|
-
shower_regular: boolean
|
|
2897
|
-
shower_steam: boolean
|
|
2898
|
-
hairdryer: boolean
|
|
2899
|
-
swimmingpool:
|
|
2900
|
-
sauna:
|
|
2901
|
-
parking:
|
|
2902
|
-
elevator:
|
|
2903
|
-
entresol: boolean
|
|
2904
|
-
wheelchair_friendly: boolean
|
|
2905
|
-
smoking_allowed: boolean
|
|
2906
|
-
pets_allowed: boolean
|
|
2907
|
-
supplies_coffee: boolean
|
|
2908
|
-
supplies_tea: boolean
|
|
2909
|
-
supplies_milk: boolean
|
|
2910
|
-
supplies_sugar: boolean
|
|
2911
|
-
supplies_dishwasher_tablets: boolean
|
|
2912
|
-
service_linen: boolean
|
|
2913
|
-
service_towels: boolean
|
|
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;
|