@homespot-sdk/core 0.0.325 → 0.0.326
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/rem/index.d.ts +2 -2
- package/dist/rem/index.d.ts.map +1 -1
- package/dist/rem/index.js +1 -1
- package/dist/rem/index.js.map +1 -1
- package/dist/rem/schemas.gen.d.ts +152 -148
- package/dist/rem/schemas.gen.d.ts.map +1 -1
- package/dist/rem/schemas.gen.js +182 -177
- package/dist/rem/schemas.gen.js.map +1 -1
- package/dist/rem/sdk.gen.d.ts +3 -3
- package/dist/rem/sdk.gen.d.ts.map +1 -1
- package/dist/rem/sdk.gen.js +4 -5
- package/dist/rem/sdk.gen.js.map +1 -1
- package/dist/rem/transformers.gen.d.ts +1 -2
- package/dist/rem/transformers.gen.d.ts.map +1 -1
- package/dist/rem/transformers.gen.js +1 -9
- package/dist/rem/transformers.gen.js.map +1 -1
- package/dist/rem/types.gen.d.ts +77 -68
- package/dist/rem/types.gen.d.ts.map +1 -1
- package/dist/rem/zod.gen.d.ts +731 -389
- package/dist/rem/zod.gen.d.ts.map +1 -1
- package/dist/rem/zod.gen.js +132 -123
- package/dist/rem/zod.gen.js.map +1 -1
- package/package.json +1 -1
package/dist/rem/zod.gen.d.ts
CHANGED
|
@@ -1327,6 +1327,124 @@ export declare const zAddressResponse: z.ZodObject<{
|
|
|
1327
1327
|
lat: z.ZodNumber;
|
|
1328
1328
|
lng: z.ZodNumber;
|
|
1329
1329
|
}, z.core.$strip>;
|
|
1330
|
+
export declare const zBoundingBox: z.ZodObject<{
|
|
1331
|
+
minLat: z.ZodNumber;
|
|
1332
|
+
maxLat: z.ZodNumber;
|
|
1333
|
+
minLng: z.ZodNumber;
|
|
1334
|
+
maxLng: z.ZodNumber;
|
|
1335
|
+
}, z.core.$strip>;
|
|
1336
|
+
export declare const zRangeBigDecimal: z.ZodObject<{
|
|
1337
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
1338
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
1339
|
+
}, z.core.$strip>;
|
|
1340
|
+
export declare const zRangeDouble: z.ZodObject<{
|
|
1341
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
1342
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
1343
|
+
}, z.core.$strip>;
|
|
1344
|
+
export declare const zRangeInteger: z.ZodObject<{
|
|
1345
|
+
min: z.ZodOptional<z.ZodInt>;
|
|
1346
|
+
max: z.ZodOptional<z.ZodInt>;
|
|
1347
|
+
}, z.core.$strip>;
|
|
1348
|
+
export declare const zCriteria: z.ZodObject<{
|
|
1349
|
+
propertyTypes: z.ZodArray<z.ZodEnum<{
|
|
1350
|
+
GARAGE: "GARAGE";
|
|
1351
|
+
HOUSE: "HOUSE";
|
|
1352
|
+
TOWN_HOUSE: "TOWN_HOUSE";
|
|
1353
|
+
COUNTRY_HOUSE: "COUNTRY_HOUSE";
|
|
1354
|
+
VILLA: "VILLA";
|
|
1355
|
+
COTTAGE: "COTTAGE";
|
|
1356
|
+
APARTMENT: "APARTMENT";
|
|
1357
|
+
DUPLEX: "DUPLEX";
|
|
1358
|
+
TRIPLEX: "TRIPLEX";
|
|
1359
|
+
SEMI_BASEMENT: "SEMI_BASEMENT";
|
|
1360
|
+
ATTIC: "ATTIC";
|
|
1361
|
+
AGRICULTURAL_LAND: "AGRICULTURAL_LAND";
|
|
1362
|
+
RESIDENTIAL_LAND: "RESIDENTIAL_LAND";
|
|
1363
|
+
HOTEL_ROOM: "HOTEL_ROOM";
|
|
1364
|
+
MOTEL_ROOM: "MOTEL_ROOM";
|
|
1365
|
+
CO_LIVING_SPACE: "CO_LIVING_SPACE";
|
|
1366
|
+
OFFICE: "OFFICE";
|
|
1367
|
+
COMMERCIAL_SPACE: "COMMERCIAL_SPACE";
|
|
1368
|
+
CO_WORKING_SPACE: "CO_WORKING_SPACE";
|
|
1369
|
+
WAREHOUSE: "WAREHOUSE";
|
|
1370
|
+
}>>;
|
|
1371
|
+
listingType: z.ZodEnum<{
|
|
1372
|
+
SALE: "SALE";
|
|
1373
|
+
RENT: "RENT";
|
|
1374
|
+
DAILY_RENT: "DAILY_RENT";
|
|
1375
|
+
PLEDGE: "PLEDGE";
|
|
1376
|
+
}>;
|
|
1377
|
+
budget: z.ZodOptional<z.ZodObject<{
|
|
1378
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
1379
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
1380
|
+
}, z.core.$strip>>;
|
|
1381
|
+
bedrooms: z.ZodOptional<z.ZodObject<{
|
|
1382
|
+
min: z.ZodOptional<z.ZodInt>;
|
|
1383
|
+
max: z.ZodOptional<z.ZodInt>;
|
|
1384
|
+
}, z.core.$strip>>;
|
|
1385
|
+
bathrooms: z.ZodOptional<z.ZodObject<{
|
|
1386
|
+
min: z.ZodOptional<z.ZodInt>;
|
|
1387
|
+
max: z.ZodOptional<z.ZodInt>;
|
|
1388
|
+
}, z.core.$strip>>;
|
|
1389
|
+
totalArea: z.ZodOptional<z.ZodObject<{
|
|
1390
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
1391
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
1392
|
+
}, z.core.$strip>>;
|
|
1393
|
+
livingArea: z.ZodOptional<z.ZodObject<{
|
|
1394
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
1395
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
1396
|
+
}, z.core.$strip>>;
|
|
1397
|
+
region: z.ZodOptional<z.ZodObject<{
|
|
1398
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
1399
|
+
names: z.ZodArray<z.ZodObject<{
|
|
1400
|
+
language: z.ZodEnum<{
|
|
1401
|
+
ka: "ka";
|
|
1402
|
+
en: "en";
|
|
1403
|
+
ru: "ru";
|
|
1404
|
+
}>;
|
|
1405
|
+
text: z.ZodString;
|
|
1406
|
+
}, z.core.$strip>>;
|
|
1407
|
+
}, z.core.$strip>>;
|
|
1408
|
+
district: z.ZodOptional<z.ZodObject<{
|
|
1409
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
1410
|
+
names: z.ZodArray<z.ZodObject<{
|
|
1411
|
+
language: z.ZodEnum<{
|
|
1412
|
+
ka: "ka";
|
|
1413
|
+
en: "en";
|
|
1414
|
+
ru: "ru";
|
|
1415
|
+
}>;
|
|
1416
|
+
text: z.ZodString;
|
|
1417
|
+
}, z.core.$strip>>;
|
|
1418
|
+
}, z.core.$strip>>;
|
|
1419
|
+
subDistrict: z.ZodOptional<z.ZodObject<{
|
|
1420
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
1421
|
+
names: z.ZodArray<z.ZodObject<{
|
|
1422
|
+
language: z.ZodEnum<{
|
|
1423
|
+
ka: "ka";
|
|
1424
|
+
en: "en";
|
|
1425
|
+
ru: "ru";
|
|
1426
|
+
}>;
|
|
1427
|
+
text: z.ZodString;
|
|
1428
|
+
}, z.core.$strip>>;
|
|
1429
|
+
}, z.core.$strip>>;
|
|
1430
|
+
street: z.ZodOptional<z.ZodObject<{
|
|
1431
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
1432
|
+
names: z.ZodArray<z.ZodObject<{
|
|
1433
|
+
language: z.ZodEnum<{
|
|
1434
|
+
ka: "ka";
|
|
1435
|
+
en: "en";
|
|
1436
|
+
ru: "ru";
|
|
1437
|
+
}>;
|
|
1438
|
+
text: z.ZodString;
|
|
1439
|
+
}, z.core.$strip>>;
|
|
1440
|
+
}, z.core.$strip>>;
|
|
1441
|
+
}, z.core.$strip>;
|
|
1442
|
+
export declare const zRecommendationStats: z.ZodObject<{
|
|
1443
|
+
total: z.ZodInt;
|
|
1444
|
+
liked: z.ZodInt;
|
|
1445
|
+
disliked: z.ZodInt;
|
|
1446
|
+
undecided: z.ZodInt;
|
|
1447
|
+
}, z.core.$strip>;
|
|
1330
1448
|
export declare const zRecommendationsCardView: z.ZodObject<{
|
|
1331
1449
|
decision: z.ZodOptional<z.ZodEnum<{
|
|
1332
1450
|
MAYBE: "MAYBE";
|
|
@@ -1527,15 +1645,122 @@ export declare const zPagedModelRecommendationsCardView: z.ZodObject<{
|
|
|
1527
1645
|
totalPages: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
1528
1646
|
}, z.core.$strip>>;
|
|
1529
1647
|
}, z.core.$strip>;
|
|
1530
|
-
export declare const
|
|
1531
|
-
|
|
1648
|
+
export declare const zInterestResponse: z.ZodObject<{
|
|
1649
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
1532
1650
|
title: z.ZodString;
|
|
1533
|
-
createdAt: z.ZodISODateTime;
|
|
1534
1651
|
status: z.ZodEnum<{
|
|
1535
1652
|
UNPUBLISHED: "UNPUBLISHED";
|
|
1536
1653
|
PUBLISHED: "PUBLISHED";
|
|
1537
1654
|
CLOSED: "CLOSED";
|
|
1538
1655
|
}>;
|
|
1656
|
+
shareToken: z.ZodUUID;
|
|
1657
|
+
createdAt: z.ZodISODateTime;
|
|
1658
|
+
criteria: z.ZodObject<{
|
|
1659
|
+
propertyTypes: z.ZodArray<z.ZodEnum<{
|
|
1660
|
+
GARAGE: "GARAGE";
|
|
1661
|
+
HOUSE: "HOUSE";
|
|
1662
|
+
TOWN_HOUSE: "TOWN_HOUSE";
|
|
1663
|
+
COUNTRY_HOUSE: "COUNTRY_HOUSE";
|
|
1664
|
+
VILLA: "VILLA";
|
|
1665
|
+
COTTAGE: "COTTAGE";
|
|
1666
|
+
APARTMENT: "APARTMENT";
|
|
1667
|
+
DUPLEX: "DUPLEX";
|
|
1668
|
+
TRIPLEX: "TRIPLEX";
|
|
1669
|
+
SEMI_BASEMENT: "SEMI_BASEMENT";
|
|
1670
|
+
ATTIC: "ATTIC";
|
|
1671
|
+
AGRICULTURAL_LAND: "AGRICULTURAL_LAND";
|
|
1672
|
+
RESIDENTIAL_LAND: "RESIDENTIAL_LAND";
|
|
1673
|
+
HOTEL_ROOM: "HOTEL_ROOM";
|
|
1674
|
+
MOTEL_ROOM: "MOTEL_ROOM";
|
|
1675
|
+
CO_LIVING_SPACE: "CO_LIVING_SPACE";
|
|
1676
|
+
OFFICE: "OFFICE";
|
|
1677
|
+
COMMERCIAL_SPACE: "COMMERCIAL_SPACE";
|
|
1678
|
+
CO_WORKING_SPACE: "CO_WORKING_SPACE";
|
|
1679
|
+
WAREHOUSE: "WAREHOUSE";
|
|
1680
|
+
}>>;
|
|
1681
|
+
listingType: z.ZodEnum<{
|
|
1682
|
+
SALE: "SALE";
|
|
1683
|
+
RENT: "RENT";
|
|
1684
|
+
DAILY_RENT: "DAILY_RENT";
|
|
1685
|
+
PLEDGE: "PLEDGE";
|
|
1686
|
+
}>;
|
|
1687
|
+
budget: z.ZodOptional<z.ZodObject<{
|
|
1688
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
1689
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
1690
|
+
}, z.core.$strip>>;
|
|
1691
|
+
bedrooms: z.ZodOptional<z.ZodObject<{
|
|
1692
|
+
min: z.ZodOptional<z.ZodInt>;
|
|
1693
|
+
max: z.ZodOptional<z.ZodInt>;
|
|
1694
|
+
}, z.core.$strip>>;
|
|
1695
|
+
bathrooms: z.ZodOptional<z.ZodObject<{
|
|
1696
|
+
min: z.ZodOptional<z.ZodInt>;
|
|
1697
|
+
max: z.ZodOptional<z.ZodInt>;
|
|
1698
|
+
}, z.core.$strip>>;
|
|
1699
|
+
totalArea: z.ZodOptional<z.ZodObject<{
|
|
1700
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
1701
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
1702
|
+
}, z.core.$strip>>;
|
|
1703
|
+
livingArea: z.ZodOptional<z.ZodObject<{
|
|
1704
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
1705
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
1706
|
+
}, z.core.$strip>>;
|
|
1707
|
+
region: z.ZodOptional<z.ZodObject<{
|
|
1708
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
1709
|
+
names: z.ZodArray<z.ZodObject<{
|
|
1710
|
+
language: z.ZodEnum<{
|
|
1711
|
+
ka: "ka";
|
|
1712
|
+
en: "en";
|
|
1713
|
+
ru: "ru";
|
|
1714
|
+
}>;
|
|
1715
|
+
text: z.ZodString;
|
|
1716
|
+
}, z.core.$strip>>;
|
|
1717
|
+
}, z.core.$strip>>;
|
|
1718
|
+
district: z.ZodOptional<z.ZodObject<{
|
|
1719
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
1720
|
+
names: z.ZodArray<z.ZodObject<{
|
|
1721
|
+
language: z.ZodEnum<{
|
|
1722
|
+
ka: "ka";
|
|
1723
|
+
en: "en";
|
|
1724
|
+
ru: "ru";
|
|
1725
|
+
}>;
|
|
1726
|
+
text: z.ZodString;
|
|
1727
|
+
}, z.core.$strip>>;
|
|
1728
|
+
}, z.core.$strip>>;
|
|
1729
|
+
subDistrict: z.ZodOptional<z.ZodObject<{
|
|
1730
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
1731
|
+
names: z.ZodArray<z.ZodObject<{
|
|
1732
|
+
language: z.ZodEnum<{
|
|
1733
|
+
ka: "ka";
|
|
1734
|
+
en: "en";
|
|
1735
|
+
ru: "ru";
|
|
1736
|
+
}>;
|
|
1737
|
+
text: z.ZodString;
|
|
1738
|
+
}, z.core.$strip>>;
|
|
1739
|
+
}, z.core.$strip>>;
|
|
1740
|
+
street: z.ZodOptional<z.ZodObject<{
|
|
1741
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
1742
|
+
names: z.ZodArray<z.ZodObject<{
|
|
1743
|
+
language: z.ZodEnum<{
|
|
1744
|
+
ka: "ka";
|
|
1745
|
+
en: "en";
|
|
1746
|
+
ru: "ru";
|
|
1747
|
+
}>;
|
|
1748
|
+
text: z.ZodString;
|
|
1749
|
+
}, z.core.$strip>>;
|
|
1750
|
+
}, z.core.$strip>>;
|
|
1751
|
+
}, z.core.$strip>;
|
|
1752
|
+
recommendationStats: z.ZodObject<{
|
|
1753
|
+
total: z.ZodInt;
|
|
1754
|
+
liked: z.ZodInt;
|
|
1755
|
+
disliked: z.ZodInt;
|
|
1756
|
+
undecided: z.ZodInt;
|
|
1757
|
+
}, z.core.$strip>;
|
|
1758
|
+
boundedBox: z.ZodOptional<z.ZodObject<{
|
|
1759
|
+
minLat: z.ZodNumber;
|
|
1760
|
+
maxLat: z.ZodNumber;
|
|
1761
|
+
minLng: z.ZodNumber;
|
|
1762
|
+
maxLng: z.ZodNumber;
|
|
1763
|
+
}, z.core.$strip>>;
|
|
1539
1764
|
recommendations: z.ZodObject<{
|
|
1540
1765
|
content: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1541
1766
|
decision: z.ZodOptional<z.ZodEnum<{
|
|
@@ -3372,258 +3597,35 @@ export declare const zCursorPageMessageView: z.ZodObject<{
|
|
|
3372
3597
|
nextCursor: z.ZodOptional<z.ZodString>;
|
|
3373
3598
|
hasNext: z.ZodOptional<z.ZodBoolean>;
|
|
3374
3599
|
}, z.core.$strip>;
|
|
3375
|
-
export declare const
|
|
3376
|
-
|
|
3377
|
-
|
|
3600
|
+
export declare const zCommentView: z.ZodObject<{
|
|
3601
|
+
id: z.ZodUUID;
|
|
3602
|
+
contactId: z.ZodCoercedBigInt<unknown>;
|
|
3603
|
+
authorId: z.ZodUUID;
|
|
3604
|
+
authorFirstName: z.ZodString;
|
|
3605
|
+
authorLastName: z.ZodString;
|
|
3606
|
+
sentByPicture: z.ZodOptional<z.ZodString>;
|
|
3607
|
+
body: z.ZodString;
|
|
3608
|
+
createdAt: z.ZodISODateTime;
|
|
3609
|
+
editedAt: z.ZodOptional<z.ZodISODateTime>;
|
|
3378
3610
|
}, z.core.$strip>;
|
|
3379
|
-
export declare const
|
|
3380
|
-
|
|
3381
|
-
|
|
3382
|
-
|
|
3383
|
-
|
|
3384
|
-
|
|
3385
|
-
|
|
3386
|
-
|
|
3387
|
-
|
|
3388
|
-
|
|
3389
|
-
|
|
3390
|
-
|
|
3391
|
-
|
|
3392
|
-
|
|
3393
|
-
|
|
3394
|
-
|
|
3395
|
-
|
|
3396
|
-
|
|
3397
|
-
TRIPLEX: "TRIPLEX";
|
|
3398
|
-
SEMI_BASEMENT: "SEMI_BASEMENT";
|
|
3399
|
-
ATTIC: "ATTIC";
|
|
3400
|
-
AGRICULTURAL_LAND: "AGRICULTURAL_LAND";
|
|
3401
|
-
RESIDENTIAL_LAND: "RESIDENTIAL_LAND";
|
|
3402
|
-
HOTEL_ROOM: "HOTEL_ROOM";
|
|
3403
|
-
MOTEL_ROOM: "MOTEL_ROOM";
|
|
3404
|
-
CO_LIVING_SPACE: "CO_LIVING_SPACE";
|
|
3405
|
-
OFFICE: "OFFICE";
|
|
3406
|
-
COMMERCIAL_SPACE: "COMMERCIAL_SPACE";
|
|
3407
|
-
CO_WORKING_SPACE: "CO_WORKING_SPACE";
|
|
3408
|
-
WAREHOUSE: "WAREHOUSE";
|
|
3409
|
-
}>>;
|
|
3410
|
-
listingType: z.ZodEnum<{
|
|
3411
|
-
SALE: "SALE";
|
|
3412
|
-
RENT: "RENT";
|
|
3413
|
-
DAILY_RENT: "DAILY_RENT";
|
|
3414
|
-
PLEDGE: "PLEDGE";
|
|
3415
|
-
}>;
|
|
3416
|
-
budget: z.ZodOptional<z.ZodObject<{
|
|
3417
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
3418
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
3419
|
-
}, z.core.$strip>>;
|
|
3420
|
-
bedrooms: z.ZodOptional<z.ZodObject<{
|
|
3421
|
-
min: z.ZodOptional<z.ZodInt>;
|
|
3422
|
-
max: z.ZodOptional<z.ZodInt>;
|
|
3423
|
-
}, z.core.$strip>>;
|
|
3424
|
-
bathrooms: z.ZodOptional<z.ZodObject<{
|
|
3425
|
-
min: z.ZodOptional<z.ZodInt>;
|
|
3426
|
-
max: z.ZodOptional<z.ZodInt>;
|
|
3427
|
-
}, z.core.$strip>>;
|
|
3428
|
-
totalArea: z.ZodOptional<z.ZodObject<{
|
|
3429
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
3430
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
3431
|
-
}, z.core.$strip>>;
|
|
3432
|
-
livingArea: z.ZodOptional<z.ZodObject<{
|
|
3433
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
3434
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
3435
|
-
}, z.core.$strip>>;
|
|
3436
|
-
region: z.ZodOptional<z.ZodObject<{
|
|
3437
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
3438
|
-
names: z.ZodArray<z.ZodObject<{
|
|
3439
|
-
language: z.ZodEnum<{
|
|
3440
|
-
ka: "ka";
|
|
3441
|
-
en: "en";
|
|
3442
|
-
ru: "ru";
|
|
3443
|
-
}>;
|
|
3444
|
-
text: z.ZodString;
|
|
3445
|
-
}, z.core.$strip>>;
|
|
3446
|
-
}, z.core.$strip>>;
|
|
3447
|
-
district: z.ZodOptional<z.ZodObject<{
|
|
3448
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
3449
|
-
names: z.ZodArray<z.ZodObject<{
|
|
3450
|
-
language: z.ZodEnum<{
|
|
3451
|
-
ka: "ka";
|
|
3452
|
-
en: "en";
|
|
3453
|
-
ru: "ru";
|
|
3454
|
-
}>;
|
|
3455
|
-
text: z.ZodString;
|
|
3456
|
-
}, z.core.$strip>>;
|
|
3457
|
-
}, z.core.$strip>>;
|
|
3458
|
-
subDistrict: z.ZodOptional<z.ZodObject<{
|
|
3459
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
3460
|
-
names: z.ZodArray<z.ZodObject<{
|
|
3461
|
-
language: z.ZodEnum<{
|
|
3462
|
-
ka: "ka";
|
|
3463
|
-
en: "en";
|
|
3464
|
-
ru: "ru";
|
|
3465
|
-
}>;
|
|
3466
|
-
text: z.ZodString;
|
|
3467
|
-
}, z.core.$strip>>;
|
|
3468
|
-
}, z.core.$strip>>;
|
|
3469
|
-
street: z.ZodOptional<z.ZodObject<{
|
|
3470
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
3471
|
-
names: z.ZodArray<z.ZodObject<{
|
|
3472
|
-
language: z.ZodEnum<{
|
|
3473
|
-
ka: "ka";
|
|
3474
|
-
en: "en";
|
|
3475
|
-
ru: "ru";
|
|
3476
|
-
}>;
|
|
3477
|
-
text: z.ZodString;
|
|
3478
|
-
}, z.core.$strip>>;
|
|
3479
|
-
}, z.core.$strip>>;
|
|
3480
|
-
}, z.core.$strip>;
|
|
3481
|
-
export declare const zRecommendationStats: z.ZodObject<{
|
|
3482
|
-
total: z.ZodInt;
|
|
3483
|
-
liked: z.ZodInt;
|
|
3484
|
-
disliked: z.ZodInt;
|
|
3485
|
-
undecided: z.ZodInt;
|
|
3486
|
-
}, z.core.$strip>;
|
|
3487
|
-
export declare const zInterestResponse: z.ZodObject<{
|
|
3488
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
3489
|
-
title: z.ZodString;
|
|
3490
|
-
status: z.ZodEnum<{
|
|
3491
|
-
UNPUBLISHED: "UNPUBLISHED";
|
|
3492
|
-
PUBLISHED: "PUBLISHED";
|
|
3493
|
-
CLOSED: "CLOSED";
|
|
3494
|
-
}>;
|
|
3495
|
-
shareToken: z.ZodUUID;
|
|
3496
|
-
createdAt: z.ZodISODateTime;
|
|
3497
|
-
criteria: z.ZodObject<{
|
|
3498
|
-
propertyTypes: z.ZodArray<z.ZodEnum<{
|
|
3499
|
-
GARAGE: "GARAGE";
|
|
3500
|
-
HOUSE: "HOUSE";
|
|
3501
|
-
TOWN_HOUSE: "TOWN_HOUSE";
|
|
3502
|
-
COUNTRY_HOUSE: "COUNTRY_HOUSE";
|
|
3503
|
-
VILLA: "VILLA";
|
|
3504
|
-
COTTAGE: "COTTAGE";
|
|
3505
|
-
APARTMENT: "APARTMENT";
|
|
3506
|
-
DUPLEX: "DUPLEX";
|
|
3507
|
-
TRIPLEX: "TRIPLEX";
|
|
3508
|
-
SEMI_BASEMENT: "SEMI_BASEMENT";
|
|
3509
|
-
ATTIC: "ATTIC";
|
|
3510
|
-
AGRICULTURAL_LAND: "AGRICULTURAL_LAND";
|
|
3511
|
-
RESIDENTIAL_LAND: "RESIDENTIAL_LAND";
|
|
3512
|
-
HOTEL_ROOM: "HOTEL_ROOM";
|
|
3513
|
-
MOTEL_ROOM: "MOTEL_ROOM";
|
|
3514
|
-
CO_LIVING_SPACE: "CO_LIVING_SPACE";
|
|
3515
|
-
OFFICE: "OFFICE";
|
|
3516
|
-
COMMERCIAL_SPACE: "COMMERCIAL_SPACE";
|
|
3517
|
-
CO_WORKING_SPACE: "CO_WORKING_SPACE";
|
|
3518
|
-
WAREHOUSE: "WAREHOUSE";
|
|
3519
|
-
}>>;
|
|
3520
|
-
listingType: z.ZodEnum<{
|
|
3521
|
-
SALE: "SALE";
|
|
3522
|
-
RENT: "RENT";
|
|
3523
|
-
DAILY_RENT: "DAILY_RENT";
|
|
3524
|
-
PLEDGE: "PLEDGE";
|
|
3525
|
-
}>;
|
|
3526
|
-
budget: z.ZodOptional<z.ZodObject<{
|
|
3527
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
3528
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
3529
|
-
}, z.core.$strip>>;
|
|
3530
|
-
bedrooms: z.ZodOptional<z.ZodObject<{
|
|
3531
|
-
min: z.ZodOptional<z.ZodInt>;
|
|
3532
|
-
max: z.ZodOptional<z.ZodInt>;
|
|
3533
|
-
}, z.core.$strip>>;
|
|
3534
|
-
bathrooms: z.ZodOptional<z.ZodObject<{
|
|
3535
|
-
min: z.ZodOptional<z.ZodInt>;
|
|
3536
|
-
max: z.ZodOptional<z.ZodInt>;
|
|
3537
|
-
}, z.core.$strip>>;
|
|
3538
|
-
totalArea: z.ZodOptional<z.ZodObject<{
|
|
3539
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
3540
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
3541
|
-
}, z.core.$strip>>;
|
|
3542
|
-
livingArea: z.ZodOptional<z.ZodObject<{
|
|
3543
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
3544
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
3545
|
-
}, z.core.$strip>>;
|
|
3546
|
-
region: z.ZodOptional<z.ZodObject<{
|
|
3547
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
3548
|
-
names: z.ZodArray<z.ZodObject<{
|
|
3549
|
-
language: z.ZodEnum<{
|
|
3550
|
-
ka: "ka";
|
|
3551
|
-
en: "en";
|
|
3552
|
-
ru: "ru";
|
|
3553
|
-
}>;
|
|
3554
|
-
text: z.ZodString;
|
|
3555
|
-
}, z.core.$strip>>;
|
|
3556
|
-
}, z.core.$strip>>;
|
|
3557
|
-
district: z.ZodOptional<z.ZodObject<{
|
|
3558
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
3559
|
-
names: z.ZodArray<z.ZodObject<{
|
|
3560
|
-
language: z.ZodEnum<{
|
|
3561
|
-
ka: "ka";
|
|
3562
|
-
en: "en";
|
|
3563
|
-
ru: "ru";
|
|
3564
|
-
}>;
|
|
3565
|
-
text: z.ZodString;
|
|
3566
|
-
}, z.core.$strip>>;
|
|
3567
|
-
}, z.core.$strip>>;
|
|
3568
|
-
subDistrict: z.ZodOptional<z.ZodObject<{
|
|
3569
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
3570
|
-
names: z.ZodArray<z.ZodObject<{
|
|
3571
|
-
language: z.ZodEnum<{
|
|
3572
|
-
ka: "ka";
|
|
3573
|
-
en: "en";
|
|
3574
|
-
ru: "ru";
|
|
3575
|
-
}>;
|
|
3576
|
-
text: z.ZodString;
|
|
3577
|
-
}, z.core.$strip>>;
|
|
3578
|
-
}, z.core.$strip>>;
|
|
3579
|
-
street: z.ZodOptional<z.ZodObject<{
|
|
3580
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
3581
|
-
names: z.ZodArray<z.ZodObject<{
|
|
3582
|
-
language: z.ZodEnum<{
|
|
3583
|
-
ka: "ka";
|
|
3584
|
-
en: "en";
|
|
3585
|
-
ru: "ru";
|
|
3586
|
-
}>;
|
|
3587
|
-
text: z.ZodString;
|
|
3588
|
-
}, z.core.$strip>>;
|
|
3589
|
-
}, z.core.$strip>>;
|
|
3590
|
-
}, z.core.$strip>;
|
|
3591
|
-
recommendations: z.ZodObject<{
|
|
3592
|
-
total: z.ZodInt;
|
|
3593
|
-
liked: z.ZodInt;
|
|
3594
|
-
disliked: z.ZodInt;
|
|
3595
|
-
undecided: z.ZodInt;
|
|
3596
|
-
}, z.core.$strip>;
|
|
3597
|
-
}, z.core.$strip>;
|
|
3598
|
-
export declare const zCommentView: z.ZodObject<{
|
|
3599
|
-
id: z.ZodUUID;
|
|
3600
|
-
contactId: z.ZodCoercedBigInt<unknown>;
|
|
3601
|
-
authorId: z.ZodUUID;
|
|
3602
|
-
authorFirstName: z.ZodString;
|
|
3603
|
-
authorLastName: z.ZodString;
|
|
3604
|
-
sentByPicture: z.ZodOptional<z.ZodString>;
|
|
3605
|
-
body: z.ZodString;
|
|
3606
|
-
createdAt: z.ZodISODateTime;
|
|
3607
|
-
editedAt: z.ZodOptional<z.ZodISODateTime>;
|
|
3608
|
-
}, z.core.$strip>;
|
|
3609
|
-
export declare const zPagedModelCommentView: z.ZodObject<{
|
|
3610
|
-
content: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3611
|
-
id: z.ZodUUID;
|
|
3612
|
-
contactId: z.ZodCoercedBigInt<unknown>;
|
|
3613
|
-
authorId: z.ZodUUID;
|
|
3614
|
-
authorFirstName: z.ZodString;
|
|
3615
|
-
authorLastName: z.ZodString;
|
|
3616
|
-
sentByPicture: z.ZodOptional<z.ZodString>;
|
|
3617
|
-
body: z.ZodString;
|
|
3618
|
-
createdAt: z.ZodISODateTime;
|
|
3619
|
-
editedAt: z.ZodOptional<z.ZodISODateTime>;
|
|
3620
|
-
}, z.core.$strip>>>;
|
|
3621
|
-
page: z.ZodOptional<z.ZodObject<{
|
|
3622
|
-
size: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
3623
|
-
number: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
3624
|
-
totalElements: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
3625
|
-
totalPages: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
3626
|
-
}, z.core.$strip>>;
|
|
3611
|
+
export declare const zPagedModelCommentView: z.ZodObject<{
|
|
3612
|
+
content: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3613
|
+
id: z.ZodUUID;
|
|
3614
|
+
contactId: z.ZodCoercedBigInt<unknown>;
|
|
3615
|
+
authorId: z.ZodUUID;
|
|
3616
|
+
authorFirstName: z.ZodString;
|
|
3617
|
+
authorLastName: z.ZodString;
|
|
3618
|
+
sentByPicture: z.ZodOptional<z.ZodString>;
|
|
3619
|
+
body: z.ZodString;
|
|
3620
|
+
createdAt: z.ZodISODateTime;
|
|
3621
|
+
editedAt: z.ZodOptional<z.ZodISODateTime>;
|
|
3622
|
+
}, z.core.$strip>>>;
|
|
3623
|
+
page: z.ZodOptional<z.ZodObject<{
|
|
3624
|
+
size: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
3625
|
+
number: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
3626
|
+
totalElements: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
3627
|
+
totalPages: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
3628
|
+
}, z.core.$strip>>;
|
|
3627
3629
|
}, z.core.$strip>;
|
|
3628
3630
|
export declare const zContactGridResponse: z.ZodObject<{
|
|
3629
3631
|
id: z.ZodCoercedBigInt<unknown>;
|
|
@@ -4052,12 +4054,122 @@ export declare const zClient360Response: z.ZodObject<{
|
|
|
4052
4054
|
}, z.core.$strip>>;
|
|
4053
4055
|
}, z.core.$strip>>;
|
|
4054
4056
|
}, z.core.$strip>;
|
|
4055
|
-
|
|
4057
|
+
recommendationStats: z.ZodObject<{
|
|
4056
4058
|
total: z.ZodInt;
|
|
4057
4059
|
liked: z.ZodInt;
|
|
4058
4060
|
disliked: z.ZodInt;
|
|
4059
4061
|
undecided: z.ZodInt;
|
|
4060
4062
|
}, z.core.$strip>;
|
|
4063
|
+
boundedBox: z.ZodOptional<z.ZodObject<{
|
|
4064
|
+
minLat: z.ZodNumber;
|
|
4065
|
+
maxLat: z.ZodNumber;
|
|
4066
|
+
minLng: z.ZodNumber;
|
|
4067
|
+
maxLng: z.ZodNumber;
|
|
4068
|
+
}, z.core.$strip>>;
|
|
4069
|
+
recommendations: z.ZodObject<{
|
|
4070
|
+
content: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4071
|
+
decision: z.ZodOptional<z.ZodEnum<{
|
|
4072
|
+
MAYBE: "MAYBE";
|
|
4073
|
+
DISLIKE: "DISLIKE";
|
|
4074
|
+
LIKE: "LIKE";
|
|
4075
|
+
}>>;
|
|
4076
|
+
clientNote: z.ZodOptional<z.ZodString>;
|
|
4077
|
+
ownerContactId: z.ZodCoercedBigInt<unknown>;
|
|
4078
|
+
listingId: z.ZodCoercedBigInt<unknown>;
|
|
4079
|
+
externalListingId: z.ZodUUID;
|
|
4080
|
+
listingType: z.ZodEnum<{
|
|
4081
|
+
SALE: "SALE";
|
|
4082
|
+
RENT: "RENT";
|
|
4083
|
+
DAILY_RENT: "DAILY_RENT";
|
|
4084
|
+
PLEDGE: "PLEDGE";
|
|
4085
|
+
}>;
|
|
4086
|
+
price: z.ZodNumber;
|
|
4087
|
+
propertyId: z.ZodCoercedBigInt<unknown>;
|
|
4088
|
+
externalPropertyId: z.ZodUUID;
|
|
4089
|
+
type: z.ZodEnum<{
|
|
4090
|
+
GARAGE: "GARAGE";
|
|
4091
|
+
HOUSE: "HOUSE";
|
|
4092
|
+
TOWN_HOUSE: "TOWN_HOUSE";
|
|
4093
|
+
COUNTRY_HOUSE: "COUNTRY_HOUSE";
|
|
4094
|
+
VILLA: "VILLA";
|
|
4095
|
+
COTTAGE: "COTTAGE";
|
|
4096
|
+
APARTMENT: "APARTMENT";
|
|
4097
|
+
DUPLEX: "DUPLEX";
|
|
4098
|
+
TRIPLEX: "TRIPLEX";
|
|
4099
|
+
SEMI_BASEMENT: "SEMI_BASEMENT";
|
|
4100
|
+
ATTIC: "ATTIC";
|
|
4101
|
+
AGRICULTURAL_LAND: "AGRICULTURAL_LAND";
|
|
4102
|
+
RESIDENTIAL_LAND: "RESIDENTIAL_LAND";
|
|
4103
|
+
HOTEL_ROOM: "HOTEL_ROOM";
|
|
4104
|
+
MOTEL_ROOM: "MOTEL_ROOM";
|
|
4105
|
+
CO_LIVING_SPACE: "CO_LIVING_SPACE";
|
|
4106
|
+
OFFICE: "OFFICE";
|
|
4107
|
+
COMMERCIAL_SPACE: "COMMERCIAL_SPACE";
|
|
4108
|
+
CO_WORKING_SPACE: "CO_WORKING_SPACE";
|
|
4109
|
+
WAREHOUSE: "WAREHOUSE";
|
|
4110
|
+
}>;
|
|
4111
|
+
coverPhoto: z.ZodOptional<z.ZodString>;
|
|
4112
|
+
photoCount: z.ZodOptional<z.ZodInt>;
|
|
4113
|
+
totalArea: z.ZodNumber;
|
|
4114
|
+
livingArea: z.ZodOptional<z.ZodNumber>;
|
|
4115
|
+
balconyArea: z.ZodOptional<z.ZodNumber>;
|
|
4116
|
+
address: z.ZodObject<{
|
|
4117
|
+
region: z.ZodObject<{
|
|
4118
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
4119
|
+
names: z.ZodArray<z.ZodObject<{
|
|
4120
|
+
language: z.ZodEnum<{
|
|
4121
|
+
ka: "ka";
|
|
4122
|
+
en: "en";
|
|
4123
|
+
ru: "ru";
|
|
4124
|
+
}>;
|
|
4125
|
+
text: z.ZodString;
|
|
4126
|
+
}, z.core.$strip>>;
|
|
4127
|
+
}, z.core.$strip>;
|
|
4128
|
+
district: z.ZodObject<{
|
|
4129
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
4130
|
+
names: z.ZodArray<z.ZodObject<{
|
|
4131
|
+
language: z.ZodEnum<{
|
|
4132
|
+
ka: "ka";
|
|
4133
|
+
en: "en";
|
|
4134
|
+
ru: "ru";
|
|
4135
|
+
}>;
|
|
4136
|
+
text: z.ZodString;
|
|
4137
|
+
}, z.core.$strip>>;
|
|
4138
|
+
}, z.core.$strip>;
|
|
4139
|
+
subdistrict: z.ZodObject<{
|
|
4140
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
4141
|
+
names: z.ZodArray<z.ZodObject<{
|
|
4142
|
+
language: z.ZodEnum<{
|
|
4143
|
+
ka: "ka";
|
|
4144
|
+
en: "en";
|
|
4145
|
+
ru: "ru";
|
|
4146
|
+
}>;
|
|
4147
|
+
text: z.ZodString;
|
|
4148
|
+
}, z.core.$strip>>;
|
|
4149
|
+
}, z.core.$strip>;
|
|
4150
|
+
street: z.ZodOptional<z.ZodObject<{
|
|
4151
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
4152
|
+
names: z.ZodArray<z.ZodObject<{
|
|
4153
|
+
language: z.ZodEnum<{
|
|
4154
|
+
ka: "ka";
|
|
4155
|
+
en: "en";
|
|
4156
|
+
ru: "ru";
|
|
4157
|
+
}>;
|
|
4158
|
+
text: z.ZodString;
|
|
4159
|
+
}, z.core.$strip>>;
|
|
4160
|
+
}, z.core.$strip>>;
|
|
4161
|
+
cadastreCode: z.ZodOptional<z.ZodString>;
|
|
4162
|
+
lat: z.ZodNumber;
|
|
4163
|
+
lng: z.ZodNumber;
|
|
4164
|
+
}, z.core.$strip>;
|
|
4165
|
+
}, z.core.$strip>>>;
|
|
4166
|
+
page: z.ZodOptional<z.ZodObject<{
|
|
4167
|
+
size: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
4168
|
+
number: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
4169
|
+
totalElements: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
4170
|
+
totalPages: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
4171
|
+
}, z.core.$strip>>;
|
|
4172
|
+
}, z.core.$strip>;
|
|
4061
4173
|
}, z.core.$strip>>;
|
|
4062
4174
|
properties: z.ZodArray<z.ZodObject<{
|
|
4063
4175
|
publicId: z.ZodCoercedBigInt<unknown>;
|
|
@@ -4707,7 +4819,20 @@ export declare const zGetContactsByContactIdInterestsByInterestIdData: z.ZodObje
|
|
|
4707
4819
|
contactId: z.ZodCoercedBigInt<unknown>;
|
|
4708
4820
|
interestId: z.ZodCoercedBigInt<unknown>;
|
|
4709
4821
|
}, z.core.$strip>;
|
|
4710
|
-
query: z.ZodOptional<z.
|
|
4822
|
+
query: z.ZodOptional<z.ZodObject<{
|
|
4823
|
+
decision: z.ZodOptional<z.ZodEnum<{
|
|
4824
|
+
MAYBE: "MAYBE";
|
|
4825
|
+
DISLIKE: "DISLIKE";
|
|
4826
|
+
LIKE: "LIKE";
|
|
4827
|
+
}>>;
|
|
4828
|
+
swLat: z.ZodOptional<z.ZodNumber>;
|
|
4829
|
+
swLng: z.ZodOptional<z.ZodNumber>;
|
|
4830
|
+
neLat: z.ZodOptional<z.ZodNumber>;
|
|
4831
|
+
neLng: z.ZodOptional<z.ZodNumber>;
|
|
4832
|
+
page: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
4833
|
+
size: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
4834
|
+
sort: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4835
|
+
}, z.core.$strip>>;
|
|
4711
4836
|
}, z.core.$strip>;
|
|
4712
4837
|
/**
|
|
4713
4838
|
* OK
|
|
@@ -4816,12 +4941,122 @@ export declare const zGetContactsByContactIdInterestsByInterestIdResponse: z.Zod
|
|
|
4816
4941
|
}, z.core.$strip>>;
|
|
4817
4942
|
}, z.core.$strip>>;
|
|
4818
4943
|
}, z.core.$strip>;
|
|
4819
|
-
|
|
4820
|
-
total: z.ZodInt;
|
|
4821
|
-
liked: z.ZodInt;
|
|
4822
|
-
disliked: z.ZodInt;
|
|
4823
|
-
undecided: z.ZodInt;
|
|
4824
|
-
}, z.core.$strip>;
|
|
4944
|
+
recommendationStats: z.ZodObject<{
|
|
4945
|
+
total: z.ZodInt;
|
|
4946
|
+
liked: z.ZodInt;
|
|
4947
|
+
disliked: z.ZodInt;
|
|
4948
|
+
undecided: z.ZodInt;
|
|
4949
|
+
}, z.core.$strip>;
|
|
4950
|
+
boundedBox: z.ZodOptional<z.ZodObject<{
|
|
4951
|
+
minLat: z.ZodNumber;
|
|
4952
|
+
maxLat: z.ZodNumber;
|
|
4953
|
+
minLng: z.ZodNumber;
|
|
4954
|
+
maxLng: z.ZodNumber;
|
|
4955
|
+
}, z.core.$strip>>;
|
|
4956
|
+
recommendations: z.ZodObject<{
|
|
4957
|
+
content: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4958
|
+
decision: z.ZodOptional<z.ZodEnum<{
|
|
4959
|
+
MAYBE: "MAYBE";
|
|
4960
|
+
DISLIKE: "DISLIKE";
|
|
4961
|
+
LIKE: "LIKE";
|
|
4962
|
+
}>>;
|
|
4963
|
+
clientNote: z.ZodOptional<z.ZodString>;
|
|
4964
|
+
ownerContactId: z.ZodCoercedBigInt<unknown>;
|
|
4965
|
+
listingId: z.ZodCoercedBigInt<unknown>;
|
|
4966
|
+
externalListingId: z.ZodUUID;
|
|
4967
|
+
listingType: z.ZodEnum<{
|
|
4968
|
+
SALE: "SALE";
|
|
4969
|
+
RENT: "RENT";
|
|
4970
|
+
DAILY_RENT: "DAILY_RENT";
|
|
4971
|
+
PLEDGE: "PLEDGE";
|
|
4972
|
+
}>;
|
|
4973
|
+
price: z.ZodNumber;
|
|
4974
|
+
propertyId: z.ZodCoercedBigInt<unknown>;
|
|
4975
|
+
externalPropertyId: z.ZodUUID;
|
|
4976
|
+
type: z.ZodEnum<{
|
|
4977
|
+
GARAGE: "GARAGE";
|
|
4978
|
+
HOUSE: "HOUSE";
|
|
4979
|
+
TOWN_HOUSE: "TOWN_HOUSE";
|
|
4980
|
+
COUNTRY_HOUSE: "COUNTRY_HOUSE";
|
|
4981
|
+
VILLA: "VILLA";
|
|
4982
|
+
COTTAGE: "COTTAGE";
|
|
4983
|
+
APARTMENT: "APARTMENT";
|
|
4984
|
+
DUPLEX: "DUPLEX";
|
|
4985
|
+
TRIPLEX: "TRIPLEX";
|
|
4986
|
+
SEMI_BASEMENT: "SEMI_BASEMENT";
|
|
4987
|
+
ATTIC: "ATTIC";
|
|
4988
|
+
AGRICULTURAL_LAND: "AGRICULTURAL_LAND";
|
|
4989
|
+
RESIDENTIAL_LAND: "RESIDENTIAL_LAND";
|
|
4990
|
+
HOTEL_ROOM: "HOTEL_ROOM";
|
|
4991
|
+
MOTEL_ROOM: "MOTEL_ROOM";
|
|
4992
|
+
CO_LIVING_SPACE: "CO_LIVING_SPACE";
|
|
4993
|
+
OFFICE: "OFFICE";
|
|
4994
|
+
COMMERCIAL_SPACE: "COMMERCIAL_SPACE";
|
|
4995
|
+
CO_WORKING_SPACE: "CO_WORKING_SPACE";
|
|
4996
|
+
WAREHOUSE: "WAREHOUSE";
|
|
4997
|
+
}>;
|
|
4998
|
+
coverPhoto: z.ZodOptional<z.ZodString>;
|
|
4999
|
+
photoCount: z.ZodOptional<z.ZodInt>;
|
|
5000
|
+
totalArea: z.ZodNumber;
|
|
5001
|
+
livingArea: z.ZodOptional<z.ZodNumber>;
|
|
5002
|
+
balconyArea: z.ZodOptional<z.ZodNumber>;
|
|
5003
|
+
address: z.ZodObject<{
|
|
5004
|
+
region: z.ZodObject<{
|
|
5005
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
5006
|
+
names: z.ZodArray<z.ZodObject<{
|
|
5007
|
+
language: z.ZodEnum<{
|
|
5008
|
+
ka: "ka";
|
|
5009
|
+
en: "en";
|
|
5010
|
+
ru: "ru";
|
|
5011
|
+
}>;
|
|
5012
|
+
text: z.ZodString;
|
|
5013
|
+
}, z.core.$strip>>;
|
|
5014
|
+
}, z.core.$strip>;
|
|
5015
|
+
district: z.ZodObject<{
|
|
5016
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
5017
|
+
names: z.ZodArray<z.ZodObject<{
|
|
5018
|
+
language: z.ZodEnum<{
|
|
5019
|
+
ka: "ka";
|
|
5020
|
+
en: "en";
|
|
5021
|
+
ru: "ru";
|
|
5022
|
+
}>;
|
|
5023
|
+
text: z.ZodString;
|
|
5024
|
+
}, z.core.$strip>>;
|
|
5025
|
+
}, z.core.$strip>;
|
|
5026
|
+
subdistrict: z.ZodObject<{
|
|
5027
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
5028
|
+
names: z.ZodArray<z.ZodObject<{
|
|
5029
|
+
language: z.ZodEnum<{
|
|
5030
|
+
ka: "ka";
|
|
5031
|
+
en: "en";
|
|
5032
|
+
ru: "ru";
|
|
5033
|
+
}>;
|
|
5034
|
+
text: z.ZodString;
|
|
5035
|
+
}, z.core.$strip>>;
|
|
5036
|
+
}, z.core.$strip>;
|
|
5037
|
+
street: z.ZodOptional<z.ZodObject<{
|
|
5038
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
5039
|
+
names: z.ZodArray<z.ZodObject<{
|
|
5040
|
+
language: z.ZodEnum<{
|
|
5041
|
+
ka: "ka";
|
|
5042
|
+
en: "en";
|
|
5043
|
+
ru: "ru";
|
|
5044
|
+
}>;
|
|
5045
|
+
text: z.ZodString;
|
|
5046
|
+
}, z.core.$strip>>;
|
|
5047
|
+
}, z.core.$strip>>;
|
|
5048
|
+
cadastreCode: z.ZodOptional<z.ZodString>;
|
|
5049
|
+
lat: z.ZodNumber;
|
|
5050
|
+
lng: z.ZodNumber;
|
|
5051
|
+
}, z.core.$strip>;
|
|
5052
|
+
}, z.core.$strip>>>;
|
|
5053
|
+
page: z.ZodOptional<z.ZodObject<{
|
|
5054
|
+
size: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
5055
|
+
number: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
5056
|
+
totalElements: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
5057
|
+
totalPages: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
5058
|
+
}, z.core.$strip>>;
|
|
5059
|
+
}, z.core.$strip>;
|
|
4825
5060
|
}, z.core.$strip>;
|
|
4826
5061
|
export declare const zPutContactsByContactIdInterestsByInterestIdData: z.ZodObject<{
|
|
4827
5062
|
body: z.ZodObject<{
|
|
@@ -6851,6 +7086,10 @@ export declare const zGetPublicRecomendationsByTokenItemsData: z.ZodObject<{
|
|
|
6851
7086
|
DISLIKE: "DISLIKE";
|
|
6852
7087
|
LIKE: "LIKE";
|
|
6853
7088
|
}>>;
|
|
7089
|
+
swLat: z.ZodOptional<z.ZodNumber>;
|
|
7090
|
+
swLng: z.ZodOptional<z.ZodNumber>;
|
|
7091
|
+
neLat: z.ZodOptional<z.ZodNumber>;
|
|
7092
|
+
neLng: z.ZodOptional<z.ZodNumber>;
|
|
6854
7093
|
page: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
6855
7094
|
size: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
6856
7095
|
sort: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -6860,14 +7099,121 @@ export declare const zGetPublicRecomendationsByTokenItemsData: z.ZodObject<{
|
|
|
6860
7099
|
* OK
|
|
6861
7100
|
*/
|
|
6862
7101
|
export declare const zGetPublicRecomendationsByTokenItemsResponse: z.ZodObject<{
|
|
6863
|
-
|
|
7102
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
6864
7103
|
title: z.ZodString;
|
|
6865
|
-
createdAt: z.ZodISODateTime;
|
|
6866
7104
|
status: z.ZodEnum<{
|
|
6867
7105
|
UNPUBLISHED: "UNPUBLISHED";
|
|
6868
7106
|
PUBLISHED: "PUBLISHED";
|
|
6869
7107
|
CLOSED: "CLOSED";
|
|
6870
7108
|
}>;
|
|
7109
|
+
shareToken: z.ZodUUID;
|
|
7110
|
+
createdAt: z.ZodISODateTime;
|
|
7111
|
+
criteria: z.ZodObject<{
|
|
7112
|
+
propertyTypes: z.ZodArray<z.ZodEnum<{
|
|
7113
|
+
GARAGE: "GARAGE";
|
|
7114
|
+
HOUSE: "HOUSE";
|
|
7115
|
+
TOWN_HOUSE: "TOWN_HOUSE";
|
|
7116
|
+
COUNTRY_HOUSE: "COUNTRY_HOUSE";
|
|
7117
|
+
VILLA: "VILLA";
|
|
7118
|
+
COTTAGE: "COTTAGE";
|
|
7119
|
+
APARTMENT: "APARTMENT";
|
|
7120
|
+
DUPLEX: "DUPLEX";
|
|
7121
|
+
TRIPLEX: "TRIPLEX";
|
|
7122
|
+
SEMI_BASEMENT: "SEMI_BASEMENT";
|
|
7123
|
+
ATTIC: "ATTIC";
|
|
7124
|
+
AGRICULTURAL_LAND: "AGRICULTURAL_LAND";
|
|
7125
|
+
RESIDENTIAL_LAND: "RESIDENTIAL_LAND";
|
|
7126
|
+
HOTEL_ROOM: "HOTEL_ROOM";
|
|
7127
|
+
MOTEL_ROOM: "MOTEL_ROOM";
|
|
7128
|
+
CO_LIVING_SPACE: "CO_LIVING_SPACE";
|
|
7129
|
+
OFFICE: "OFFICE";
|
|
7130
|
+
COMMERCIAL_SPACE: "COMMERCIAL_SPACE";
|
|
7131
|
+
CO_WORKING_SPACE: "CO_WORKING_SPACE";
|
|
7132
|
+
WAREHOUSE: "WAREHOUSE";
|
|
7133
|
+
}>>;
|
|
7134
|
+
listingType: z.ZodEnum<{
|
|
7135
|
+
SALE: "SALE";
|
|
7136
|
+
RENT: "RENT";
|
|
7137
|
+
DAILY_RENT: "DAILY_RENT";
|
|
7138
|
+
PLEDGE: "PLEDGE";
|
|
7139
|
+
}>;
|
|
7140
|
+
budget: z.ZodOptional<z.ZodObject<{
|
|
7141
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
7142
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
7143
|
+
}, z.core.$strip>>;
|
|
7144
|
+
bedrooms: z.ZodOptional<z.ZodObject<{
|
|
7145
|
+
min: z.ZodOptional<z.ZodInt>;
|
|
7146
|
+
max: z.ZodOptional<z.ZodInt>;
|
|
7147
|
+
}, z.core.$strip>>;
|
|
7148
|
+
bathrooms: z.ZodOptional<z.ZodObject<{
|
|
7149
|
+
min: z.ZodOptional<z.ZodInt>;
|
|
7150
|
+
max: z.ZodOptional<z.ZodInt>;
|
|
7151
|
+
}, z.core.$strip>>;
|
|
7152
|
+
totalArea: z.ZodOptional<z.ZodObject<{
|
|
7153
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
7154
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
7155
|
+
}, z.core.$strip>>;
|
|
7156
|
+
livingArea: z.ZodOptional<z.ZodObject<{
|
|
7157
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
7158
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
7159
|
+
}, z.core.$strip>>;
|
|
7160
|
+
region: z.ZodOptional<z.ZodObject<{
|
|
7161
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
7162
|
+
names: z.ZodArray<z.ZodObject<{
|
|
7163
|
+
language: z.ZodEnum<{
|
|
7164
|
+
ka: "ka";
|
|
7165
|
+
en: "en";
|
|
7166
|
+
ru: "ru";
|
|
7167
|
+
}>;
|
|
7168
|
+
text: z.ZodString;
|
|
7169
|
+
}, z.core.$strip>>;
|
|
7170
|
+
}, z.core.$strip>>;
|
|
7171
|
+
district: z.ZodOptional<z.ZodObject<{
|
|
7172
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
7173
|
+
names: z.ZodArray<z.ZodObject<{
|
|
7174
|
+
language: z.ZodEnum<{
|
|
7175
|
+
ka: "ka";
|
|
7176
|
+
en: "en";
|
|
7177
|
+
ru: "ru";
|
|
7178
|
+
}>;
|
|
7179
|
+
text: z.ZodString;
|
|
7180
|
+
}, z.core.$strip>>;
|
|
7181
|
+
}, z.core.$strip>>;
|
|
7182
|
+
subDistrict: z.ZodOptional<z.ZodObject<{
|
|
7183
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
7184
|
+
names: z.ZodArray<z.ZodObject<{
|
|
7185
|
+
language: z.ZodEnum<{
|
|
7186
|
+
ka: "ka";
|
|
7187
|
+
en: "en";
|
|
7188
|
+
ru: "ru";
|
|
7189
|
+
}>;
|
|
7190
|
+
text: z.ZodString;
|
|
7191
|
+
}, z.core.$strip>>;
|
|
7192
|
+
}, z.core.$strip>>;
|
|
7193
|
+
street: z.ZodOptional<z.ZodObject<{
|
|
7194
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
7195
|
+
names: z.ZodArray<z.ZodObject<{
|
|
7196
|
+
language: z.ZodEnum<{
|
|
7197
|
+
ka: "ka";
|
|
7198
|
+
en: "en";
|
|
7199
|
+
ru: "ru";
|
|
7200
|
+
}>;
|
|
7201
|
+
text: z.ZodString;
|
|
7202
|
+
}, z.core.$strip>>;
|
|
7203
|
+
}, z.core.$strip>>;
|
|
7204
|
+
}, z.core.$strip>;
|
|
7205
|
+
recommendationStats: z.ZodObject<{
|
|
7206
|
+
total: z.ZodInt;
|
|
7207
|
+
liked: z.ZodInt;
|
|
7208
|
+
disliked: z.ZodInt;
|
|
7209
|
+
undecided: z.ZodInt;
|
|
7210
|
+
}, z.core.$strip>;
|
|
7211
|
+
boundedBox: z.ZodOptional<z.ZodObject<{
|
|
7212
|
+
minLat: z.ZodNumber;
|
|
7213
|
+
maxLat: z.ZodNumber;
|
|
7214
|
+
minLng: z.ZodNumber;
|
|
7215
|
+
maxLng: z.ZodNumber;
|
|
7216
|
+
}, z.core.$strip>>;
|
|
6871
7217
|
recommendations: z.ZodObject<{
|
|
6872
7218
|
content: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6873
7219
|
decision: z.ZodOptional<z.ZodEnum<{
|
|
@@ -8469,140 +8815,26 @@ export declare const zGetConversationsByConversationIdUpdatesResponse: z.ZodObje
|
|
|
8469
8815
|
nextSeq: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
8470
8816
|
hasMore: z.ZodOptional<z.ZodBoolean>;
|
|
8471
8817
|
}, z.core.$strip>;
|
|
8472
|
-
export declare const
|
|
8818
|
+
export declare const zGetContactsByContactIdInterestsByInterestIdRecommendationsDecisionsData: z.ZodObject<{
|
|
8473
8819
|
body: z.ZodOptional<z.ZodNever>;
|
|
8474
8820
|
path: z.ZodObject<{
|
|
8475
8821
|
contactId: z.ZodCoercedBigInt<unknown>;
|
|
8476
8822
|
interestId: z.ZodCoercedBigInt<unknown>;
|
|
8477
8823
|
}, z.core.$strip>;
|
|
8478
|
-
query: z.ZodOptional<z.
|
|
8479
|
-
decision: z.ZodOptional<z.ZodEnum<{
|
|
8480
|
-
MAYBE: "MAYBE";
|
|
8481
|
-
DISLIKE: "DISLIKE";
|
|
8482
|
-
LIKE: "LIKE";
|
|
8483
|
-
}>>;
|
|
8484
|
-
page: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
8485
|
-
size: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
8486
|
-
sort: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8487
|
-
}, z.core.$strip>>;
|
|
8824
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
8488
8825
|
}, z.core.$strip>;
|
|
8489
8826
|
/**
|
|
8490
8827
|
* OK
|
|
8491
8828
|
*/
|
|
8492
|
-
export declare const
|
|
8493
|
-
|
|
8494
|
-
|
|
8495
|
-
|
|
8496
|
-
|
|
8497
|
-
|
|
8498
|
-
|
|
8499
|
-
CLOSED: "CLOSED";
|
|
8829
|
+
export declare const zGetContactsByContactIdInterestsByInterestIdRecommendationsDecisionsResponse: z.ZodArray<z.ZodObject<{
|
|
8830
|
+
externalPropertyId: z.ZodUUID;
|
|
8831
|
+
externalListingId: z.ZodUUID;
|
|
8832
|
+
decision: z.ZodEnum<{
|
|
8833
|
+
MAYBE: "MAYBE";
|
|
8834
|
+
DISLIKE: "DISLIKE";
|
|
8835
|
+
LIKE: "LIKE";
|
|
8500
8836
|
}>;
|
|
8501
|
-
|
|
8502
|
-
content: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8503
|
-
decision: z.ZodOptional<z.ZodEnum<{
|
|
8504
|
-
MAYBE: "MAYBE";
|
|
8505
|
-
DISLIKE: "DISLIKE";
|
|
8506
|
-
LIKE: "LIKE";
|
|
8507
|
-
}>>;
|
|
8508
|
-
clientNote: z.ZodOptional<z.ZodString>;
|
|
8509
|
-
ownerContactId: z.ZodCoercedBigInt<unknown>;
|
|
8510
|
-
listingId: z.ZodCoercedBigInt<unknown>;
|
|
8511
|
-
externalListingId: z.ZodUUID;
|
|
8512
|
-
listingType: z.ZodEnum<{
|
|
8513
|
-
SALE: "SALE";
|
|
8514
|
-
RENT: "RENT";
|
|
8515
|
-
DAILY_RENT: "DAILY_RENT";
|
|
8516
|
-
PLEDGE: "PLEDGE";
|
|
8517
|
-
}>;
|
|
8518
|
-
price: z.ZodNumber;
|
|
8519
|
-
propertyId: z.ZodCoercedBigInt<unknown>;
|
|
8520
|
-
externalPropertyId: z.ZodUUID;
|
|
8521
|
-
type: z.ZodEnum<{
|
|
8522
|
-
GARAGE: "GARAGE";
|
|
8523
|
-
HOUSE: "HOUSE";
|
|
8524
|
-
TOWN_HOUSE: "TOWN_HOUSE";
|
|
8525
|
-
COUNTRY_HOUSE: "COUNTRY_HOUSE";
|
|
8526
|
-
VILLA: "VILLA";
|
|
8527
|
-
COTTAGE: "COTTAGE";
|
|
8528
|
-
APARTMENT: "APARTMENT";
|
|
8529
|
-
DUPLEX: "DUPLEX";
|
|
8530
|
-
TRIPLEX: "TRIPLEX";
|
|
8531
|
-
SEMI_BASEMENT: "SEMI_BASEMENT";
|
|
8532
|
-
ATTIC: "ATTIC";
|
|
8533
|
-
AGRICULTURAL_LAND: "AGRICULTURAL_LAND";
|
|
8534
|
-
RESIDENTIAL_LAND: "RESIDENTIAL_LAND";
|
|
8535
|
-
HOTEL_ROOM: "HOTEL_ROOM";
|
|
8536
|
-
MOTEL_ROOM: "MOTEL_ROOM";
|
|
8537
|
-
CO_LIVING_SPACE: "CO_LIVING_SPACE";
|
|
8538
|
-
OFFICE: "OFFICE";
|
|
8539
|
-
COMMERCIAL_SPACE: "COMMERCIAL_SPACE";
|
|
8540
|
-
CO_WORKING_SPACE: "CO_WORKING_SPACE";
|
|
8541
|
-
WAREHOUSE: "WAREHOUSE";
|
|
8542
|
-
}>;
|
|
8543
|
-
coverPhoto: z.ZodOptional<z.ZodString>;
|
|
8544
|
-
photoCount: z.ZodOptional<z.ZodInt>;
|
|
8545
|
-
totalArea: z.ZodNumber;
|
|
8546
|
-
livingArea: z.ZodOptional<z.ZodNumber>;
|
|
8547
|
-
balconyArea: z.ZodOptional<z.ZodNumber>;
|
|
8548
|
-
address: z.ZodObject<{
|
|
8549
|
-
region: z.ZodObject<{
|
|
8550
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
8551
|
-
names: z.ZodArray<z.ZodObject<{
|
|
8552
|
-
language: z.ZodEnum<{
|
|
8553
|
-
ka: "ka";
|
|
8554
|
-
en: "en";
|
|
8555
|
-
ru: "ru";
|
|
8556
|
-
}>;
|
|
8557
|
-
text: z.ZodString;
|
|
8558
|
-
}, z.core.$strip>>;
|
|
8559
|
-
}, z.core.$strip>;
|
|
8560
|
-
district: z.ZodObject<{
|
|
8561
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
8562
|
-
names: z.ZodArray<z.ZodObject<{
|
|
8563
|
-
language: z.ZodEnum<{
|
|
8564
|
-
ka: "ka";
|
|
8565
|
-
en: "en";
|
|
8566
|
-
ru: "ru";
|
|
8567
|
-
}>;
|
|
8568
|
-
text: z.ZodString;
|
|
8569
|
-
}, z.core.$strip>>;
|
|
8570
|
-
}, z.core.$strip>;
|
|
8571
|
-
subdistrict: z.ZodObject<{
|
|
8572
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
8573
|
-
names: z.ZodArray<z.ZodObject<{
|
|
8574
|
-
language: z.ZodEnum<{
|
|
8575
|
-
ka: "ka";
|
|
8576
|
-
en: "en";
|
|
8577
|
-
ru: "ru";
|
|
8578
|
-
}>;
|
|
8579
|
-
text: z.ZodString;
|
|
8580
|
-
}, z.core.$strip>>;
|
|
8581
|
-
}, z.core.$strip>;
|
|
8582
|
-
street: z.ZodOptional<z.ZodObject<{
|
|
8583
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
8584
|
-
names: z.ZodArray<z.ZodObject<{
|
|
8585
|
-
language: z.ZodEnum<{
|
|
8586
|
-
ka: "ka";
|
|
8587
|
-
en: "en";
|
|
8588
|
-
ru: "ru";
|
|
8589
|
-
}>;
|
|
8590
|
-
text: z.ZodString;
|
|
8591
|
-
}, z.core.$strip>>;
|
|
8592
|
-
}, z.core.$strip>>;
|
|
8593
|
-
cadastreCode: z.ZodOptional<z.ZodString>;
|
|
8594
|
-
lat: z.ZodNumber;
|
|
8595
|
-
lng: z.ZodNumber;
|
|
8596
|
-
}, z.core.$strip>;
|
|
8597
|
-
}, z.core.$strip>>>;
|
|
8598
|
-
page: z.ZodOptional<z.ZodObject<{
|
|
8599
|
-
size: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
8600
|
-
number: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
8601
|
-
totalElements: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
8602
|
-
totalPages: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
8603
|
-
}, z.core.$strip>>;
|
|
8604
|
-
}, z.core.$strip>;
|
|
8605
|
-
}, z.core.$strip>;
|
|
8837
|
+
}, z.core.$strip>>;
|
|
8606
8838
|
export declare const zGetContactByContactIdData: z.ZodObject<{
|
|
8607
8839
|
body: z.ZodOptional<z.ZodNever>;
|
|
8608
8840
|
path: z.ZodObject<{
|
|
@@ -8846,12 +9078,122 @@ export declare const zGetContactByContactId360Response: z.ZodObject<{
|
|
|
8846
9078
|
}, z.core.$strip>>;
|
|
8847
9079
|
}, z.core.$strip>>;
|
|
8848
9080
|
}, z.core.$strip>;
|
|
8849
|
-
|
|
9081
|
+
recommendationStats: z.ZodObject<{
|
|
8850
9082
|
total: z.ZodInt;
|
|
8851
9083
|
liked: z.ZodInt;
|
|
8852
9084
|
disliked: z.ZodInt;
|
|
8853
9085
|
undecided: z.ZodInt;
|
|
8854
9086
|
}, z.core.$strip>;
|
|
9087
|
+
boundedBox: z.ZodOptional<z.ZodObject<{
|
|
9088
|
+
minLat: z.ZodNumber;
|
|
9089
|
+
maxLat: z.ZodNumber;
|
|
9090
|
+
minLng: z.ZodNumber;
|
|
9091
|
+
maxLng: z.ZodNumber;
|
|
9092
|
+
}, z.core.$strip>>;
|
|
9093
|
+
recommendations: z.ZodObject<{
|
|
9094
|
+
content: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9095
|
+
decision: z.ZodOptional<z.ZodEnum<{
|
|
9096
|
+
MAYBE: "MAYBE";
|
|
9097
|
+
DISLIKE: "DISLIKE";
|
|
9098
|
+
LIKE: "LIKE";
|
|
9099
|
+
}>>;
|
|
9100
|
+
clientNote: z.ZodOptional<z.ZodString>;
|
|
9101
|
+
ownerContactId: z.ZodCoercedBigInt<unknown>;
|
|
9102
|
+
listingId: z.ZodCoercedBigInt<unknown>;
|
|
9103
|
+
externalListingId: z.ZodUUID;
|
|
9104
|
+
listingType: z.ZodEnum<{
|
|
9105
|
+
SALE: "SALE";
|
|
9106
|
+
RENT: "RENT";
|
|
9107
|
+
DAILY_RENT: "DAILY_RENT";
|
|
9108
|
+
PLEDGE: "PLEDGE";
|
|
9109
|
+
}>;
|
|
9110
|
+
price: z.ZodNumber;
|
|
9111
|
+
propertyId: z.ZodCoercedBigInt<unknown>;
|
|
9112
|
+
externalPropertyId: z.ZodUUID;
|
|
9113
|
+
type: z.ZodEnum<{
|
|
9114
|
+
GARAGE: "GARAGE";
|
|
9115
|
+
HOUSE: "HOUSE";
|
|
9116
|
+
TOWN_HOUSE: "TOWN_HOUSE";
|
|
9117
|
+
COUNTRY_HOUSE: "COUNTRY_HOUSE";
|
|
9118
|
+
VILLA: "VILLA";
|
|
9119
|
+
COTTAGE: "COTTAGE";
|
|
9120
|
+
APARTMENT: "APARTMENT";
|
|
9121
|
+
DUPLEX: "DUPLEX";
|
|
9122
|
+
TRIPLEX: "TRIPLEX";
|
|
9123
|
+
SEMI_BASEMENT: "SEMI_BASEMENT";
|
|
9124
|
+
ATTIC: "ATTIC";
|
|
9125
|
+
AGRICULTURAL_LAND: "AGRICULTURAL_LAND";
|
|
9126
|
+
RESIDENTIAL_LAND: "RESIDENTIAL_LAND";
|
|
9127
|
+
HOTEL_ROOM: "HOTEL_ROOM";
|
|
9128
|
+
MOTEL_ROOM: "MOTEL_ROOM";
|
|
9129
|
+
CO_LIVING_SPACE: "CO_LIVING_SPACE";
|
|
9130
|
+
OFFICE: "OFFICE";
|
|
9131
|
+
COMMERCIAL_SPACE: "COMMERCIAL_SPACE";
|
|
9132
|
+
CO_WORKING_SPACE: "CO_WORKING_SPACE";
|
|
9133
|
+
WAREHOUSE: "WAREHOUSE";
|
|
9134
|
+
}>;
|
|
9135
|
+
coverPhoto: z.ZodOptional<z.ZodString>;
|
|
9136
|
+
photoCount: z.ZodOptional<z.ZodInt>;
|
|
9137
|
+
totalArea: z.ZodNumber;
|
|
9138
|
+
livingArea: z.ZodOptional<z.ZodNumber>;
|
|
9139
|
+
balconyArea: z.ZodOptional<z.ZodNumber>;
|
|
9140
|
+
address: z.ZodObject<{
|
|
9141
|
+
region: z.ZodObject<{
|
|
9142
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
9143
|
+
names: z.ZodArray<z.ZodObject<{
|
|
9144
|
+
language: z.ZodEnum<{
|
|
9145
|
+
ka: "ka";
|
|
9146
|
+
en: "en";
|
|
9147
|
+
ru: "ru";
|
|
9148
|
+
}>;
|
|
9149
|
+
text: z.ZodString;
|
|
9150
|
+
}, z.core.$strip>>;
|
|
9151
|
+
}, z.core.$strip>;
|
|
9152
|
+
district: z.ZodObject<{
|
|
9153
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
9154
|
+
names: z.ZodArray<z.ZodObject<{
|
|
9155
|
+
language: z.ZodEnum<{
|
|
9156
|
+
ka: "ka";
|
|
9157
|
+
en: "en";
|
|
9158
|
+
ru: "ru";
|
|
9159
|
+
}>;
|
|
9160
|
+
text: z.ZodString;
|
|
9161
|
+
}, z.core.$strip>>;
|
|
9162
|
+
}, z.core.$strip>;
|
|
9163
|
+
subdistrict: z.ZodObject<{
|
|
9164
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
9165
|
+
names: z.ZodArray<z.ZodObject<{
|
|
9166
|
+
language: z.ZodEnum<{
|
|
9167
|
+
ka: "ka";
|
|
9168
|
+
en: "en";
|
|
9169
|
+
ru: "ru";
|
|
9170
|
+
}>;
|
|
9171
|
+
text: z.ZodString;
|
|
9172
|
+
}, z.core.$strip>>;
|
|
9173
|
+
}, z.core.$strip>;
|
|
9174
|
+
street: z.ZodOptional<z.ZodObject<{
|
|
9175
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
9176
|
+
names: z.ZodArray<z.ZodObject<{
|
|
9177
|
+
language: z.ZodEnum<{
|
|
9178
|
+
ka: "ka";
|
|
9179
|
+
en: "en";
|
|
9180
|
+
ru: "ru";
|
|
9181
|
+
}>;
|
|
9182
|
+
text: z.ZodString;
|
|
9183
|
+
}, z.core.$strip>>;
|
|
9184
|
+
}, z.core.$strip>>;
|
|
9185
|
+
cadastreCode: z.ZodOptional<z.ZodString>;
|
|
9186
|
+
lat: z.ZodNumber;
|
|
9187
|
+
lng: z.ZodNumber;
|
|
9188
|
+
}, z.core.$strip>;
|
|
9189
|
+
}, z.core.$strip>>>;
|
|
9190
|
+
page: z.ZodOptional<z.ZodObject<{
|
|
9191
|
+
size: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
9192
|
+
number: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
9193
|
+
totalElements: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
9194
|
+
totalPages: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
9195
|
+
}, z.core.$strip>>;
|
|
9196
|
+
}, z.core.$strip>;
|
|
8855
9197
|
}, z.core.$strip>>;
|
|
8856
9198
|
properties: z.ZodArray<z.ZodObject<{
|
|
8857
9199
|
publicId: z.ZodCoercedBigInt<unknown>;
|