@homespot-sdk/core 0.0.324 → 0.0.325

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.
@@ -238,6 +238,14 @@ export declare const zCaptureInterestRequest: z.ZodObject<{
238
238
  export declare const zTitleRequest: z.ZodObject<{
239
239
  title: z.ZodString;
240
240
  }, z.core.$strip>;
241
+ export declare const zRateRecommendationItemRequest: z.ZodObject<{
242
+ decision: z.ZodEnum<{
243
+ MAYBE: "MAYBE";
244
+ DISLIKE: "DISLIKE";
245
+ LIKE: "LIKE";
246
+ }>;
247
+ note: z.ZodOptional<z.ZodString>;
248
+ }, z.core.$strip>;
241
249
  export declare const zRecommendListingRequest: z.ZodObject<{
242
250
  externalPropertyId: z.ZodUUID;
243
251
  externalListingId: z.ZodUUID;
@@ -414,14 +422,6 @@ export declare const zSubscriptionCheckoutResponse: z.ZodObject<{
414
422
  export declare const zIdResponseInteger: z.ZodObject<{
415
423
  id: z.ZodInt;
416
424
  }, z.core.$strip>;
417
- export declare const zRateRecommendationItemRequest: z.ZodObject<{
418
- decision: z.ZodEnum<{
419
- MAYBE: "MAYBE";
420
- DISLIKE: "DISLIKE";
421
- LIKE: "LIKE";
422
- }>;
423
- note: z.ZodOptional<z.ZodString>;
424
- }, z.core.$strip>;
425
425
  export declare const zContactInfoRequest: z.ZodObject<{
426
426
  firstName: z.ZodOptional<z.ZodString>;
427
427
  lastName: z.ZodOptional<z.ZodString>;
@@ -583,26 +583,8 @@ export declare const zProblemDetail: z.ZodObject<{
583
583
  export declare const zIdResponseUuid: z.ZodObject<{
584
584
  id: z.ZodUUID;
585
585
  }, z.core.$strip>;
586
- export declare const zCreateListingRequest: z.ZodObject<{
587
- listingType: z.ZodEnum<{
588
- SALE: "SALE";
589
- RENT: "RENT";
590
- DAILY_RENT: "DAILY_RENT";
591
- PLEDGE: "PLEDGE";
592
- }>;
593
- askingPrice: z.ZodNumber;
594
- }, z.core.$strip>;
595
586
  export declare const zAddDealRequest: z.ZodObject<{
596
- listingId: z.ZodCoercedBigInt<unknown>;
597
- commissionType: z.ZodEnum<{
598
- FIXED_SALE: "FIXED_SALE";
599
- FIXED_RENT: "FIXED_RENT";
600
- PERCENTAGE: "PERCENTAGE";
601
- MONTHS_OF_RENT: "MONTHS_OF_RENT";
602
- }>;
603
- rate: z.ZodOptional<z.ZodNumber>;
604
- amount: z.ZodOptional<z.ZodNumber>;
605
- factor: z.ZodOptional<z.ZodNumber>;
587
+ type: z.ZodString;
606
588
  }, z.core.$strip>;
607
589
  export declare const zCloseListingRequest: z.ZodObject<{
608
590
  withdrawExternal: z.ZodOptional<z.ZodBoolean>;
@@ -1660,7 +1642,6 @@ export declare const zRecommendationResponse: z.ZodObject<{
1660
1642
  }, z.core.$strip>;
1661
1643
  }, z.core.$strip>;
1662
1644
  export declare const zRecommendationDecisionResponse: z.ZodObject<{
1663
- itemId: z.ZodCoercedBigInt<unknown>;
1664
1645
  externalPropertyId: z.ZodUUID;
1665
1646
  externalListingId: z.ZodUUID;
1666
1647
  decision: z.ZodEnum<{
@@ -2003,6 +1984,499 @@ export declare const zWhitelabelResponse: z.ZodObject<{
2003
1984
  }, z.core.$strip>>>;
2004
1985
  website: z.ZodOptional<z.ZodString>;
2005
1986
  }, z.core.$strip>;
1987
+ export declare const zAgreementResponse: z.ZodObject<{
1988
+ agreement: z.ZodEnum<{
1989
+ EXCLUSIVE: "EXCLUSIVE";
1990
+ NON_EXCLUSIVE: "NON_EXCLUSIVE";
1991
+ }>;
1992
+ expiryDate: z.ZodOptional<z.ZodISODate>;
1993
+ }, z.core.$strip>;
1994
+ export declare const zBoostResponse: z.ZodObject<{
1995
+ tier: z.ZodEnum<{
1996
+ VIP: "VIP";
1997
+ VIP_PLUS: "VIP_PLUS";
1998
+ SUPER_VIP: "SUPER_VIP";
1999
+ }>;
2000
+ status: z.ZodEnum<{
2001
+ ACTIVE: "ACTIVE";
2002
+ PENDING: "PENDING";
2003
+ FAIL_NO_BALANCE: "FAIL_NO_BALANCE";
2004
+ FAILED: "FAILED";
2005
+ }>;
2006
+ activatedAt: z.ZodOptional<z.ZodISODate>;
2007
+ expiresAt: z.ZodOptional<z.ZodISODate>;
2008
+ }, z.core.$strip>;
2009
+ export declare const zColoredListingResponse: z.ZodObject<{
2010
+ activatedAt: z.ZodISODate;
2011
+ expiresAt: z.ZodISODate;
2012
+ }, z.core.$strip>;
2013
+ export declare const zDealResponse: z.ZodObject<{
2014
+ type: z.ZodString;
2015
+ }, z.core.$strip>;
2016
+ export declare const zFixed: z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
2017
+ type: z.ZodString;
2018
+ }, z.core.$strip>, z.ZodObject<{
2019
+ amount: z.ZodNumber;
2020
+ }, z.core.$strip>>, z.ZodObject<{
2021
+ type: z.ZodString;
2022
+ }, z.core.$strip>>, z.ZodObject<{
2023
+ amount: z.ZodNumber;
2024
+ commission: z.ZodOptional<z.ZodNumber>;
2025
+ type: z.ZodLiteral<"FIXED">;
2026
+ }, z.core.$strip>>;
2027
+ export declare const zMonthsOfRent: z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
2028
+ type: z.ZodString;
2029
+ }, z.core.$strip>, z.ZodObject<{
2030
+ factor: z.ZodNumber;
2031
+ }, z.core.$strip>>, z.ZodObject<{
2032
+ type: z.ZodString;
2033
+ }, z.core.$strip>>, z.ZodObject<{
2034
+ factor: z.ZodNumber;
2035
+ commission: z.ZodOptional<z.ZodNumber>;
2036
+ type: z.ZodLiteral<"MONTHS_OF_RENT">;
2037
+ }, z.core.$strip>>;
2038
+ export declare const zPercentage: z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
2039
+ type: z.ZodString;
2040
+ }, z.core.$strip>, z.ZodObject<{
2041
+ rate: z.ZodNumber;
2042
+ }, z.core.$strip>>, z.ZodObject<{
2043
+ type: z.ZodString;
2044
+ }, z.core.$strip>>, z.ZodObject<{
2045
+ rate: z.ZodNumber;
2046
+ commission: z.ZodOptional<z.ZodNumber>;
2047
+ type: z.ZodLiteral<"PERCENTAGE">;
2048
+ }, z.core.$strip>>;
2049
+ export declare const zCreateListingRequest: z.ZodObject<{
2050
+ listingType: z.ZodEnum<{
2051
+ SALE: "SALE";
2052
+ RENT: "RENT";
2053
+ DAILY_RENT: "DAILY_RENT";
2054
+ PLEDGE: "PLEDGE";
2055
+ }>;
2056
+ askingPrice: z.ZodNumber;
2057
+ deal: z.ZodOptional<z.ZodUnion<readonly [z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
2058
+ type: z.ZodString;
2059
+ }, z.core.$strip>, z.ZodObject<{
2060
+ amount: z.ZodNumber;
2061
+ }, z.core.$strip>>, z.ZodObject<{
2062
+ type: z.ZodString;
2063
+ }, z.core.$strip>>, z.ZodObject<{
2064
+ amount: z.ZodNumber;
2065
+ commission: z.ZodOptional<z.ZodNumber>;
2066
+ type: z.ZodLiteral<"FIXED">;
2067
+ }, z.core.$strip>>, z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
2068
+ type: z.ZodString;
2069
+ }, z.core.$strip>, z.ZodObject<{
2070
+ factor: z.ZodNumber;
2071
+ }, z.core.$strip>>, z.ZodObject<{
2072
+ type: z.ZodString;
2073
+ }, z.core.$strip>>, z.ZodObject<{
2074
+ factor: z.ZodNumber;
2075
+ commission: z.ZodOptional<z.ZodNumber>;
2076
+ type: z.ZodLiteral<"MONTHS_OF_RENT">;
2077
+ }, z.core.$strip>>, z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
2078
+ type: z.ZodString;
2079
+ }, z.core.$strip>, z.ZodObject<{
2080
+ rate: z.ZodNumber;
2081
+ }, z.core.$strip>>, z.ZodObject<{
2082
+ type: z.ZodString;
2083
+ }, z.core.$strip>>, z.ZodObject<{
2084
+ rate: z.ZodNumber;
2085
+ commission: z.ZodOptional<z.ZodNumber>;
2086
+ type: z.ZodLiteral<"PERCENTAGE">;
2087
+ }, z.core.$strip>>]>>;
2088
+ }, z.core.$strip>;
2089
+ export declare const zPlatformListingResponse: z.ZodObject<{
2090
+ platformId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
2091
+ platformType: z.ZodEnum<{
2092
+ SS: "SS";
2093
+ MY_HOME: "MY_HOME";
2094
+ }>;
2095
+ status: z.ZodEnum<{
2096
+ EXPIRED: "EXPIRED";
2097
+ PENDING: "PENDING";
2098
+ FAILED: "FAILED";
2099
+ SYNDICATED: "SYNDICATED";
2100
+ }>;
2101
+ listedAt: z.ZodOptional<z.ZodISODate>;
2102
+ expiresAt: z.ZodOptional<z.ZodISODate>;
2103
+ renewedAt: z.ZodOptional<z.ZodISODate>;
2104
+ boost: z.ZodOptional<z.ZodObject<{
2105
+ tier: z.ZodEnum<{
2106
+ VIP: "VIP";
2107
+ VIP_PLUS: "VIP_PLUS";
2108
+ SUPER_VIP: "SUPER_VIP";
2109
+ }>;
2110
+ status: z.ZodEnum<{
2111
+ ACTIVE: "ACTIVE";
2112
+ PENDING: "PENDING";
2113
+ FAIL_NO_BALANCE: "FAIL_NO_BALANCE";
2114
+ FAILED: "FAILED";
2115
+ }>;
2116
+ activatedAt: z.ZodOptional<z.ZodISODate>;
2117
+ expiresAt: z.ZodOptional<z.ZodISODate>;
2118
+ }, z.core.$strip>>;
2119
+ coloredListing: z.ZodOptional<z.ZodObject<{
2120
+ activatedAt: z.ZodISODate;
2121
+ expiresAt: z.ZodISODate;
2122
+ }, z.core.$strip>>;
2123
+ }, z.core.$strip>;
2124
+ export declare const zPropertyCloseReasonResponse: z.ZodObject<{
2125
+ closedAt: z.ZodISODateTime;
2126
+ reason: z.ZodEnum<{
2127
+ OTHER: "OTHER";
2128
+ DEAL_CLOSED: "DEAL_CLOSED";
2129
+ OWNER_WITHDREW: "OWNER_WITHDREW";
2130
+ MANDATE_EXPIRED: "MANDATE_EXPIRED";
2131
+ }>;
2132
+ }, z.core.$strip>;
2133
+ export declare const zPropertyDetailsResponse: z.ZodObject<{
2134
+ title: z.ZodString;
2135
+ coverPhoto: z.ZodOptional<z.ZodString>;
2136
+ photoCount: z.ZodOptional<z.ZodInt>;
2137
+ totalArea: z.ZodNumber;
2138
+ livingArea: z.ZodOptional<z.ZodNumber>;
2139
+ balconyArea: z.ZodOptional<z.ZodNumber>;
2140
+ address: z.ZodObject<{
2141
+ region: z.ZodObject<{
2142
+ id: z.ZodCoercedBigInt<unknown>;
2143
+ names: z.ZodArray<z.ZodObject<{
2144
+ language: z.ZodEnum<{
2145
+ ka: "ka";
2146
+ en: "en";
2147
+ ru: "ru";
2148
+ }>;
2149
+ text: z.ZodString;
2150
+ }, z.core.$strip>>;
2151
+ }, z.core.$strip>;
2152
+ district: z.ZodObject<{
2153
+ id: z.ZodCoercedBigInt<unknown>;
2154
+ names: z.ZodArray<z.ZodObject<{
2155
+ language: z.ZodEnum<{
2156
+ ka: "ka";
2157
+ en: "en";
2158
+ ru: "ru";
2159
+ }>;
2160
+ text: z.ZodString;
2161
+ }, z.core.$strip>>;
2162
+ }, z.core.$strip>;
2163
+ subdistrict: z.ZodObject<{
2164
+ id: z.ZodCoercedBigInt<unknown>;
2165
+ names: z.ZodArray<z.ZodObject<{
2166
+ language: z.ZodEnum<{
2167
+ ka: "ka";
2168
+ en: "en";
2169
+ ru: "ru";
2170
+ }>;
2171
+ text: z.ZodString;
2172
+ }, z.core.$strip>>;
2173
+ }, z.core.$strip>;
2174
+ street: z.ZodOptional<z.ZodObject<{
2175
+ id: z.ZodCoercedBigInt<unknown>;
2176
+ names: z.ZodArray<z.ZodObject<{
2177
+ language: z.ZodEnum<{
2178
+ ka: "ka";
2179
+ en: "en";
2180
+ ru: "ru";
2181
+ }>;
2182
+ text: z.ZodString;
2183
+ }, z.core.$strip>>;
2184
+ }, z.core.$strip>>;
2185
+ cadastreCode: z.ZodOptional<z.ZodString>;
2186
+ lat: z.ZodNumber;
2187
+ lng: z.ZodNumber;
2188
+ }, z.core.$strip>;
2189
+ }, z.core.$strip>;
2190
+ export declare const zPropertyListingResponse: z.ZodObject<{
2191
+ publicId: z.ZodCoercedBigInt<unknown>;
2192
+ listingId: z.ZodUUID;
2193
+ listingType: z.ZodEnum<{
2194
+ SALE: "SALE";
2195
+ RENT: "RENT";
2196
+ DAILY_RENT: "DAILY_RENT";
2197
+ PLEDGE: "PLEDGE";
2198
+ }>;
2199
+ marketplaceStatus: z.ZodEnum<{
2200
+ ACTIVE: "ACTIVE";
2201
+ PAUSED: "PAUSED";
2202
+ EXPIRED: "EXPIRED";
2203
+ PENDING: "PENDING";
2204
+ FAILED: "FAILED";
2205
+ }>;
2206
+ crmState: z.ZodEnum<{
2207
+ CLOSED: "CLOSED";
2208
+ OPEN: "OPEN";
2209
+ }>;
2210
+ isProcessing: z.ZodBoolean;
2211
+ price: z.ZodNumber;
2212
+ deal: z.ZodOptional<z.ZodUnion<readonly [z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
2213
+ type: z.ZodString;
2214
+ }, z.core.$strip>, z.ZodObject<{
2215
+ amount: z.ZodNumber;
2216
+ }, z.core.$strip>>, z.ZodObject<{
2217
+ type: z.ZodString;
2218
+ }, z.core.$strip>>, z.ZodObject<{
2219
+ amount: z.ZodNumber;
2220
+ commission: z.ZodOptional<z.ZodNumber>;
2221
+ type: z.ZodLiteral<"FIXED">;
2222
+ }, z.core.$strip>>, z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
2223
+ type: z.ZodString;
2224
+ }, z.core.$strip>, z.ZodObject<{
2225
+ factor: z.ZodNumber;
2226
+ }, z.core.$strip>>, z.ZodObject<{
2227
+ type: z.ZodString;
2228
+ }, z.core.$strip>>, z.ZodObject<{
2229
+ factor: z.ZodNumber;
2230
+ commission: z.ZodOptional<z.ZodNumber>;
2231
+ type: z.ZodLiteral<"MONTHS_OF_RENT">;
2232
+ }, z.core.$strip>>, z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
2233
+ type: z.ZodString;
2234
+ }, z.core.$strip>, z.ZodObject<{
2235
+ rate: z.ZodNumber;
2236
+ }, z.core.$strip>>, z.ZodObject<{
2237
+ type: z.ZodString;
2238
+ }, z.core.$strip>>, z.ZodObject<{
2239
+ rate: z.ZodNumber;
2240
+ commission: z.ZodOptional<z.ZodNumber>;
2241
+ type: z.ZodLiteral<"PERCENTAGE">;
2242
+ }, z.core.$strip>>]>>;
2243
+ platformListings: z.ZodArray<z.ZodObject<{
2244
+ platformId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
2245
+ platformType: z.ZodEnum<{
2246
+ SS: "SS";
2247
+ MY_HOME: "MY_HOME";
2248
+ }>;
2249
+ status: z.ZodEnum<{
2250
+ EXPIRED: "EXPIRED";
2251
+ PENDING: "PENDING";
2252
+ FAILED: "FAILED";
2253
+ SYNDICATED: "SYNDICATED";
2254
+ }>;
2255
+ listedAt: z.ZodOptional<z.ZodISODate>;
2256
+ expiresAt: z.ZodOptional<z.ZodISODate>;
2257
+ renewedAt: z.ZodOptional<z.ZodISODate>;
2258
+ boost: z.ZodOptional<z.ZodObject<{
2259
+ tier: z.ZodEnum<{
2260
+ VIP: "VIP";
2261
+ VIP_PLUS: "VIP_PLUS";
2262
+ SUPER_VIP: "SUPER_VIP";
2263
+ }>;
2264
+ status: z.ZodEnum<{
2265
+ ACTIVE: "ACTIVE";
2266
+ PENDING: "PENDING";
2267
+ FAIL_NO_BALANCE: "FAIL_NO_BALANCE";
2268
+ FAILED: "FAILED";
2269
+ }>;
2270
+ activatedAt: z.ZodOptional<z.ZodISODate>;
2271
+ expiresAt: z.ZodOptional<z.ZodISODate>;
2272
+ }, z.core.$strip>>;
2273
+ coloredListing: z.ZodOptional<z.ZodObject<{
2274
+ activatedAt: z.ZodISODate;
2275
+ expiresAt: z.ZodISODate;
2276
+ }, z.core.$strip>>;
2277
+ }, z.core.$strip>>;
2278
+ createdAt: z.ZodISODateTime;
2279
+ closedAt: z.ZodOptional<z.ZodISODateTime>;
2280
+ }, z.core.$strip>;
2281
+ export declare const zPropertyPageResponse: z.ZodObject<{
2282
+ publicId: z.ZodCoercedBigInt<unknown>;
2283
+ propertyId: z.ZodUUID;
2284
+ type: z.ZodEnum<{
2285
+ GARAGE: "GARAGE";
2286
+ HOUSE: "HOUSE";
2287
+ TOWN_HOUSE: "TOWN_HOUSE";
2288
+ COUNTRY_HOUSE: "COUNTRY_HOUSE";
2289
+ VILLA: "VILLA";
2290
+ COTTAGE: "COTTAGE";
2291
+ APARTMENT: "APARTMENT";
2292
+ DUPLEX: "DUPLEX";
2293
+ TRIPLEX: "TRIPLEX";
2294
+ SEMI_BASEMENT: "SEMI_BASEMENT";
2295
+ ATTIC: "ATTIC";
2296
+ AGRICULTURAL_LAND: "AGRICULTURAL_LAND";
2297
+ RESIDENTIAL_LAND: "RESIDENTIAL_LAND";
2298
+ HOTEL_ROOM: "HOTEL_ROOM";
2299
+ MOTEL_ROOM: "MOTEL_ROOM";
2300
+ CO_LIVING_SPACE: "CO_LIVING_SPACE";
2301
+ OFFICE: "OFFICE";
2302
+ COMMERCIAL_SPACE: "COMMERCIAL_SPACE";
2303
+ CO_WORKING_SPACE: "CO_WORKING_SPACE";
2304
+ WAREHOUSE: "WAREHOUSE";
2305
+ }>;
2306
+ state: z.ZodEnum<{
2307
+ IN_REGISTRATION: "IN_REGISTRATION";
2308
+ CLOSED: "CLOSED";
2309
+ UNLISTED: "UNLISTED";
2310
+ LISTED_INTERNALLY: "LISTED_INTERNALLY";
2311
+ LISTED: "LISTED";
2312
+ }>;
2313
+ details: z.ZodOptional<z.ZodObject<{
2314
+ title: z.ZodString;
2315
+ coverPhoto: z.ZodOptional<z.ZodString>;
2316
+ photoCount: z.ZodOptional<z.ZodInt>;
2317
+ totalArea: z.ZodNumber;
2318
+ livingArea: z.ZodOptional<z.ZodNumber>;
2319
+ balconyArea: z.ZodOptional<z.ZodNumber>;
2320
+ address: z.ZodObject<{
2321
+ region: z.ZodObject<{
2322
+ id: z.ZodCoercedBigInt<unknown>;
2323
+ names: z.ZodArray<z.ZodObject<{
2324
+ language: z.ZodEnum<{
2325
+ ka: "ka";
2326
+ en: "en";
2327
+ ru: "ru";
2328
+ }>;
2329
+ text: z.ZodString;
2330
+ }, z.core.$strip>>;
2331
+ }, z.core.$strip>;
2332
+ district: z.ZodObject<{
2333
+ id: z.ZodCoercedBigInt<unknown>;
2334
+ names: z.ZodArray<z.ZodObject<{
2335
+ language: z.ZodEnum<{
2336
+ ka: "ka";
2337
+ en: "en";
2338
+ ru: "ru";
2339
+ }>;
2340
+ text: z.ZodString;
2341
+ }, z.core.$strip>>;
2342
+ }, z.core.$strip>;
2343
+ subdistrict: z.ZodObject<{
2344
+ id: z.ZodCoercedBigInt<unknown>;
2345
+ names: z.ZodArray<z.ZodObject<{
2346
+ language: z.ZodEnum<{
2347
+ ka: "ka";
2348
+ en: "en";
2349
+ ru: "ru";
2350
+ }>;
2351
+ text: z.ZodString;
2352
+ }, z.core.$strip>>;
2353
+ }, z.core.$strip>;
2354
+ street: z.ZodOptional<z.ZodObject<{
2355
+ id: z.ZodCoercedBigInt<unknown>;
2356
+ names: z.ZodArray<z.ZodObject<{
2357
+ language: z.ZodEnum<{
2358
+ ka: "ka";
2359
+ en: "en";
2360
+ ru: "ru";
2361
+ }>;
2362
+ text: z.ZodString;
2363
+ }, z.core.$strip>>;
2364
+ }, z.core.$strip>>;
2365
+ cadastreCode: z.ZodOptional<z.ZodString>;
2366
+ lat: z.ZodNumber;
2367
+ lng: z.ZodNumber;
2368
+ }, z.core.$strip>;
2369
+ }, z.core.$strip>>;
2370
+ agreement: z.ZodObject<{
2371
+ agreement: z.ZodEnum<{
2372
+ EXCLUSIVE: "EXCLUSIVE";
2373
+ NON_EXCLUSIVE: "NON_EXCLUSIVE";
2374
+ }>;
2375
+ expiryDate: z.ZodOptional<z.ZodISODate>;
2376
+ }, z.core.$strip>;
2377
+ listings: z.ZodArray<z.ZodObject<{
2378
+ publicId: z.ZodCoercedBigInt<unknown>;
2379
+ listingId: z.ZodUUID;
2380
+ listingType: z.ZodEnum<{
2381
+ SALE: "SALE";
2382
+ RENT: "RENT";
2383
+ DAILY_RENT: "DAILY_RENT";
2384
+ PLEDGE: "PLEDGE";
2385
+ }>;
2386
+ marketplaceStatus: z.ZodEnum<{
2387
+ ACTIVE: "ACTIVE";
2388
+ PAUSED: "PAUSED";
2389
+ EXPIRED: "EXPIRED";
2390
+ PENDING: "PENDING";
2391
+ FAILED: "FAILED";
2392
+ }>;
2393
+ crmState: z.ZodEnum<{
2394
+ CLOSED: "CLOSED";
2395
+ OPEN: "OPEN";
2396
+ }>;
2397
+ isProcessing: z.ZodBoolean;
2398
+ price: z.ZodNumber;
2399
+ deal: z.ZodOptional<z.ZodUnion<readonly [z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
2400
+ type: z.ZodString;
2401
+ }, z.core.$strip>, z.ZodObject<{
2402
+ amount: z.ZodNumber;
2403
+ }, z.core.$strip>>, z.ZodObject<{
2404
+ type: z.ZodString;
2405
+ }, z.core.$strip>>, z.ZodObject<{
2406
+ amount: z.ZodNumber;
2407
+ commission: z.ZodOptional<z.ZodNumber>;
2408
+ type: z.ZodLiteral<"FIXED">;
2409
+ }, z.core.$strip>>, z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
2410
+ type: z.ZodString;
2411
+ }, z.core.$strip>, z.ZodObject<{
2412
+ factor: z.ZodNumber;
2413
+ }, z.core.$strip>>, z.ZodObject<{
2414
+ type: z.ZodString;
2415
+ }, z.core.$strip>>, z.ZodObject<{
2416
+ factor: z.ZodNumber;
2417
+ commission: z.ZodOptional<z.ZodNumber>;
2418
+ type: z.ZodLiteral<"MONTHS_OF_RENT">;
2419
+ }, z.core.$strip>>, z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
2420
+ type: z.ZodString;
2421
+ }, z.core.$strip>, z.ZodObject<{
2422
+ rate: z.ZodNumber;
2423
+ }, z.core.$strip>>, z.ZodObject<{
2424
+ type: z.ZodString;
2425
+ }, z.core.$strip>>, z.ZodObject<{
2426
+ rate: z.ZodNumber;
2427
+ commission: z.ZodOptional<z.ZodNumber>;
2428
+ type: z.ZodLiteral<"PERCENTAGE">;
2429
+ }, z.core.$strip>>]>>;
2430
+ platformListings: z.ZodArray<z.ZodObject<{
2431
+ platformId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
2432
+ platformType: z.ZodEnum<{
2433
+ SS: "SS";
2434
+ MY_HOME: "MY_HOME";
2435
+ }>;
2436
+ status: z.ZodEnum<{
2437
+ EXPIRED: "EXPIRED";
2438
+ PENDING: "PENDING";
2439
+ FAILED: "FAILED";
2440
+ SYNDICATED: "SYNDICATED";
2441
+ }>;
2442
+ listedAt: z.ZodOptional<z.ZodISODate>;
2443
+ expiresAt: z.ZodOptional<z.ZodISODate>;
2444
+ renewedAt: z.ZodOptional<z.ZodISODate>;
2445
+ boost: z.ZodOptional<z.ZodObject<{
2446
+ tier: z.ZodEnum<{
2447
+ VIP: "VIP";
2448
+ VIP_PLUS: "VIP_PLUS";
2449
+ SUPER_VIP: "SUPER_VIP";
2450
+ }>;
2451
+ status: z.ZodEnum<{
2452
+ ACTIVE: "ACTIVE";
2453
+ PENDING: "PENDING";
2454
+ FAIL_NO_BALANCE: "FAIL_NO_BALANCE";
2455
+ FAILED: "FAILED";
2456
+ }>;
2457
+ activatedAt: z.ZodOptional<z.ZodISODate>;
2458
+ expiresAt: z.ZodOptional<z.ZodISODate>;
2459
+ }, z.core.$strip>>;
2460
+ coloredListing: z.ZodOptional<z.ZodObject<{
2461
+ activatedAt: z.ZodISODate;
2462
+ expiresAt: z.ZodISODate;
2463
+ }, z.core.$strip>>;
2464
+ }, z.core.$strip>>;
2465
+ createdAt: z.ZodISODateTime;
2466
+ closedAt: z.ZodOptional<z.ZodISODateTime>;
2467
+ }, z.core.$strip>>;
2468
+ createdAt: z.ZodISODateTime;
2469
+ updatedAt: z.ZodISODateTime;
2470
+ closeReason: z.ZodOptional<z.ZodObject<{
2471
+ closedAt: z.ZodISODateTime;
2472
+ reason: z.ZodEnum<{
2473
+ OTHER: "OTHER";
2474
+ DEAL_CLOSED: "DEAL_CLOSED";
2475
+ OWNER_WITHDREW: "OWNER_WITHDREW";
2476
+ MANDATE_EXPIRED: "MANDATE_EXPIRED";
2477
+ }>;
2478
+ }, z.core.$strip>>;
2479
+ }, z.core.$strip>;
2006
2480
  export declare const zContactId: z.ZodObject<{
2007
2481
  value: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
2008
2482
  }, z.core.$strip>;
@@ -2494,10 +2968,10 @@ export declare const zListingGridView: z.ZodObject<{
2494
2968
  }>>;
2495
2969
  price: z.ZodOptional<z.ZodNumber>;
2496
2970
  commissionType: z.ZodOptional<z.ZodEnum<{
2497
- FIXED_SALE: "FIXED_SALE";
2498
- FIXED_RENT: "FIXED_RENT";
2499
- PERCENTAGE: "PERCENTAGE";
2971
+ FIXED: "FIXED";
2500
2972
  MONTHS_OF_RENT: "MONTHS_OF_RENT";
2973
+ PERCENTAGE: "PERCENTAGE";
2974
+ NOT_SET: "NOT_SET";
2501
2975
  }>>;
2502
2976
  commission: z.ZodOptional<z.ZodNumber>;
2503
2977
  platforms: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -2621,10 +3095,10 @@ export declare const zPagedModelListingGridView: z.ZodObject<{
2621
3095
  }>>;
2622
3096
  price: z.ZodOptional<z.ZodNumber>;
2623
3097
  commissionType: z.ZodOptional<z.ZodEnum<{
2624
- FIXED_SALE: "FIXED_SALE";
2625
- FIXED_RENT: "FIXED_RENT";
2626
- PERCENTAGE: "PERCENTAGE";
3098
+ FIXED: "FIXED";
2627
3099
  MONTHS_OF_RENT: "MONTHS_OF_RENT";
3100
+ PERCENTAGE: "PERCENTAGE";
3101
+ NOT_SET: "NOT_SET";
2628
3102
  }>>;
2629
3103
  commission: z.ZodOptional<z.ZodNumber>;
2630
3104
  platforms: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -2804,9 +3278,9 @@ export declare const zMessageView: z.ZodObject<{
2804
3278
  }, z.core.$strip>>]>;
2805
3279
  status: z.ZodEnum<{
2806
3280
  PENDING: "PENDING";
3281
+ FAILED: "FAILED";
2807
3282
  RECEIVED: "RECEIVED";
2808
3283
  SENT: "SENT";
2809
- FAILED: "FAILED";
2810
3284
  }>;
2811
3285
  sentAt: z.ZodISODateTime;
2812
3286
  failureReason: z.ZodOptional<z.ZodString>;
@@ -2842,9 +3316,9 @@ export declare const zThreadUpdates: z.ZodObject<{
2842
3316
  }, z.core.$strip>>]>;
2843
3317
  status: z.ZodEnum<{
2844
3318
  PENDING: "PENDING";
3319
+ FAILED: "FAILED";
2845
3320
  RECEIVED: "RECEIVED";
2846
3321
  SENT: "SENT";
2847
- FAILED: "FAILED";
2848
3322
  }>;
2849
3323
  sentAt: z.ZodISODateTime;
2850
3324
  failureReason: z.ZodOptional<z.ZodString>;
@@ -2882,9 +3356,9 @@ export declare const zCursorPageMessageView: z.ZodObject<{
2882
3356
  }, z.core.$strip>>]>;
2883
3357
  status: z.ZodEnum<{
2884
3358
  PENDING: "PENDING";
3359
+ FAILED: "FAILED";
2885
3360
  RECEIVED: "RECEIVED";
2886
3361
  SENT: "SENT";
2887
- FAILED: "FAILED";
2888
3362
  }>;
2889
3363
  sentAt: z.ZodISODateTime;
2890
3364
  failureReason: z.ZodOptional<z.ZodString>;
@@ -3261,21 +3735,6 @@ export declare const zPagedModelContactGridResponse: z.ZodObject<{
3261
3735
  totalPages: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
3262
3736
  }, z.core.$strip>>;
3263
3737
  }, z.core.$strip>;
3264
- export declare const zActiveItemsResult: z.ZodObject<{
3265
- propertyIds: z.ZodOptional<z.ZodArray<z.ZodObject<{
3266
- value: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
3267
- }, z.core.$strip>>>;
3268
- interestIds: z.ZodOptional<z.ZodArray<z.ZodObject<{
3269
- value: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
3270
- }, z.core.$strip>>>;
3271
- }, z.core.$strip>;
3272
- export declare const zAgreementResponse: z.ZodObject<{
3273
- agreement: z.ZodEnum<{
3274
- EXCLUSIVE: "EXCLUSIVE";
3275
- NON_EXCLUSIVE: "NON_EXCLUSIVE";
3276
- }>;
3277
- expiryDate: z.ZodOptional<z.ZodISODate>;
3278
- }, z.core.$strip>;
3279
3738
  export declare const zAssignedMember: z.ZodObject<{
3280
3739
  memberId: z.ZodUUID;
3281
3740
  name: z.ZodString;
@@ -3297,70 +3756,13 @@ export declare const zCommunicationPreferenceResponse: z.ZodObject<{
3297
3756
  export declare const zContactInfoResponse: z.ZodObject<{
3298
3757
  firstName: z.ZodOptional<z.ZodString>;
3299
3758
  lastName: z.ZodOptional<z.ZodString>;
3300
- gender: z.ZodEnum<{
3301
- MALE: "MALE";
3302
- FEMALE: "FEMALE";
3303
- UNKNOWN: "UNKNOWN";
3304
- }>;
3305
- phoneNumber: z.ZodString;
3306
- email: z.ZodOptional<z.ZodString>;
3307
- }, z.core.$strip>;
3308
- export declare const zPropertyDetailsResponse: z.ZodObject<{
3309
- title: z.ZodString;
3310
- coverPhoto: z.ZodOptional<z.ZodString>;
3311
- photoCount: z.ZodOptional<z.ZodInt>;
3312
- totalArea: z.ZodNumber;
3313
- livingArea: z.ZodOptional<z.ZodNumber>;
3314
- balconyArea: z.ZodOptional<z.ZodNumber>;
3315
- address: z.ZodObject<{
3316
- region: z.ZodObject<{
3317
- id: z.ZodCoercedBigInt<unknown>;
3318
- names: z.ZodArray<z.ZodObject<{
3319
- language: z.ZodEnum<{
3320
- ka: "ka";
3321
- en: "en";
3322
- ru: "ru";
3323
- }>;
3324
- text: z.ZodString;
3325
- }, z.core.$strip>>;
3326
- }, z.core.$strip>;
3327
- district: z.ZodObject<{
3328
- id: z.ZodCoercedBigInt<unknown>;
3329
- names: z.ZodArray<z.ZodObject<{
3330
- language: z.ZodEnum<{
3331
- ka: "ka";
3332
- en: "en";
3333
- ru: "ru";
3334
- }>;
3335
- text: z.ZodString;
3336
- }, z.core.$strip>>;
3337
- }, z.core.$strip>;
3338
- subdistrict: z.ZodObject<{
3339
- id: z.ZodCoercedBigInt<unknown>;
3340
- names: z.ZodArray<z.ZodObject<{
3341
- language: z.ZodEnum<{
3342
- ka: "ka";
3343
- en: "en";
3344
- ru: "ru";
3345
- }>;
3346
- text: z.ZodString;
3347
- }, z.core.$strip>>;
3348
- }, z.core.$strip>;
3349
- street: z.ZodOptional<z.ZodObject<{
3350
- id: z.ZodCoercedBigInt<unknown>;
3351
- names: z.ZodArray<z.ZodObject<{
3352
- language: z.ZodEnum<{
3353
- ka: "ka";
3354
- en: "en";
3355
- ru: "ru";
3356
- }>;
3357
- text: z.ZodString;
3358
- }, z.core.$strip>>;
3359
- }, z.core.$strip>>;
3360
- cadastreCode: z.ZodOptional<z.ZodString>;
3361
- lat: z.ZodNumber;
3362
- lng: z.ZodNumber;
3363
- }, z.core.$strip>;
3759
+ gender: z.ZodEnum<{
3760
+ MALE: "MALE";
3761
+ FEMALE: "FEMALE";
3762
+ UNKNOWN: "UNKNOWN";
3763
+ }>;
3764
+ phoneNumber: z.ZodString;
3765
+ email: z.ZodOptional<z.ZodString>;
3364
3766
  }, z.core.$strip>;
3365
3767
  export declare const zContactPropertyResponse: z.ZodObject<{
3366
3768
  publicId: z.ZodCoercedBigInt<unknown>;
@@ -4531,6 +4933,26 @@ export declare const zPutContactsByContactIdInterestsByInterestIdPublishData: z.
4531
4933
  * No Content
4532
4934
  */
4533
4935
  export declare const zPutContactsByContactIdInterestsByInterestIdPublishResponse: z.ZodVoid;
4936
+ export declare const zPutContactsByContactIdInterestsByInterestIdListingsByExternalListingIdRateData: z.ZodObject<{
4937
+ body: z.ZodObject<{
4938
+ decision: z.ZodEnum<{
4939
+ MAYBE: "MAYBE";
4940
+ DISLIKE: "DISLIKE";
4941
+ LIKE: "LIKE";
4942
+ }>;
4943
+ note: z.ZodOptional<z.ZodString>;
4944
+ }, z.core.$strip>;
4945
+ path: z.ZodObject<{
4946
+ contactId: z.ZodCoercedBigInt<unknown>;
4947
+ interestId: z.ZodCoercedBigInt<unknown>;
4948
+ externalListingId: z.ZodUUID;
4949
+ }, z.core.$strip>;
4950
+ query: z.ZodOptional<z.ZodNever>;
4951
+ }, z.core.$strip>;
4952
+ /**
4953
+ * No Content
4954
+ */
4955
+ export declare const zPutContactsByContactIdInterestsByInterestIdListingsByExternalListingIdRateResponse: z.ZodVoid;
4534
4956
  export declare const zPutContactsByContactIdInterestsByInterestIdItemsData: z.ZodObject<{
4535
4957
  body: z.ZodObject<{
4536
4958
  externalPropertyId: z.ZodUUID;
@@ -5077,7 +5499,7 @@ export declare const zPostPublicWebhooksFlittData: z.ZodObject<{
5077
5499
  path: z.ZodOptional<z.ZodNever>;
5078
5500
  query: z.ZodOptional<z.ZodNever>;
5079
5501
  }, z.core.$strip>;
5080
- export declare const zPostPublicRecomendationsByTokenItemsByItemIdRateData: z.ZodObject<{
5502
+ export declare const zPostPublicRecomendationsByTokenListingsByExternalListingIdRateData: z.ZodObject<{
5081
5503
  body: z.ZodObject<{
5082
5504
  decision: z.ZodEnum<{
5083
5505
  MAYBE: "MAYBE";
@@ -5088,14 +5510,14 @@ export declare const zPostPublicRecomendationsByTokenItemsByItemIdRateData: z.Zo
5088
5510
  }, z.core.$strip>;
5089
5511
  path: z.ZodObject<{
5090
5512
  token: z.ZodUUID;
5091
- itemId: z.ZodCoercedBigInt<unknown>;
5513
+ externalListingId: z.ZodUUID;
5092
5514
  }, z.core.$strip>;
5093
5515
  query: z.ZodOptional<z.ZodNever>;
5094
5516
  }, z.core.$strip>;
5095
5517
  /**
5096
5518
  * No Content
5097
5519
  */
5098
- export declare const zPostPublicRecomendationsByTokenItemsByItemIdRateResponse: z.ZodVoid;
5520
+ export declare const zPostPublicRecomendationsByTokenListingsByExternalListingIdRateResponse: z.ZodVoid;
5099
5521
  export declare const zPostPublicOtpPhoneData: z.ZodObject<{
5100
5522
  body: z.ZodObject<{
5101
5523
  phoneNumber: z.ZodString;
@@ -5469,9 +5891,9 @@ export declare const zGetConversationsByConversationIdMessagesResponse: z.ZodObj
5469
5891
  }, z.core.$strip>>]>;
5470
5892
  status: z.ZodEnum<{
5471
5893
  PENDING: "PENDING";
5894
+ FAILED: "FAILED";
5472
5895
  RECEIVED: "RECEIVED";
5473
5896
  SENT: "SENT";
5474
- FAILED: "FAILED";
5475
5897
  }>;
5476
5898
  sentAt: z.ZodISODateTime;
5477
5899
  failureReason: z.ZodOptional<z.ZodString>;
@@ -5521,6 +5943,37 @@ export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsData:
5521
5943
  PLEDGE: "PLEDGE";
5522
5944
  }>;
5523
5945
  askingPrice: z.ZodNumber;
5946
+ deal: z.ZodOptional<z.ZodUnion<readonly [z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
5947
+ type: z.ZodString;
5948
+ }, z.core.$strip>, z.ZodObject<{
5949
+ amount: z.ZodNumber;
5950
+ }, z.core.$strip>>, z.ZodObject<{
5951
+ type: z.ZodString;
5952
+ }, z.core.$strip>>, z.ZodObject<{
5953
+ amount: z.ZodNumber;
5954
+ commission: z.ZodOptional<z.ZodNumber>;
5955
+ type: z.ZodLiteral<"FIXED">;
5956
+ }, z.core.$strip>>, z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
5957
+ type: z.ZodString;
5958
+ }, z.core.$strip>, z.ZodObject<{
5959
+ factor: z.ZodNumber;
5960
+ }, z.core.$strip>>, z.ZodObject<{
5961
+ type: z.ZodString;
5962
+ }, z.core.$strip>>, z.ZodObject<{
5963
+ factor: z.ZodNumber;
5964
+ commission: z.ZodOptional<z.ZodNumber>;
5965
+ type: z.ZodLiteral<"MONTHS_OF_RENT">;
5966
+ }, z.core.$strip>>, z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
5967
+ type: z.ZodString;
5968
+ }, z.core.$strip>, z.ZodObject<{
5969
+ rate: z.ZodNumber;
5970
+ }, z.core.$strip>>, z.ZodObject<{
5971
+ type: z.ZodString;
5972
+ }, z.core.$strip>>, z.ZodObject<{
5973
+ rate: z.ZodNumber;
5974
+ commission: z.ZodOptional<z.ZodNumber>;
5975
+ type: z.ZodLiteral<"PERCENTAGE">;
5976
+ }, z.core.$strip>>]>>;
5524
5977
  }, z.core.$strip>;
5525
5978
  path: z.ZodObject<{
5526
5979
  contactId: z.ZodCoercedBigInt<unknown>;
@@ -5534,6 +5987,19 @@ export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsData:
5534
5987
  export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsResponse: z.ZodObject<{
5535
5988
  id: z.ZodUUID;
5536
5989
  }, z.core.$strip>;
5990
+ export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdResumeData: z.ZodObject<{
5991
+ body: z.ZodOptional<z.ZodNever>;
5992
+ path: z.ZodObject<{
5993
+ contactId: z.ZodCoercedBigInt<unknown>;
5994
+ propertyId: z.ZodCoercedBigInt<unknown>;
5995
+ listingId: z.ZodCoercedBigInt<unknown>;
5996
+ }, z.core.$strip>;
5997
+ query: z.ZodOptional<z.ZodNever>;
5998
+ }, z.core.$strip>;
5999
+ /**
6000
+ * No Content
6001
+ */
6002
+ export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdResumeResponse: z.ZodVoid;
5537
6003
  export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdReopenData: z.ZodObject<{
5538
6004
  body: z.ZodOptional<z.ZodNever>;
5539
6005
  path: z.ZodObject<{
@@ -5547,6 +6013,32 @@ export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByLis
5547
6013
  * No Content
5548
6014
  */
5549
6015
  export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdReopenResponse: z.ZodVoid;
6016
+ export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdRenewData: z.ZodObject<{
6017
+ body: z.ZodOptional<z.ZodNever>;
6018
+ path: z.ZodObject<{
6019
+ contactId: z.ZodCoercedBigInt<unknown>;
6020
+ propertyId: z.ZodCoercedBigInt<unknown>;
6021
+ listingId: z.ZodCoercedBigInt<unknown>;
6022
+ }, z.core.$strip>;
6023
+ query: z.ZodOptional<z.ZodNever>;
6024
+ }, z.core.$strip>;
6025
+ /**
6026
+ * No Content
6027
+ */
6028
+ export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdRenewResponse: z.ZodVoid;
6029
+ export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdPauseData: z.ZodObject<{
6030
+ body: z.ZodOptional<z.ZodNever>;
6031
+ path: z.ZodObject<{
6032
+ contactId: z.ZodCoercedBigInt<unknown>;
6033
+ propertyId: z.ZodCoercedBigInt<unknown>;
6034
+ listingId: z.ZodCoercedBigInt<unknown>;
6035
+ }, z.core.$strip>;
6036
+ query: z.ZodOptional<z.ZodNever>;
6037
+ }, z.core.$strip>;
6038
+ /**
6039
+ * No Content
6040
+ */
6041
+ export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdPauseResponse: z.ZodVoid;
5550
6042
  export declare const zDeleteContactsByContactIdPropertiesByPropertyIdListingsByListingIdDealData: z.ZodObject<{
5551
6043
  body: z.ZodOptional<z.ZodNever>;
5552
6044
  path: z.ZodObject<{
@@ -5561,18 +6053,37 @@ export declare const zDeleteContactsByContactIdPropertiesByPropertyIdListingsByL
5561
6053
  */
5562
6054
  export declare const zDeleteContactsByContactIdPropertiesByPropertyIdListingsByListingIdDealResponse: z.ZodVoid;
5563
6055
  export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdDealData: z.ZodObject<{
5564
- body: z.ZodObject<{
5565
- listingId: z.ZodCoercedBigInt<unknown>;
5566
- commissionType: z.ZodEnum<{
5567
- FIXED_SALE: "FIXED_SALE";
5568
- FIXED_RENT: "FIXED_RENT";
5569
- PERCENTAGE: "PERCENTAGE";
5570
- MONTHS_OF_RENT: "MONTHS_OF_RENT";
5571
- }>;
5572
- rate: z.ZodOptional<z.ZodNumber>;
5573
- amount: z.ZodOptional<z.ZodNumber>;
5574
- factor: z.ZodOptional<z.ZodNumber>;
5575
- }, z.core.$strip>;
6056
+ body: z.ZodUnion<readonly [z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
6057
+ type: z.ZodString;
6058
+ }, z.core.$strip>, z.ZodObject<{
6059
+ amount: z.ZodNumber;
6060
+ }, z.core.$strip>>, z.ZodObject<{
6061
+ type: z.ZodString;
6062
+ }, z.core.$strip>>, z.ZodObject<{
6063
+ amount: z.ZodNumber;
6064
+ commission: z.ZodOptional<z.ZodNumber>;
6065
+ type: z.ZodLiteral<"FIXED">;
6066
+ }, z.core.$strip>>, z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
6067
+ type: z.ZodString;
6068
+ }, z.core.$strip>, z.ZodObject<{
6069
+ factor: z.ZodNumber;
6070
+ }, z.core.$strip>>, z.ZodObject<{
6071
+ type: z.ZodString;
6072
+ }, z.core.$strip>>, z.ZodObject<{
6073
+ factor: z.ZodNumber;
6074
+ commission: z.ZodOptional<z.ZodNumber>;
6075
+ type: z.ZodLiteral<"MONTHS_OF_RENT">;
6076
+ }, z.core.$strip>>, z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
6077
+ type: z.ZodString;
6078
+ }, z.core.$strip>, z.ZodObject<{
6079
+ rate: z.ZodNumber;
6080
+ }, z.core.$strip>>, z.ZodObject<{
6081
+ type: z.ZodString;
6082
+ }, z.core.$strip>>, z.ZodObject<{
6083
+ rate: z.ZodNumber;
6084
+ commission: z.ZodOptional<z.ZodNumber>;
6085
+ type: z.ZodLiteral<"PERCENTAGE">;
6086
+ }, z.core.$strip>>]>;
5576
6087
  path: z.ZodObject<{
5577
6088
  contactId: z.ZodCoercedBigInt<unknown>;
5578
6089
  propertyId: z.ZodCoercedBigInt<unknown>;
@@ -6473,7 +6984,6 @@ export declare const zGetPublicRecomendationsByTokenDecisionsData: z.ZodObject<{
6473
6984
  * OK
6474
6985
  */
6475
6986
  export declare const zGetPublicRecomendationsByTokenDecisionsResponse: z.ZodArray<z.ZodObject<{
6476
- itemId: z.ZodCoercedBigInt<unknown>;
6477
6987
  externalPropertyId: z.ZodUUID;
6478
6988
  externalListingId: z.ZodUUID;
6479
6989
  decision: z.ZodEnum<{
@@ -6788,6 +7298,215 @@ export declare const zGetPublicAgencySubdomainBySubDomainResponse: z.ZodObject<{
6788
7298
  logo: z.ZodOptional<z.ZodString>;
6789
7299
  theme: z.ZodOptional<z.ZodInt>;
6790
7300
  }, z.core.$strip>;
7301
+ export declare const zGetPropertyByPropertyIdPageData: z.ZodObject<{
7302
+ body: z.ZodOptional<z.ZodNever>;
7303
+ path: z.ZodObject<{
7304
+ propertyId: z.ZodCoercedBigInt<unknown>;
7305
+ }, z.core.$strip>;
7306
+ query: z.ZodOptional<z.ZodNever>;
7307
+ }, z.core.$strip>;
7308
+ /**
7309
+ * OK
7310
+ */
7311
+ export declare const zGetPropertyByPropertyIdPageResponse: z.ZodObject<{
7312
+ publicId: z.ZodCoercedBigInt<unknown>;
7313
+ propertyId: z.ZodUUID;
7314
+ type: z.ZodEnum<{
7315
+ GARAGE: "GARAGE";
7316
+ HOUSE: "HOUSE";
7317
+ TOWN_HOUSE: "TOWN_HOUSE";
7318
+ COUNTRY_HOUSE: "COUNTRY_HOUSE";
7319
+ VILLA: "VILLA";
7320
+ COTTAGE: "COTTAGE";
7321
+ APARTMENT: "APARTMENT";
7322
+ DUPLEX: "DUPLEX";
7323
+ TRIPLEX: "TRIPLEX";
7324
+ SEMI_BASEMENT: "SEMI_BASEMENT";
7325
+ ATTIC: "ATTIC";
7326
+ AGRICULTURAL_LAND: "AGRICULTURAL_LAND";
7327
+ RESIDENTIAL_LAND: "RESIDENTIAL_LAND";
7328
+ HOTEL_ROOM: "HOTEL_ROOM";
7329
+ MOTEL_ROOM: "MOTEL_ROOM";
7330
+ CO_LIVING_SPACE: "CO_LIVING_SPACE";
7331
+ OFFICE: "OFFICE";
7332
+ COMMERCIAL_SPACE: "COMMERCIAL_SPACE";
7333
+ CO_WORKING_SPACE: "CO_WORKING_SPACE";
7334
+ WAREHOUSE: "WAREHOUSE";
7335
+ }>;
7336
+ state: z.ZodEnum<{
7337
+ IN_REGISTRATION: "IN_REGISTRATION";
7338
+ CLOSED: "CLOSED";
7339
+ UNLISTED: "UNLISTED";
7340
+ LISTED_INTERNALLY: "LISTED_INTERNALLY";
7341
+ LISTED: "LISTED";
7342
+ }>;
7343
+ details: z.ZodOptional<z.ZodObject<{
7344
+ title: z.ZodString;
7345
+ coverPhoto: z.ZodOptional<z.ZodString>;
7346
+ photoCount: z.ZodOptional<z.ZodInt>;
7347
+ totalArea: z.ZodNumber;
7348
+ livingArea: z.ZodOptional<z.ZodNumber>;
7349
+ balconyArea: z.ZodOptional<z.ZodNumber>;
7350
+ address: z.ZodObject<{
7351
+ region: z.ZodObject<{
7352
+ id: z.ZodCoercedBigInt<unknown>;
7353
+ names: z.ZodArray<z.ZodObject<{
7354
+ language: z.ZodEnum<{
7355
+ ka: "ka";
7356
+ en: "en";
7357
+ ru: "ru";
7358
+ }>;
7359
+ text: z.ZodString;
7360
+ }, z.core.$strip>>;
7361
+ }, z.core.$strip>;
7362
+ district: z.ZodObject<{
7363
+ id: z.ZodCoercedBigInt<unknown>;
7364
+ names: z.ZodArray<z.ZodObject<{
7365
+ language: z.ZodEnum<{
7366
+ ka: "ka";
7367
+ en: "en";
7368
+ ru: "ru";
7369
+ }>;
7370
+ text: z.ZodString;
7371
+ }, z.core.$strip>>;
7372
+ }, z.core.$strip>;
7373
+ subdistrict: z.ZodObject<{
7374
+ id: z.ZodCoercedBigInt<unknown>;
7375
+ names: z.ZodArray<z.ZodObject<{
7376
+ language: z.ZodEnum<{
7377
+ ka: "ka";
7378
+ en: "en";
7379
+ ru: "ru";
7380
+ }>;
7381
+ text: z.ZodString;
7382
+ }, z.core.$strip>>;
7383
+ }, z.core.$strip>;
7384
+ street: z.ZodOptional<z.ZodObject<{
7385
+ id: z.ZodCoercedBigInt<unknown>;
7386
+ names: z.ZodArray<z.ZodObject<{
7387
+ language: z.ZodEnum<{
7388
+ ka: "ka";
7389
+ en: "en";
7390
+ ru: "ru";
7391
+ }>;
7392
+ text: z.ZodString;
7393
+ }, z.core.$strip>>;
7394
+ }, z.core.$strip>>;
7395
+ cadastreCode: z.ZodOptional<z.ZodString>;
7396
+ lat: z.ZodNumber;
7397
+ lng: z.ZodNumber;
7398
+ }, z.core.$strip>;
7399
+ }, z.core.$strip>>;
7400
+ agreement: z.ZodObject<{
7401
+ agreement: z.ZodEnum<{
7402
+ EXCLUSIVE: "EXCLUSIVE";
7403
+ NON_EXCLUSIVE: "NON_EXCLUSIVE";
7404
+ }>;
7405
+ expiryDate: z.ZodOptional<z.ZodISODate>;
7406
+ }, z.core.$strip>;
7407
+ listings: z.ZodArray<z.ZodObject<{
7408
+ publicId: z.ZodCoercedBigInt<unknown>;
7409
+ listingId: z.ZodUUID;
7410
+ listingType: z.ZodEnum<{
7411
+ SALE: "SALE";
7412
+ RENT: "RENT";
7413
+ DAILY_RENT: "DAILY_RENT";
7414
+ PLEDGE: "PLEDGE";
7415
+ }>;
7416
+ marketplaceStatus: z.ZodEnum<{
7417
+ ACTIVE: "ACTIVE";
7418
+ PAUSED: "PAUSED";
7419
+ EXPIRED: "EXPIRED";
7420
+ PENDING: "PENDING";
7421
+ FAILED: "FAILED";
7422
+ }>;
7423
+ crmState: z.ZodEnum<{
7424
+ CLOSED: "CLOSED";
7425
+ OPEN: "OPEN";
7426
+ }>;
7427
+ isProcessing: z.ZodBoolean;
7428
+ price: z.ZodNumber;
7429
+ deal: z.ZodOptional<z.ZodUnion<readonly [z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
7430
+ type: z.ZodString;
7431
+ }, z.core.$strip>, z.ZodObject<{
7432
+ amount: z.ZodNumber;
7433
+ }, z.core.$strip>>, z.ZodObject<{
7434
+ type: z.ZodString;
7435
+ }, z.core.$strip>>, z.ZodObject<{
7436
+ amount: z.ZodNumber;
7437
+ commission: z.ZodOptional<z.ZodNumber>;
7438
+ type: z.ZodLiteral<"FIXED">;
7439
+ }, z.core.$strip>>, z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
7440
+ type: z.ZodString;
7441
+ }, z.core.$strip>, z.ZodObject<{
7442
+ factor: z.ZodNumber;
7443
+ }, z.core.$strip>>, z.ZodObject<{
7444
+ type: z.ZodString;
7445
+ }, z.core.$strip>>, z.ZodObject<{
7446
+ factor: z.ZodNumber;
7447
+ commission: z.ZodOptional<z.ZodNumber>;
7448
+ type: z.ZodLiteral<"MONTHS_OF_RENT">;
7449
+ }, z.core.$strip>>, z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
7450
+ type: z.ZodString;
7451
+ }, z.core.$strip>, z.ZodObject<{
7452
+ rate: z.ZodNumber;
7453
+ }, z.core.$strip>>, z.ZodObject<{
7454
+ type: z.ZodString;
7455
+ }, z.core.$strip>>, z.ZodObject<{
7456
+ rate: z.ZodNumber;
7457
+ commission: z.ZodOptional<z.ZodNumber>;
7458
+ type: z.ZodLiteral<"PERCENTAGE">;
7459
+ }, z.core.$strip>>]>>;
7460
+ platformListings: z.ZodArray<z.ZodObject<{
7461
+ platformId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
7462
+ platformType: z.ZodEnum<{
7463
+ SS: "SS";
7464
+ MY_HOME: "MY_HOME";
7465
+ }>;
7466
+ status: z.ZodEnum<{
7467
+ EXPIRED: "EXPIRED";
7468
+ PENDING: "PENDING";
7469
+ FAILED: "FAILED";
7470
+ SYNDICATED: "SYNDICATED";
7471
+ }>;
7472
+ listedAt: z.ZodOptional<z.ZodISODate>;
7473
+ expiresAt: z.ZodOptional<z.ZodISODate>;
7474
+ renewedAt: z.ZodOptional<z.ZodISODate>;
7475
+ boost: z.ZodOptional<z.ZodObject<{
7476
+ tier: z.ZodEnum<{
7477
+ VIP: "VIP";
7478
+ VIP_PLUS: "VIP_PLUS";
7479
+ SUPER_VIP: "SUPER_VIP";
7480
+ }>;
7481
+ status: z.ZodEnum<{
7482
+ ACTIVE: "ACTIVE";
7483
+ PENDING: "PENDING";
7484
+ FAIL_NO_BALANCE: "FAIL_NO_BALANCE";
7485
+ FAILED: "FAILED";
7486
+ }>;
7487
+ activatedAt: z.ZodOptional<z.ZodISODate>;
7488
+ expiresAt: z.ZodOptional<z.ZodISODate>;
7489
+ }, z.core.$strip>>;
7490
+ coloredListing: z.ZodOptional<z.ZodObject<{
7491
+ activatedAt: z.ZodISODate;
7492
+ expiresAt: z.ZodISODate;
7493
+ }, z.core.$strip>>;
7494
+ }, z.core.$strip>>;
7495
+ createdAt: z.ZodISODateTime;
7496
+ closedAt: z.ZodOptional<z.ZodISODateTime>;
7497
+ }, z.core.$strip>>;
7498
+ createdAt: z.ZodISODateTime;
7499
+ updatedAt: z.ZodISODateTime;
7500
+ closeReason: z.ZodOptional<z.ZodObject<{
7501
+ closedAt: z.ZodISODateTime;
7502
+ reason: z.ZodEnum<{
7503
+ OTHER: "OTHER";
7504
+ DEAL_CLOSED: "DEAL_CLOSED";
7505
+ OWNER_WITHDREW: "OWNER_WITHDREW";
7506
+ MANDATE_EXPIRED: "MANDATE_EXPIRED";
7507
+ }>;
7508
+ }, z.core.$strip>>;
7509
+ }, z.core.$strip>;
6791
7510
  export declare const zGetOauthData: z.ZodObject<{
6792
7511
  body: z.ZodOptional<z.ZodNever>;
6793
7512
  path: z.ZodOptional<z.ZodNever>;
@@ -6890,6 +7609,17 @@ export declare const zGetOauthGoogleAuthorizeData: z.ZodObject<{
6890
7609
  * OK
6891
7610
  */
6892
7611
  export declare const zGetOauthGoogleAuthorizeResponse: z.ZodRecord<z.ZodString, z.ZodString>;
7612
+ export declare const zDeleteNotificationsData: z.ZodObject<{
7613
+ body: z.ZodOptional<z.ZodNever>;
7614
+ path: z.ZodOptional<z.ZodNever>;
7615
+ query: z.ZodOptional<z.ZodObject<{
7616
+ target: z.ZodOptional<z.ZodString>;
7617
+ }, z.core.$strip>>;
7618
+ }, z.core.$strip>;
7619
+ /**
7620
+ * No Content
7621
+ */
7622
+ export declare const zDeleteNotificationsResponse: z.ZodVoid;
6893
7623
  export declare const zGetNotificationsData: z.ZodObject<{
6894
7624
  body: z.ZodOptional<z.ZodNever>;
6895
7625
  path: z.ZodOptional<z.ZodNever>;
@@ -7308,10 +8038,10 @@ export declare const zGetListingResponse: z.ZodObject<{
7308
8038
  }>>;
7309
8039
  price: z.ZodOptional<z.ZodNumber>;
7310
8040
  commissionType: z.ZodOptional<z.ZodEnum<{
7311
- FIXED_SALE: "FIXED_SALE";
7312
- FIXED_RENT: "FIXED_RENT";
7313
- PERCENTAGE: "PERCENTAGE";
8041
+ FIXED: "FIXED";
7314
8042
  MONTHS_OF_RENT: "MONTHS_OF_RENT";
8043
+ PERCENTAGE: "PERCENTAGE";
8044
+ NOT_SET: "NOT_SET";
7315
8045
  }>>;
7316
8046
  commission: z.ZodOptional<z.ZodNumber>;
7317
8047
  platforms: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -7451,10 +8181,10 @@ export declare const zGetListingByPropertyIdResponse: z.ZodObject<{
7451
8181
  }>>;
7452
8182
  price: z.ZodOptional<z.ZodNumber>;
7453
8183
  commissionType: z.ZodOptional<z.ZodEnum<{
7454
- FIXED_SALE: "FIXED_SALE";
7455
- FIXED_RENT: "FIXED_RENT";
7456
- PERCENTAGE: "PERCENTAGE";
8184
+ FIXED: "FIXED";
7457
8185
  MONTHS_OF_RENT: "MONTHS_OF_RENT";
8186
+ PERCENTAGE: "PERCENTAGE";
8187
+ NOT_SET: "NOT_SET";
7458
8188
  }>>;
7459
8189
  commission: z.ZodOptional<z.ZodNumber>;
7460
8190
  platforms: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -7723,9 +8453,9 @@ export declare const zGetConversationsByConversationIdUpdatesResponse: z.ZodObje
7723
8453
  }, z.core.$strip>>]>;
7724
8454
  status: z.ZodEnum<{
7725
8455
  PENDING: "PENDING";
8456
+ FAILED: "FAILED";
7726
8457
  RECEIVED: "RECEIVED";
7727
8458
  SENT: "SENT";
7728
- FAILED: "FAILED";
7729
8459
  }>;
7730
8460
  sentAt: z.ZodISODateTime;
7731
8461
  failureReason: z.ZodOptional<z.ZodString>;
@@ -7934,24 +8664,6 @@ export declare const zGetContactByContactIdResponse: z.ZodObject<{
7934
8664
  createdAt: z.ZodISODateTime;
7935
8665
  updatedAt: z.ZodISODateTime;
7936
8666
  }, z.core.$strip>;
7937
- export declare const zGetContactByContactIdOpenItemsData: z.ZodObject<{
7938
- body: z.ZodOptional<z.ZodNever>;
7939
- path: z.ZodObject<{
7940
- contactId: z.ZodCoercedBigInt<unknown>;
7941
- }, z.core.$strip>;
7942
- query: z.ZodOptional<z.ZodNever>;
7943
- }, z.core.$strip>;
7944
- /**
7945
- * OK
7946
- */
7947
- export declare const zGetContactByContactIdOpenItemsResponse: z.ZodObject<{
7948
- propertyIds: z.ZodOptional<z.ZodArray<z.ZodObject<{
7949
- value: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
7950
- }, z.core.$strip>>>;
7951
- interestIds: z.ZodOptional<z.ZodArray<z.ZodObject<{
7952
- value: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
7953
- }, z.core.$strip>>>;
7954
- }, z.core.$strip>;
7955
8667
  export declare const zGetContactByContactId360Data: z.ZodObject<{
7956
8668
  body: z.ZodOptional<z.ZodNever>;
7957
8669
  path: z.ZodObject<{
@@ -8649,17 +9361,17 @@ export declare const zDeleteContactsByContactIdPropertiesByPropertyIdListingsByL
8649
9361
  * No Content
8650
9362
  */
8651
9363
  export declare const zDeleteContactsByContactIdPropertiesByPropertyIdListingsByListingIdResponse: z.ZodVoid;
8652
- export declare const zDeleteContactsByContactIdInterestsByInterestIdItemsByItemIdData: z.ZodObject<{
9364
+ export declare const zDeleteContactsByContactIdInterestsByInterestIdListingsByExternalListingIdData: z.ZodObject<{
8653
9365
  body: z.ZodOptional<z.ZodNever>;
8654
9366
  path: z.ZodObject<{
8655
9367
  contactId: z.ZodCoercedBigInt<unknown>;
8656
9368
  interestId: z.ZodCoercedBigInt<unknown>;
8657
- itemId: z.ZodCoercedBigInt<unknown>;
9369
+ externalListingId: z.ZodUUID;
8658
9370
  }, z.core.$strip>;
8659
9371
  query: z.ZodOptional<z.ZodNever>;
8660
9372
  }, z.core.$strip>;
8661
9373
  /**
8662
9374
  * No Content
8663
9375
  */
8664
- export declare const zDeleteContactsByContactIdInterestsByInterestIdItemsByItemIdResponse: z.ZodVoid;
9376
+ export declare const zDeleteContactsByContactIdInterestsByInterestIdListingsByExternalListingIdResponse: z.ZodVoid;
8665
9377
  //# sourceMappingURL=zod.gen.d.ts.map