@devdash/bofrid-api-types 0.1.5

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.
Files changed (163) hide show
  1. package/README.md +24 -0
  2. package/dist/app.d.ts +23 -0
  3. package/dist/dev.d.ts +6 -0
  4. package/dist/export-openapi.d.ts +9 -0
  5. package/dist/index.d.ts +3 -0
  6. package/dist/lib/auth.d.ts +20 -0
  7. package/dist/lib/criipto-bankid.d.ts +45 -0
  8. package/dist/lib/datalake.d.ts +7 -0
  9. package/dist/lib/docs-filter.d.ts +15 -0
  10. package/dist/lib/email-action-token.d.ts +26 -0
  11. package/dist/lib/email-utm.d.ts +42 -0
  12. package/dist/lib/email.d.ts +94 -0
  13. package/dist/lib/env.d.ts +18 -0
  14. package/dist/lib/errors.d.ts +6 -0
  15. package/dist/lib/helpers.d.ts +6 -0
  16. package/dist/lib/logger.d.ts +25 -0
  17. package/dist/lib/markets.d.ts +1 -0
  18. package/dist/lib/org-number.d.ts +5 -0
  19. package/dist/lib/ownership.d.ts +47 -0
  20. package/dist/lib/pdf-watermark.d.ts +25 -0
  21. package/dist/lib/personnummer.d.ts +14 -0
  22. package/dist/lib/posthog.d.ts +51 -0
  23. package/dist/lib/premium.d.ts +13 -0
  24. package/dist/lib/profile-resolver.d.ts +14 -0
  25. package/dist/lib/redirect-state.d.ts +40 -0
  26. package/dist/lib/revalidate.d.ts +23 -0
  27. package/dist/lib/schemas.d.ts +21 -0
  28. package/dist/lib/sentry.d.ts +31 -0
  29. package/dist/lib/slug.d.ts +5 -0
  30. package/dist/lib/sms.d.ts +22 -0
  31. package/dist/lib/system-log.d.ts +31 -0
  32. package/dist/lib/webhook-events.d.ts +26 -0
  33. package/dist/lib/webhooks.d.ts +28 -0
  34. package/dist/middleware/auth-debug.d.ts +17 -0
  35. package/dist/middleware/auth.d.ts +19 -0
  36. package/dist/middleware/bibi-logger.d.ts +6 -0
  37. package/dist/middleware/cors.d.ts +1 -0
  38. package/dist/middleware/request-id.d.ts +10 -0
  39. package/dist/middleware/sentry-context.d.ts +8 -0
  40. package/dist/routes/activity-feed.d.ts +64 -0
  41. package/dist/routes/admin-bevakningar.d.ts +200 -0
  42. package/dist/routes/admin-companies.d.ts +381 -0
  43. package/dist/routes/admin-email-jobs.d.ts +257 -0
  44. package/dist/routes/admin-email-logs.d.ts +9 -0
  45. package/dist/routes/admin-fb-leads.d.ts +32 -0
  46. package/dist/routes/admin-import.d.ts +188 -0
  47. package/dist/routes/admin-login-history.d.ts +9 -0
  48. package/dist/routes/admin-marketing.d.ts +15 -0
  49. package/dist/routes/admin-metabase.d.ts +9 -0
  50. package/dist/routes/admin-notifications.d.ts +7 -0
  51. package/dist/routes/admin-paying-customers.d.ts +74 -0
  52. package/dist/routes/admin-sessions.d.ts +10 -0
  53. package/dist/routes/admin-stats.d.ts +380 -0
  54. package/dist/routes/admin-system-logs.d.ts +10 -0
  55. package/dist/routes/admin-users.d.ts +299 -0
  56. package/dist/routes/admin-webhooks.d.ts +276 -0
  57. package/dist/routes/api-keys.d.ts +123 -0
  58. package/dist/routes/applications.d.ts +385 -0
  59. package/dist/routes/auth.d.ts +15 -0
  60. package/dist/routes/billing.d.ts +369 -0
  61. package/dist/routes/bostadsmerit.d.ts +51 -0
  62. package/dist/routes/companies.d.ts +842 -0
  63. package/dist/routes/contact-reveals.d.ts +102 -0
  64. package/dist/routes/conversations/handlers/conversation.d.ts +5 -0
  65. package/dist/routes/conversations/handlers/initiate.d.ts +4 -0
  66. package/dist/routes/conversations/handlers/messages.d.ts +5 -0
  67. package/dist/routes/conversations/handlers/state.d.ts +5 -0
  68. package/dist/routes/conversations/helpers/access.d.ts +11 -0
  69. package/dist/routes/conversations/helpers/enrich-conversation.d.ts +58 -0
  70. package/dist/routes/conversations/helpers/identity.d.ts +43 -0
  71. package/dist/routes/conversations/helpers/notify-recipient.d.ts +10 -0
  72. package/dist/routes/conversations/helpers/reconcile-reveal.d.ts +10 -0
  73. package/dist/routes/conversations/helpers/scrub-contact.d.ts +1 -0
  74. package/dist/routes/conversations/index.d.ts +422 -0
  75. package/dist/routes/conversations/routes.d.ts +924 -0
  76. package/dist/routes/conversations/schemas.d.ts +216 -0
  77. package/dist/routes/cron.d.ts +27 -0
  78. package/dist/routes/documents.d.ts +493 -0
  79. package/dist/routes/email-actions.d.ts +8 -0
  80. package/dist/routes/fastighetslista.d.ts +94 -0
  81. package/dist/routes/geo.d.ts +518 -0
  82. package/dist/routes/geocoding.d.ts +192 -0
  83. package/dist/routes/health.d.ts +43 -0
  84. package/dist/routes/housing-history.d.ts +381 -0
  85. package/dist/routes/index.d.ts +15321 -0
  86. package/dist/routes/leads.d.ts +281 -0
  87. package/dist/routes/listing-helpers.d.ts +33 -0
  88. package/dist/routes/listing-publications.d.ts +636 -0
  89. package/dist/routes/listings.d.ts +1846 -0
  90. package/dist/routes/location-interests.d.ts +754 -0
  91. package/dist/routes/lookup.d.ts +109 -0
  92. package/dist/routes/mejl.d.ts +377 -0
  93. package/dist/routes/profiles.d.ts +281 -0
  94. package/dist/routes/properties.d.ts +1266 -0
  95. package/dist/routes/public-listings.d.ts +1137 -0
  96. package/dist/routes/public-profiles.d.ts +293 -0
  97. package/dist/routes/references.d.ts +695 -0
  98. package/dist/routes/search-partners.d.ts +4 -0
  99. package/dist/routes/site-config.d.ts +103 -0
  100. package/dist/routes/storage.d.ts +367 -0
  101. package/dist/routes/tenant-boost.d.ts +229 -0
  102. package/dist/routes/tenants.d.ts +336 -0
  103. package/dist/routes/track.d.ts +19 -0
  104. package/dist/routes/translate.d.ts +51 -0
  105. package/dist/routes/users.d.ts +517 -0
  106. package/dist/routes/verification.d.ts +175 -0
  107. package/dist/routes/webhooks.d.ts +9 -0
  108. package/dist/rpc.d.ts +11 -0
  109. package/dist/serve.d.ts +5 -0
  110. package/dist/services/activity-feed/activity-feed.service.d.ts +26 -0
  111. package/dist/services/applications/approval.service.d.ts +17 -0
  112. package/dist/services/auth/bankid-login.service.d.ts +40 -0
  113. package/dist/services/billing/constants.d.ts +2 -0
  114. package/dist/services/billing/contact-billing.service.d.ts +59 -0
  115. package/dist/services/billing/customer.service.d.ts +14 -0
  116. package/dist/services/billing/invoice-item.service.d.ts +49 -0
  117. package/dist/services/billing/invoice.service.d.ts +21 -0
  118. package/dist/services/billing/listing-upgrade-checkout.service.d.ts +45 -0
  119. package/dist/services/billing/purchase-receipt-email.d.ts +23 -0
  120. package/dist/services/billing/reveal-allowance.service.d.ts +33 -0
  121. package/dist/services/billing/stripe.d.ts +6 -0
  122. package/dist/services/billing/subscription.service.d.ts +21 -0
  123. package/dist/services/billing/types.d.ts +64 -0
  124. package/dist/services/billing/verify-session.service.d.ts +17 -0
  125. package/dist/services/billing/webhook.service.d.ts +8 -0
  126. package/dist/services/bostadsmerit/calculator.d.ts +51 -0
  127. package/dist/services/bostadsmerit/couple-calculator.d.ts +46 -0
  128. package/dist/services/bostadsmerit/tracker.service.d.ts +45 -0
  129. package/dist/services/chat-access/unlock-chat.service.d.ts +62 -0
  130. package/dist/services/conversations/upsert-conversation.d.ts +11 -0
  131. package/dist/services/email-jobs/email-job-sender.d.ts +7 -0
  132. package/dist/services/email-jobs/email-job.service.d.ts +67 -0
  133. package/dist/services/geo/bevakning-matching.service.d.ts +67 -0
  134. package/dist/services/geo/geo-listings.service.d.ts +38 -0
  135. package/dist/services/geo/geo.service.d.ts +233 -0
  136. package/dist/services/geo/geocode.service.d.ts +16 -0
  137. package/dist/services/geo/market-insights-by-coords.service.d.ts +67 -0
  138. package/dist/services/geo/market-insights.service.d.ts +44 -0
  139. package/dist/services/geo/market-overview.service.d.ts +42 -0
  140. package/dist/services/homii/image.d.ts +24 -0
  141. package/dist/services/homii/index.d.ts +12 -0
  142. package/dist/services/homii/location.d.ts +32 -0
  143. package/dist/services/homii/mapper.d.ts +41 -0
  144. package/dist/services/homii/types.d.ts +91 -0
  145. package/dist/services/leads/constants.d.ts +32 -0
  146. package/dist/services/leads/generate-leads.service.d.ts +38 -0
  147. package/dist/services/leads/matching.service.d.ts +55 -0
  148. package/dist/services/leads/tier.service.d.ts +6 -0
  149. package/dist/services/leads/types.d.ts +27 -0
  150. package/dist/services/listings/seo.service.d.ts +57 -0
  151. package/dist/services/listings/status.d.ts +37 -0
  152. package/dist/services/mejl/client.d.ts +38 -0
  153. package/dist/services/mrkoll/client.d.ts +95 -0
  154. package/dist/services/mrkoll/import.d.ts +38 -0
  155. package/dist/services/mrkoll/match.d.ts +35 -0
  156. package/dist/services/notifications/bibi-projects.d.ts +43 -0
  157. package/dist/services/notifications/bibi.d.ts +229 -0
  158. package/dist/services/profiles/bankid-verify.d.ts +23 -0
  159. package/dist/services/realtime.d.ts +14 -0
  160. package/dist/services/references/history-linker.d.ts +19 -0
  161. package/dist/services/tenant-boost/constants.d.ts +120 -0
  162. package/dist/services/tenant-boost/tenant-boost.service.d.ts +59 -0
  163. package/package.json +29 -0
@@ -0,0 +1,1266 @@
1
+ import { OpenAPIHono } from "@hono/zod-openapi";
2
+ import type { AppBindings } from "../app";
3
+ export declare const propertiesApp: OpenAPIHono<AppBindings, {
4
+ "/properties": {
5
+ $get: {
6
+ input: {};
7
+ output: {
8
+ error: string;
9
+ };
10
+ outputFormat: "json";
11
+ status: 401;
12
+ } | {
13
+ input: {};
14
+ output: {
15
+ description: string | null;
16
+ status: string;
17
+ id: string;
18
+ shortId: string;
19
+ companyId: string | null;
20
+ createdAt: string;
21
+ updatedAt: string;
22
+ identityHash: string | null;
23
+ landlordId: string | null;
24
+ countryCode: string;
25
+ street: string;
26
+ streetNumber: string | null;
27
+ postalCode: string | null;
28
+ city: string;
29
+ municipality: string | null;
30
+ neighborhood: string | null;
31
+ location: string | null;
32
+ lat: number | null;
33
+ lon: number | null;
34
+ geoLan: string | null;
35
+ geoKommun: string | null;
36
+ geoOmrade: string | null;
37
+ geoRoutePrefix: string | null;
38
+ propertyType: string;
39
+ legalTenure: string | null;
40
+ furnishingStatus: string | null;
41
+ propertySize: number;
42
+ totalRooms: number;
43
+ floor: number | null;
44
+ maxOccupancy: number | null;
45
+ petsAllowed: string | null;
46
+ smokingAllowed: string | null;
47
+ studentHousing: boolean;
48
+ seniorHousing: boolean;
49
+ corporateHousing: boolean;
50
+ wheelchairAccessible: boolean;
51
+ minRentalMonths: number | null;
52
+ amenities: string[] | null;
53
+ includedUtilities: string[] | null;
54
+ objektNummer: string | null;
55
+ lagenhetsnummer: string | null;
56
+ costPerMonth: number | null;
57
+ baseMonthlyRent: number | null;
58
+ additionalCosts: number | null;
59
+ deposit: number | null;
60
+ rentalStart: string | null;
61
+ rentalEnd: string | null;
62
+ extensionPossible: boolean | null;
63
+ planlosningFiles: string[] | null;
64
+ descriptionEn: string | null;
65
+ applicantCriteria: string | number | boolean | any[] | {
66
+ [x: string]: any;
67
+ } | null;
68
+ fastighetsId: string | null;
69
+ listingId: string | null;
70
+ thumbnailUrl: string | null;
71
+ fastighetsNamn: string | null;
72
+ listingStatus: string | null;
73
+ listingPublicUrl: string | null;
74
+ activeListingCount: number;
75
+ candidateCount: number;
76
+ candidateAvatars: string[];
77
+ creatorName: string | null;
78
+ creatorAvatarUrl: string | null;
79
+ listingUpgraded: boolean;
80
+ }[];
81
+ outputFormat: "json";
82
+ status: 200;
83
+ };
84
+ };
85
+ } & {
86
+ "/properties": {
87
+ $post: {
88
+ input: {
89
+ json: {
90
+ description?: string | null | undefined;
91
+ companyId?: string | null | undefined;
92
+ street?: string | undefined;
93
+ streetNumber?: string | null | undefined;
94
+ postalCode?: string | null | undefined;
95
+ city?: string | undefined;
96
+ municipality?: string | null | undefined;
97
+ neighborhood?: string | null | undefined;
98
+ lat?: number | undefined;
99
+ lon?: number | undefined;
100
+ propertyType?: string | undefined;
101
+ legalTenure?: string | null | undefined;
102
+ furnishingStatus?: string | null | undefined;
103
+ propertySize?: number | undefined;
104
+ totalRooms?: number | undefined;
105
+ floor?: number | null | undefined;
106
+ maxOccupancy?: number | null | undefined;
107
+ petsAllowed?: string | null | undefined;
108
+ amenities?: string[] | null | undefined;
109
+ includedUtilities?: string[] | null | undefined;
110
+ objektNummer?: string | null | undefined;
111
+ lagenhetsnummer?: string | null | undefined;
112
+ costPerMonth?: number | null | undefined;
113
+ baseMonthlyRent?: number | null | undefined;
114
+ additionalCosts?: number | null | undefined;
115
+ deposit?: number | null | undefined;
116
+ rentalStart?: string | null | undefined;
117
+ rentalEnd?: string | null | undefined;
118
+ extensionPossible?: boolean | null | undefined;
119
+ descriptionEn?: string | null | undefined;
120
+ applicantCriteria?: import("drizzle-zod").Json | undefined;
121
+ fastighetsId?: string | null | undefined;
122
+ };
123
+ };
124
+ output: {
125
+ error: string;
126
+ };
127
+ outputFormat: "json";
128
+ status: 401;
129
+ } | {
130
+ input: {
131
+ json: {
132
+ description?: string | null | undefined;
133
+ companyId?: string | null | undefined;
134
+ street?: string | undefined;
135
+ streetNumber?: string | null | undefined;
136
+ postalCode?: string | null | undefined;
137
+ city?: string | undefined;
138
+ municipality?: string | null | undefined;
139
+ neighborhood?: string | null | undefined;
140
+ lat?: number | undefined;
141
+ lon?: number | undefined;
142
+ propertyType?: string | undefined;
143
+ legalTenure?: string | null | undefined;
144
+ furnishingStatus?: string | null | undefined;
145
+ propertySize?: number | undefined;
146
+ totalRooms?: number | undefined;
147
+ floor?: number | null | undefined;
148
+ maxOccupancy?: number | null | undefined;
149
+ petsAllowed?: string | null | undefined;
150
+ amenities?: string[] | null | undefined;
151
+ includedUtilities?: string[] | null | undefined;
152
+ objektNummer?: string | null | undefined;
153
+ lagenhetsnummer?: string | null | undefined;
154
+ costPerMonth?: number | null | undefined;
155
+ baseMonthlyRent?: number | null | undefined;
156
+ additionalCosts?: number | null | undefined;
157
+ deposit?: number | null | undefined;
158
+ rentalStart?: string | null | undefined;
159
+ rentalEnd?: string | null | undefined;
160
+ extensionPossible?: boolean | null | undefined;
161
+ descriptionEn?: string | null | undefined;
162
+ applicantCriteria?: import("drizzle-zod").Json | undefined;
163
+ fastighetsId?: string | null | undefined;
164
+ };
165
+ };
166
+ output: {
167
+ error: string;
168
+ };
169
+ outputFormat: "json";
170
+ status: 400;
171
+ } | {
172
+ input: {
173
+ json: {
174
+ description?: string | null | undefined;
175
+ companyId?: string | null | undefined;
176
+ street?: string | undefined;
177
+ streetNumber?: string | null | undefined;
178
+ postalCode?: string | null | undefined;
179
+ city?: string | undefined;
180
+ municipality?: string | null | undefined;
181
+ neighborhood?: string | null | undefined;
182
+ lat?: number | undefined;
183
+ lon?: number | undefined;
184
+ propertyType?: string | undefined;
185
+ legalTenure?: string | null | undefined;
186
+ furnishingStatus?: string | null | undefined;
187
+ propertySize?: number | undefined;
188
+ totalRooms?: number | undefined;
189
+ floor?: number | null | undefined;
190
+ maxOccupancy?: number | null | undefined;
191
+ petsAllowed?: string | null | undefined;
192
+ amenities?: string[] | null | undefined;
193
+ includedUtilities?: string[] | null | undefined;
194
+ objektNummer?: string | null | undefined;
195
+ lagenhetsnummer?: string | null | undefined;
196
+ costPerMonth?: number | null | undefined;
197
+ baseMonthlyRent?: number | null | undefined;
198
+ additionalCosts?: number | null | undefined;
199
+ deposit?: number | null | undefined;
200
+ rentalStart?: string | null | undefined;
201
+ rentalEnd?: string | null | undefined;
202
+ extensionPossible?: boolean | null | undefined;
203
+ descriptionEn?: string | null | undefined;
204
+ applicantCriteria?: import("drizzle-zod").Json | undefined;
205
+ fastighetsId?: string | null | undefined;
206
+ };
207
+ };
208
+ output: {
209
+ description: string | null;
210
+ status: string;
211
+ id: string;
212
+ shortId: string;
213
+ companyId: string | null;
214
+ createdAt: string;
215
+ updatedAt: string;
216
+ identityHash: string | null;
217
+ landlordId: string | null;
218
+ countryCode: string;
219
+ street: string;
220
+ streetNumber: string | null;
221
+ postalCode: string | null;
222
+ city: string;
223
+ municipality: string | null;
224
+ neighborhood: string | null;
225
+ location: string | null;
226
+ lat: number | null;
227
+ lon: number | null;
228
+ geoLan: string | null;
229
+ geoKommun: string | null;
230
+ geoOmrade: string | null;
231
+ geoRoutePrefix: string | null;
232
+ propertyType: string;
233
+ legalTenure: string | null;
234
+ furnishingStatus: string | null;
235
+ propertySize: number;
236
+ totalRooms: number;
237
+ floor: number | null;
238
+ maxOccupancy: number | null;
239
+ petsAllowed: string | null;
240
+ smokingAllowed: string | null;
241
+ studentHousing: boolean;
242
+ seniorHousing: boolean;
243
+ corporateHousing: boolean;
244
+ wheelchairAccessible: boolean;
245
+ minRentalMonths: number | null;
246
+ amenities: string[] | null;
247
+ includedUtilities: string[] | null;
248
+ objektNummer: string | null;
249
+ lagenhetsnummer: string | null;
250
+ costPerMonth: number | null;
251
+ baseMonthlyRent: number | null;
252
+ additionalCosts: number | null;
253
+ deposit: number | null;
254
+ rentalStart: string | null;
255
+ rentalEnd: string | null;
256
+ extensionPossible: boolean | null;
257
+ planlosningFiles: string[] | null;
258
+ descriptionEn: string | null;
259
+ applicantCriteria: string | number | boolean | any[] | {
260
+ [x: string]: any;
261
+ } | null;
262
+ fastighetsId: string | null;
263
+ };
264
+ outputFormat: "json";
265
+ status: 201;
266
+ } | {
267
+ input: {
268
+ json: {
269
+ description?: string | null | undefined;
270
+ companyId?: string | null | undefined;
271
+ street?: string | undefined;
272
+ streetNumber?: string | null | undefined;
273
+ postalCode?: string | null | undefined;
274
+ city?: string | undefined;
275
+ municipality?: string | null | undefined;
276
+ neighborhood?: string | null | undefined;
277
+ lat?: number | undefined;
278
+ lon?: number | undefined;
279
+ propertyType?: string | undefined;
280
+ legalTenure?: string | null | undefined;
281
+ furnishingStatus?: string | null | undefined;
282
+ propertySize?: number | undefined;
283
+ totalRooms?: number | undefined;
284
+ floor?: number | null | undefined;
285
+ maxOccupancy?: number | null | undefined;
286
+ petsAllowed?: string | null | undefined;
287
+ amenities?: string[] | null | undefined;
288
+ includedUtilities?: string[] | null | undefined;
289
+ objektNummer?: string | null | undefined;
290
+ lagenhetsnummer?: string | null | undefined;
291
+ costPerMonth?: number | null | undefined;
292
+ baseMonthlyRent?: number | null | undefined;
293
+ additionalCosts?: number | null | undefined;
294
+ deposit?: number | null | undefined;
295
+ rentalStart?: string | null | undefined;
296
+ rentalEnd?: string | null | undefined;
297
+ extensionPossible?: boolean | null | undefined;
298
+ descriptionEn?: string | null | undefined;
299
+ applicantCriteria?: import("drizzle-zod").Json | undefined;
300
+ fastighetsId?: string | null | undefined;
301
+ };
302
+ };
303
+ output: {
304
+ error: string;
305
+ };
306
+ outputFormat: "json";
307
+ status: 403;
308
+ };
309
+ };
310
+ } & {
311
+ "/properties/:id": {
312
+ $get: {
313
+ input: {
314
+ param: {
315
+ id: string;
316
+ };
317
+ };
318
+ output: {
319
+ error: string;
320
+ };
321
+ outputFormat: "json";
322
+ status: 401;
323
+ } | {
324
+ input: {
325
+ param: {
326
+ id: string;
327
+ };
328
+ };
329
+ output: {
330
+ error: string;
331
+ };
332
+ outputFormat: "json";
333
+ status: 404;
334
+ } | {
335
+ input: {
336
+ param: {
337
+ id: string;
338
+ };
339
+ };
340
+ output: {
341
+ error: string;
342
+ };
343
+ outputFormat: "json";
344
+ status: 403;
345
+ } | {
346
+ input: {
347
+ param: {
348
+ id: string;
349
+ };
350
+ };
351
+ output: {
352
+ description: string | null;
353
+ status: string;
354
+ id: string;
355
+ shortId: string;
356
+ companyId: string | null;
357
+ createdAt: string;
358
+ updatedAt: string;
359
+ identityHash: string | null;
360
+ landlordId: string | null;
361
+ countryCode: string;
362
+ street: string;
363
+ streetNumber: string | null;
364
+ postalCode: string | null;
365
+ city: string;
366
+ municipality: string | null;
367
+ neighborhood: string | null;
368
+ location: string | null;
369
+ lat: number | null;
370
+ lon: number | null;
371
+ geoLan: string | null;
372
+ geoKommun: string | null;
373
+ geoOmrade: string | null;
374
+ geoRoutePrefix: string | null;
375
+ propertyType: string;
376
+ legalTenure: string | null;
377
+ furnishingStatus: string | null;
378
+ propertySize: number;
379
+ totalRooms: number;
380
+ floor: number | null;
381
+ maxOccupancy: number | null;
382
+ petsAllowed: string | null;
383
+ smokingAllowed: string | null;
384
+ studentHousing: boolean;
385
+ seniorHousing: boolean;
386
+ corporateHousing: boolean;
387
+ wheelchairAccessible: boolean;
388
+ minRentalMonths: number | null;
389
+ amenities: string[] | null;
390
+ includedUtilities: string[] | null;
391
+ objektNummer: string | null;
392
+ lagenhetsnummer: string | null;
393
+ costPerMonth: number | null;
394
+ baseMonthlyRent: number | null;
395
+ additionalCosts: number | null;
396
+ deposit: number | null;
397
+ rentalStart: string | null;
398
+ rentalEnd: string | null;
399
+ extensionPossible: boolean | null;
400
+ planlosningFiles: string[] | null;
401
+ descriptionEn: string | null;
402
+ applicantCriteria: string | number | boolean | any[] | {
403
+ [x: string]: any;
404
+ } | null;
405
+ fastighetsId: string | null;
406
+ };
407
+ outputFormat: "json";
408
+ status: 200;
409
+ };
410
+ };
411
+ } & {
412
+ "/properties/:id": {
413
+ $patch: {
414
+ input: {
415
+ param: {
416
+ id: string;
417
+ };
418
+ } & {
419
+ json: {
420
+ description?: string | null | undefined;
421
+ companyId?: string | null | undefined;
422
+ street?: string | undefined;
423
+ streetNumber?: string | null | undefined;
424
+ postalCode?: string | null | undefined;
425
+ city?: string | undefined;
426
+ municipality?: string | null | undefined;
427
+ neighborhood?: string | null | undefined;
428
+ lat?: number | undefined;
429
+ lon?: number | undefined;
430
+ propertyType?: string | undefined;
431
+ legalTenure?: string | null | undefined;
432
+ furnishingStatus?: string | null | undefined;
433
+ propertySize?: number | undefined;
434
+ totalRooms?: number | undefined;
435
+ floor?: number | null | undefined;
436
+ maxOccupancy?: number | null | undefined;
437
+ petsAllowed?: string | null | undefined;
438
+ amenities?: string[] | null | undefined;
439
+ includedUtilities?: string[] | null | undefined;
440
+ objektNummer?: string | null | undefined;
441
+ lagenhetsnummer?: string | null | undefined;
442
+ costPerMonth?: number | null | undefined;
443
+ baseMonthlyRent?: number | null | undefined;
444
+ additionalCosts?: number | null | undefined;
445
+ deposit?: number | null | undefined;
446
+ rentalStart?: string | null | undefined;
447
+ rentalEnd?: string | null | undefined;
448
+ extensionPossible?: boolean | null | undefined;
449
+ descriptionEn?: string | null | undefined;
450
+ applicantCriteria?: import("drizzle-zod").Json | undefined;
451
+ fastighetsId?: string | null | undefined;
452
+ };
453
+ };
454
+ output: {
455
+ error: string;
456
+ };
457
+ outputFormat: "json";
458
+ status: 401;
459
+ } | {
460
+ input: {
461
+ param: {
462
+ id: string;
463
+ };
464
+ } & {
465
+ json: {
466
+ description?: string | null | undefined;
467
+ companyId?: string | null | undefined;
468
+ street?: string | undefined;
469
+ streetNumber?: string | null | undefined;
470
+ postalCode?: string | null | undefined;
471
+ city?: string | undefined;
472
+ municipality?: string | null | undefined;
473
+ neighborhood?: string | null | undefined;
474
+ lat?: number | undefined;
475
+ lon?: number | undefined;
476
+ propertyType?: string | undefined;
477
+ legalTenure?: string | null | undefined;
478
+ furnishingStatus?: string | null | undefined;
479
+ propertySize?: number | undefined;
480
+ totalRooms?: number | undefined;
481
+ floor?: number | null | undefined;
482
+ maxOccupancy?: number | null | undefined;
483
+ petsAllowed?: string | null | undefined;
484
+ amenities?: string[] | null | undefined;
485
+ includedUtilities?: string[] | null | undefined;
486
+ objektNummer?: string | null | undefined;
487
+ lagenhetsnummer?: string | null | undefined;
488
+ costPerMonth?: number | null | undefined;
489
+ baseMonthlyRent?: number | null | undefined;
490
+ additionalCosts?: number | null | undefined;
491
+ deposit?: number | null | undefined;
492
+ rentalStart?: string | null | undefined;
493
+ rentalEnd?: string | null | undefined;
494
+ extensionPossible?: boolean | null | undefined;
495
+ descriptionEn?: string | null | undefined;
496
+ applicantCriteria?: import("drizzle-zod").Json | undefined;
497
+ fastighetsId?: string | null | undefined;
498
+ };
499
+ };
500
+ output: {
501
+ error: string;
502
+ };
503
+ outputFormat: "json";
504
+ status: 404;
505
+ } | {
506
+ input: {
507
+ param: {
508
+ id: string;
509
+ };
510
+ } & {
511
+ json: {
512
+ description?: string | null | undefined;
513
+ companyId?: string | null | undefined;
514
+ street?: string | undefined;
515
+ streetNumber?: string | null | undefined;
516
+ postalCode?: string | null | undefined;
517
+ city?: string | undefined;
518
+ municipality?: string | null | undefined;
519
+ neighborhood?: string | null | undefined;
520
+ lat?: number | undefined;
521
+ lon?: number | undefined;
522
+ propertyType?: string | undefined;
523
+ legalTenure?: string | null | undefined;
524
+ furnishingStatus?: string | null | undefined;
525
+ propertySize?: number | undefined;
526
+ totalRooms?: number | undefined;
527
+ floor?: number | null | undefined;
528
+ maxOccupancy?: number | null | undefined;
529
+ petsAllowed?: string | null | undefined;
530
+ amenities?: string[] | null | undefined;
531
+ includedUtilities?: string[] | null | undefined;
532
+ objektNummer?: string | null | undefined;
533
+ lagenhetsnummer?: string | null | undefined;
534
+ costPerMonth?: number | null | undefined;
535
+ baseMonthlyRent?: number | null | undefined;
536
+ additionalCosts?: number | null | undefined;
537
+ deposit?: number | null | undefined;
538
+ rentalStart?: string | null | undefined;
539
+ rentalEnd?: string | null | undefined;
540
+ extensionPossible?: boolean | null | undefined;
541
+ descriptionEn?: string | null | undefined;
542
+ applicantCriteria?: import("drizzle-zod").Json | undefined;
543
+ fastighetsId?: string | null | undefined;
544
+ };
545
+ };
546
+ output: {
547
+ error: string;
548
+ };
549
+ outputFormat: "json";
550
+ status: 400;
551
+ } | {
552
+ input: {
553
+ param: {
554
+ id: string;
555
+ };
556
+ } & {
557
+ json: {
558
+ description?: string | null | undefined;
559
+ companyId?: string | null | undefined;
560
+ street?: string | undefined;
561
+ streetNumber?: string | null | undefined;
562
+ postalCode?: string | null | undefined;
563
+ city?: string | undefined;
564
+ municipality?: string | null | undefined;
565
+ neighborhood?: string | null | undefined;
566
+ lat?: number | undefined;
567
+ lon?: number | undefined;
568
+ propertyType?: string | undefined;
569
+ legalTenure?: string | null | undefined;
570
+ furnishingStatus?: string | null | undefined;
571
+ propertySize?: number | undefined;
572
+ totalRooms?: number | undefined;
573
+ floor?: number | null | undefined;
574
+ maxOccupancy?: number | null | undefined;
575
+ petsAllowed?: string | null | undefined;
576
+ amenities?: string[] | null | undefined;
577
+ includedUtilities?: string[] | null | undefined;
578
+ objektNummer?: string | null | undefined;
579
+ lagenhetsnummer?: string | null | undefined;
580
+ costPerMonth?: number | null | undefined;
581
+ baseMonthlyRent?: number | null | undefined;
582
+ additionalCosts?: number | null | undefined;
583
+ deposit?: number | null | undefined;
584
+ rentalStart?: string | null | undefined;
585
+ rentalEnd?: string | null | undefined;
586
+ extensionPossible?: boolean | null | undefined;
587
+ descriptionEn?: string | null | undefined;
588
+ applicantCriteria?: import("drizzle-zod").Json | undefined;
589
+ fastighetsId?: string | null | undefined;
590
+ };
591
+ };
592
+ output: {
593
+ error: string;
594
+ };
595
+ outputFormat: "json";
596
+ status: 403;
597
+ } | {
598
+ input: {
599
+ param: {
600
+ id: string;
601
+ };
602
+ } & {
603
+ json: {
604
+ description?: string | null | undefined;
605
+ companyId?: string | null | undefined;
606
+ street?: string | undefined;
607
+ streetNumber?: string | null | undefined;
608
+ postalCode?: string | null | undefined;
609
+ city?: string | undefined;
610
+ municipality?: string | null | undefined;
611
+ neighborhood?: string | null | undefined;
612
+ lat?: number | undefined;
613
+ lon?: number | undefined;
614
+ propertyType?: string | undefined;
615
+ legalTenure?: string | null | undefined;
616
+ furnishingStatus?: string | null | undefined;
617
+ propertySize?: number | undefined;
618
+ totalRooms?: number | undefined;
619
+ floor?: number | null | undefined;
620
+ maxOccupancy?: number | null | undefined;
621
+ petsAllowed?: string | null | undefined;
622
+ amenities?: string[] | null | undefined;
623
+ includedUtilities?: string[] | null | undefined;
624
+ objektNummer?: string | null | undefined;
625
+ lagenhetsnummer?: string | null | undefined;
626
+ costPerMonth?: number | null | undefined;
627
+ baseMonthlyRent?: number | null | undefined;
628
+ additionalCosts?: number | null | undefined;
629
+ deposit?: number | null | undefined;
630
+ rentalStart?: string | null | undefined;
631
+ rentalEnd?: string | null | undefined;
632
+ extensionPossible?: boolean | null | undefined;
633
+ descriptionEn?: string | null | undefined;
634
+ applicantCriteria?: import("drizzle-zod").Json | undefined;
635
+ fastighetsId?: string | null | undefined;
636
+ };
637
+ };
638
+ output: {
639
+ description: string | null;
640
+ status: string;
641
+ id: string;
642
+ shortId: string;
643
+ companyId: string | null;
644
+ createdAt: string;
645
+ updatedAt: string;
646
+ identityHash: string | null;
647
+ landlordId: string | null;
648
+ countryCode: string;
649
+ street: string;
650
+ streetNumber: string | null;
651
+ postalCode: string | null;
652
+ city: string;
653
+ municipality: string | null;
654
+ neighborhood: string | null;
655
+ location: string | null;
656
+ lat: number | null;
657
+ lon: number | null;
658
+ geoLan: string | null;
659
+ geoKommun: string | null;
660
+ geoOmrade: string | null;
661
+ geoRoutePrefix: string | null;
662
+ propertyType: string;
663
+ legalTenure: string | null;
664
+ furnishingStatus: string | null;
665
+ propertySize: number;
666
+ totalRooms: number;
667
+ floor: number | null;
668
+ maxOccupancy: number | null;
669
+ petsAllowed: string | null;
670
+ smokingAllowed: string | null;
671
+ studentHousing: boolean;
672
+ seniorHousing: boolean;
673
+ corporateHousing: boolean;
674
+ wheelchairAccessible: boolean;
675
+ minRentalMonths: number | null;
676
+ amenities: string[] | null;
677
+ includedUtilities: string[] | null;
678
+ objektNummer: string | null;
679
+ lagenhetsnummer: string | null;
680
+ costPerMonth: number | null;
681
+ baseMonthlyRent: number | null;
682
+ additionalCosts: number | null;
683
+ deposit: number | null;
684
+ rentalStart: string | null;
685
+ rentalEnd: string | null;
686
+ extensionPossible: boolean | null;
687
+ planlosningFiles: string[] | null;
688
+ descriptionEn: string | null;
689
+ applicantCriteria: string | number | boolean | any[] | {
690
+ [x: string]: any;
691
+ } | null;
692
+ fastighetsId: string | null;
693
+ };
694
+ outputFormat: "json";
695
+ status: 200;
696
+ };
697
+ };
698
+ } & {
699
+ "/properties/:id": {
700
+ $delete: {
701
+ input: {
702
+ param: {
703
+ id: string;
704
+ };
705
+ };
706
+ output: {
707
+ error: string;
708
+ };
709
+ outputFormat: "json";
710
+ status: 401;
711
+ } | {
712
+ input: {
713
+ param: {
714
+ id: string;
715
+ };
716
+ };
717
+ output: {
718
+ error: string;
719
+ };
720
+ outputFormat: "json";
721
+ status: 404;
722
+ } | {
723
+ input: {
724
+ param: {
725
+ id: string;
726
+ };
727
+ };
728
+ output: {
729
+ error: string;
730
+ };
731
+ outputFormat: "json";
732
+ status: 403;
733
+ } | {
734
+ input: {
735
+ param: {
736
+ id: string;
737
+ };
738
+ };
739
+ output: {
740
+ success: boolean;
741
+ };
742
+ outputFormat: "json";
743
+ status: 200;
744
+ };
745
+ };
746
+ } & {
747
+ "/properties/:id/listings": {
748
+ $get: {
749
+ input: {
750
+ param: {
751
+ id: string;
752
+ };
753
+ };
754
+ output: {
755
+ error: string;
756
+ };
757
+ outputFormat: "json";
758
+ status: 401;
759
+ } | {
760
+ input: {
761
+ param: {
762
+ id: string;
763
+ };
764
+ };
765
+ output: {
766
+ error: string;
767
+ };
768
+ outputFormat: "json";
769
+ status: 404;
770
+ } | {
771
+ input: {
772
+ param: {
773
+ id: string;
774
+ };
775
+ };
776
+ output: {
777
+ error: string;
778
+ };
779
+ outputFormat: "json";
780
+ status: 403;
781
+ } | {
782
+ input: {
783
+ param: {
784
+ id: string;
785
+ };
786
+ };
787
+ output: {
788
+ status: string;
789
+ id: string;
790
+ shortId: string | null;
791
+ createdAt: string;
792
+ baseMonthlyRent: number | null;
793
+ publicUrl: string | null;
794
+ viewCount: number;
795
+ pendingReview: boolean;
796
+ rejectionComment: string | null;
797
+ publishedAt: string | null;
798
+ applicationCount: number;
799
+ }[];
800
+ outputFormat: "json";
801
+ status: 200;
802
+ };
803
+ };
804
+ } & {
805
+ "/properties/:id/images": {
806
+ $get: {
807
+ input: {
808
+ param: {
809
+ id: string;
810
+ };
811
+ };
812
+ output: {
813
+ error: string;
814
+ };
815
+ outputFormat: "json";
816
+ status: 404;
817
+ } | {
818
+ input: {
819
+ param: {
820
+ id: string;
821
+ };
822
+ };
823
+ output: {
824
+ error: string;
825
+ };
826
+ outputFormat: "json";
827
+ status: 403;
828
+ } | {
829
+ input: {
830
+ param: {
831
+ id: string;
832
+ };
833
+ };
834
+ output: {
835
+ url: string;
836
+ id: string;
837
+ createdAt: string;
838
+ propertyId: string;
839
+ urls: string | number | boolean | any[] | {
840
+ [x: string]: any;
841
+ } | null;
842
+ width: number | null;
843
+ height: number | null;
844
+ order: number;
845
+ isPrimary: boolean;
846
+ caption: string | null;
847
+ }[];
848
+ outputFormat: "json";
849
+ status: 200;
850
+ };
851
+ };
852
+ } & {
853
+ "/properties/:id/images": {
854
+ $post: {
855
+ input: {
856
+ param: {
857
+ id: string;
858
+ };
859
+ } & {
860
+ json: {
861
+ url: string;
862
+ width?: number | null | undefined;
863
+ height?: number | null | undefined;
864
+ isPrimary?: boolean | undefined;
865
+ caption?: string | null | undefined;
866
+ };
867
+ };
868
+ output: {
869
+ error: string;
870
+ };
871
+ outputFormat: "json";
872
+ status: 404;
873
+ } | {
874
+ input: {
875
+ param: {
876
+ id: string;
877
+ };
878
+ } & {
879
+ json: {
880
+ url: string;
881
+ width?: number | null | undefined;
882
+ height?: number | null | undefined;
883
+ isPrimary?: boolean | undefined;
884
+ caption?: string | null | undefined;
885
+ };
886
+ };
887
+ output: {
888
+ error: string;
889
+ };
890
+ outputFormat: "json";
891
+ status: 403;
892
+ } | {
893
+ input: {
894
+ param: {
895
+ id: string;
896
+ };
897
+ } & {
898
+ json: {
899
+ url: string;
900
+ width?: number | null | undefined;
901
+ height?: number | null | undefined;
902
+ isPrimary?: boolean | undefined;
903
+ caption?: string | null | undefined;
904
+ };
905
+ };
906
+ output: {
907
+ url: string;
908
+ id: string;
909
+ createdAt: string;
910
+ propertyId: string;
911
+ urls: string | number | boolean | any[] | {
912
+ [x: string]: any;
913
+ } | null;
914
+ width: number | null;
915
+ height: number | null;
916
+ order: number;
917
+ isPrimary: boolean;
918
+ caption: string | null;
919
+ };
920
+ outputFormat: "json";
921
+ status: 201;
922
+ };
923
+ };
924
+ } & {
925
+ "/properties/:id/images/:imageId": {
926
+ $delete: {
927
+ input: {
928
+ param: {
929
+ id: string;
930
+ imageId: string;
931
+ };
932
+ };
933
+ output: {
934
+ error: string;
935
+ };
936
+ outputFormat: "json";
937
+ status: 404;
938
+ } | {
939
+ input: {
940
+ param: {
941
+ id: string;
942
+ imageId: string;
943
+ };
944
+ };
945
+ output: {
946
+ error: string;
947
+ };
948
+ outputFormat: "json";
949
+ status: 403;
950
+ } | {
951
+ input: {
952
+ param: {
953
+ id: string;
954
+ imageId: string;
955
+ };
956
+ };
957
+ output: {
958
+ success: boolean;
959
+ };
960
+ outputFormat: "json";
961
+ status: 200;
962
+ };
963
+ };
964
+ } & {
965
+ "/properties/:id/images/reorder": {
966
+ $put: {
967
+ input: {
968
+ param: {
969
+ id: string;
970
+ };
971
+ } & {
972
+ json: {
973
+ imageIds: string[];
974
+ };
975
+ };
976
+ output: {
977
+ error: string;
978
+ };
979
+ outputFormat: "json";
980
+ status: 404;
981
+ } | {
982
+ input: {
983
+ param: {
984
+ id: string;
985
+ };
986
+ } & {
987
+ json: {
988
+ imageIds: string[];
989
+ };
990
+ };
991
+ output: {
992
+ error: string;
993
+ };
994
+ outputFormat: "json";
995
+ status: 400;
996
+ } | {
997
+ input: {
998
+ param: {
999
+ id: string;
1000
+ };
1001
+ } & {
1002
+ json: {
1003
+ imageIds: string[];
1004
+ };
1005
+ };
1006
+ output: {
1007
+ error: string;
1008
+ };
1009
+ outputFormat: "json";
1010
+ status: 403;
1011
+ } | {
1012
+ input: {
1013
+ param: {
1014
+ id: string;
1015
+ };
1016
+ } & {
1017
+ json: {
1018
+ imageIds: string[];
1019
+ };
1020
+ };
1021
+ output: {
1022
+ success: boolean;
1023
+ };
1024
+ outputFormat: "json";
1025
+ status: 200;
1026
+ };
1027
+ };
1028
+ } & {
1029
+ "/properties/:id/planlosning": {
1030
+ $post: {
1031
+ input: {
1032
+ param: {
1033
+ id: string;
1034
+ };
1035
+ } & {
1036
+ json: {
1037
+ url: string;
1038
+ };
1039
+ };
1040
+ output: {
1041
+ error: string;
1042
+ };
1043
+ outputFormat: "json";
1044
+ status: 404;
1045
+ } | {
1046
+ input: {
1047
+ param: {
1048
+ id: string;
1049
+ };
1050
+ } & {
1051
+ json: {
1052
+ url: string;
1053
+ };
1054
+ };
1055
+ output: {
1056
+ error: string;
1057
+ };
1058
+ outputFormat: "json";
1059
+ status: 403;
1060
+ } | {
1061
+ input: {
1062
+ param: {
1063
+ id: string;
1064
+ };
1065
+ } & {
1066
+ json: {
1067
+ url: string;
1068
+ };
1069
+ };
1070
+ output: {
1071
+ description: string | null;
1072
+ status: string;
1073
+ id: string;
1074
+ shortId: string;
1075
+ companyId: string | null;
1076
+ createdAt: string;
1077
+ updatedAt: string;
1078
+ identityHash: string | null;
1079
+ landlordId: string | null;
1080
+ countryCode: string;
1081
+ street: string;
1082
+ streetNumber: string | null;
1083
+ postalCode: string | null;
1084
+ city: string;
1085
+ municipality: string | null;
1086
+ neighborhood: string | null;
1087
+ location: string | null;
1088
+ lat: number | null;
1089
+ lon: number | null;
1090
+ geoLan: string | null;
1091
+ geoKommun: string | null;
1092
+ geoOmrade: string | null;
1093
+ geoRoutePrefix: string | null;
1094
+ propertyType: string;
1095
+ legalTenure: string | null;
1096
+ furnishingStatus: string | null;
1097
+ propertySize: number;
1098
+ totalRooms: number;
1099
+ floor: number | null;
1100
+ maxOccupancy: number | null;
1101
+ petsAllowed: string | null;
1102
+ smokingAllowed: string | null;
1103
+ studentHousing: boolean;
1104
+ seniorHousing: boolean;
1105
+ corporateHousing: boolean;
1106
+ wheelchairAccessible: boolean;
1107
+ minRentalMonths: number | null;
1108
+ amenities: string[] | null;
1109
+ includedUtilities: string[] | null;
1110
+ objektNummer: string | null;
1111
+ lagenhetsnummer: string | null;
1112
+ costPerMonth: number | null;
1113
+ baseMonthlyRent: number | null;
1114
+ additionalCosts: number | null;
1115
+ deposit: number | null;
1116
+ rentalStart: string | null;
1117
+ rentalEnd: string | null;
1118
+ extensionPossible: boolean | null;
1119
+ planlosningFiles: string[] | null;
1120
+ descriptionEn: string | null;
1121
+ applicantCriteria: string | number | boolean | any[] | {
1122
+ [x: string]: any;
1123
+ } | null;
1124
+ fastighetsId: string | null;
1125
+ };
1126
+ outputFormat: "json";
1127
+ status: 200;
1128
+ };
1129
+ };
1130
+ } & {
1131
+ "/properties/:id/planlosning": {
1132
+ $delete: {
1133
+ input: {
1134
+ param: {
1135
+ id: string;
1136
+ };
1137
+ } & {
1138
+ json: {
1139
+ url: string;
1140
+ };
1141
+ };
1142
+ output: {
1143
+ error: string;
1144
+ };
1145
+ outputFormat: "json";
1146
+ status: 404;
1147
+ } | {
1148
+ input: {
1149
+ param: {
1150
+ id: string;
1151
+ };
1152
+ } & {
1153
+ json: {
1154
+ url: string;
1155
+ };
1156
+ };
1157
+ output: {
1158
+ error: string;
1159
+ };
1160
+ outputFormat: "json";
1161
+ status: 403;
1162
+ } | {
1163
+ input: {
1164
+ param: {
1165
+ id: string;
1166
+ };
1167
+ } & {
1168
+ json: {
1169
+ url: string;
1170
+ };
1171
+ };
1172
+ output: {
1173
+ description: string | null;
1174
+ status: string;
1175
+ id: string;
1176
+ shortId: string;
1177
+ companyId: string | null;
1178
+ createdAt: string;
1179
+ updatedAt: string;
1180
+ identityHash: string | null;
1181
+ landlordId: string | null;
1182
+ countryCode: string;
1183
+ street: string;
1184
+ streetNumber: string | null;
1185
+ postalCode: string | null;
1186
+ city: string;
1187
+ municipality: string | null;
1188
+ neighborhood: string | null;
1189
+ location: string | null;
1190
+ lat: number | null;
1191
+ lon: number | null;
1192
+ geoLan: string | null;
1193
+ geoKommun: string | null;
1194
+ geoOmrade: string | null;
1195
+ geoRoutePrefix: string | null;
1196
+ propertyType: string;
1197
+ legalTenure: string | null;
1198
+ furnishingStatus: string | null;
1199
+ propertySize: number;
1200
+ totalRooms: number;
1201
+ floor: number | null;
1202
+ maxOccupancy: number | null;
1203
+ petsAllowed: string | null;
1204
+ smokingAllowed: string | null;
1205
+ studentHousing: boolean;
1206
+ seniorHousing: boolean;
1207
+ corporateHousing: boolean;
1208
+ wheelchairAccessible: boolean;
1209
+ minRentalMonths: number | null;
1210
+ amenities: string[] | null;
1211
+ includedUtilities: string[] | null;
1212
+ objektNummer: string | null;
1213
+ lagenhetsnummer: string | null;
1214
+ costPerMonth: number | null;
1215
+ baseMonthlyRent: number | null;
1216
+ additionalCosts: number | null;
1217
+ deposit: number | null;
1218
+ rentalStart: string | null;
1219
+ rentalEnd: string | null;
1220
+ extensionPossible: boolean | null;
1221
+ planlosningFiles: string[] | null;
1222
+ descriptionEn: string | null;
1223
+ applicantCriteria: string | number | boolean | any[] | {
1224
+ [x: string]: any;
1225
+ } | null;
1226
+ fastighetsId: string | null;
1227
+ };
1228
+ outputFormat: "json";
1229
+ status: 200;
1230
+ };
1231
+ };
1232
+ } & {
1233
+ "/properties/:id/bevakning-watchers": {
1234
+ $get: {
1235
+ input: {
1236
+ param: {
1237
+ id: string;
1238
+ };
1239
+ };
1240
+ output: {
1241
+ error: string;
1242
+ };
1243
+ outputFormat: "json";
1244
+ status: 404;
1245
+ } | {
1246
+ input: {
1247
+ param: {
1248
+ id: string;
1249
+ };
1250
+ };
1251
+ output: {
1252
+ watchers: {
1253
+ id: string;
1254
+ displayName: string;
1255
+ createdAt: string;
1256
+ locationName: string | null;
1257
+ maxRent: number | null;
1258
+ maskedEmail: string | null;
1259
+ bevakningName: string;
1260
+ }[];
1261
+ };
1262
+ outputFormat: "json";
1263
+ status: 200;
1264
+ };
1265
+ };
1266
+ }, "/">;