more-apartments-astro-integration 1.1.3 → 1.3.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
@@ -6,17 +6,7 @@ declare const PaginationLinksSchema: z.ZodObject<{
6
6
  last: z.ZodNullable<z.ZodString>;
7
7
  prev: z.ZodNullable<z.ZodString>;
8
8
  next: z.ZodNullable<z.ZodString>;
9
- }, "strip", z.ZodTypeAny, {
10
- first: string | null;
11
- last: string | null;
12
- prev: string | null;
13
- next: string | null;
14
- }, {
15
- first: string | null;
16
- last: string | null;
17
- prev: string | null;
18
- next: string | null;
19
- }>;
9
+ }, z.core.$strip>;
20
10
  declare const PaginationMetaSchema: z.ZodObject<{
21
11
  current_page: z.ZodNumber;
22
12
  from: z.ZodNullable<z.ZodNumber>;
@@ -25,64 +15,20 @@ declare const PaginationMetaSchema: z.ZodObject<{
25
15
  url: z.ZodNullable<z.ZodString>;
26
16
  label: z.ZodString;
27
17
  active: z.ZodBoolean;
28
- }, "strip", z.ZodTypeAny, {
29
- url: string | null;
30
- label: string;
31
- active: boolean;
32
- }, {
33
- url: string | null;
34
- label: string;
35
- active: boolean;
36
- }>, "many">;
18
+ }, z.core.$strip>>;
37
19
  path: z.ZodString;
38
20
  per_page: z.ZodNumber;
39
21
  to: z.ZodNullable<z.ZodNumber>;
40
22
  total: z.ZodNumber;
41
- }, "strip", z.ZodTypeAny, {
42
- path: string;
43
- current_page: number;
44
- from: number | null;
45
- last_page: number;
46
- links: {
47
- url: string | null;
48
- label: string;
49
- active: boolean;
50
- }[];
51
- per_page: number;
52
- to: number | null;
53
- total: number;
54
- }, {
55
- path: string;
56
- current_page: number;
57
- from: number | null;
58
- last_page: number;
59
- links: {
60
- url: string | null;
61
- label: string;
62
- active: boolean;
63
- }[];
64
- per_page: number;
65
- to: number | null;
66
- total: number;
67
- }>;
23
+ }, z.core.$strip>;
68
24
  declare const PaginatedResponseSchema: <T extends z.ZodTypeAny>(dataSchema: T) => z.ZodObject<{
69
- data: z.ZodArray<T, "many">;
25
+ data: z.ZodArray<T>;
70
26
  links: z.ZodObject<{
71
27
  first: z.ZodNullable<z.ZodString>;
72
28
  last: z.ZodNullable<z.ZodString>;
73
29
  prev: z.ZodNullable<z.ZodString>;
74
30
  next: z.ZodNullable<z.ZodString>;
75
- }, "strip", z.ZodTypeAny, {
76
- first: string | null;
77
- last: string | null;
78
- prev: string | null;
79
- next: string | null;
80
- }, {
81
- first: string | null;
82
- last: string | null;
83
- prev: string | null;
84
- next: string | null;
85
- }>;
31
+ }, z.core.$strip>;
86
32
  meta: z.ZodObject<{
87
33
  current_page: z.ZodNumber;
88
34
  from: z.ZodNullable<z.ZodNumber>;
@@ -91,101 +37,17 @@ declare const PaginatedResponseSchema: <T extends z.ZodTypeAny>(dataSchema: T) =
91
37
  url: z.ZodNullable<z.ZodString>;
92
38
  label: z.ZodString;
93
39
  active: z.ZodBoolean;
94
- }, "strip", z.ZodTypeAny, {
95
- url: string | null;
96
- label: string;
97
- active: boolean;
98
- }, {
99
- url: string | null;
100
- label: string;
101
- active: boolean;
102
- }>, "many">;
40
+ }, z.core.$strip>>;
103
41
  path: z.ZodString;
104
42
  per_page: z.ZodNumber;
105
43
  to: z.ZodNullable<z.ZodNumber>;
106
44
  total: z.ZodNumber;
107
- }, "strip", z.ZodTypeAny, {
108
- path: string;
109
- current_page: number;
110
- from: number | null;
111
- last_page: number;
112
- links: {
113
- url: string | null;
114
- label: string;
115
- active: boolean;
116
- }[];
117
- per_page: number;
118
- to: number | null;
119
- total: number;
120
- }, {
121
- path: string;
122
- current_page: number;
123
- from: number | null;
124
- last_page: number;
125
- links: {
126
- url: string | null;
127
- label: string;
128
- active: boolean;
129
- }[];
130
- per_page: number;
131
- to: number | null;
132
- total: number;
133
- }>;
134
- }, "strip", z.ZodTypeAny, {
135
- links: {
136
- first: string | null;
137
- last: string | null;
138
- prev: string | null;
139
- next: string | null;
140
- };
141
- data: T["_output"][];
142
- meta: {
143
- path: string;
144
- current_page: number;
145
- from: number | null;
146
- last_page: number;
147
- links: {
148
- url: string | null;
149
- label: string;
150
- active: boolean;
151
- }[];
152
- per_page: number;
153
- to: number | null;
154
- total: number;
155
- };
156
- }, {
157
- links: {
158
- first: string | null;
159
- last: string | null;
160
- prev: string | null;
161
- next: string | null;
162
- };
163
- data: T["_input"][];
164
- meta: {
165
- path: string;
166
- current_page: number;
167
- from: number | null;
168
- last_page: number;
169
- links: {
170
- url: string | null;
171
- label: string;
172
- active: boolean;
173
- }[];
174
- per_page: number;
175
- to: number | null;
176
- total: number;
177
- };
178
- }>;
45
+ }, z.core.$strip>;
46
+ }, z.core.$strip>;
179
47
  declare const ApiErrorSchema: z.ZodObject<{
180
48
  message: z.ZodString;
181
- errors: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>;
182
- }, "strip", z.ZodTypeAny, {
183
- message: string;
184
- errors?: Record<string, string[]> | undefined;
185
- }, {
186
- message: string;
187
- errors?: Record<string, string[]> | undefined;
188
- }>;
49
+ errors: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString>>>;
50
+ }, z.core.$strip>;
189
51
  type PaginationLinks = z.infer<typeof PaginationLinksSchema>;
190
52
  type PaginationMeta = z.infer<typeof PaginationMetaSchema>;
191
53
  type PaginatedResponse<T> = {
@@ -199,18 +61,10 @@ declare const PropertyImageSchema: z.ZodObject<{
199
61
  id: z.ZodNumber;
200
62
  url: z.ZodString;
201
63
  alt: z.ZodOptional<z.ZodString>;
202
- }, "strip", z.ZodTypeAny, {
203
- id: number;
204
- url: string;
205
- alt?: string | undefined;
206
- }, {
207
- id: number;
208
- url: string;
209
- alt?: string | undefined;
210
- }>;
64
+ }, z.core.$strip>;
211
65
  declare const PropertySchema: z.ZodObject<{
212
66
  id: z.ZodNumber;
213
- external_id: z.ZodOptional<z.ZodNumber>;
67
+ external_id: z.ZodNullable<z.ZodString>;
214
68
  name: z.ZodString;
215
69
  slug: z.ZodString;
216
70
  short_description: z.ZodNullable<z.ZodString>;
@@ -225,7 +79,7 @@ declare const PropertySchema: z.ZodObject<{
225
79
  toilets: z.ZodNullable<z.ZodNumber>;
226
80
  size: z.ZodNullable<z.ZodNumber>;
227
81
  floor: z.ZodNullable<z.ZodNumber>;
228
- stairs: z.ZodNullable<z.ZodNumber>;
82
+ stairs: z.ZodNullable<z.ZodBoolean>;
229
83
  street: z.ZodNullable<z.ZodString>;
230
84
  zipcode: z.ZodNullable<z.ZodString>;
231
85
  area: z.ZodNullable<z.ZodString>;
@@ -238,54 +92,54 @@ declare const PropertySchema: z.ZodObject<{
238
92
  single_sofa: z.ZodNullable<z.ZodNumber>;
239
93
  double_sofa: z.ZodNullable<z.ZodNumber>;
240
94
  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>;
95
+ balcony: z.ZodBoolean;
96
+ patio: z.ZodNullable<z.ZodBoolean>;
97
+ garden: z.ZodNullable<z.ZodBoolean>;
98
+ roof_terrace: z.ZodNullable<z.ZodBoolean>;
245
99
  view: z.ZodNullable<z.ZodString>;
246
- airco: z.ZodNullable<z.ZodBoolean>;
247
- fans: z.ZodNullable<z.ZodBoolean>;
248
- heating: z.ZodNullable<z.ZodBoolean>;
100
+ airco: z.ZodBoolean;
101
+ fans: z.ZodBoolean;
102
+ heating: z.ZodBoolean;
249
103
  internet: z.ZodNullable<z.ZodString>;
250
104
  internet_connection: z.ZodNullable<z.ZodString>;
251
- tv: z.ZodNullable<z.ZodNumber>;
105
+ tv: z.ZodNullable<z.ZodString>;
252
106
  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>;
107
+ dvd: z.ZodNullable<z.ZodString>;
108
+ computer: z.ZodBoolean;
109
+ printer: z.ZodBoolean;
110
+ dishwasher: z.ZodBoolean;
111
+ oven: z.ZodBoolean;
112
+ microwave: z.ZodBoolean;
259
113
  grill: z.ZodNullable<z.ZodNumber>;
260
114
  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>;
115
+ fridge: z.ZodBoolean;
116
+ freezer: z.ZodBoolean;
117
+ toaster: z.ZodBoolean;
118
+ kettle: z.ZodBoolean;
119
+ coffeemachine: z.ZodBoolean;
120
+ washingmachine: z.ZodBoolean;
121
+ dryer: z.ZodBoolean;
122
+ iron: z.ZodBoolean;
123
+ bathtub: z.ZodBoolean;
124
+ jacuzzi: z.ZodBoolean;
125
+ shower_regular: z.ZodBoolean;
126
+ shower_steam: z.ZodBoolean;
127
+ hairdryer: z.ZodBoolean;
128
+ swimmingpool: z.ZodNullable<z.ZodString>;
129
+ sauna: z.ZodNullable<z.ZodString>;
130
+ parking: z.ZodNullable<z.ZodString>;
131
+ elevator: z.ZodNullable<z.ZodBoolean>;
132
+ entresol: z.ZodBoolean;
133
+ wheelchair_friendly: z.ZodBoolean;
134
+ smoking_allowed: z.ZodBoolean;
135
+ pets_allowed: z.ZodBoolean;
136
+ supplies_coffee: z.ZodBoolean;
137
+ supplies_tea: z.ZodBoolean;
138
+ supplies_milk: z.ZodBoolean;
139
+ supplies_sugar: z.ZodBoolean;
140
+ supplies_dishwasher_tablets: z.ZodBoolean;
141
+ service_linen: z.ZodBoolean;
142
+ service_towels: z.ZodBoolean;
289
143
  cleaning_costs: z.ZodNullable<z.ZodNumber>;
290
144
  deposit_costs: z.ZodNullable<z.ZodNumber>;
291
145
  prepayment: z.ZodNullable<z.ZodNumber>;
@@ -295,6 +149,7 @@ declare const PropertySchema: z.ZodObject<{
295
149
  tax_other_type: z.ZodNullable<z.ZodString>;
296
150
  minimal_nights: z.ZodNullable<z.ZodNumber>;
297
151
  maximal_nights: z.ZodNullable<z.ZodNumber>;
152
+ min_rate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
298
153
  available_start: z.ZodNullable<z.ZodString>;
299
154
  available_end: z.ZodNullable<z.ZodString>;
300
155
  check_in: z.ZodNullable<z.ZodString>;
@@ -307,255 +162,19 @@ declare const PropertySchema: z.ZodObject<{
307
162
  large_url: z.ZodString;
308
163
  srcset: z.ZodString;
309
164
  url: z.ZodString;
310
- }, "strip", z.ZodTypeAny, {
311
- id: number;
312
- alt: string;
313
- small_url: string;
314
- medium_url: string;
315
- large_url: string;
316
- srcset: string;
317
- url: string;
318
- }, {
319
- id: number;
320
- alt: string;
321
- small_url: string;
322
- medium_url: string;
323
- large_url: string;
324
- srcset: string;
325
- url: string;
326
- }>, "many">>;
165
+ }, z.core.$strip>>>;
327
166
  status: z.ZodNullable<z.ZodString>;
328
167
  provider_name: z.ZodNullable<z.ZodString>;
329
168
  created_at: z.ZodString;
330
169
  updated_at: z.ZodString;
331
- }, "strip", z.ZodTypeAny, {
332
- type: string | null;
333
- status: string | null;
334
- id: number;
335
- name: string;
336
- slug: string;
337
- short_description: string | null;
338
- description: string;
339
- area_description: string | null;
340
- arrival_description: string | null;
341
- payment_description: string | null;
342
- max_persons: number | null;
343
- bedrooms: number | null;
344
- bathrooms: number | null;
345
- toilets: number | null;
346
- size: number | null;
347
- floor: number | null;
348
- stairs: number | null;
349
- street: string | null;
350
- zipcode: string | null;
351
- area: string | null;
352
- city: string;
353
- country: string;
354
- latitude: number;
355
- longitude: number;
356
- single_bed: number | null;
357
- double_bed: number | null;
358
- single_sofa: number | null;
359
- double_sofa: number | null;
360
- single_bunk: number | null;
361
- balcony: boolean | null;
362
- patio: number | null;
363
- garden: number | null;
364
- roof_terrace: number | null;
365
- view: string | null;
366
- airco: boolean | null;
367
- fans: boolean | null;
368
- heating: boolean | null;
369
- internet: string | null;
370
- internet_connection: string | null;
371
- tv: number | null;
372
- 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;
379
- grill: number | null;
380
- hob: number | null;
381
- fridge: boolean | null;
382
- freezer: boolean | null;
383
- toaster: boolean | null;
384
- kettle: boolean | null;
385
- coffeemachine: boolean | null;
386
- washingmachine: boolean | null;
387
- dryer: boolean | null;
388
- iron: boolean | null;
389
- bathtub: boolean | null;
390
- jacuzzi: boolean | null;
391
- shower_regular: boolean | null;
392
- shower_steam: boolean | null;
393
- hairdryer: boolean | null;
394
- swimmingpool: number | null;
395
- sauna: number | null;
396
- parking: number | null;
397
- elevator: number | null;
398
- entresol: boolean | null;
399
- wheelchair_friendly: boolean | null;
400
- smoking_allowed: boolean | null;
401
- pets_allowed: boolean | null;
402
- supplies_coffee: boolean | null;
403
- supplies_tea: boolean | null;
404
- supplies_milk: boolean | null;
405
- supplies_sugar: boolean | null;
406
- supplies_dishwasher_tablets: boolean | null;
407
- service_linen: boolean | null;
408
- service_towels: boolean | null;
409
- cleaning_costs: number | null;
410
- deposit_costs: number | null;
411
- prepayment: number | null;
412
- fee: number | null;
413
- tax_vat: number | null;
414
- tax_other: number | null;
415
- tax_other_type: string | null;
416
- minimal_nights: number | null;
417
- maximal_nights: number | null;
418
- available_start: string | null;
419
- available_end: string | null;
420
- check_in: string | null;
421
- check_out: string | null;
422
- provider_name: string | null;
423
- created_at: string;
424
- updated_at: string;
425
- external_id?: number | undefined;
426
- images?: {
427
- id: number;
428
- alt: string;
429
- small_url: string;
430
- medium_url: string;
431
- large_url: string;
432
- srcset: string;
433
- url: string;
434
- }[] | undefined;
435
- }, {
436
- type: string | null;
437
- status: string | null;
438
- id: number;
439
- name: string;
440
- slug: string;
441
- short_description: string | null;
442
- description: string;
443
- area_description: string | null;
444
- arrival_description: string | null;
445
- payment_description: string | null;
446
- max_persons: number | null;
447
- bedrooms: number | null;
448
- bathrooms: number | null;
449
- toilets: number | null;
450
- size: number | null;
451
- floor: number | null;
452
- stairs: number | null;
453
- street: string | null;
454
- zipcode: string | null;
455
- area: string | null;
456
- city: string;
457
- country: string;
458
- latitude: number;
459
- longitude: number;
460
- single_bed: number | null;
461
- double_bed: number | null;
462
- single_sofa: number | null;
463
- double_sofa: number | null;
464
- single_bunk: number | null;
465
- balcony: boolean | null;
466
- patio: number | null;
467
- garden: number | null;
468
- roof_terrace: number | null;
469
- view: string | null;
470
- airco: boolean | null;
471
- fans: boolean | null;
472
- heating: boolean | null;
473
- internet: string | null;
474
- internet_connection: string | null;
475
- tv: number | null;
476
- 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;
483
- grill: number | null;
484
- hob: number | null;
485
- fridge: boolean | null;
486
- freezer: boolean | null;
487
- toaster: boolean | null;
488
- kettle: boolean | null;
489
- coffeemachine: boolean | null;
490
- washingmachine: boolean | null;
491
- dryer: boolean | null;
492
- iron: boolean | null;
493
- bathtub: boolean | null;
494
- jacuzzi: boolean | null;
495
- shower_regular: boolean | null;
496
- shower_steam: boolean | null;
497
- hairdryer: boolean | null;
498
- swimmingpool: number | null;
499
- sauna: number | null;
500
- parking: number | null;
501
- elevator: number | null;
502
- entresol: boolean | null;
503
- wheelchair_friendly: boolean | null;
504
- smoking_allowed: boolean | null;
505
- pets_allowed: boolean | null;
506
- supplies_coffee: boolean | null;
507
- supplies_tea: boolean | null;
508
- supplies_milk: boolean | null;
509
- supplies_sugar: boolean | null;
510
- supplies_dishwasher_tablets: boolean | null;
511
- service_linen: boolean | null;
512
- service_towels: boolean | null;
513
- cleaning_costs: number | null;
514
- deposit_costs: number | null;
515
- prepayment: number | null;
516
- fee: number | null;
517
- tax_vat: number | null;
518
- tax_other: number | null;
519
- tax_other_type: string | null;
520
- minimal_nights: number | null;
521
- maximal_nights: number | null;
522
- available_start: string | null;
523
- available_end: string | null;
524
- check_in: string | null;
525
- check_out: string | null;
526
- provider_name: string | null;
527
- created_at: string;
528
- updated_at: string;
529
- external_id?: number | undefined;
530
- images?: {
531
- id: number;
532
- alt: string;
533
- small_url: string;
534
- medium_url: string;
535
- large_url: string;
536
- srcset: string;
537
- url: string;
538
- }[] | undefined;
539
- }>;
170
+ }, z.core.$strip>;
540
171
  declare const AvailableDay: z.ZodObject<{
541
172
  available: z.ZodBoolean;
542
173
  morning_available: z.ZodBoolean;
543
174
  date: z.ZodString;
544
175
  day: z.ZodNumber;
545
176
  stay_minimum: z.ZodNumber;
546
- }, "strip", z.ZodTypeAny, {
547
- date: string;
548
- available: boolean;
549
- morning_available: boolean;
550
- day: number;
551
- stay_minimum: number;
552
- }, {
553
- date: string;
554
- available: boolean;
555
- morning_available: boolean;
556
- day: number;
557
- stay_minimum: number;
558
- }>;
177
+ }, z.core.$strip>;
559
178
  declare const AvailabilitySchema: z.ZodObject<{
560
179
  days: z.ZodRecord<z.ZodString, z.ZodObject<{
561
180
  available: z.ZodBoolean;
@@ -563,36 +182,8 @@ declare const AvailabilitySchema: z.ZodObject<{
563
182
  date: z.ZodString;
564
183
  day: z.ZodNumber;
565
184
  stay_minimum: z.ZodNumber;
566
- }, "strip", z.ZodTypeAny, {
567
- date: string;
568
- available: boolean;
569
- morning_available: boolean;
570
- day: number;
571
- stay_minimum: number;
572
- }, {
573
- date: string;
574
- available: boolean;
575
- morning_available: boolean;
576
- day: number;
577
- stay_minimum: number;
578
- }>>;
579
- }, "strip", z.ZodTypeAny, {
580
- days: Record<string, {
581
- date: string;
582
- available: boolean;
583
- morning_available: boolean;
584
- day: number;
585
- stay_minimum: number;
586
- }>;
587
- }, {
588
- days: Record<string, {
589
- date: string;
590
- available: boolean;
591
- morning_available: boolean;
592
- day: number;
593
- stay_minimum: number;
594
- }>;
595
- }>;
185
+ }, z.core.$strip>>;
186
+ }, z.core.$strip>;
596
187
  declare const PropertySearchParamsSchema: z.ZodObject<{
597
188
  arrival: z.ZodOptional<z.ZodString>;
598
189
  departure: z.ZodOptional<z.ZodString>;
@@ -608,41 +199,11 @@ declare const PropertySearchParamsSchema: z.ZodObject<{
608
199
  elevator: z.ZodOptional<z.ZodBoolean>;
609
200
  parking: z.ZodOptional<z.ZodString>;
610
201
  balcony: z.ZodOptional<z.ZodBoolean>;
611
- }, "strip", z.ZodTypeAny, {
612
- bedrooms?: number | undefined;
613
- bathrooms?: number | undefined;
614
- area?: string | undefined;
615
- city?: string | undefined;
616
- balcony?: boolean | undefined;
617
- parking?: string | undefined;
618
- elevator?: boolean | undefined;
619
- arrival?: string | undefined;
620
- departure?: string | undefined;
621
- guests?: number | undefined;
622
- destination?: string | undefined;
623
- segment?: string | undefined;
624
- propertyType?: string | undefined;
625
- maxPersons?: number | undefined;
626
- }, {
627
- bedrooms?: number | undefined;
628
- bathrooms?: number | undefined;
629
- area?: string | undefined;
630
- city?: string | undefined;
631
- balcony?: boolean | undefined;
632
- parking?: string | undefined;
633
- elevator?: boolean | undefined;
634
- arrival?: string | undefined;
635
- departure?: string | undefined;
636
- guests?: number | undefined;
637
- destination?: string | undefined;
638
- segment?: string | undefined;
639
- propertyType?: string | undefined;
640
- maxPersons?: number | undefined;
641
- }>;
202
+ }, z.core.$strip>;
642
203
  declare const PropertySearchResultSchema: z.ZodObject<{
643
204
  data: z.ZodArray<z.ZodObject<{
644
205
  id: z.ZodNumber;
645
- external_id: z.ZodOptional<z.ZodNumber>;
206
+ external_id: z.ZodNullable<z.ZodString>;
646
207
  name: z.ZodString;
647
208
  slug: z.ZodString;
648
209
  short_description: z.ZodNullable<z.ZodString>;
@@ -657,7 +218,7 @@ declare const PropertySearchResultSchema: z.ZodObject<{
657
218
  toilets: z.ZodNullable<z.ZodNumber>;
658
219
  size: z.ZodNullable<z.ZodNumber>;
659
220
  floor: z.ZodNullable<z.ZodNumber>;
660
- stairs: z.ZodNullable<z.ZodNumber>;
221
+ stairs: z.ZodNullable<z.ZodBoolean>;
661
222
  street: z.ZodNullable<z.ZodString>;
662
223
  zipcode: z.ZodNullable<z.ZodString>;
663
224
  area: z.ZodNullable<z.ZodString>;
@@ -670,54 +231,54 @@ declare const PropertySearchResultSchema: z.ZodObject<{
670
231
  single_sofa: z.ZodNullable<z.ZodNumber>;
671
232
  double_sofa: z.ZodNullable<z.ZodNumber>;
672
233
  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>;
234
+ balcony: z.ZodBoolean;
235
+ patio: z.ZodNullable<z.ZodBoolean>;
236
+ garden: z.ZodNullable<z.ZodBoolean>;
237
+ roof_terrace: z.ZodNullable<z.ZodBoolean>;
677
238
  view: z.ZodNullable<z.ZodString>;
678
- airco: z.ZodNullable<z.ZodBoolean>;
679
- fans: z.ZodNullable<z.ZodBoolean>;
680
- heating: z.ZodNullable<z.ZodBoolean>;
239
+ airco: z.ZodBoolean;
240
+ fans: z.ZodBoolean;
241
+ heating: z.ZodBoolean;
681
242
  internet: z.ZodNullable<z.ZodString>;
682
243
  internet_connection: z.ZodNullable<z.ZodString>;
683
- tv: z.ZodNullable<z.ZodNumber>;
244
+ tv: z.ZodNullable<z.ZodString>;
684
245
  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>;
246
+ dvd: z.ZodNullable<z.ZodString>;
247
+ computer: z.ZodBoolean;
248
+ printer: z.ZodBoolean;
249
+ dishwasher: z.ZodBoolean;
250
+ oven: z.ZodBoolean;
251
+ microwave: z.ZodBoolean;
691
252
  grill: z.ZodNullable<z.ZodNumber>;
692
253
  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>;
254
+ fridge: z.ZodBoolean;
255
+ freezer: z.ZodBoolean;
256
+ toaster: z.ZodBoolean;
257
+ kettle: z.ZodBoolean;
258
+ coffeemachine: z.ZodBoolean;
259
+ washingmachine: z.ZodBoolean;
260
+ dryer: z.ZodBoolean;
261
+ iron: z.ZodBoolean;
262
+ bathtub: z.ZodBoolean;
263
+ jacuzzi: z.ZodBoolean;
264
+ shower_regular: z.ZodBoolean;
265
+ shower_steam: z.ZodBoolean;
266
+ hairdryer: z.ZodBoolean;
267
+ swimmingpool: z.ZodNullable<z.ZodString>;
268
+ sauna: z.ZodNullable<z.ZodString>;
269
+ parking: z.ZodNullable<z.ZodString>;
270
+ elevator: z.ZodNullable<z.ZodBoolean>;
271
+ entresol: z.ZodBoolean;
272
+ wheelchair_friendly: z.ZodBoolean;
273
+ smoking_allowed: z.ZodBoolean;
274
+ pets_allowed: z.ZodBoolean;
275
+ supplies_coffee: z.ZodBoolean;
276
+ supplies_tea: z.ZodBoolean;
277
+ supplies_milk: z.ZodBoolean;
278
+ supplies_sugar: z.ZodBoolean;
279
+ supplies_dishwasher_tablets: z.ZodBoolean;
280
+ service_linen: z.ZodBoolean;
281
+ service_towels: z.ZodBoolean;
721
282
  cleaning_costs: z.ZodNullable<z.ZodNumber>;
722
283
  deposit_costs: z.ZodNullable<z.ZodNumber>;
723
284
  prepayment: z.ZodNullable<z.ZodNumber>;
@@ -727,6 +288,7 @@ declare const PropertySearchResultSchema: z.ZodObject<{
727
288
  tax_other_type: z.ZodNullable<z.ZodString>;
728
289
  minimal_nights: z.ZodNullable<z.ZodNumber>;
729
290
  maximal_nights: z.ZodNullable<z.ZodNumber>;
291
+ min_rate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
730
292
  available_start: z.ZodNullable<z.ZodString>;
731
293
  available_end: z.ZodNullable<z.ZodString>;
732
294
  check_in: z.ZodNullable<z.ZodString>;
@@ -739,586 +301,38 @@ declare const PropertySearchResultSchema: z.ZodObject<{
739
301
  large_url: z.ZodString;
740
302
  srcset: z.ZodString;
741
303
  url: z.ZodString;
742
- }, "strip", z.ZodTypeAny, {
743
- id: number;
744
- alt: string;
745
- small_url: string;
746
- medium_url: string;
747
- large_url: string;
748
- srcset: string;
749
- url: string;
750
- }, {
751
- id: number;
752
- alt: string;
753
- small_url: string;
754
- medium_url: string;
755
- large_url: string;
756
- srcset: string;
757
- url: string;
758
- }>, "many">>;
304
+ }, z.core.$strip>>>;
759
305
  status: z.ZodNullable<z.ZodString>;
760
306
  provider_name: z.ZodNullable<z.ZodString>;
761
307
  created_at: z.ZodString;
762
308
  updated_at: z.ZodString;
763
- }, "strip", z.ZodTypeAny, {
764
- type: string | null;
765
- status: string | null;
766
- id: number;
767
- name: string;
768
- slug: string;
769
- short_description: string | null;
770
- description: string;
771
- area_description: string | null;
772
- arrival_description: string | null;
773
- payment_description: string | null;
774
- max_persons: number | null;
775
- bedrooms: number | null;
776
- bathrooms: number | null;
777
- toilets: number | null;
778
- size: number | null;
779
- floor: number | null;
780
- stairs: number | null;
781
- street: string | null;
782
- zipcode: string | null;
783
- area: string | null;
784
- city: string;
785
- country: string;
786
- latitude: number;
787
- longitude: number;
788
- single_bed: number | null;
789
- double_bed: number | null;
790
- single_sofa: number | null;
791
- double_sofa: number | null;
792
- single_bunk: number | null;
793
- balcony: boolean | null;
794
- patio: number | null;
795
- garden: number | null;
796
- roof_terrace: number | null;
797
- view: string | null;
798
- airco: boolean | null;
799
- fans: boolean | null;
800
- heating: boolean | null;
801
- internet: string | null;
802
- internet_connection: string | null;
803
- tv: number | null;
804
- 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;
811
- grill: number | null;
812
- hob: number | null;
813
- fridge: boolean | null;
814
- freezer: boolean | null;
815
- toaster: boolean | null;
816
- kettle: boolean | null;
817
- coffeemachine: boolean | null;
818
- washingmachine: boolean | null;
819
- dryer: boolean | null;
820
- iron: boolean | null;
821
- bathtub: boolean | null;
822
- jacuzzi: boolean | null;
823
- shower_regular: boolean | null;
824
- shower_steam: boolean | null;
825
- hairdryer: boolean | null;
826
- swimmingpool: number | null;
827
- sauna: number | null;
828
- parking: number | null;
829
- elevator: number | null;
830
- entresol: boolean | null;
831
- wheelchair_friendly: boolean | null;
832
- smoking_allowed: boolean | null;
833
- pets_allowed: boolean | null;
834
- supplies_coffee: boolean | null;
835
- supplies_tea: boolean | null;
836
- supplies_milk: boolean | null;
837
- supplies_sugar: boolean | null;
838
- supplies_dishwasher_tablets: boolean | null;
839
- service_linen: boolean | null;
840
- service_towels: boolean | null;
841
- cleaning_costs: number | null;
842
- deposit_costs: number | null;
843
- prepayment: number | null;
844
- fee: number | null;
845
- tax_vat: number | null;
846
- tax_other: number | null;
847
- tax_other_type: string | null;
848
- minimal_nights: number | null;
849
- maximal_nights: number | null;
850
- available_start: string | null;
851
- available_end: string | null;
852
- check_in: string | null;
853
- check_out: string | null;
854
- provider_name: string | null;
855
- created_at: string;
856
- updated_at: string;
857
- external_id?: number | undefined;
858
- images?: {
859
- id: number;
860
- alt: string;
861
- small_url: string;
862
- medium_url: string;
863
- large_url: string;
864
- srcset: string;
865
- url: string;
866
- }[] | undefined;
867
- }, {
868
- type: string | null;
869
- status: string | null;
870
- id: number;
871
- name: string;
872
- slug: string;
873
- short_description: string | null;
874
- description: string;
875
- area_description: string | null;
876
- arrival_description: string | null;
877
- payment_description: string | null;
878
- max_persons: number | null;
879
- bedrooms: number | null;
880
- bathrooms: number | null;
881
- toilets: number | null;
882
- size: number | null;
883
- floor: number | null;
884
- stairs: number | null;
885
- street: string | null;
886
- zipcode: string | null;
887
- area: string | null;
888
- city: string;
889
- country: string;
890
- latitude: number;
891
- longitude: number;
892
- single_bed: number | null;
893
- double_bed: number | null;
894
- single_sofa: number | null;
895
- double_sofa: number | null;
896
- single_bunk: number | null;
897
- balcony: boolean | null;
898
- patio: number | null;
899
- garden: number | null;
900
- roof_terrace: number | null;
901
- view: string | null;
902
- airco: boolean | null;
903
- fans: boolean | null;
904
- heating: boolean | null;
905
- internet: string | null;
906
- internet_connection: string | null;
907
- tv: number | null;
908
- 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;
915
- grill: number | null;
916
- hob: number | null;
917
- fridge: boolean | null;
918
- freezer: boolean | null;
919
- toaster: boolean | null;
920
- kettle: boolean | null;
921
- coffeemachine: boolean | null;
922
- washingmachine: boolean | null;
923
- dryer: boolean | null;
924
- iron: boolean | null;
925
- bathtub: boolean | null;
926
- jacuzzi: boolean | null;
927
- shower_regular: boolean | null;
928
- shower_steam: boolean | null;
929
- hairdryer: boolean | null;
930
- swimmingpool: number | null;
931
- sauna: number | null;
932
- parking: number | null;
933
- elevator: number | null;
934
- entresol: boolean | null;
935
- wheelchair_friendly: boolean | null;
936
- smoking_allowed: boolean | null;
937
- pets_allowed: boolean | null;
938
- supplies_coffee: boolean | null;
939
- supplies_tea: boolean | null;
940
- supplies_milk: boolean | null;
941
- supplies_sugar: boolean | null;
942
- supplies_dishwasher_tablets: boolean | null;
943
- service_linen: boolean | null;
944
- service_towels: boolean | null;
945
- cleaning_costs: number | null;
946
- deposit_costs: number | null;
947
- prepayment: number | null;
948
- fee: number | null;
949
- tax_vat: number | null;
950
- tax_other: number | null;
951
- tax_other_type: string | null;
952
- minimal_nights: number | null;
953
- maximal_nights: number | null;
954
- available_start: string | null;
955
- available_end: string | null;
956
- check_in: string | null;
957
- check_out: string | null;
958
- provider_name: string | null;
959
- created_at: string;
960
- updated_at: string;
961
- external_id?: number | undefined;
962
- images?: {
963
- id: number;
964
- alt: string;
965
- small_url: string;
966
- medium_url: string;
967
- large_url: string;
968
- srcset: string;
969
- url: string;
970
- }[] | undefined;
971
- }>, "many">;
972
- }, "strip", z.ZodTypeAny, {
973
- data: {
974
- type: string | null;
975
- status: string | null;
976
- id: number;
977
- name: string;
978
- slug: string;
979
- short_description: string | null;
980
- description: string;
981
- area_description: string | null;
982
- arrival_description: string | null;
983
- payment_description: string | null;
984
- max_persons: number | null;
985
- bedrooms: number | null;
986
- bathrooms: number | null;
987
- toilets: number | null;
988
- size: number | null;
989
- floor: number | null;
990
- stairs: number | null;
991
- street: string | null;
992
- zipcode: string | null;
993
- area: string | null;
994
- city: string;
995
- country: string;
996
- latitude: number;
997
- longitude: number;
998
- single_bed: number | null;
999
- double_bed: number | null;
1000
- single_sofa: number | null;
1001
- double_sofa: number | null;
1002
- single_bunk: number | null;
1003
- balcony: boolean | null;
1004
- patio: number | null;
1005
- garden: number | null;
1006
- roof_terrace: number | null;
1007
- view: string | null;
1008
- airco: boolean | null;
1009
- fans: boolean | null;
1010
- heating: boolean | null;
1011
- internet: string | null;
1012
- internet_connection: string | null;
1013
- tv: number | null;
1014
- 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;
1021
- grill: number | null;
1022
- hob: number | null;
1023
- fridge: boolean | null;
1024
- freezer: boolean | null;
1025
- toaster: boolean | null;
1026
- kettle: boolean | null;
1027
- coffeemachine: boolean | null;
1028
- washingmachine: boolean | null;
1029
- dryer: boolean | null;
1030
- iron: boolean | null;
1031
- bathtub: boolean | null;
1032
- jacuzzi: boolean | null;
1033
- shower_regular: boolean | null;
1034
- shower_steam: boolean | null;
1035
- hairdryer: boolean | null;
1036
- swimmingpool: number | null;
1037
- sauna: number | null;
1038
- parking: number | null;
1039
- elevator: number | null;
1040
- entresol: boolean | null;
1041
- wheelchair_friendly: boolean | null;
1042
- smoking_allowed: boolean | null;
1043
- pets_allowed: boolean | null;
1044
- supplies_coffee: boolean | null;
1045
- supplies_tea: boolean | null;
1046
- supplies_milk: boolean | null;
1047
- supplies_sugar: boolean | null;
1048
- supplies_dishwasher_tablets: boolean | null;
1049
- service_linen: boolean | null;
1050
- service_towels: boolean | null;
1051
- cleaning_costs: number | null;
1052
- deposit_costs: number | null;
1053
- prepayment: number | null;
1054
- fee: number | null;
1055
- tax_vat: number | null;
1056
- tax_other: number | null;
1057
- tax_other_type: string | null;
1058
- minimal_nights: number | null;
1059
- maximal_nights: number | null;
1060
- available_start: string | null;
1061
- available_end: string | null;
1062
- check_in: string | null;
1063
- check_out: string | null;
1064
- provider_name: string | null;
1065
- created_at: string;
1066
- updated_at: string;
1067
- external_id?: number | undefined;
1068
- images?: {
1069
- id: number;
1070
- alt: string;
1071
- small_url: string;
1072
- medium_url: string;
1073
- large_url: string;
1074
- srcset: string;
1075
- url: string;
1076
- }[] | undefined;
1077
- }[];
1078
- }, {
1079
- data: {
1080
- type: string | null;
1081
- status: string | null;
1082
- id: number;
1083
- name: string;
1084
- slug: string;
1085
- short_description: string | null;
1086
- description: string;
1087
- area_description: string | null;
1088
- arrival_description: string | null;
1089
- payment_description: string | null;
1090
- max_persons: number | null;
1091
- bedrooms: number | null;
1092
- bathrooms: number | null;
1093
- toilets: number | null;
1094
- size: number | null;
1095
- floor: number | null;
1096
- stairs: number | null;
1097
- street: string | null;
1098
- zipcode: string | null;
1099
- area: string | null;
1100
- city: string;
1101
- country: string;
1102
- latitude: number;
1103
- longitude: number;
1104
- single_bed: number | null;
1105
- double_bed: number | null;
1106
- single_sofa: number | null;
1107
- double_sofa: number | null;
1108
- single_bunk: number | null;
1109
- balcony: boolean | null;
1110
- patio: number | null;
1111
- garden: number | null;
1112
- roof_terrace: number | null;
1113
- view: string | null;
1114
- airco: boolean | null;
1115
- fans: boolean | null;
1116
- heating: boolean | null;
1117
- internet: string | null;
1118
- internet_connection: string | null;
1119
- tv: number | null;
1120
- 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;
1127
- grill: number | null;
1128
- hob: number | null;
1129
- fridge: boolean | null;
1130
- freezer: boolean | null;
1131
- toaster: boolean | null;
1132
- kettle: boolean | null;
1133
- coffeemachine: boolean | null;
1134
- washingmachine: boolean | null;
1135
- dryer: boolean | null;
1136
- iron: boolean | null;
1137
- bathtub: boolean | null;
1138
- jacuzzi: boolean | null;
1139
- shower_regular: boolean | null;
1140
- shower_steam: boolean | null;
1141
- hairdryer: boolean | null;
1142
- swimmingpool: number | null;
1143
- sauna: number | null;
1144
- parking: number | null;
1145
- elevator: number | null;
1146
- entresol: boolean | null;
1147
- wheelchair_friendly: boolean | null;
1148
- smoking_allowed: boolean | null;
1149
- pets_allowed: boolean | null;
1150
- supplies_coffee: boolean | null;
1151
- supplies_tea: boolean | null;
1152
- supplies_milk: boolean | null;
1153
- supplies_sugar: boolean | null;
1154
- supplies_dishwasher_tablets: boolean | null;
1155
- service_linen: boolean | null;
1156
- service_towels: boolean | null;
1157
- cleaning_costs: number | null;
1158
- deposit_costs: number | null;
1159
- prepayment: number | null;
1160
- fee: number | null;
1161
- tax_vat: number | null;
1162
- tax_other: number | null;
1163
- tax_other_type: string | null;
1164
- minimal_nights: number | null;
1165
- maximal_nights: number | null;
1166
- available_start: string | null;
1167
- available_end: string | null;
1168
- check_in: string | null;
1169
- check_out: string | null;
1170
- provider_name: string | null;
1171
- created_at: string;
1172
- updated_at: string;
1173
- external_id?: number | undefined;
1174
- images?: {
1175
- id: number;
1176
- alt: string;
1177
- small_url: string;
1178
- medium_url: string;
1179
- large_url: string;
1180
- srcset: string;
1181
- url: string;
1182
- }[] | undefined;
1183
- }[];
1184
- }>;
309
+ }, z.core.$strip>>;
310
+ }, z.core.$strip>;
1185
311
  declare const PropertyPageSettingsSchema: z.ZodObject<{
1186
312
  routing: z.ZodObject<{
1187
313
  base_url: z.ZodString;
1188
- }, "strip", z.ZodTypeAny, {
1189
- base_url: string;
1190
- }, {
1191
- base_url: string;
1192
- }>;
314
+ }, z.core.$strip>;
1193
315
  index: z.ZodObject<{
1194
316
  seo: z.ZodObject<{
1195
317
  title: z.ZodString;
1196
318
  description: z.ZodString;
1197
319
  openGraphTitle: z.ZodOptional<z.ZodString>;
1198
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1199
- }, "strip", z.ZodTypeAny, {
1200
- description: string;
1201
- title: string;
1202
- tags?: string[] | undefined;
1203
- openGraphTitle?: string | undefined;
1204
- }, {
1205
- description: string;
1206
- title: string;
1207
- tags?: string[] | undefined;
1208
- openGraphTitle?: string | undefined;
1209
- }>;
1210
- }, "strip", z.ZodTypeAny, {
1211
- seo: {
1212
- description: string;
1213
- title: string;
1214
- tags?: string[] | undefined;
1215
- openGraphTitle?: string | undefined;
1216
- };
1217
- }, {
1218
- seo: {
1219
- description: string;
1220
- title: string;
1221
- tags?: string[] | undefined;
1222
- openGraphTitle?: string | undefined;
1223
- };
1224
- }>;
320
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
321
+ }, z.core.$strip>;
322
+ }, z.core.$strip>;
1225
323
  show: z.ZodOptional<z.ZodObject<{
1226
324
  hero: z.ZodOptional<z.ZodObject<{
1227
325
  provider: z.ZodOptional<z.ZodBoolean>;
1228
326
  address: z.ZodOptional<z.ZodBoolean>;
1229
- }, "strip", z.ZodTypeAny, {
1230
- address?: boolean | undefined;
1231
- provider?: boolean | undefined;
1232
- }, {
1233
- address?: boolean | undefined;
1234
- provider?: boolean | undefined;
1235
- }>>;
327
+ }, z.core.$strip>>;
1236
328
  cancellation_policy: z.ZodOptional<z.ZodObject<{
1237
329
  description: z.ZodString;
1238
- }, "strip", z.ZodTypeAny, {
1239
- description: string;
1240
- }, {
1241
- description: string;
1242
- }>>;
330
+ }, z.core.$strip>>;
1243
331
  related_properties: z.ZodOptional<z.ZodObject<{
1244
332
  title: z.ZodString;
1245
- }, "strip", z.ZodTypeAny, {
1246
- title: string;
1247
- }, {
1248
- title: string;
1249
- }>>;
1250
- }, "strip", z.ZodTypeAny, {
1251
- hero?: {
1252
- address?: boolean | undefined;
1253
- provider?: boolean | undefined;
1254
- } | undefined;
1255
- cancellation_policy?: {
1256
- description: string;
1257
- } | undefined;
1258
- related_properties?: {
1259
- title: string;
1260
- } | undefined;
1261
- }, {
1262
- hero?: {
1263
- address?: boolean | undefined;
1264
- provider?: boolean | undefined;
1265
- } | undefined;
1266
- cancellation_policy?: {
1267
- description: string;
1268
- } | undefined;
1269
- related_properties?: {
1270
- title: string;
1271
- } | undefined;
1272
- }>>;
1273
- }, "strip", z.ZodTypeAny, {
1274
- routing: {
1275
- base_url: string;
1276
- };
1277
- index: {
1278
- seo: {
1279
- description: string;
1280
- title: string;
1281
- tags?: string[] | undefined;
1282
- openGraphTitle?: string | undefined;
1283
- };
1284
- };
1285
- show?: {
1286
- hero?: {
1287
- address?: boolean | undefined;
1288
- provider?: boolean | undefined;
1289
- } | undefined;
1290
- cancellation_policy?: {
1291
- description: string;
1292
- } | undefined;
1293
- related_properties?: {
1294
- title: string;
1295
- } | undefined;
1296
- } | undefined;
1297
- }, {
1298
- routing: {
1299
- base_url: string;
1300
- };
1301
- index: {
1302
- seo: {
1303
- description: string;
1304
- title: string;
1305
- tags?: string[] | undefined;
1306
- openGraphTitle?: string | undefined;
1307
- };
1308
- };
1309
- show?: {
1310
- hero?: {
1311
- address?: boolean | undefined;
1312
- provider?: boolean | undefined;
1313
- } | undefined;
1314
- cancellation_policy?: {
1315
- description: string;
1316
- } | undefined;
1317
- related_properties?: {
1318
- title: string;
1319
- } | undefined;
1320
- } | undefined;
1321
- }>;
333
+ }, z.core.$strip>>;
334
+ }, z.core.$strip>>;
335
+ }, z.core.$strip>;
1322
336
  type PropertyImage = z.infer<typeof PropertyImageSchema>;
1323
337
  type Property = z.infer<typeof PropertySchema>;
1324
338
  type Availability = z.infer<typeof AvailabilitySchema>;
@@ -1332,48 +346,14 @@ declare const PageSchema: z.ZodObject<{
1332
346
  title: z.ZodNullable<z.ZodString>;
1333
347
  description: z.ZodNullable<z.ZodString>;
1334
348
  content: z.ZodNullable<z.ZodString>;
1335
- sections: z.ZodArray<z.ZodAny, "many">;
349
+ sections: z.ZodArray<z.ZodAny>;
1336
350
  seo: z.ZodObject<{
1337
351
  title: z.ZodString;
1338
352
  description: z.ZodString;
1339
353
  image: z.ZodNullable<z.ZodString>;
1340
- }, "strip", z.ZodTypeAny, {
1341
- description: string;
1342
- title: string;
1343
- image: string | null;
1344
- }, {
1345
- description: string;
1346
- title: string;
1347
- image: string | null;
1348
- }>;
354
+ }, z.core.$strip>;
1349
355
  route_name: z.ZodString;
1350
- }, "strip", z.ZodTypeAny, {
1351
- id: string;
1352
- slug: string;
1353
- description: string | null;
1354
- title: string | null;
1355
- content: string | null;
1356
- sections: any[];
1357
- seo: {
1358
- description: string;
1359
- title: string;
1360
- image: string | null;
1361
- };
1362
- route_name: string;
1363
- }, {
1364
- id: string;
1365
- slug: string;
1366
- description: string | null;
1367
- title: string | null;
1368
- content: string | null;
1369
- sections: any[];
1370
- seo: {
1371
- description: string;
1372
- title: string;
1373
- image: string | null;
1374
- };
1375
- route_name: string;
1376
- }>;
356
+ }, z.core.$strip>;
1377
357
  declare const PostSchema: z.ZodObject<{
1378
358
  id: z.ZodString;
1379
359
  slug: z.ZodString;
@@ -1384,112 +364,34 @@ declare const PostSchema: z.ZodObject<{
1384
364
  author: z.ZodNullable<z.ZodString>;
1385
365
  date: z.ZodString;
1386
366
  image: z.ZodNullable<z.ZodString>;
1387
- tags: z.ZodArray<z.ZodString, "many">;
367
+ tags: z.ZodArray<z.ZodString>;
1388
368
  reading_time: z.ZodNullable<z.ZodString>;
1389
- sections: z.ZodArray<z.ZodAny, "many">;
369
+ sections: z.ZodArray<z.ZodAny>;
1390
370
  seo: z.ZodObject<{
1391
371
  title: z.ZodString;
1392
372
  description: z.ZodString;
1393
373
  image: z.ZodNullable<z.ZodString>;
1394
- }, "strip", z.ZodTypeAny, {
1395
- description: string;
1396
- title: string;
1397
- image: string | null;
1398
- }, {
1399
- description: string;
1400
- title: string;
1401
- image: string | null;
1402
- }>;
374
+ }, z.core.$strip>;
1403
375
  route_name: z.ZodString;
1404
- }, "strip", z.ZodTypeAny, {
1405
- id: string;
1406
- slug: string;
1407
- description: string | null;
1408
- date: string;
1409
- title: string;
1410
- content: string | null;
1411
- sections: any[];
1412
- seo: {
1413
- description: string;
1414
- title: string;
1415
- image: string | null;
1416
- };
1417
- image: string | null;
1418
- route_name: string;
1419
- excerpt: string | null;
1420
- author: string | null;
1421
- tags: string[];
1422
- reading_time: string | null;
1423
- }, {
1424
- id: string;
1425
- slug: string;
1426
- description: string | null;
1427
- date: string;
1428
- title: string;
1429
- content: string | null;
1430
- sections: any[];
1431
- seo: {
1432
- description: string;
1433
- title: string;
1434
- image: string | null;
1435
- };
1436
- image: string | null;
1437
- route_name: string;
1438
- excerpt: string | null;
1439
- author: string | null;
1440
- tags: string[];
1441
- reading_time: string | null;
1442
- }>;
376
+ }, z.core.$strip>;
1443
377
  declare const CategorySchema: z.ZodObject<{
1444
378
  slug: z.ZodString;
1445
379
  name: z.ZodString;
1446
380
  title: z.ZodString;
1447
381
  description: z.ZodNullable<z.ZodString>;
1448
382
  content: z.ZodNullable<z.ZodString>;
1449
- segments: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodNumber]>>;
1450
- }, "strip", z.ZodTypeAny, {
1451
- name: string;
1452
- slug: string;
1453
- description: string | null;
1454
- title: string;
1455
- content: string | null;
1456
- segments?: number | string[] | undefined;
1457
- }, {
1458
- name: string;
1459
- slug: string;
1460
- description: string | null;
1461
- title: string;
1462
- content: string | null;
1463
- segments?: number | string[] | undefined;
1464
- }>;
383
+ segments: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodNumber]>>;
384
+ }, z.core.$strip>;
1465
385
  declare const CategorySegmentSchema: z.ZodObject<{
1466
386
  name: z.ZodString;
1467
387
  slug: z.ZodString;
1468
388
  title: z.ZodString;
1469
389
  description: z.ZodNullable<z.ZodString>;
1470
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1471
- sections: z.ZodArray<z.ZodAny, "many">;
390
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
391
+ sections: z.ZodArray<z.ZodAny>;
1472
392
  content: z.ZodNullable<z.ZodString>;
1473
393
  image: z.ZodString;
1474
- }, "strip", z.ZodTypeAny, {
1475
- name: string;
1476
- slug: string;
1477
- description: string | null;
1478
- title: string;
1479
- content: string | null;
1480
- sections: any[];
1481
- image: string;
1482
- tags?: string[] | undefined;
1483
- }, {
1484
- name: string;
1485
- slug: string;
1486
- description: string | null;
1487
- title: string;
1488
- content: string | null;
1489
- sections: any[];
1490
- image: string;
1491
- tags?: string[] | undefined;
1492
- }>;
394
+ }, z.core.$strip>;
1493
395
  type Page = z.infer<typeof PageSchema>;
1494
396
  type Post = z.infer<typeof PostSchema>;
1495
397
  type Category = z.infer<typeof CategorySchema>;
@@ -1500,60 +402,22 @@ declare const MainSettingsSchema: z.ZodObject<{
1500
402
  name: z.ZodString;
1501
403
  domain: z.ZodString;
1502
404
  locale: z.ZodString;
1503
- }, "strip", z.ZodTypeAny, {
1504
- name: string;
1505
- domain: string;
1506
- locale: string;
1507
- }, {
1508
- name: string;
1509
- domain: string;
1510
- locale: string;
1511
- }>;
405
+ }, z.core.$strip>;
1512
406
  contact: z.ZodObject<{
1513
407
  email: z.ZodString;
1514
408
  phone: z.ZodOptional<z.ZodString>;
1515
- }, "strip", z.ZodTypeAny, {
1516
- email: string;
1517
- phone?: string | undefined;
1518
- }, {
1519
- email: string;
1520
- phone?: string | undefined;
1521
- }>;
409
+ }, z.core.$strip>;
1522
410
  social: z.ZodOptional<z.ZodObject<{
1523
411
  facebook: z.ZodOptional<z.ZodString>;
1524
412
  instagram: z.ZodOptional<z.ZodString>;
1525
- }, "strip", z.ZodTypeAny, {
1526
- facebook?: string | undefined;
1527
- instagram?: string | undefined;
1528
- }, {
1529
- facebook?: string | undefined;
1530
- instagram?: string | undefined;
1531
- }>>;
413
+ }, z.core.$strip>>;
1532
414
  mail: z.ZodOptional<z.ZodObject<{
1533
415
  from: z.ZodObject<{
1534
416
  address: z.ZodString;
1535
417
  name: z.ZodString;
1536
- }, "strip", z.ZodTypeAny, {
1537
- name: string;
1538
- address: string;
1539
- }, {
1540
- name: string;
1541
- address: string;
1542
- }>;
418
+ }, z.core.$strip>;
1543
419
  contact_form_to: z.ZodString;
1544
- }, "strip", z.ZodTypeAny, {
1545
- from: {
1546
- name: string;
1547
- address: string;
1548
- };
1549
- contact_form_to: string;
1550
- }, {
1551
- from: {
1552
- name: string;
1553
- address: string;
1554
- };
1555
- contact_form_to: string;
1556
- }>>;
420
+ }, z.core.$strip>>;
1557
421
  pms: z.ZodOptional<z.ZodObject<{
1558
422
  property_providers: z.ZodArray<z.ZodObject<{
1559
423
  name: z.ZodString;
@@ -1562,489 +426,83 @@ declare const MainSettingsSchema: z.ZodObject<{
1562
426
  base_url: z.ZodOptional<z.ZodString>;
1563
427
  discount: z.ZodOptional<z.ZodNumber>;
1564
428
  enabled: z.ZodOptional<z.ZodBoolean>;
1565
- }, "strip", z.ZodTypeAny, {
1566
- name: string;
1567
- system: string;
1568
- enabled?: boolean | undefined;
1569
- api_key?: string | undefined;
1570
- base_url?: string | undefined;
1571
- discount?: number | undefined;
1572
- }, {
1573
- name: string;
1574
- system: string;
1575
- enabled?: boolean | undefined;
1576
- api_key?: string | undefined;
1577
- base_url?: string | undefined;
1578
- discount?: number | undefined;
1579
- }>, "many">;
1580
- }, "strip", z.ZodTypeAny, {
1581
- property_providers: {
1582
- name: string;
1583
- system: string;
1584
- enabled?: boolean | undefined;
1585
- api_key?: string | undefined;
1586
- base_url?: string | undefined;
1587
- discount?: number | undefined;
1588
- }[];
1589
- }, {
1590
- property_providers: {
1591
- name: string;
1592
- system: string;
1593
- enabled?: boolean | undefined;
1594
- api_key?: string | undefined;
1595
- base_url?: string | undefined;
1596
- discount?: number | undefined;
1597
- }[];
1598
- }>>;
429
+ }, z.core.$strip>>;
430
+ }, z.core.$strip>>;
1599
431
  pricing: z.ZodOptional<z.ZodObject<{
1600
432
  vat: z.ZodNumber;
1601
433
  tourist_tax: z.ZodObject<{
1602
434
  type: z.ZodString;
1603
435
  value: z.ZodNumber;
1604
- }, "strip", z.ZodTypeAny, {
1605
- value: number;
1606
- type: string;
1607
- }, {
1608
- value: number;
1609
- type: string;
1610
- }>;
1611
- }, "strip", z.ZodTypeAny, {
1612
- vat: number;
1613
- tourist_tax: {
1614
- value: number;
1615
- type: string;
1616
- };
1617
- }, {
1618
- vat: number;
1619
- tourist_tax: {
1620
- value: number;
1621
- type: string;
1622
- };
1623
- }>>;
436
+ }, z.core.$strip>;
437
+ }, z.core.$strip>>;
1624
438
  discount: z.ZodOptional<z.ZodNumber>;
1625
- }, "strip", z.ZodTypeAny, {
1626
- site: {
1627
- name: string;
1628
- domain: string;
1629
- locale: string;
1630
- };
1631
- contact: {
1632
- email: string;
1633
- phone?: string | undefined;
1634
- };
1635
- social?: {
1636
- facebook?: string | undefined;
1637
- instagram?: string | undefined;
1638
- } | undefined;
1639
- mail?: {
1640
- from: {
1641
- name: string;
1642
- address: string;
1643
- };
1644
- contact_form_to: string;
1645
- } | undefined;
1646
- discount?: number | undefined;
1647
- pms?: {
1648
- property_providers: {
1649
- name: string;
1650
- system: string;
1651
- enabled?: boolean | undefined;
1652
- api_key?: string | undefined;
1653
- base_url?: string | undefined;
1654
- discount?: number | undefined;
1655
- }[];
1656
- } | undefined;
1657
- pricing?: {
1658
- vat: number;
1659
- tourist_tax: {
1660
- value: number;
1661
- type: string;
1662
- };
1663
- } | undefined;
1664
- }, {
1665
- site: {
1666
- name: string;
1667
- domain: string;
1668
- locale: string;
1669
- };
1670
- contact: {
1671
- email: string;
1672
- phone?: string | undefined;
1673
- };
1674
- social?: {
1675
- facebook?: string | undefined;
1676
- instagram?: string | undefined;
1677
- } | undefined;
1678
- mail?: {
1679
- from: {
1680
- name: string;
1681
- address: string;
1682
- };
1683
- contact_form_to: string;
1684
- } | undefined;
1685
- discount?: number | undefined;
1686
- pms?: {
1687
- property_providers: {
1688
- name: string;
1689
- system: string;
1690
- enabled?: boolean | undefined;
1691
- api_key?: string | undefined;
1692
- base_url?: string | undefined;
1693
- discount?: number | undefined;
1694
- }[];
1695
- } | undefined;
1696
- pricing?: {
1697
- vat: number;
1698
- tourist_tax: {
1699
- value: number;
1700
- type: string;
1701
- };
1702
- } | undefined;
1703
- }>;
439
+ }, z.core.$strip>;
1704
440
  declare const ThemeSettingsSchema: z.ZodObject<{
1705
441
  logo: z.ZodOptional<z.ZodObject<{
1706
442
  path: z.ZodString;
1707
443
  height: z.ZodOptional<z.ZodNumber>;
1708
- }, "strip", z.ZodTypeAny, {
1709
- path: string;
1710
- height?: number | undefined;
1711
- }, {
1712
- path: string;
1713
- height?: number | undefined;
1714
- }>>;
444
+ }, z.core.$strip>>;
1715
445
  favicon_path: z.ZodOptional<z.ZodString>;
1716
446
  colors: z.ZodObject<{
1717
447
  primary: z.ZodString;
1718
448
  secondary: z.ZodString;
1719
- }, "strip", z.ZodTypeAny, {
1720
- primary: string;
1721
- secondary: string;
1722
- }, {
1723
- primary: string;
1724
- secondary: string;
1725
- }>;
449
+ }, z.core.$strip>;
1726
450
  layout: z.ZodOptional<z.ZodObject<{
1727
451
  homepage_style: z.ZodOptional<z.ZodString>;
1728
452
  navigation: z.ZodOptional<z.ZodObject<{
1729
453
  variant: z.ZodOptional<z.ZodString>;
1730
- items: z.ZodArray<z.ZodAny, "many">;
1731
- buttons: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
1732
- }, "strip", z.ZodTypeAny, {
1733
- items: any[];
1734
- variant?: string | undefined;
1735
- buttons?: any[] | undefined;
1736
- }, {
1737
- items: any[];
1738
- variant?: string | undefined;
1739
- buttons?: any[] | undefined;
1740
- }>>;
454
+ items: z.ZodArray<z.ZodAny>;
455
+ buttons: z.ZodOptional<z.ZodArray<z.ZodAny>>;
456
+ }, z.core.$strip>>;
1741
457
  footer: z.ZodOptional<z.ZodObject<{
1742
458
  blog_title: z.ZodOptional<z.ZodString>;
1743
459
  contact_title: z.ZodOptional<z.ZodString>;
1744
- categories: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
1745
- }, "strip", z.ZodTypeAny, {
1746
- blog_title?: string | undefined;
1747
- contact_title?: string | undefined;
1748
- categories?: any[] | undefined;
1749
- }, {
1750
- blog_title?: string | undefined;
1751
- contact_title?: string | undefined;
1752
- categories?: any[] | undefined;
1753
- }>>;
1754
- }, "strip", z.ZodTypeAny, {
1755
- homepage_style?: string | undefined;
1756
- navigation?: {
1757
- items: any[];
1758
- variant?: string | undefined;
1759
- buttons?: any[] | undefined;
1760
- } | undefined;
1761
- footer?: {
1762
- blog_title?: string | undefined;
1763
- contact_title?: string | undefined;
1764
- categories?: any[] | undefined;
1765
- } | undefined;
1766
- }, {
1767
- homepage_style?: string | undefined;
1768
- navigation?: {
1769
- items: any[];
1770
- variant?: string | undefined;
1771
- buttons?: any[] | undefined;
1772
- } | undefined;
1773
- footer?: {
1774
- blog_title?: string | undefined;
1775
- contact_title?: string | undefined;
1776
- categories?: any[] | undefined;
1777
- } | undefined;
1778
- }>>;
1779
- }, "strip", z.ZodTypeAny, {
1780
- colors: {
1781
- primary: string;
1782
- secondary: string;
1783
- };
1784
- logo?: {
1785
- path: string;
1786
- height?: number | undefined;
1787
- } | undefined;
1788
- favicon_path?: string | undefined;
1789
- layout?: {
1790
- homepage_style?: string | undefined;
1791
- navigation?: {
1792
- items: any[];
1793
- variant?: string | undefined;
1794
- buttons?: any[] | undefined;
1795
- } | undefined;
1796
- footer?: {
1797
- blog_title?: string | undefined;
1798
- contact_title?: string | undefined;
1799
- categories?: any[] | undefined;
1800
- } | undefined;
1801
- } | undefined;
1802
- }, {
1803
- colors: {
1804
- primary: string;
1805
- secondary: string;
1806
- };
1807
- logo?: {
1808
- path: string;
1809
- height?: number | undefined;
1810
- } | undefined;
1811
- favicon_path?: string | undefined;
1812
- layout?: {
1813
- homepage_style?: string | undefined;
1814
- navigation?: {
1815
- items: any[];
1816
- variant?: string | undefined;
1817
- buttons?: any[] | undefined;
1818
- } | undefined;
1819
- footer?: {
1820
- blog_title?: string | undefined;
1821
- contact_title?: string | undefined;
1822
- categories?: any[] | undefined;
1823
- } | undefined;
1824
- } | undefined;
1825
- }>;
460
+ categories: z.ZodOptional<z.ZodArray<z.ZodAny>>;
461
+ }, z.core.$strip>>;
462
+ }, z.core.$strip>>;
463
+ }, z.core.$strip>;
1826
464
  declare const PropertySettingsSchema: z.ZodObject<{
1827
- routing: z.ZodObject<{
1828
- base_url: z.ZodString;
1829
- }, "strip", z.ZodTypeAny, {
1830
- base_url: string;
1831
- }, {
1832
- base_url: string;
1833
- }>;
465
+ routing: z.ZodObject<{
466
+ base_url: z.ZodString;
467
+ }, z.core.$strip>;
1834
468
  seo: z.ZodOptional<z.ZodObject<{
1835
469
  title: z.ZodString;
1836
470
  description: z.ZodString;
1837
471
  openGraphTitle: z.ZodOptional<z.ZodString>;
1838
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1839
- }, "strip", z.ZodTypeAny, {
1840
- description: string;
1841
- title: string;
1842
- tags?: string[] | undefined;
1843
- openGraphTitle?: string | undefined;
1844
- }, {
1845
- description: string;
1846
- title: string;
1847
- tags?: string[] | undefined;
1848
- openGraphTitle?: string | undefined;
1849
- }>>;
472
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
473
+ }, z.core.$strip>>;
1850
474
  index: z.ZodObject<{
1851
475
  seo: z.ZodObject<{
1852
476
  title: z.ZodString;
1853
477
  description: z.ZodString;
1854
478
  openGraphTitle: z.ZodOptional<z.ZodString>;
1855
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1856
- }, "strip", z.ZodTypeAny, {
1857
- description: string;
1858
- title: string;
1859
- tags?: string[] | undefined;
1860
- openGraphTitle?: string | undefined;
1861
- }, {
1862
- description: string;
1863
- title: string;
1864
- tags?: string[] | undefined;
1865
- openGraphTitle?: string | undefined;
1866
- }>;
1867
- }, "strip", z.ZodTypeAny, {
1868
- seo: {
1869
- description: string;
1870
- title: string;
1871
- tags?: string[] | undefined;
1872
- openGraphTitle?: string | undefined;
1873
- };
1874
- }, {
1875
- seo: {
1876
- description: string;
1877
- title: string;
1878
- tags?: string[] | undefined;
1879
- openGraphTitle?: string | undefined;
1880
- };
1881
- }>;
479
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
480
+ }, z.core.$strip>;
481
+ }, z.core.$strip>;
1882
482
  show: z.ZodOptional<z.ZodObject<{
1883
483
  hero: z.ZodOptional<z.ZodObject<{
1884
484
  provider: z.ZodOptional<z.ZodBoolean>;
1885
485
  address: z.ZodOptional<z.ZodBoolean>;
1886
- }, "strip", z.ZodTypeAny, {
1887
- address?: boolean | undefined;
1888
- provider?: boolean | undefined;
1889
- }, {
1890
- address?: boolean | undefined;
1891
- provider?: boolean | undefined;
1892
- }>>;
486
+ }, z.core.$strip>>;
1893
487
  cancellation_policy: z.ZodOptional<z.ZodObject<{
1894
488
  description: z.ZodString;
1895
- }, "strip", z.ZodTypeAny, {
1896
- description: string;
1897
- }, {
1898
- description: string;
1899
- }>>;
489
+ }, z.core.$strip>>;
1900
490
  related_properties: z.ZodOptional<z.ZodObject<{
1901
491
  title: z.ZodString;
1902
- }, "strip", z.ZodTypeAny, {
1903
- title: string;
1904
- }, {
1905
- title: string;
1906
- }>>;
1907
- }, "strip", z.ZodTypeAny, {
1908
- hero?: {
1909
- address?: boolean | undefined;
1910
- provider?: boolean | undefined;
1911
- } | undefined;
1912
- cancellation_policy?: {
1913
- description: string;
1914
- } | undefined;
1915
- related_properties?: {
1916
- title: string;
1917
- } | undefined;
1918
- }, {
1919
- hero?: {
1920
- address?: boolean | undefined;
1921
- provider?: boolean | undefined;
1922
- } | undefined;
1923
- cancellation_policy?: {
1924
- description: string;
1925
- } | undefined;
1926
- related_properties?: {
1927
- title: string;
1928
- } | undefined;
1929
- }>>;
1930
- }, "strip", z.ZodTypeAny, {
1931
- routing: {
1932
- base_url: string;
1933
- };
1934
- index: {
1935
- seo: {
1936
- description: string;
1937
- title: string;
1938
- tags?: string[] | undefined;
1939
- openGraphTitle?: string | undefined;
1940
- };
1941
- };
1942
- seo?: {
1943
- description: string;
1944
- title: string;
1945
- tags?: string[] | undefined;
1946
- openGraphTitle?: string | undefined;
1947
- } | undefined;
1948
- show?: {
1949
- hero?: {
1950
- address?: boolean | undefined;
1951
- provider?: boolean | undefined;
1952
- } | undefined;
1953
- cancellation_policy?: {
1954
- description: string;
1955
- } | undefined;
1956
- related_properties?: {
1957
- title: string;
1958
- } | undefined;
1959
- } | undefined;
1960
- }, {
1961
- routing: {
1962
- base_url: string;
1963
- };
1964
- index: {
1965
- seo: {
1966
- description: string;
1967
- title: string;
1968
- tags?: string[] | undefined;
1969
- openGraphTitle?: string | undefined;
1970
- };
1971
- };
1972
- seo?: {
1973
- description: string;
1974
- title: string;
1975
- tags?: string[] | undefined;
1976
- openGraphTitle?: string | undefined;
1977
- } | undefined;
1978
- show?: {
1979
- hero?: {
1980
- address?: boolean | undefined;
1981
- provider?: boolean | undefined;
1982
- } | undefined;
1983
- cancellation_policy?: {
1984
- description: string;
1985
- } | undefined;
1986
- related_properties?: {
1987
- title: string;
1988
- } | undefined;
1989
- } | undefined;
1990
- }>;
492
+ }, z.core.$strip>>;
493
+ }, z.core.$strip>>;
494
+ }, z.core.$strip>;
1991
495
  declare const BookingSettingsSchema: z.ZodObject<{
1992
496
  booking_confirmation: z.ZodOptional<z.ZodObject<{
1993
497
  sections: z.ZodOptional<z.ZodObject<{
1994
498
  arrival_description: z.ZodOptional<z.ZodBoolean>;
1995
- }, "strip", z.ZodTypeAny, {
1996
- arrival_description?: boolean | undefined;
1997
- }, {
1998
- arrival_description?: boolean | undefined;
1999
- }>>;
499
+ }, z.core.$strip>>;
2000
500
  content: z.ZodOptional<z.ZodObject<{
2001
501
  body: z.ZodOptional<z.ZodString>;
2002
502
  help: z.ZodOptional<z.ZodString>;
2003
- }, "strip", z.ZodTypeAny, {
2004
- body?: string | undefined;
2005
- help?: string | undefined;
2006
- }, {
2007
- body?: string | undefined;
2008
- help?: string | undefined;
2009
- }>>;
2010
- }, "strip", z.ZodTypeAny, {
2011
- content?: {
2012
- body?: string | undefined;
2013
- help?: string | undefined;
2014
- } | undefined;
2015
- sections?: {
2016
- arrival_description?: boolean | undefined;
2017
- } | undefined;
2018
- }, {
2019
- content?: {
2020
- body?: string | undefined;
2021
- help?: string | undefined;
2022
- } | undefined;
2023
- sections?: {
2024
- arrival_description?: boolean | undefined;
2025
- } | undefined;
2026
- }>>;
2027
- }, "strip", z.ZodTypeAny, {
2028
- booking_confirmation?: {
2029
- content?: {
2030
- body?: string | undefined;
2031
- help?: string | undefined;
2032
- } | undefined;
2033
- sections?: {
2034
- arrival_description?: boolean | undefined;
2035
- } | undefined;
2036
- } | undefined;
2037
- }, {
2038
- booking_confirmation?: {
2039
- content?: {
2040
- body?: string | undefined;
2041
- help?: string | undefined;
2042
- } | undefined;
2043
- sections?: {
2044
- arrival_description?: boolean | undefined;
2045
- } | undefined;
2046
- } | undefined;
2047
- }>;
503
+ }, z.core.$strip>>;
504
+ }, z.core.$strip>>;
505
+ }, z.core.$strip>;
2048
506
  type MainSettings = z.infer<typeof MainSettingsSchema>;
2049
507
  type ThemeSettings = z.infer<typeof ThemeSettingsSchema>;
2050
508
  type PropertySettings = z.infer<typeof PropertySettingsSchema>;
@@ -2061,69 +519,34 @@ declare const BookingRequestSchema: z.ZodObject<{
2061
519
  phone: z.ZodOptional<z.ZodString>;
2062
520
  notes: z.ZodOptional<z.ZodString>;
2063
521
  total_amount: z.ZodNumber;
2064
- payment_method: z.ZodOptional<z.ZodEnum<["stripe", "cash", "bank_transfer"]>>;
2065
- }, "strip", z.ZodTypeAny, {
2066
- check_in: string;
2067
- check_out: string;
2068
- email: string;
2069
- guests: number;
2070
- property_id: number;
2071
- first_name: string;
2072
- last_name: string;
2073
- total_amount: number;
2074
- phone?: string | undefined;
2075
- notes?: string | undefined;
2076
- payment_method?: "stripe" | "cash" | "bank_transfer" | undefined;
2077
- }, {
2078
- check_in: string;
2079
- check_out: string;
2080
- email: string;
2081
- guests: number;
2082
- property_id: number;
2083
- first_name: string;
2084
- last_name: string;
2085
- total_amount: number;
2086
- phone?: string | undefined;
2087
- notes?: string | undefined;
2088
- payment_method?: "stripe" | "cash" | "bank_transfer" | undefined;
2089
- }>;
522
+ payment_method: z.ZodOptional<z.ZodEnum<{
523
+ stripe: "stripe";
524
+ cash: "cash";
525
+ bank_transfer: "bank_transfer";
526
+ }>>;
527
+ }, z.core.$strip>;
2090
528
  declare const BookingResponseSchema: z.ZodObject<{
2091
529
  id: z.ZodString;
2092
530
  property_id: z.ZodNumber;
2093
531
  check_in: z.ZodString;
2094
532
  check_out: z.ZodString;
2095
533
  guests: z.ZodNumber;
2096
- status: z.ZodEnum<["pending", "confirmed", "cancelled", "completed"]>;
534
+ status: z.ZodEnum<{
535
+ pending: "pending";
536
+ confirmed: "confirmed";
537
+ cancelled: "cancelled";
538
+ completed: "completed";
539
+ }>;
2097
540
  total_amount: z.ZodNumber;
2098
- payment_status: z.ZodEnum<["pending", "paid", "refunded"]>;
541
+ payment_status: z.ZodEnum<{
542
+ pending: "pending";
543
+ paid: "paid";
544
+ refunded: "refunded";
545
+ }>;
2099
546
  confirmation_code: z.ZodString;
2100
547
  created_at: z.ZodString;
2101
548
  updated_at: z.ZodString;
2102
- }, "strip", z.ZodTypeAny, {
2103
- status: "pending" | "confirmed" | "cancelled" | "completed";
2104
- id: string;
2105
- check_in: string;
2106
- check_out: string;
2107
- created_at: string;
2108
- updated_at: string;
2109
- guests: number;
2110
- property_id: number;
2111
- total_amount: number;
2112
- payment_status: "pending" | "paid" | "refunded";
2113
- confirmation_code: string;
2114
- }, {
2115
- status: "pending" | "confirmed" | "cancelled" | "completed";
2116
- id: string;
2117
- check_in: string;
2118
- check_out: string;
2119
- created_at: string;
2120
- updated_at: string;
2121
- guests: number;
2122
- property_id: number;
2123
- total_amount: number;
2124
- payment_status: "pending" | "paid" | "refunded";
2125
- confirmation_code: string;
2126
- }>;
549
+ }, z.core.$strip>;
2127
550
  type BookingRequest = z.infer<typeof BookingRequestSchema>;
2128
551
  type BookingResponse = z.infer<typeof BookingResponseSchema>;
2129
552
 
@@ -2135,50 +558,12 @@ declare const MoreApartmentsConfigSchema: z.ZodObject<{
2135
558
  retry: z.ZodOptional<z.ZodObject<{
2136
559
  attempts: z.ZodNumber;
2137
560
  delay: z.ZodNumber;
2138
- }, "strip", z.ZodTypeAny, {
2139
- attempts: number;
2140
- delay: number;
2141
- }, {
2142
- attempts: number;
2143
- delay: number;
2144
- }>>;
561
+ }, z.core.$strip>>;
2145
562
  cache: z.ZodOptional<z.ZodObject<{
2146
563
  enabled: z.ZodBoolean;
2147
564
  ttl: z.ZodNumber;
2148
- }, "strip", z.ZodTypeAny, {
2149
- enabled: boolean;
2150
- ttl: number;
2151
- }, {
2152
- enabled: boolean;
2153
- ttl: number;
2154
- }>>;
2155
- }, "strip", z.ZodTypeAny, {
2156
- baseUrl?: string | undefined;
2157
- apiKey?: string | undefined;
2158
- instance?: string | undefined;
2159
- timeout?: number | undefined;
2160
- retry?: {
2161
- attempts: number;
2162
- delay: number;
2163
- } | undefined;
2164
- cache?: {
2165
- enabled: boolean;
2166
- ttl: number;
2167
- } | undefined;
2168
- }, {
2169
- baseUrl?: string | undefined;
2170
- apiKey?: string | undefined;
2171
- instance?: string | undefined;
2172
- timeout?: number | undefined;
2173
- retry?: {
2174
- attempts: number;
2175
- delay: number;
2176
- } | undefined;
2177
- cache?: {
2178
- enabled: boolean;
2179
- ttl: number;
2180
- } | undefined;
2181
- }>;
565
+ }, z.core.$strip>>;
566
+ }, z.core.$strip>;
2182
567
  type MoreApartmentsConfig = z.infer<typeof MoreApartmentsConfigSchema>;
2183
568
 
2184
569
  declare class MoreApartmentsClient {
@@ -2353,9 +738,8 @@ declare function fetchProperties(client: MoreApartmentsClient, params?: {
2353
738
  page?: number;
2354
739
  per_page?: number;
2355
740
  }): Promise<PaginatedResponse<{
2356
- type: string | null;
2357
- status: string | null;
2358
741
  id: number;
742
+ external_id: string | null;
2359
743
  name: string;
2360
744
  slug: string;
2361
745
  short_description: string | null;
@@ -2363,13 +747,14 @@ declare function fetchProperties(client: MoreApartmentsClient, params?: {
2363
747
  area_description: string | null;
2364
748
  arrival_description: string | null;
2365
749
  payment_description: string | null;
750
+ type: string | null;
2366
751
  max_persons: number | null;
2367
752
  bedrooms: number | null;
2368
753
  bathrooms: number | null;
2369
754
  toilets: number | null;
2370
755
  size: number | null;
2371
756
  floor: number | null;
2372
- stairs: number | null;
757
+ stairs: boolean | null;
2373
758
  street: string | null;
2374
759
  zipcode: string | null;
2375
760
  area: string | null;
@@ -2382,54 +767,54 @@ declare function fetchProperties(client: MoreApartmentsClient, params?: {
2382
767
  single_sofa: number | null;
2383
768
  double_sofa: number | null;
2384
769
  single_bunk: number | null;
2385
- balcony: boolean | null;
2386
- patio: number | null;
2387
- garden: number | null;
2388
- roof_terrace: number | null;
770
+ balcony: boolean;
771
+ patio: boolean | null;
772
+ garden: boolean | null;
773
+ roof_terrace: boolean | null;
2389
774
  view: string | null;
2390
- airco: boolean | null;
2391
- fans: boolean | null;
2392
- heating: boolean | null;
775
+ airco: boolean;
776
+ fans: boolean;
777
+ heating: boolean;
2393
778
  internet: string | null;
2394
779
  internet_connection: string | null;
2395
- tv: number | null;
780
+ tv: string | null;
2396
781
  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;
782
+ dvd: string | null;
783
+ computer: boolean;
784
+ printer: boolean;
785
+ dishwasher: boolean;
786
+ oven: boolean;
787
+ microwave: boolean;
2403
788
  grill: number | null;
2404
789
  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;
790
+ fridge: boolean;
791
+ freezer: boolean;
792
+ toaster: boolean;
793
+ kettle: boolean;
794
+ coffeemachine: boolean;
795
+ washingmachine: boolean;
796
+ dryer: boolean;
797
+ iron: boolean;
798
+ bathtub: boolean;
799
+ jacuzzi: boolean;
800
+ shower_regular: boolean;
801
+ shower_steam: boolean;
802
+ hairdryer: boolean;
803
+ swimmingpool: string | null;
804
+ sauna: string | null;
805
+ parking: string | null;
806
+ elevator: boolean | null;
807
+ entresol: boolean;
808
+ wheelchair_friendly: boolean;
809
+ smoking_allowed: boolean;
810
+ pets_allowed: boolean;
811
+ supplies_coffee: boolean;
812
+ supplies_tea: boolean;
813
+ supplies_milk: boolean;
814
+ supplies_sugar: boolean;
815
+ supplies_dishwasher_tablets: boolean;
816
+ service_linen: boolean;
817
+ service_towels: boolean;
2433
818
  cleaning_costs: number | null;
2434
819
  deposit_costs: number | null;
2435
820
  prepayment: number | null;
@@ -2443,10 +828,11 @@ declare function fetchProperties(client: MoreApartmentsClient, params?: {
2443
828
  available_end: string | null;
2444
829
  check_in: string | null;
2445
830
  check_out: string | null;
831
+ status: string | null;
2446
832
  provider_name: string | null;
2447
833
  created_at: string;
2448
834
  updated_at: string;
2449
- external_id?: number | undefined;
835
+ min_rate?: number | null | undefined;
2450
836
  images?: {
2451
837
  id: number;
2452
838
  alt: string;
@@ -2474,9 +860,8 @@ declare function fetchProperties(client: MoreApartmentsClient, params?: {
2474
860
  * ```
2475
861
  */
2476
862
  declare function fetchProperty(client: MoreApartmentsClient, idOrSlug: number | string): Promise<{
2477
- type: string | null;
2478
- status: string | null;
2479
863
  id: number;
864
+ external_id: string | null;
2480
865
  name: string;
2481
866
  slug: string;
2482
867
  short_description: string | null;
@@ -2484,13 +869,14 @@ declare function fetchProperty(client: MoreApartmentsClient, idOrSlug: number |
2484
869
  area_description: string | null;
2485
870
  arrival_description: string | null;
2486
871
  payment_description: string | null;
872
+ type: string | null;
2487
873
  max_persons: number | null;
2488
874
  bedrooms: number | null;
2489
875
  bathrooms: number | null;
2490
876
  toilets: number | null;
2491
877
  size: number | null;
2492
878
  floor: number | null;
2493
- stairs: number | null;
879
+ stairs: boolean | null;
2494
880
  street: string | null;
2495
881
  zipcode: string | null;
2496
882
  area: string | null;
@@ -2503,54 +889,54 @@ declare function fetchProperty(client: MoreApartmentsClient, idOrSlug: number |
2503
889
  single_sofa: number | null;
2504
890
  double_sofa: number | null;
2505
891
  single_bunk: number | null;
2506
- balcony: boolean | null;
2507
- patio: number | null;
2508
- garden: number | null;
2509
- roof_terrace: number | null;
892
+ balcony: boolean;
893
+ patio: boolean | null;
894
+ garden: boolean | null;
895
+ roof_terrace: boolean | null;
2510
896
  view: string | null;
2511
- airco: boolean | null;
2512
- fans: boolean | null;
2513
- heating: boolean | null;
897
+ airco: boolean;
898
+ fans: boolean;
899
+ heating: boolean;
2514
900
  internet: string | null;
2515
901
  internet_connection: string | null;
2516
- tv: number | null;
902
+ tv: string | null;
2517
903
  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;
904
+ dvd: string | null;
905
+ computer: boolean;
906
+ printer: boolean;
907
+ dishwasher: boolean;
908
+ oven: boolean;
909
+ microwave: boolean;
2524
910
  grill: number | null;
2525
911
  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;
912
+ fridge: boolean;
913
+ freezer: boolean;
914
+ toaster: boolean;
915
+ kettle: boolean;
916
+ coffeemachine: boolean;
917
+ washingmachine: boolean;
918
+ dryer: boolean;
919
+ iron: boolean;
920
+ bathtub: boolean;
921
+ jacuzzi: boolean;
922
+ shower_regular: boolean;
923
+ shower_steam: boolean;
924
+ hairdryer: boolean;
925
+ swimmingpool: string | null;
926
+ sauna: string | null;
927
+ parking: string | null;
928
+ elevator: boolean | null;
929
+ entresol: boolean;
930
+ wheelchair_friendly: boolean;
931
+ smoking_allowed: boolean;
932
+ pets_allowed: boolean;
933
+ supplies_coffee: boolean;
934
+ supplies_tea: boolean;
935
+ supplies_milk: boolean;
936
+ supplies_sugar: boolean;
937
+ supplies_dishwasher_tablets: boolean;
938
+ service_linen: boolean;
939
+ service_towels: boolean;
2554
940
  cleaning_costs: number | null;
2555
941
  deposit_costs: number | null;
2556
942
  prepayment: number | null;
@@ -2564,10 +950,11 @@ declare function fetchProperty(client: MoreApartmentsClient, idOrSlug: number |
2564
950
  available_end: string | null;
2565
951
  check_in: string | null;
2566
952
  check_out: string | null;
953
+ status: string | null;
2567
954
  provider_name: string | null;
2568
955
  created_at: string;
2569
956
  updated_at: string;
2570
- external_id?: number | undefined;
957
+ min_rate?: number | null | undefined;
2571
958
  images?: {
2572
959
  id: number;
2573
960
  alt: string;
@@ -2594,9 +981,9 @@ declare function fetchProperty(client: MoreApartmentsClient, idOrSlug: number |
2594
981
  */
2595
982
  declare function fetchAvailability(client: MoreApartmentsClient, propertySlug: string, startDate: string, endDate: string): Promise<{
2596
983
  days: Record<string, {
2597
- date: string;
2598
984
  available: boolean;
2599
985
  morning_available: boolean;
986
+ date: string;
2600
987
  day: number;
2601
988
  stay_minimum: number;
2602
989
  }>;
@@ -2609,13 +996,13 @@ declare function fetchAvailability(client: MoreApartmentsClient, propertySlug: s
2609
996
  declare function fetchPages(client: MoreApartmentsClient): Promise<{
2610
997
  id: string;
2611
998
  slug: string;
2612
- description: string | null;
2613
999
  title: string | null;
1000
+ description: string | null;
2614
1001
  content: string | null;
2615
1002
  sections: any[];
2616
1003
  seo: {
2617
- description: string;
2618
1004
  title: string;
1005
+ description: string;
2619
1006
  image: string | null;
2620
1007
  };
2621
1008
  route_name: string;
@@ -2629,13 +1016,13 @@ declare function fetchPages(client: MoreApartmentsClient): Promise<{
2629
1016
  declare function fetchPage(client: MoreApartmentsClient, slug: string): Promise<{
2630
1017
  id: string;
2631
1018
  slug: string;
2632
- description: string | null;
2633
1019
  title: string | null;
1020
+ description: string | null;
2634
1021
  content: string | null;
2635
1022
  sections: any[];
2636
1023
  seo: {
2637
- description: string;
2638
1024
  title: string;
1025
+ description: string;
2639
1026
  image: string | null;
2640
1027
  };
2641
1028
  route_name: string;
@@ -2653,22 +1040,22 @@ declare function fetchPosts(client: MoreApartmentsClient, params?: {
2653
1040
  }): Promise<{
2654
1041
  id: string;
2655
1042
  slug: string;
2656
- description: string | null;
2657
- date: string;
2658
1043
  title: string;
1044
+ description: string | null;
2659
1045
  content: string | null;
1046
+ excerpt: string | null;
1047
+ author: string | null;
1048
+ date: string;
1049
+ image: string | null;
1050
+ tags: string[];
1051
+ reading_time: string | null;
2660
1052
  sections: any[];
2661
1053
  seo: {
2662
- description: string;
2663
1054
  title: string;
1055
+ description: string;
2664
1056
  image: string | null;
2665
1057
  };
2666
- image: string | null;
2667
1058
  route_name: string;
2668
- excerpt: string | null;
2669
- author: string | null;
2670
- tags: string[];
2671
- reading_time: string | null;
2672
1059
  }[] | {
2673
1060
  data: never[];
2674
1061
  links: {};
@@ -2683,22 +1070,22 @@ declare function fetchPosts(client: MoreApartmentsClient, params?: {
2683
1070
  declare function fetchPost(client: MoreApartmentsClient, slug: string): Promise<{
2684
1071
  id: string;
2685
1072
  slug: string;
2686
- description: string | null;
2687
- date: string;
2688
1073
  title: string;
1074
+ description: string | null;
2689
1075
  content: string | null;
1076
+ excerpt: string | null;
1077
+ author: string | null;
1078
+ date: string;
1079
+ image: string | null;
1080
+ tags: string[];
1081
+ reading_time: string | null;
2690
1082
  sections: any[];
2691
1083
  seo: {
2692
- description: string;
2693
1084
  title: string;
1085
+ description: string;
2694
1086
  image: string | null;
2695
1087
  };
2696
- image: string | null;
2697
1088
  route_name: string;
2698
- excerpt: string | null;
2699
- author: string | null;
2700
- tags: string[];
2701
- reading_time: string | null;
2702
1089
  } | null>;
2703
1090
  /**
2704
1091
  * Fetch settings by type with error handling
@@ -2729,29 +1116,29 @@ declare function fetchSettings(client: MoreApartmentsClient, type: 'main' | 'the
2729
1116
  } | undefined;
2730
1117
  mail?: {
2731
1118
  from: {
2732
- name: string;
2733
1119
  address: string;
1120
+ name: string;
2734
1121
  };
2735
1122
  contact_form_to: string;
2736
1123
  } | undefined;
2737
- discount?: number | undefined;
2738
1124
  pms?: {
2739
1125
  property_providers: {
2740
1126
  name: string;
2741
1127
  system: string;
2742
- enabled?: boolean | undefined;
2743
1128
  api_key?: string | undefined;
2744
1129
  base_url?: string | undefined;
2745
1130
  discount?: number | undefined;
1131
+ enabled?: boolean | undefined;
2746
1132
  }[];
2747
1133
  } | undefined;
2748
1134
  pricing?: {
2749
1135
  vat: number;
2750
1136
  tourist_tax: {
2751
- value: number;
2752
1137
  type: string;
1138
+ value: number;
2753
1139
  };
2754
1140
  } | undefined;
1141
+ discount?: number | undefined;
2755
1142
  } | {
2756
1143
  colors: {
2757
1144
  primary: string;
@@ -2781,22 +1168,22 @@ declare function fetchSettings(client: MoreApartmentsClient, type: 'main' | 'the
2781
1168
  };
2782
1169
  index: {
2783
1170
  seo: {
2784
- description: string;
2785
1171
  title: string;
2786
- tags?: string[] | undefined;
1172
+ description: string;
2787
1173
  openGraphTitle?: string | undefined;
1174
+ tags?: string[] | undefined;
2788
1175
  };
2789
1176
  };
2790
1177
  seo?: {
2791
- description: string;
2792
1178
  title: string;
2793
- tags?: string[] | undefined;
1179
+ description: string;
2794
1180
  openGraphTitle?: string | undefined;
1181
+ tags?: string[] | undefined;
2795
1182
  } | undefined;
2796
1183
  show?: {
2797
1184
  hero?: {
2798
- address?: boolean | undefined;
2799
1185
  provider?: boolean | undefined;
1186
+ address?: boolean | undefined;
2800
1187
  } | undefined;
2801
1188
  cancellation_policy?: {
2802
1189
  description: string;
@@ -2807,13 +1194,13 @@ declare function fetchSettings(client: MoreApartmentsClient, type: 'main' | 'the
2807
1194
  } | undefined;
2808
1195
  } | {
2809
1196
  booking_confirmation?: {
1197
+ sections?: {
1198
+ arrival_description?: boolean | undefined;
1199
+ } | undefined;
2810
1200
  content?: {
2811
1201
  body?: string | undefined;
2812
1202
  help?: string | undefined;
2813
1203
  } | undefined;
2814
- sections?: {
2815
- arrival_description?: boolean | undefined;
2816
- } | undefined;
2817
1204
  } | undefined;
2818
1205
  } | null>;
2819
1206
  /**
@@ -2834,9 +1221,8 @@ declare function generateBookingUrl(propertyExternalId: number, arrival: string,
2834
1221
  * @returns Array of matching properties
2835
1222
  */
2836
1223
  declare function searchProperties(client: MoreApartmentsClient, params: PropertySearchParams): Promise<{
2837
- type: string | null;
2838
- status: string | null;
2839
1224
  id: number;
1225
+ external_id: string | null;
2840
1226
  name: string;
2841
1227
  slug: string;
2842
1228
  short_description: string | null;
@@ -2844,13 +1230,14 @@ declare function searchProperties(client: MoreApartmentsClient, params: Property
2844
1230
  area_description: string | null;
2845
1231
  arrival_description: string | null;
2846
1232
  payment_description: string | null;
1233
+ type: string | null;
2847
1234
  max_persons: number | null;
2848
1235
  bedrooms: number | null;
2849
1236
  bathrooms: number | null;
2850
1237
  toilets: number | null;
2851
1238
  size: number | null;
2852
1239
  floor: number | null;
2853
- stairs: number | null;
1240
+ stairs: boolean | null;
2854
1241
  street: string | null;
2855
1242
  zipcode: string | null;
2856
1243
  area: string | null;
@@ -2863,54 +1250,54 @@ declare function searchProperties(client: MoreApartmentsClient, params: Property
2863
1250
  single_sofa: number | null;
2864
1251
  double_sofa: number | null;
2865
1252
  single_bunk: number | null;
2866
- balcony: boolean | null;
2867
- patio: number | null;
2868
- garden: number | null;
2869
- roof_terrace: number | null;
1253
+ balcony: boolean;
1254
+ patio: boolean | null;
1255
+ garden: boolean | null;
1256
+ roof_terrace: boolean | null;
2870
1257
  view: string | null;
2871
- airco: boolean | null;
2872
- fans: boolean | null;
2873
- heating: boolean | null;
1258
+ airco: boolean;
1259
+ fans: boolean;
1260
+ heating: boolean;
2874
1261
  internet: string | null;
2875
1262
  internet_connection: string | null;
2876
- tv: number | null;
1263
+ tv: string | null;
2877
1264
  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;
1265
+ dvd: string | null;
1266
+ computer: boolean;
1267
+ printer: boolean;
1268
+ dishwasher: boolean;
1269
+ oven: boolean;
1270
+ microwave: boolean;
2884
1271
  grill: number | null;
2885
1272
  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;
1273
+ fridge: boolean;
1274
+ freezer: boolean;
1275
+ toaster: boolean;
1276
+ kettle: boolean;
1277
+ coffeemachine: boolean;
1278
+ washingmachine: boolean;
1279
+ dryer: boolean;
1280
+ iron: boolean;
1281
+ bathtub: boolean;
1282
+ jacuzzi: boolean;
1283
+ shower_regular: boolean;
1284
+ shower_steam: boolean;
1285
+ hairdryer: boolean;
1286
+ swimmingpool: string | null;
1287
+ sauna: string | null;
1288
+ parking: string | null;
1289
+ elevator: boolean | null;
1290
+ entresol: boolean;
1291
+ wheelchair_friendly: boolean;
1292
+ smoking_allowed: boolean;
1293
+ pets_allowed: boolean;
1294
+ supplies_coffee: boolean;
1295
+ supplies_tea: boolean;
1296
+ supplies_milk: boolean;
1297
+ supplies_sugar: boolean;
1298
+ supplies_dishwasher_tablets: boolean;
1299
+ service_linen: boolean;
1300
+ service_towels: boolean;
2914
1301
  cleaning_costs: number | null;
2915
1302
  deposit_costs: number | null;
2916
1303
  prepayment: number | null;
@@ -2924,10 +1311,11 @@ declare function searchProperties(client: MoreApartmentsClient, params: Property
2924
1311
  available_end: string | null;
2925
1312
  check_in: string | null;
2926
1313
  check_out: string | null;
1314
+ status: string | null;
2927
1315
  provider_name: string | null;
2928
1316
  created_at: string;
2929
1317
  updated_at: string;
2930
- external_id?: number | undefined;
1318
+ min_rate?: number | null | undefined;
2931
1319
  images?: {
2932
1320
  id: number;
2933
1321
  alt: string;