@homespot-sdk/core 0.0.324 → 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 +518 -253
- package/dist/rem/schemas.gen.d.ts.map +1 -1
- package/dist/rem/schemas.gen.js +679 -344
- package/dist/rem/schemas.gen.js.map +1 -1
- package/dist/rem/sdk.gen.d.ts +15 -10
- package/dist/rem/sdk.gen.d.ts.map +1 -1
- package/dist/rem/sdk.gen.js +46 -17
- package/dist/rem/sdk.gen.js.map +1 -1
- package/dist/rem/transformers.gen.d.ts +2 -2
- package/dist/rem/transformers.gen.d.ts.map +1 -1
- package/dist/rem/transformers.gen.js +63 -13
- package/dist/rem/transformers.gen.js.map +1 -1
- package/dist/rem/types.gen.d.ts +283 -123
- package/dist/rem/types.gen.d.ts.map +1 -1
- package/dist/rem/zod.gen.d.ts +2369 -1315
- package/dist/rem/zod.gen.d.ts.map +1 -1
- package/dist/rem/zod.gen.js +496 -247
- package/dist/rem/zod.gen.js.map +1 -1
- package/package.json +1 -1
package/dist/rem/zod.gen.d.ts
CHANGED
|
@@ -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
|
-
|
|
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>;
|
|
@@ -1345,6 +1327,124 @@ export declare const zAddressResponse: z.ZodObject<{
|
|
|
1345
1327
|
lat: z.ZodNumber;
|
|
1346
1328
|
lng: z.ZodNumber;
|
|
1347
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>;
|
|
1348
1448
|
export declare const zRecommendationsCardView: z.ZodObject<{
|
|
1349
1449
|
decision: z.ZodOptional<z.ZodEnum<{
|
|
1350
1450
|
MAYBE: "MAYBE";
|
|
@@ -1545,15 +1645,122 @@ export declare const zPagedModelRecommendationsCardView: z.ZodObject<{
|
|
|
1545
1645
|
totalPages: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
1546
1646
|
}, z.core.$strip>>;
|
|
1547
1647
|
}, z.core.$strip>;
|
|
1548
|
-
export declare const
|
|
1549
|
-
|
|
1648
|
+
export declare const zInterestResponse: z.ZodObject<{
|
|
1649
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
1550
1650
|
title: z.ZodString;
|
|
1551
|
-
createdAt: z.ZodISODateTime;
|
|
1552
1651
|
status: z.ZodEnum<{
|
|
1553
1652
|
UNPUBLISHED: "UNPUBLISHED";
|
|
1554
1653
|
PUBLISHED: "PUBLISHED";
|
|
1555
1654
|
CLOSED: "CLOSED";
|
|
1556
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>>;
|
|
1557
1764
|
recommendations: z.ZodObject<{
|
|
1558
1765
|
content: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1559
1766
|
decision: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1660,7 +1867,6 @@ export declare const zRecommendationResponse: z.ZodObject<{
|
|
|
1660
1867
|
}, z.core.$strip>;
|
|
1661
1868
|
}, z.core.$strip>;
|
|
1662
1869
|
export declare const zRecommendationDecisionResponse: z.ZodObject<{
|
|
1663
|
-
itemId: z.ZodCoercedBigInt<unknown>;
|
|
1664
1870
|
externalPropertyId: z.ZodUUID;
|
|
1665
1871
|
externalListingId: z.ZodUUID;
|
|
1666
1872
|
decision: z.ZodEnum<{
|
|
@@ -2003,410 +2209,304 @@ export declare const zWhitelabelResponse: z.ZodObject<{
|
|
|
2003
2209
|
}, z.core.$strip>>>;
|
|
2004
2210
|
website: z.ZodOptional<z.ZodString>;
|
|
2005
2211
|
}, z.core.$strip>;
|
|
2006
|
-
export declare const
|
|
2007
|
-
|
|
2212
|
+
export declare const zAgreementResponse: z.ZodObject<{
|
|
2213
|
+
agreement: z.ZodEnum<{
|
|
2214
|
+
EXCLUSIVE: "EXCLUSIVE";
|
|
2215
|
+
NON_EXCLUSIVE: "NON_EXCLUSIVE";
|
|
2216
|
+
}>;
|
|
2217
|
+
expiryDate: z.ZodOptional<z.ZodISODate>;
|
|
2008
2218
|
}, z.core.$strip>;
|
|
2009
|
-
export declare const
|
|
2010
|
-
|
|
2219
|
+
export declare const zBoostResponse: z.ZodObject<{
|
|
2220
|
+
tier: z.ZodEnum<{
|
|
2221
|
+
VIP: "VIP";
|
|
2222
|
+
VIP_PLUS: "VIP_PLUS";
|
|
2223
|
+
SUPER_VIP: "SUPER_VIP";
|
|
2224
|
+
}>;
|
|
2225
|
+
status: z.ZodEnum<{
|
|
2226
|
+
ACTIVE: "ACTIVE";
|
|
2227
|
+
PENDING: "PENDING";
|
|
2228
|
+
FAIL_NO_BALANCE: "FAIL_NO_BALANCE";
|
|
2229
|
+
FAILED: "FAILED";
|
|
2230
|
+
}>;
|
|
2231
|
+
activatedAt: z.ZodOptional<z.ZodISODate>;
|
|
2232
|
+
expiresAt: z.ZodOptional<z.ZodISODate>;
|
|
2011
2233
|
}, z.core.$strip>;
|
|
2012
|
-
export declare const
|
|
2013
|
-
|
|
2234
|
+
export declare const zColoredListingResponse: z.ZodObject<{
|
|
2235
|
+
activatedAt: z.ZodISODate;
|
|
2236
|
+
expiresAt: z.ZodISODate;
|
|
2014
2237
|
}, z.core.$strip>;
|
|
2015
|
-
export declare const
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2238
|
+
export declare const zDealResponse: z.ZodObject<{
|
|
2239
|
+
type: z.ZodString;
|
|
2240
|
+
}, z.core.$strip>;
|
|
2241
|
+
export declare const zFixed: z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
2242
|
+
type: z.ZodString;
|
|
2243
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2244
|
+
amount: z.ZodNumber;
|
|
2245
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2246
|
+
type: z.ZodString;
|
|
2247
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2248
|
+
amount: z.ZodNumber;
|
|
2249
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
2250
|
+
type: z.ZodLiteral<"FIXED">;
|
|
2251
|
+
}, z.core.$strip>>;
|
|
2252
|
+
export declare const zMonthsOfRent: z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
2253
|
+
type: z.ZodString;
|
|
2254
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2255
|
+
factor: z.ZodNumber;
|
|
2256
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2257
|
+
type: z.ZodString;
|
|
2258
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2259
|
+
factor: z.ZodNumber;
|
|
2260
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
2261
|
+
type: z.ZodLiteral<"MONTHS_OF_RENT">;
|
|
2262
|
+
}, z.core.$strip>>;
|
|
2263
|
+
export declare const zPercentage: z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
2264
|
+
type: z.ZodString;
|
|
2265
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2266
|
+
rate: z.ZodNumber;
|
|
2267
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2268
|
+
type: z.ZodString;
|
|
2269
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2270
|
+
rate: z.ZodNumber;
|
|
2271
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
2272
|
+
type: z.ZodLiteral<"PERCENTAGE">;
|
|
2273
|
+
}, z.core.$strip>>;
|
|
2274
|
+
export declare const zCreateListingRequest: z.ZodObject<{
|
|
2275
|
+
listingType: z.ZodEnum<{
|
|
2276
|
+
SALE: "SALE";
|
|
2277
|
+
RENT: "RENT";
|
|
2278
|
+
DAILY_RENT: "DAILY_RENT";
|
|
2279
|
+
PLEDGE: "PLEDGE";
|
|
2280
|
+
}>;
|
|
2281
|
+
askingPrice: z.ZodNumber;
|
|
2282
|
+
deal: z.ZodOptional<z.ZodUnion<readonly [z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
2283
|
+
type: z.ZodString;
|
|
2284
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2285
|
+
amount: z.ZodNumber;
|
|
2286
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2287
|
+
type: z.ZodString;
|
|
2288
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2289
|
+
amount: z.ZodNumber;
|
|
2290
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
2291
|
+
type: z.ZodLiteral<"FIXED">;
|
|
2292
|
+
}, z.core.$strip>>, z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
2293
|
+
type: z.ZodString;
|
|
2294
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2295
|
+
factor: z.ZodNumber;
|
|
2296
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2297
|
+
type: z.ZodString;
|
|
2298
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2299
|
+
factor: z.ZodNumber;
|
|
2300
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
2301
|
+
type: z.ZodLiteral<"MONTHS_OF_RENT">;
|
|
2302
|
+
}, z.core.$strip>>, z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
2303
|
+
type: z.ZodString;
|
|
2304
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2305
|
+
rate: z.ZodNumber;
|
|
2306
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2307
|
+
type: z.ZodString;
|
|
2308
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2309
|
+
rate: z.ZodNumber;
|
|
2310
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
2311
|
+
type: z.ZodLiteral<"PERCENTAGE">;
|
|
2312
|
+
}, z.core.$strip>>]>>;
|
|
2313
|
+
}, z.core.$strip>;
|
|
2314
|
+
export declare const zPlatformListingResponse: z.ZodObject<{
|
|
2315
|
+
platformId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2316
|
+
platformType: z.ZodEnum<{
|
|
2031
2317
|
SS: "SS";
|
|
2032
2318
|
MY_HOME: "MY_HOME";
|
|
2033
|
-
HOME_SPOT: "HOME_SPOT";
|
|
2034
|
-
AGENCY_MEMBER: "AGENCY_MEMBER";
|
|
2035
|
-
}>>;
|
|
2036
|
-
kind: z.ZodEnum<{
|
|
2037
|
-
CONTACT_ASSIGNED: "CONTACT_ASSIGNED";
|
|
2038
2319
|
}>;
|
|
2039
|
-
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
|
|
2320
|
+
status: z.ZodEnum<{
|
|
2321
|
+
EXPIRED: "EXPIRED";
|
|
2322
|
+
PENDING: "PENDING";
|
|
2323
|
+
FAILED: "FAILED";
|
|
2324
|
+
SYNDICATED: "SYNDICATED";
|
|
2325
|
+
}>;
|
|
2326
|
+
listedAt: z.ZodOptional<z.ZodISODate>;
|
|
2327
|
+
expiresAt: z.ZodOptional<z.ZodISODate>;
|
|
2328
|
+
renewedAt: z.ZodOptional<z.ZodISODate>;
|
|
2329
|
+
boost: z.ZodOptional<z.ZodObject<{
|
|
2330
|
+
tier: z.ZodEnum<{
|
|
2331
|
+
VIP: "VIP";
|
|
2332
|
+
VIP_PLUS: "VIP_PLUS";
|
|
2333
|
+
SUPER_VIP: "SUPER_VIP";
|
|
2334
|
+
}>;
|
|
2335
|
+
status: z.ZodEnum<{
|
|
2336
|
+
ACTIVE: "ACTIVE";
|
|
2337
|
+
PENDING: "PENDING";
|
|
2338
|
+
FAIL_NO_BALANCE: "FAIL_NO_BALANCE";
|
|
2339
|
+
FAILED: "FAILED";
|
|
2340
|
+
}>;
|
|
2341
|
+
activatedAt: z.ZodOptional<z.ZodISODate>;
|
|
2342
|
+
expiresAt: z.ZodOptional<z.ZodISODate>;
|
|
2043
2343
|
}, z.core.$strip>>;
|
|
2044
|
-
|
|
2045
|
-
|
|
2344
|
+
coloredListing: z.ZodOptional<z.ZodObject<{
|
|
2345
|
+
activatedAt: z.ZodISODate;
|
|
2346
|
+
expiresAt: z.ZodISODate;
|
|
2046
2347
|
}, z.core.$strip>>;
|
|
2047
|
-
channelType: z.ZodOptional<z.ZodEnum<{
|
|
2048
|
-
FACEBOOK: "FACEBOOK";
|
|
2049
|
-
INSTAGRAM: "INSTAGRAM";
|
|
2050
|
-
WHATSAPP: "WHATSAPP";
|
|
2051
|
-
}>>;
|
|
2052
|
-
preview: z.ZodOptional<z.ZodString>;
|
|
2053
|
-
displayName: z.ZodOptional<z.ZodString>;
|
|
2054
|
-
kind: z.ZodEnum<{
|
|
2055
|
-
NEW_MESSAGE: "NEW_MESSAGE";
|
|
2056
|
-
}>;
|
|
2057
2348
|
}, z.core.$strip>;
|
|
2058
|
-
export declare const
|
|
2059
|
-
|
|
2060
|
-
|
|
2061
|
-
|
|
2062
|
-
|
|
2063
|
-
|
|
2064
|
-
|
|
2349
|
+
export declare const zPropertyCloseReasonResponse: z.ZodObject<{
|
|
2350
|
+
closedAt: z.ZodISODateTime;
|
|
2351
|
+
reason: z.ZodEnum<{
|
|
2352
|
+
OTHER: "OTHER";
|
|
2353
|
+
DEAL_CLOSED: "DEAL_CLOSED";
|
|
2354
|
+
OWNER_WITHDREW: "OWNER_WITHDREW";
|
|
2355
|
+
MANDATE_EXPIRED: "MANDATE_EXPIRED";
|
|
2065
2356
|
}>;
|
|
2066
|
-
|
|
2067
|
-
|
|
2068
|
-
|
|
2069
|
-
|
|
2070
|
-
|
|
2071
|
-
|
|
2072
|
-
|
|
2073
|
-
|
|
2074
|
-
|
|
2075
|
-
|
|
2076
|
-
|
|
2357
|
+
}, z.core.$strip>;
|
|
2358
|
+
export declare const zPropertyDetailsResponse: z.ZodObject<{
|
|
2359
|
+
title: z.ZodString;
|
|
2360
|
+
coverPhoto: z.ZodOptional<z.ZodString>;
|
|
2361
|
+
photoCount: z.ZodOptional<z.ZodInt>;
|
|
2362
|
+
totalArea: z.ZodNumber;
|
|
2363
|
+
livingArea: z.ZodOptional<z.ZodNumber>;
|
|
2364
|
+
balconyArea: z.ZodOptional<z.ZodNumber>;
|
|
2365
|
+
address: z.ZodObject<{
|
|
2366
|
+
region: z.ZodObject<{
|
|
2367
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
2368
|
+
names: z.ZodArray<z.ZodObject<{
|
|
2369
|
+
language: z.ZodEnum<{
|
|
2370
|
+
ka: "ka";
|
|
2371
|
+
en: "en";
|
|
2372
|
+
ru: "ru";
|
|
2373
|
+
}>;
|
|
2374
|
+
text: z.ZodString;
|
|
2375
|
+
}, z.core.$strip>>;
|
|
2376
|
+
}, z.core.$strip>;
|
|
2377
|
+
district: z.ZodObject<{
|
|
2378
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
2379
|
+
names: z.ZodArray<z.ZodObject<{
|
|
2380
|
+
language: z.ZodEnum<{
|
|
2381
|
+
ka: "ka";
|
|
2382
|
+
en: "en";
|
|
2383
|
+
ru: "ru";
|
|
2384
|
+
}>;
|
|
2385
|
+
text: z.ZodString;
|
|
2386
|
+
}, z.core.$strip>>;
|
|
2387
|
+
}, z.core.$strip>;
|
|
2388
|
+
subdistrict: z.ZodObject<{
|
|
2389
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
2390
|
+
names: z.ZodArray<z.ZodObject<{
|
|
2391
|
+
language: z.ZodEnum<{
|
|
2392
|
+
ka: "ka";
|
|
2393
|
+
en: "en";
|
|
2394
|
+
ru: "ru";
|
|
2395
|
+
}>;
|
|
2396
|
+
text: z.ZodString;
|
|
2397
|
+
}, z.core.$strip>>;
|
|
2398
|
+
}, z.core.$strip>;
|
|
2399
|
+
street: z.ZodOptional<z.ZodObject<{
|
|
2400
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
2401
|
+
names: z.ZodArray<z.ZodObject<{
|
|
2402
|
+
language: z.ZodEnum<{
|
|
2403
|
+
ka: "ka";
|
|
2404
|
+
en: "en";
|
|
2405
|
+
ru: "ru";
|
|
2406
|
+
}>;
|
|
2407
|
+
text: z.ZodString;
|
|
2408
|
+
}, z.core.$strip>>;
|
|
2077
2409
|
}, z.core.$strip>>;
|
|
2078
|
-
|
|
2079
|
-
|
|
2080
|
-
|
|
2081
|
-
|
|
2082
|
-
|
|
2410
|
+
cadastreCode: z.ZodOptional<z.ZodString>;
|
|
2411
|
+
lat: z.ZodNumber;
|
|
2412
|
+
lng: z.ZodNumber;
|
|
2413
|
+
}, z.core.$strip>;
|
|
2414
|
+
}, z.core.$strip>;
|
|
2415
|
+
export declare const zPropertyListingResponse: z.ZodObject<{
|
|
2416
|
+
publicId: z.ZodCoercedBigInt<unknown>;
|
|
2417
|
+
listingId: z.ZodUUID;
|
|
2418
|
+
listingType: z.ZodEnum<{
|
|
2419
|
+
SALE: "SALE";
|
|
2420
|
+
RENT: "RENT";
|
|
2421
|
+
DAILY_RENT: "DAILY_RENT";
|
|
2422
|
+
PLEDGE: "PLEDGE";
|
|
2423
|
+
}>;
|
|
2424
|
+
marketplaceStatus: z.ZodEnum<{
|
|
2425
|
+
ACTIVE: "ACTIVE";
|
|
2426
|
+
PAUSED: "PAUSED";
|
|
2427
|
+
EXPIRED: "EXPIRED";
|
|
2428
|
+
PENDING: "PENDING";
|
|
2429
|
+
FAILED: "FAILED";
|
|
2430
|
+
}>;
|
|
2431
|
+
crmState: z.ZodEnum<{
|
|
2432
|
+
CLOSED: "CLOSED";
|
|
2433
|
+
OPEN: "OPEN";
|
|
2434
|
+
}>;
|
|
2435
|
+
isProcessing: z.ZodBoolean;
|
|
2436
|
+
price: z.ZodNumber;
|
|
2437
|
+
deal: z.ZodOptional<z.ZodUnion<readonly [z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
2438
|
+
type: z.ZodString;
|
|
2439
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2440
|
+
amount: z.ZodNumber;
|
|
2441
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2442
|
+
type: z.ZodString;
|
|
2443
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2444
|
+
amount: z.ZodNumber;
|
|
2445
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
2446
|
+
type: z.ZodLiteral<"FIXED">;
|
|
2447
|
+
}, z.core.$strip>>, z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
2448
|
+
type: z.ZodString;
|
|
2449
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2450
|
+
factor: z.ZodNumber;
|
|
2451
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2452
|
+
type: z.ZodString;
|
|
2453
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2454
|
+
factor: z.ZodNumber;
|
|
2455
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
2456
|
+
type: z.ZodLiteral<"MONTHS_OF_RENT">;
|
|
2457
|
+
}, z.core.$strip>>, z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
2458
|
+
type: z.ZodString;
|
|
2459
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2460
|
+
rate: z.ZodNumber;
|
|
2461
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2462
|
+
type: z.ZodString;
|
|
2463
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2464
|
+
rate: z.ZodNumber;
|
|
2465
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
2466
|
+
type: z.ZodLiteral<"PERCENTAGE">;
|
|
2467
|
+
}, z.core.$strip>>]>>;
|
|
2468
|
+
platformListings: z.ZodArray<z.ZodObject<{
|
|
2469
|
+
platformId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2470
|
+
platformType: z.ZodEnum<{
|
|
2083
2471
|
SS: "SS";
|
|
2084
2472
|
MY_HOME: "MY_HOME";
|
|
2085
|
-
HOME_SPOT: "HOME_SPOT";
|
|
2086
|
-
AGENCY_MEMBER: "AGENCY_MEMBER";
|
|
2087
|
-
}>>;
|
|
2088
|
-
kind: z.ZodEnum<{
|
|
2089
|
-
CONTACT_ASSIGNED: "CONTACT_ASSIGNED";
|
|
2090
2473
|
}>;
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
|
-
|
|
2474
|
+
status: z.ZodEnum<{
|
|
2475
|
+
EXPIRED: "EXPIRED";
|
|
2476
|
+
PENDING: "PENDING";
|
|
2477
|
+
FAILED: "FAILED";
|
|
2478
|
+
SYNDICATED: "SYNDICATED";
|
|
2479
|
+
}>;
|
|
2480
|
+
listedAt: z.ZodOptional<z.ZodISODate>;
|
|
2481
|
+
expiresAt: z.ZodOptional<z.ZodISODate>;
|
|
2482
|
+
renewedAt: z.ZodOptional<z.ZodISODate>;
|
|
2483
|
+
boost: z.ZodOptional<z.ZodObject<{
|
|
2484
|
+
tier: z.ZodEnum<{
|
|
2485
|
+
VIP: "VIP";
|
|
2486
|
+
VIP_PLUS: "VIP_PLUS";
|
|
2487
|
+
SUPER_VIP: "SUPER_VIP";
|
|
2488
|
+
}>;
|
|
2489
|
+
status: z.ZodEnum<{
|
|
2490
|
+
ACTIVE: "ACTIVE";
|
|
2491
|
+
PENDING: "PENDING";
|
|
2492
|
+
FAIL_NO_BALANCE: "FAIL_NO_BALANCE";
|
|
2493
|
+
FAILED: "FAILED";
|
|
2494
|
+
}>;
|
|
2495
|
+
activatedAt: z.ZodOptional<z.ZodISODate>;
|
|
2496
|
+
expiresAt: z.ZodOptional<z.ZodISODate>;
|
|
2094
2497
|
}, z.core.$strip>>;
|
|
2095
|
-
|
|
2096
|
-
|
|
2498
|
+
coloredListing: z.ZodOptional<z.ZodObject<{
|
|
2499
|
+
activatedAt: z.ZodISODate;
|
|
2500
|
+
expiresAt: z.ZodISODate;
|
|
2097
2501
|
}, z.core.$strip>>;
|
|
2098
|
-
|
|
2099
|
-
FACEBOOK: "FACEBOOK";
|
|
2100
|
-
INSTAGRAM: "INSTAGRAM";
|
|
2101
|
-
WHATSAPP: "WHATSAPP";
|
|
2102
|
-
}>>;
|
|
2103
|
-
preview: z.ZodOptional<z.ZodString>;
|
|
2104
|
-
displayName: z.ZodOptional<z.ZodString>;
|
|
2105
|
-
kind: z.ZodEnum<{
|
|
2106
|
-
NEW_MESSAGE: "NEW_MESSAGE";
|
|
2107
|
-
}>;
|
|
2108
|
-
}, z.core.$strip>]>;
|
|
2502
|
+
}, z.core.$strip>>;
|
|
2109
2503
|
createdAt: z.ZodISODateTime;
|
|
2110
|
-
|
|
2504
|
+
closedAt: z.ZodOptional<z.ZodISODateTime>;
|
|
2111
2505
|
}, z.core.$strip>;
|
|
2112
|
-
export declare const
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
type: z.ZodEnum<{
|
|
2117
|
-
CONTACT_ASSIGNED: "CONTACT_ASSIGNED";
|
|
2118
|
-
NEW_MESSAGE: "NEW_MESSAGE";
|
|
2119
|
-
}>;
|
|
2120
|
-
targetId: z.ZodOptional<z.ZodString>;
|
|
2121
|
-
payload: z.ZodUnion<readonly [z.ZodObject<{
|
|
2122
|
-
contactId: z.ZodOptional<z.ZodObject<{
|
|
2123
|
-
value: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2124
|
-
}, z.core.$strip>>;
|
|
2125
|
-
contactName: z.ZodOptional<z.ZodString>;
|
|
2126
|
-
from: z.ZodOptional<z.ZodObject<{
|
|
2127
|
-
value: z.ZodOptional<z.ZodUUID>;
|
|
2128
|
-
}, z.core.$strip>>;
|
|
2129
|
-
by: z.ZodOptional<z.ZodObject<{
|
|
2130
|
-
value: z.ZodOptional<z.ZodUUID>;
|
|
2131
|
-
}, z.core.$strip>>;
|
|
2132
|
-
source: z.ZodOptional<z.ZodEnum<{
|
|
2133
|
-
FACEBOOK: "FACEBOOK";
|
|
2134
|
-
INSTAGRAM: "INSTAGRAM";
|
|
2135
|
-
UNKNOWN: "UNKNOWN";
|
|
2136
|
-
WHATSAPP: "WHATSAPP";
|
|
2137
|
-
SS: "SS";
|
|
2138
|
-
MY_HOME: "MY_HOME";
|
|
2139
|
-
HOME_SPOT: "HOME_SPOT";
|
|
2140
|
-
AGENCY_MEMBER: "AGENCY_MEMBER";
|
|
2141
|
-
}>>;
|
|
2142
|
-
kind: z.ZodEnum<{
|
|
2143
|
-
CONTACT_ASSIGNED: "CONTACT_ASSIGNED";
|
|
2144
|
-
}>;
|
|
2145
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
2146
|
-
contactId: z.ZodOptional<z.ZodObject<{
|
|
2147
|
-
value: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2148
|
-
}, z.core.$strip>>;
|
|
2149
|
-
conversationId: z.ZodOptional<z.ZodObject<{
|
|
2150
|
-
value: z.ZodOptional<z.ZodUUID>;
|
|
2151
|
-
}, z.core.$strip>>;
|
|
2152
|
-
channelType: z.ZodOptional<z.ZodEnum<{
|
|
2153
|
-
FACEBOOK: "FACEBOOK";
|
|
2154
|
-
INSTAGRAM: "INSTAGRAM";
|
|
2155
|
-
WHATSAPP: "WHATSAPP";
|
|
2156
|
-
}>>;
|
|
2157
|
-
preview: z.ZodOptional<z.ZodString>;
|
|
2158
|
-
displayName: z.ZodOptional<z.ZodString>;
|
|
2159
|
-
kind: z.ZodEnum<{
|
|
2160
|
-
NEW_MESSAGE: "NEW_MESSAGE";
|
|
2161
|
-
}>;
|
|
2162
|
-
}, z.core.$strip>]>;
|
|
2163
|
-
createdAt: z.ZodISODateTime;
|
|
2164
|
-
read: z.ZodBoolean;
|
|
2165
|
-
}, z.core.$strip>>>;
|
|
2166
|
-
nextCursor: z.ZodOptional<z.ZodString>;
|
|
2167
|
-
hasNext: z.ZodOptional<z.ZodBoolean>;
|
|
2168
|
-
}, z.core.$strip>;
|
|
2169
|
-
export declare const zNotificationFeed: z.ZodObject<{
|
|
2170
|
-
unreadCount: z.ZodInt;
|
|
2171
|
-
notifications: z.ZodObject<{
|
|
2172
|
-
items: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2173
|
-
id: z.ZodUUID;
|
|
2174
|
-
seq: z.ZodCoercedBigInt<unknown>;
|
|
2175
|
-
type: z.ZodEnum<{
|
|
2176
|
-
CONTACT_ASSIGNED: "CONTACT_ASSIGNED";
|
|
2177
|
-
NEW_MESSAGE: "NEW_MESSAGE";
|
|
2178
|
-
}>;
|
|
2179
|
-
targetId: z.ZodOptional<z.ZodString>;
|
|
2180
|
-
payload: z.ZodUnion<readonly [z.ZodObject<{
|
|
2181
|
-
contactId: z.ZodOptional<z.ZodObject<{
|
|
2182
|
-
value: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2183
|
-
}, z.core.$strip>>;
|
|
2184
|
-
contactName: z.ZodOptional<z.ZodString>;
|
|
2185
|
-
from: z.ZodOptional<z.ZodObject<{
|
|
2186
|
-
value: z.ZodOptional<z.ZodUUID>;
|
|
2187
|
-
}, z.core.$strip>>;
|
|
2188
|
-
by: z.ZodOptional<z.ZodObject<{
|
|
2189
|
-
value: z.ZodOptional<z.ZodUUID>;
|
|
2190
|
-
}, z.core.$strip>>;
|
|
2191
|
-
source: z.ZodOptional<z.ZodEnum<{
|
|
2192
|
-
FACEBOOK: "FACEBOOK";
|
|
2193
|
-
INSTAGRAM: "INSTAGRAM";
|
|
2194
|
-
UNKNOWN: "UNKNOWN";
|
|
2195
|
-
WHATSAPP: "WHATSAPP";
|
|
2196
|
-
SS: "SS";
|
|
2197
|
-
MY_HOME: "MY_HOME";
|
|
2198
|
-
HOME_SPOT: "HOME_SPOT";
|
|
2199
|
-
AGENCY_MEMBER: "AGENCY_MEMBER";
|
|
2200
|
-
}>>;
|
|
2201
|
-
kind: z.ZodEnum<{
|
|
2202
|
-
CONTACT_ASSIGNED: "CONTACT_ASSIGNED";
|
|
2203
|
-
}>;
|
|
2204
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
2205
|
-
contactId: z.ZodOptional<z.ZodObject<{
|
|
2206
|
-
value: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2207
|
-
}, z.core.$strip>>;
|
|
2208
|
-
conversationId: z.ZodOptional<z.ZodObject<{
|
|
2209
|
-
value: z.ZodOptional<z.ZodUUID>;
|
|
2210
|
-
}, z.core.$strip>>;
|
|
2211
|
-
channelType: z.ZodOptional<z.ZodEnum<{
|
|
2212
|
-
FACEBOOK: "FACEBOOK";
|
|
2213
|
-
INSTAGRAM: "INSTAGRAM";
|
|
2214
|
-
WHATSAPP: "WHATSAPP";
|
|
2215
|
-
}>>;
|
|
2216
|
-
preview: z.ZodOptional<z.ZodString>;
|
|
2217
|
-
displayName: z.ZodOptional<z.ZodString>;
|
|
2218
|
-
kind: z.ZodEnum<{
|
|
2219
|
-
NEW_MESSAGE: "NEW_MESSAGE";
|
|
2220
|
-
}>;
|
|
2221
|
-
}, z.core.$strip>]>;
|
|
2222
|
-
createdAt: z.ZodISODateTime;
|
|
2223
|
-
read: z.ZodBoolean;
|
|
2224
|
-
}, z.core.$strip>>>;
|
|
2225
|
-
nextCursor: z.ZodOptional<z.ZodString>;
|
|
2226
|
-
hasNext: z.ZodOptional<z.ZodBoolean>;
|
|
2227
|
-
}, z.core.$strip>;
|
|
2228
|
-
}, z.core.$strip>;
|
|
2229
|
-
export declare const zUnreadCount: z.ZodObject<{
|
|
2230
|
-
count: z.ZodInt;
|
|
2231
|
-
}, z.core.$strip>;
|
|
2232
|
-
export declare const zMemberViewResponse: z.ZodObject<{
|
|
2233
|
-
userId: z.ZodString;
|
|
2234
|
-
memberId: z.ZodUUID;
|
|
2235
|
-
firstName: z.ZodString;
|
|
2236
|
-
lastName: z.ZodString;
|
|
2237
|
-
profilePictureUrl: z.ZodOptional<z.ZodString>;
|
|
2238
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
2239
|
-
email: z.ZodString;
|
|
2240
|
-
roleId: z.ZodInt;
|
|
2241
|
-
roleName: z.ZodString;
|
|
2242
|
-
joinedAt: z.ZodISODateTime;
|
|
2243
|
-
}, z.core.$strip>;
|
|
2244
|
-
export declare const zPageable: z.ZodObject<{
|
|
2245
|
-
page: z.ZodOptional<z.ZodInt>;
|
|
2246
|
-
size: z.ZodOptional<z.ZodInt>;
|
|
2247
|
-
sort: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2248
|
-
}, z.core.$strip>;
|
|
2249
|
-
export declare const zMeetingCalendarView: z.ZodObject<{
|
|
2250
|
-
meetingId: z.ZodUUID;
|
|
2251
|
-
title: z.ZodString;
|
|
2252
|
-
start: z.ZodISODateTime;
|
|
2253
|
-
end: z.ZodISODateTime;
|
|
2254
|
-
status: z.ZodEnum<{
|
|
2255
|
-
CANCELLED: "CANCELLED";
|
|
2256
|
-
SCHEDULED: "SCHEDULED";
|
|
2257
|
-
}>;
|
|
2258
|
-
format: z.ZodEnum<{
|
|
2259
|
-
OTHER: "OTHER";
|
|
2260
|
-
IN_PERSON: "IN_PERSON";
|
|
2261
|
-
ONLINE: "ONLINE";
|
|
2262
|
-
}>;
|
|
2263
|
-
type: z.ZodEnum<{
|
|
2264
|
-
OTHER: "OTHER";
|
|
2265
|
-
PROPERTY_VIEWING: "PROPERTY_VIEWING";
|
|
2266
|
-
INTERNAL: "INTERNAL";
|
|
2267
|
-
CLIENT_CONSULTATION: "CLIENT_CONSULTATION";
|
|
2268
|
-
}>;
|
|
2269
|
-
color: z.ZodInt;
|
|
2270
|
-
hasGoogleMeet: z.ZodBoolean;
|
|
2271
|
-
hasProperty: z.ZodBoolean;
|
|
2272
|
-
attendeeCount: z.ZodInt;
|
|
2273
|
-
organizerId: z.ZodUUID;
|
|
2274
|
-
organizerName: z.ZodString;
|
|
2275
|
-
}, z.core.$strip>;
|
|
2276
|
-
export declare const zPagedModelMeetingCalendarView: z.ZodObject<{
|
|
2277
|
-
content: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2278
|
-
meetingId: z.ZodUUID;
|
|
2279
|
-
title: z.ZodString;
|
|
2280
|
-
start: z.ZodISODateTime;
|
|
2281
|
-
end: z.ZodISODateTime;
|
|
2282
|
-
status: z.ZodEnum<{
|
|
2283
|
-
CANCELLED: "CANCELLED";
|
|
2284
|
-
SCHEDULED: "SCHEDULED";
|
|
2285
|
-
}>;
|
|
2286
|
-
format: z.ZodEnum<{
|
|
2287
|
-
OTHER: "OTHER";
|
|
2288
|
-
IN_PERSON: "IN_PERSON";
|
|
2289
|
-
ONLINE: "ONLINE";
|
|
2290
|
-
}>;
|
|
2291
|
-
type: z.ZodEnum<{
|
|
2292
|
-
OTHER: "OTHER";
|
|
2293
|
-
PROPERTY_VIEWING: "PROPERTY_VIEWING";
|
|
2294
|
-
INTERNAL: "INTERNAL";
|
|
2295
|
-
CLIENT_CONSULTATION: "CLIENT_CONSULTATION";
|
|
2296
|
-
}>;
|
|
2297
|
-
color: z.ZodInt;
|
|
2298
|
-
hasGoogleMeet: z.ZodBoolean;
|
|
2299
|
-
hasProperty: z.ZodBoolean;
|
|
2300
|
-
attendeeCount: z.ZodInt;
|
|
2301
|
-
organizerId: z.ZodUUID;
|
|
2302
|
-
organizerName: z.ZodString;
|
|
2303
|
-
}, z.core.$strip>>>;
|
|
2304
|
-
page: z.ZodOptional<z.ZodObject<{
|
|
2305
|
-
size: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2306
|
-
number: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2307
|
-
totalElements: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2308
|
-
totalPages: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2309
|
-
}, z.core.$strip>>;
|
|
2310
|
-
}, z.core.$strip>;
|
|
2311
|
-
export declare const zAttendeeView: z.ZodObject<{
|
|
2312
|
-
role: z.ZodEnum<{
|
|
2313
|
-
OTHER: "OTHER";
|
|
2314
|
-
ORGANIZER: "ORGANIZER";
|
|
2315
|
-
MEMBER: "MEMBER";
|
|
2316
|
-
OWNER: "OWNER";
|
|
2317
|
-
CLIENT: "CLIENT";
|
|
2318
|
-
}>;
|
|
2319
|
-
memberId: z.ZodOptional<z.ZodUUID>;
|
|
2320
|
-
contactId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2321
|
-
email: z.ZodOptional<z.ZodString>;
|
|
2322
|
-
displayName: z.ZodOptional<z.ZodString>;
|
|
2323
|
-
}, z.core.$strip>;
|
|
2324
|
-
export declare const zPropertyId: z.ZodObject<{
|
|
2325
|
-
value: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2326
|
-
}, z.core.$strip>;
|
|
2327
|
-
export declare const zMeetingDetailView: z.ZodObject<{
|
|
2328
|
-
meetingId: z.ZodUUID;
|
|
2329
|
-
agencyId: z.ZodUUID;
|
|
2330
|
-
createdBy: z.ZodUUID;
|
|
2331
|
-
title: z.ZodString;
|
|
2332
|
-
description: z.ZodOptional<z.ZodString>;
|
|
2333
|
-
location: z.ZodOptional<z.ZodString>;
|
|
2334
|
-
start: z.ZodISODateTime;
|
|
2335
|
-
end: z.ZodISODateTime;
|
|
2336
|
-
status: z.ZodEnum<{
|
|
2337
|
-
CANCELLED: "CANCELLED";
|
|
2338
|
-
SCHEDULED: "SCHEDULED";
|
|
2339
|
-
}>;
|
|
2340
|
-
format: z.ZodEnum<{
|
|
2341
|
-
OTHER: "OTHER";
|
|
2342
|
-
IN_PERSON: "IN_PERSON";
|
|
2343
|
-
ONLINE: "ONLINE";
|
|
2344
|
-
}>;
|
|
2345
|
-
type: z.ZodEnum<{
|
|
2346
|
-
OTHER: "OTHER";
|
|
2347
|
-
PROPERTY_VIEWING: "PROPERTY_VIEWING";
|
|
2348
|
-
INTERNAL: "INTERNAL";
|
|
2349
|
-
CLIENT_CONSULTATION: "CLIENT_CONSULTATION";
|
|
2350
|
-
}>;
|
|
2351
|
-
color: z.ZodInt;
|
|
2352
|
-
googleEventId: z.ZodOptional<z.ZodString>;
|
|
2353
|
-
googleMeetLink: z.ZodOptional<z.ZodString>;
|
|
2354
|
-
cancellationReason: z.ZodOptional<z.ZodString>;
|
|
2355
|
-
propertyId: z.ZodOptional<z.ZodObject<{
|
|
2356
|
-
value: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2357
|
-
}, z.core.$strip>>;
|
|
2358
|
-
attendees: z.ZodArray<z.ZodObject<{
|
|
2359
|
-
role: z.ZodEnum<{
|
|
2360
|
-
OTHER: "OTHER";
|
|
2361
|
-
ORGANIZER: "ORGANIZER";
|
|
2362
|
-
MEMBER: "MEMBER";
|
|
2363
|
-
OWNER: "OWNER";
|
|
2364
|
-
CLIENT: "CLIENT";
|
|
2365
|
-
}>;
|
|
2366
|
-
memberId: z.ZodOptional<z.ZodUUID>;
|
|
2367
|
-
contactId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2368
|
-
email: z.ZodOptional<z.ZodString>;
|
|
2369
|
-
displayName: z.ZodOptional<z.ZodString>;
|
|
2370
|
-
}, z.core.$strip>>;
|
|
2371
|
-
createdAt: z.ZodISODateTime;
|
|
2372
|
-
}, z.core.$strip>;
|
|
2373
|
-
export declare const zAssignedToResponse: z.ZodObject<{
|
|
2374
|
-
memberId: z.ZodUUID;
|
|
2375
|
-
firstName: z.ZodString;
|
|
2376
|
-
lastName: z.ZodString;
|
|
2377
|
-
photo: z.ZodOptional<z.ZodString>;
|
|
2378
|
-
email: z.ZodString;
|
|
2379
|
-
}, z.core.$strip>;
|
|
2380
|
-
export declare const zPlatformView: z.ZodObject<{
|
|
2381
|
-
platformId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2382
|
-
platform: z.ZodOptional<z.ZodEnum<{
|
|
2383
|
-
SS: "SS";
|
|
2384
|
-
MY_HOME: "MY_HOME";
|
|
2385
|
-
}>>;
|
|
2386
|
-
expiresAt: z.ZodOptional<z.ZodISODate>;
|
|
2387
|
-
tier: z.ZodOptional<z.ZodEnum<{
|
|
2388
|
-
VIP: "VIP";
|
|
2389
|
-
VIP_PLUS: "VIP_PLUS";
|
|
2390
|
-
SUPER_VIP: "SUPER_VIP";
|
|
2391
|
-
}>>;
|
|
2392
|
-
boostExpiresAt: z.ZodOptional<z.ZodISODate>;
|
|
2393
|
-
}, z.core.$strip>;
|
|
2394
|
-
export declare const zListingGridView: z.ZodObject<{
|
|
2395
|
-
externalPropertyId: z.ZodOptional<z.ZodUUID>;
|
|
2396
|
-
externalListingId: z.ZodOptional<z.ZodUUID>;
|
|
2397
|
-
propertyId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2398
|
-
listingId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2399
|
-
contactId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2400
|
-
contactPhoneNumber: z.ZodOptional<z.ZodString>;
|
|
2401
|
-
contactFullName: z.ZodOptional<z.ZodString>;
|
|
2402
|
-
assignedTo: z.ZodOptional<z.ZodObject<{
|
|
2403
|
-
memberId: z.ZodUUID;
|
|
2404
|
-
firstName: z.ZodString;
|
|
2405
|
-
lastName: z.ZodString;
|
|
2406
|
-
photo: z.ZodOptional<z.ZodString>;
|
|
2407
|
-
email: z.ZodString;
|
|
2408
|
-
}, z.core.$strip>>;
|
|
2409
|
-
propertyType: z.ZodOptional<z.ZodEnum<{
|
|
2506
|
+
export declare const zPropertyPageResponse: z.ZodObject<{
|
|
2507
|
+
publicId: z.ZodCoercedBigInt<unknown>;
|
|
2508
|
+
propertyId: z.ZodUUID;
|
|
2509
|
+
type: z.ZodEnum<{
|
|
2410
2510
|
GARAGE: "GARAGE";
|
|
2411
2511
|
HOUSE: "HOUSE";
|
|
2412
2512
|
TOWN_HOUSE: "TOWN_HOUSE";
|
|
@@ -2427,491 +2527,585 @@ export declare const zListingGridView: z.ZodObject<{
|
|
|
2427
2527
|
COMMERCIAL_SPACE: "COMMERCIAL_SPACE";
|
|
2428
2528
|
CO_WORKING_SPACE: "CO_WORKING_SPACE";
|
|
2429
2529
|
WAREHOUSE: "WAREHOUSE";
|
|
2430
|
-
}
|
|
2431
|
-
|
|
2432
|
-
region: z.ZodOptional<z.ZodObject<{
|
|
2433
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
2434
|
-
names: z.ZodArray<z.ZodObject<{
|
|
2435
|
-
language: z.ZodEnum<{
|
|
2436
|
-
ka: "ka";
|
|
2437
|
-
en: "en";
|
|
2438
|
-
ru: "ru";
|
|
2439
|
-
}>;
|
|
2440
|
-
text: z.ZodString;
|
|
2441
|
-
}, z.core.$strip>>;
|
|
2442
|
-
}, z.core.$strip>>;
|
|
2443
|
-
district: z.ZodOptional<z.ZodObject<{
|
|
2444
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
2445
|
-
names: z.ZodArray<z.ZodObject<{
|
|
2446
|
-
language: z.ZodEnum<{
|
|
2447
|
-
ka: "ka";
|
|
2448
|
-
en: "en";
|
|
2449
|
-
ru: "ru";
|
|
2450
|
-
}>;
|
|
2451
|
-
text: z.ZodString;
|
|
2452
|
-
}, z.core.$strip>>;
|
|
2453
|
-
}, z.core.$strip>>;
|
|
2454
|
-
subdistrict: z.ZodOptional<z.ZodObject<{
|
|
2455
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
2456
|
-
names: z.ZodArray<z.ZodObject<{
|
|
2457
|
-
language: z.ZodEnum<{
|
|
2458
|
-
ka: "ka";
|
|
2459
|
-
en: "en";
|
|
2460
|
-
ru: "ru";
|
|
2461
|
-
}>;
|
|
2462
|
-
text: z.ZodString;
|
|
2463
|
-
}, z.core.$strip>>;
|
|
2464
|
-
}, z.core.$strip>>;
|
|
2465
|
-
street: z.ZodOptional<z.ZodObject<{
|
|
2466
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
2467
|
-
names: z.ZodArray<z.ZodObject<{
|
|
2468
|
-
language: z.ZodEnum<{
|
|
2469
|
-
ka: "ka";
|
|
2470
|
-
en: "en";
|
|
2471
|
-
ru: "ru";
|
|
2472
|
-
}>;
|
|
2473
|
-
text: z.ZodString;
|
|
2474
|
-
}, z.core.$strip>>;
|
|
2475
|
-
}, z.core.$strip>>;
|
|
2476
|
-
cover: z.ZodOptional<z.ZodString>;
|
|
2477
|
-
agreementType: z.ZodOptional<z.ZodEnum<{
|
|
2478
|
-
EXCLUSIVE: "EXCLUSIVE";
|
|
2479
|
-
NON_EXCLUSIVE: "NON_EXCLUSIVE";
|
|
2480
|
-
}>>;
|
|
2481
|
-
agreementExpiresAt: z.ZodOptional<z.ZodISODate>;
|
|
2482
|
-
propertyState: z.ZodOptional<z.ZodEnum<{
|
|
2530
|
+
}>;
|
|
2531
|
+
state: z.ZodEnum<{
|
|
2483
2532
|
IN_REGISTRATION: "IN_REGISTRATION";
|
|
2484
2533
|
CLOSED: "CLOSED";
|
|
2485
2534
|
UNLISTED: "UNLISTED";
|
|
2486
2535
|
LISTED_INTERNALLY: "LISTED_INTERNALLY";
|
|
2487
2536
|
LISTED: "LISTED";
|
|
2488
|
-
}
|
|
2489
|
-
|
|
2490
|
-
|
|
2491
|
-
|
|
2492
|
-
|
|
2493
|
-
|
|
2494
|
-
|
|
2495
|
-
|
|
2496
|
-
|
|
2497
|
-
|
|
2498
|
-
|
|
2499
|
-
|
|
2500
|
-
|
|
2501
|
-
|
|
2502
|
-
|
|
2503
|
-
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
|
|
2507
|
-
|
|
2508
|
-
|
|
2509
|
-
|
|
2510
|
-
|
|
2511
|
-
|
|
2512
|
-
|
|
2513
|
-
|
|
2514
|
-
|
|
2515
|
-
|
|
2516
|
-
|
|
2517
|
-
|
|
2518
|
-
|
|
2519
|
-
|
|
2520
|
-
|
|
2521
|
-
|
|
2522
|
-
|
|
2523
|
-
|
|
2524
|
-
|
|
2525
|
-
|
|
2526
|
-
|
|
2527
|
-
|
|
2528
|
-
|
|
2529
|
-
|
|
2530
|
-
|
|
2531
|
-
|
|
2532
|
-
|
|
2533
|
-
|
|
2534
|
-
|
|
2535
|
-
|
|
2536
|
-
|
|
2537
|
-
|
|
2538
|
-
|
|
2539
|
-
|
|
2540
|
-
COUNTRY_HOUSE: "COUNTRY_HOUSE";
|
|
2541
|
-
VILLA: "VILLA";
|
|
2542
|
-
COTTAGE: "COTTAGE";
|
|
2543
|
-
APARTMENT: "APARTMENT";
|
|
2544
|
-
DUPLEX: "DUPLEX";
|
|
2545
|
-
TRIPLEX: "TRIPLEX";
|
|
2546
|
-
SEMI_BASEMENT: "SEMI_BASEMENT";
|
|
2547
|
-
ATTIC: "ATTIC";
|
|
2548
|
-
AGRICULTURAL_LAND: "AGRICULTURAL_LAND";
|
|
2549
|
-
RESIDENTIAL_LAND: "RESIDENTIAL_LAND";
|
|
2550
|
-
HOTEL_ROOM: "HOTEL_ROOM";
|
|
2551
|
-
MOTEL_ROOM: "MOTEL_ROOM";
|
|
2552
|
-
CO_LIVING_SPACE: "CO_LIVING_SPACE";
|
|
2553
|
-
OFFICE: "OFFICE";
|
|
2554
|
-
COMMERCIAL_SPACE: "COMMERCIAL_SPACE";
|
|
2555
|
-
CO_WORKING_SPACE: "CO_WORKING_SPACE";
|
|
2556
|
-
WAREHOUSE: "WAREHOUSE";
|
|
2557
|
-
}>>;
|
|
2558
|
-
title: z.ZodOptional<z.ZodString>;
|
|
2559
|
-
region: z.ZodOptional<z.ZodObject<{
|
|
2560
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
2561
|
-
names: z.ZodArray<z.ZodObject<{
|
|
2562
|
-
language: z.ZodEnum<{
|
|
2563
|
-
ka: "ka";
|
|
2564
|
-
en: "en";
|
|
2565
|
-
ru: "ru";
|
|
2566
|
-
}>;
|
|
2567
|
-
text: z.ZodString;
|
|
2568
|
-
}, z.core.$strip>>;
|
|
2569
|
-
}, z.core.$strip>>;
|
|
2570
|
-
district: z.ZodOptional<z.ZodObject<{
|
|
2571
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
2572
|
-
names: z.ZodArray<z.ZodObject<{
|
|
2573
|
-
language: z.ZodEnum<{
|
|
2574
|
-
ka: "ka";
|
|
2575
|
-
en: "en";
|
|
2576
|
-
ru: "ru";
|
|
2577
|
-
}>;
|
|
2578
|
-
text: z.ZodString;
|
|
2579
|
-
}, z.core.$strip>>;
|
|
2580
|
-
}, z.core.$strip>>;
|
|
2581
|
-
subdistrict: z.ZodOptional<z.ZodObject<{
|
|
2582
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
2583
|
-
names: z.ZodArray<z.ZodObject<{
|
|
2584
|
-
language: z.ZodEnum<{
|
|
2585
|
-
ka: "ka";
|
|
2586
|
-
en: "en";
|
|
2587
|
-
ru: "ru";
|
|
2588
|
-
}>;
|
|
2589
|
-
text: z.ZodString;
|
|
2590
|
-
}, z.core.$strip>>;
|
|
2591
|
-
}, z.core.$strip>>;
|
|
2592
|
-
street: z.ZodOptional<z.ZodObject<{
|
|
2593
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
2594
|
-
names: z.ZodArray<z.ZodObject<{
|
|
2595
|
-
language: z.ZodEnum<{
|
|
2596
|
-
ka: "ka";
|
|
2597
|
-
en: "en";
|
|
2598
|
-
ru: "ru";
|
|
2599
|
-
}>;
|
|
2600
|
-
text: z.ZodString;
|
|
2537
|
+
}>;
|
|
2538
|
+
details: z.ZodOptional<z.ZodObject<{
|
|
2539
|
+
title: z.ZodString;
|
|
2540
|
+
coverPhoto: z.ZodOptional<z.ZodString>;
|
|
2541
|
+
photoCount: z.ZodOptional<z.ZodInt>;
|
|
2542
|
+
totalArea: z.ZodNumber;
|
|
2543
|
+
livingArea: z.ZodOptional<z.ZodNumber>;
|
|
2544
|
+
balconyArea: z.ZodOptional<z.ZodNumber>;
|
|
2545
|
+
address: z.ZodObject<{
|
|
2546
|
+
region: z.ZodObject<{
|
|
2547
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
2548
|
+
names: z.ZodArray<z.ZodObject<{
|
|
2549
|
+
language: z.ZodEnum<{
|
|
2550
|
+
ka: "ka";
|
|
2551
|
+
en: "en";
|
|
2552
|
+
ru: "ru";
|
|
2553
|
+
}>;
|
|
2554
|
+
text: z.ZodString;
|
|
2555
|
+
}, z.core.$strip>>;
|
|
2556
|
+
}, z.core.$strip>;
|
|
2557
|
+
district: z.ZodObject<{
|
|
2558
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
2559
|
+
names: z.ZodArray<z.ZodObject<{
|
|
2560
|
+
language: z.ZodEnum<{
|
|
2561
|
+
ka: "ka";
|
|
2562
|
+
en: "en";
|
|
2563
|
+
ru: "ru";
|
|
2564
|
+
}>;
|
|
2565
|
+
text: z.ZodString;
|
|
2566
|
+
}, z.core.$strip>>;
|
|
2567
|
+
}, z.core.$strip>;
|
|
2568
|
+
subdistrict: z.ZodObject<{
|
|
2569
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
2570
|
+
names: z.ZodArray<z.ZodObject<{
|
|
2571
|
+
language: z.ZodEnum<{
|
|
2572
|
+
ka: "ka";
|
|
2573
|
+
en: "en";
|
|
2574
|
+
ru: "ru";
|
|
2575
|
+
}>;
|
|
2576
|
+
text: z.ZodString;
|
|
2577
|
+
}, z.core.$strip>>;
|
|
2578
|
+
}, z.core.$strip>;
|
|
2579
|
+
street: z.ZodOptional<z.ZodObject<{
|
|
2580
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
2581
|
+
names: z.ZodArray<z.ZodObject<{
|
|
2582
|
+
language: z.ZodEnum<{
|
|
2583
|
+
ka: "ka";
|
|
2584
|
+
en: "en";
|
|
2585
|
+
ru: "ru";
|
|
2586
|
+
}>;
|
|
2587
|
+
text: z.ZodString;
|
|
2588
|
+
}, z.core.$strip>>;
|
|
2601
2589
|
}, z.core.$strip>>;
|
|
2602
|
-
|
|
2603
|
-
|
|
2604
|
-
|
|
2590
|
+
cadastreCode: z.ZodOptional<z.ZodString>;
|
|
2591
|
+
lat: z.ZodNumber;
|
|
2592
|
+
lng: z.ZodNumber;
|
|
2593
|
+
}, z.core.$strip>;
|
|
2594
|
+
}, z.core.$strip>>;
|
|
2595
|
+
agreement: z.ZodObject<{
|
|
2596
|
+
agreement: z.ZodEnum<{
|
|
2605
2597
|
EXCLUSIVE: "EXCLUSIVE";
|
|
2606
2598
|
NON_EXCLUSIVE: "NON_EXCLUSIVE";
|
|
2607
|
-
}
|
|
2608
|
-
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
|
|
2612
|
-
|
|
2613
|
-
|
|
2614
|
-
LISTED: "LISTED";
|
|
2615
|
-
}>>;
|
|
2616
|
-
listingType: z.ZodOptional<z.ZodEnum<{
|
|
2599
|
+
}>;
|
|
2600
|
+
expiryDate: z.ZodOptional<z.ZodISODate>;
|
|
2601
|
+
}, z.core.$strip>;
|
|
2602
|
+
listings: z.ZodArray<z.ZodObject<{
|
|
2603
|
+
publicId: z.ZodCoercedBigInt<unknown>;
|
|
2604
|
+
listingId: z.ZodUUID;
|
|
2605
|
+
listingType: z.ZodEnum<{
|
|
2617
2606
|
SALE: "SALE";
|
|
2618
2607
|
RENT: "RENT";
|
|
2619
|
-
DAILY_RENT: "DAILY_RENT";
|
|
2620
|
-
PLEDGE: "PLEDGE";
|
|
2621
|
-
}
|
|
2622
|
-
|
|
2623
|
-
|
|
2624
|
-
|
|
2625
|
-
|
|
2626
|
-
|
|
2627
|
-
|
|
2628
|
-
}
|
|
2629
|
-
|
|
2630
|
-
|
|
2608
|
+
DAILY_RENT: "DAILY_RENT";
|
|
2609
|
+
PLEDGE: "PLEDGE";
|
|
2610
|
+
}>;
|
|
2611
|
+
marketplaceStatus: z.ZodEnum<{
|
|
2612
|
+
ACTIVE: "ACTIVE";
|
|
2613
|
+
PAUSED: "PAUSED";
|
|
2614
|
+
EXPIRED: "EXPIRED";
|
|
2615
|
+
PENDING: "PENDING";
|
|
2616
|
+
FAILED: "FAILED";
|
|
2617
|
+
}>;
|
|
2618
|
+
crmState: z.ZodEnum<{
|
|
2619
|
+
CLOSED: "CLOSED";
|
|
2620
|
+
OPEN: "OPEN";
|
|
2621
|
+
}>;
|
|
2622
|
+
isProcessing: z.ZodBoolean;
|
|
2623
|
+
price: z.ZodNumber;
|
|
2624
|
+
deal: z.ZodOptional<z.ZodUnion<readonly [z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
2625
|
+
type: z.ZodString;
|
|
2626
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2627
|
+
amount: z.ZodNumber;
|
|
2628
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2629
|
+
type: z.ZodString;
|
|
2630
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2631
|
+
amount: z.ZodNumber;
|
|
2632
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
2633
|
+
type: z.ZodLiteral<"FIXED">;
|
|
2634
|
+
}, z.core.$strip>>, z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
2635
|
+
type: z.ZodString;
|
|
2636
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2637
|
+
factor: z.ZodNumber;
|
|
2638
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2639
|
+
type: z.ZodString;
|
|
2640
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2641
|
+
factor: z.ZodNumber;
|
|
2642
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
2643
|
+
type: z.ZodLiteral<"MONTHS_OF_RENT">;
|
|
2644
|
+
}, z.core.$strip>>, z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
2645
|
+
type: z.ZodString;
|
|
2646
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2647
|
+
rate: z.ZodNumber;
|
|
2648
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2649
|
+
type: z.ZodString;
|
|
2650
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2651
|
+
rate: z.ZodNumber;
|
|
2652
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
2653
|
+
type: z.ZodLiteral<"PERCENTAGE">;
|
|
2654
|
+
}, z.core.$strip>>]>>;
|
|
2655
|
+
platformListings: z.ZodArray<z.ZodObject<{
|
|
2631
2656
|
platformId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2632
|
-
|
|
2657
|
+
platformType: z.ZodEnum<{
|
|
2633
2658
|
SS: "SS";
|
|
2634
2659
|
MY_HOME: "MY_HOME";
|
|
2635
|
-
}
|
|
2660
|
+
}>;
|
|
2661
|
+
status: z.ZodEnum<{
|
|
2662
|
+
EXPIRED: "EXPIRED";
|
|
2663
|
+
PENDING: "PENDING";
|
|
2664
|
+
FAILED: "FAILED";
|
|
2665
|
+
SYNDICATED: "SYNDICATED";
|
|
2666
|
+
}>;
|
|
2667
|
+
listedAt: z.ZodOptional<z.ZodISODate>;
|
|
2636
2668
|
expiresAt: z.ZodOptional<z.ZodISODate>;
|
|
2637
|
-
|
|
2638
|
-
|
|
2639
|
-
|
|
2640
|
-
|
|
2641
|
-
|
|
2642
|
-
|
|
2643
|
-
|
|
2644
|
-
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
|
|
2648
|
-
|
|
2649
|
-
|
|
2650
|
-
|
|
2651
|
-
|
|
2669
|
+
renewedAt: z.ZodOptional<z.ZodISODate>;
|
|
2670
|
+
boost: z.ZodOptional<z.ZodObject<{
|
|
2671
|
+
tier: z.ZodEnum<{
|
|
2672
|
+
VIP: "VIP";
|
|
2673
|
+
VIP_PLUS: "VIP_PLUS";
|
|
2674
|
+
SUPER_VIP: "SUPER_VIP";
|
|
2675
|
+
}>;
|
|
2676
|
+
status: z.ZodEnum<{
|
|
2677
|
+
ACTIVE: "ACTIVE";
|
|
2678
|
+
PENDING: "PENDING";
|
|
2679
|
+
FAIL_NO_BALANCE: "FAIL_NO_BALANCE";
|
|
2680
|
+
FAILED: "FAILED";
|
|
2681
|
+
}>;
|
|
2682
|
+
activatedAt: z.ZodOptional<z.ZodISODate>;
|
|
2683
|
+
expiresAt: z.ZodOptional<z.ZodISODate>;
|
|
2684
|
+
}, z.core.$strip>>;
|
|
2685
|
+
coloredListing: z.ZodOptional<z.ZodObject<{
|
|
2686
|
+
activatedAt: z.ZodISODate;
|
|
2687
|
+
expiresAt: z.ZodISODate;
|
|
2688
|
+
}, z.core.$strip>>;
|
|
2689
|
+
}, z.core.$strip>>;
|
|
2690
|
+
createdAt: z.ZodISODateTime;
|
|
2691
|
+
closedAt: z.ZodOptional<z.ZodISODateTime>;
|
|
2652
2692
|
}, z.core.$strip>>;
|
|
2653
|
-
}, z.core.$strip>;
|
|
2654
|
-
export declare const zGroupCount: z.ZodObject<{
|
|
2655
|
-
groupKey: z.ZodString;
|
|
2656
|
-
label: z.ZodString;
|
|
2657
|
-
count: z.ZodCoercedBigInt<unknown>;
|
|
2658
|
-
}, z.core.$strip>;
|
|
2659
|
-
export declare const zInvitationViewResponse: z.ZodObject<{
|
|
2660
|
-
invitationId: z.ZodUUID;
|
|
2661
|
-
email: z.ZodString;
|
|
2662
|
-
status: z.ZodEnum<{
|
|
2663
|
-
EXPIRED: "EXPIRED";
|
|
2664
|
-
PENDING: "PENDING";
|
|
2665
|
-
ACCEPTED: "ACCEPTED";
|
|
2666
|
-
CANCELLED: "CANCELLED";
|
|
2667
|
-
}>;
|
|
2668
2693
|
createdAt: z.ZodISODateTime;
|
|
2669
|
-
|
|
2670
|
-
|
|
2671
|
-
|
|
2672
|
-
|
|
2673
|
-
|
|
2674
|
-
|
|
2675
|
-
|
|
2676
|
-
|
|
2677
|
-
status: z.ZodEnum<{
|
|
2678
|
-
EXPIRED: "EXPIRED";
|
|
2679
|
-
PENDING: "PENDING";
|
|
2680
|
-
ACCEPTED: "ACCEPTED";
|
|
2681
|
-
CANCELLED: "CANCELLED";
|
|
2694
|
+
updatedAt: z.ZodISODateTime;
|
|
2695
|
+
closeReason: z.ZodOptional<z.ZodObject<{
|
|
2696
|
+
closedAt: z.ZodISODateTime;
|
|
2697
|
+
reason: z.ZodEnum<{
|
|
2698
|
+
OTHER: "OTHER";
|
|
2699
|
+
DEAL_CLOSED: "DEAL_CLOSED";
|
|
2700
|
+
OWNER_WITHDREW: "OWNER_WITHDREW";
|
|
2701
|
+
MANDATE_EXPIRED: "MANDATE_EXPIRED";
|
|
2682
2702
|
}>;
|
|
2683
|
-
createdAt: z.ZodISODateTime;
|
|
2684
|
-
expiresAt: z.ZodISODateTime;
|
|
2685
|
-
acceptedAt: z.ZodOptional<z.ZodISODateTime>;
|
|
2686
|
-
acceptedBy: z.ZodOptional<z.ZodString>;
|
|
2687
|
-
}, z.core.$strip>>>;
|
|
2688
|
-
page: z.ZodOptional<z.ZodObject<{
|
|
2689
|
-
size: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2690
|
-
number: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2691
|
-
totalElements: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2692
|
-
totalPages: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2693
2703
|
}, z.core.$strip>>;
|
|
2694
2704
|
}, z.core.$strip>;
|
|
2695
|
-
export declare const
|
|
2696
|
-
|
|
2697
|
-
|
|
2698
|
-
|
|
2699
|
-
|
|
2700
|
-
|
|
2701
|
-
|
|
2702
|
-
|
|
2703
|
-
|
|
2704
|
-
|
|
2705
|
+
export declare const zContactId: z.ZodObject<{
|
|
2706
|
+
value: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2707
|
+
}, z.core.$strip>;
|
|
2708
|
+
export declare const zConversationId: z.ZodObject<{
|
|
2709
|
+
value: z.ZodOptional<z.ZodUUID>;
|
|
2710
|
+
}, z.core.$strip>;
|
|
2711
|
+
export declare const zMemberId: z.ZodObject<{
|
|
2712
|
+
value: z.ZodOptional<z.ZodUUID>;
|
|
2713
|
+
}, z.core.$strip>;
|
|
2714
|
+
export declare const zContactAssigned: z.ZodObject<{
|
|
2715
|
+
contactId: z.ZodOptional<z.ZodObject<{
|
|
2716
|
+
value: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2717
|
+
}, z.core.$strip>>;
|
|
2718
|
+
contactName: z.ZodOptional<z.ZodString>;
|
|
2719
|
+
from: z.ZodOptional<z.ZodObject<{
|
|
2720
|
+
value: z.ZodOptional<z.ZodUUID>;
|
|
2721
|
+
}, z.core.$strip>>;
|
|
2722
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
2723
|
+
value: z.ZodOptional<z.ZodUUID>;
|
|
2724
|
+
}, z.core.$strip>>;
|
|
2725
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
2705
2726
|
FACEBOOK: "FACEBOOK";
|
|
2706
2727
|
INSTAGRAM: "INSTAGRAM";
|
|
2728
|
+
UNKNOWN: "UNKNOWN";
|
|
2707
2729
|
WHATSAPP: "WHATSAPP";
|
|
2730
|
+
SS: "SS";
|
|
2731
|
+
MY_HOME: "MY_HOME";
|
|
2732
|
+
HOME_SPOT: "HOME_SPOT";
|
|
2733
|
+
AGENCY_MEMBER: "AGENCY_MEMBER";
|
|
2708
2734
|
}>>;
|
|
2709
|
-
contactId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2710
|
-
isReachable: z.ZodOptional<z.ZodBoolean>;
|
|
2711
|
-
windowExpiresAt: z.ZodOptional<z.ZodISODateTime>;
|
|
2712
|
-
contactFirstName: z.ZodOptional<z.ZodString>;
|
|
2713
|
-
contactLastName: z.ZodOptional<z.ZodString>;
|
|
2714
|
-
managedBy: z.ZodOptional<z.ZodUUID>;
|
|
2715
|
-
memberFirstName: z.ZodOptional<z.ZodString>;
|
|
2716
|
-
memberLastName: z.ZodOptional<z.ZodString>;
|
|
2717
|
-
memberPicture: z.ZodOptional<z.ZodString>;
|
|
2718
|
-
}, z.core.$strip>;
|
|
2719
|
-
export declare const zCursorPageInboxResponse: z.ZodObject<{
|
|
2720
|
-
items: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2721
|
-
conversationId: z.ZodOptional<z.ZodUUID>;
|
|
2722
|
-
lastMessageAt: z.ZodOptional<z.ZodISODateTime>;
|
|
2723
|
-
unreadCount: z.ZodOptional<z.ZodInt>;
|
|
2724
|
-
lastMessagePreview: z.ZodOptional<z.ZodString>;
|
|
2725
|
-
direction: z.ZodOptional<z.ZodEnum<{
|
|
2726
|
-
INBOUND: "INBOUND";
|
|
2727
|
-
OUTBOUND: "OUTBOUND";
|
|
2728
|
-
}>>;
|
|
2729
|
-
channelType: z.ZodOptional<z.ZodEnum<{
|
|
2730
|
-
FACEBOOK: "FACEBOOK";
|
|
2731
|
-
INSTAGRAM: "INSTAGRAM";
|
|
2732
|
-
WHATSAPP: "WHATSAPP";
|
|
2733
|
-
}>>;
|
|
2734
|
-
contactId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2735
|
-
isReachable: z.ZodOptional<z.ZodBoolean>;
|
|
2736
|
-
windowExpiresAt: z.ZodOptional<z.ZodISODateTime>;
|
|
2737
|
-
contactFirstName: z.ZodOptional<z.ZodString>;
|
|
2738
|
-
contactLastName: z.ZodOptional<z.ZodString>;
|
|
2739
|
-
managedBy: z.ZodOptional<z.ZodUUID>;
|
|
2740
|
-
memberFirstName: z.ZodOptional<z.ZodString>;
|
|
2741
|
-
memberLastName: z.ZodOptional<z.ZodString>;
|
|
2742
|
-
memberPicture: z.ZodOptional<z.ZodString>;
|
|
2743
|
-
}, z.core.$strip>>>;
|
|
2744
|
-
nextCursor: z.ZodOptional<z.ZodString>;
|
|
2745
|
-
hasNext: z.ZodOptional<z.ZodBoolean>;
|
|
2746
|
-
}, z.core.$strip>;
|
|
2747
|
-
export declare const zImage: z.ZodObject<{
|
|
2748
|
-
urls: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2749
2735
|
kind: z.ZodEnum<{
|
|
2750
|
-
|
|
2751
|
-
}>;
|
|
2752
|
-
}, z.core.$strip>;
|
|
2753
|
-
export declare const zSentBy: z.ZodObject<{
|
|
2754
|
-
memberId: z.ZodOptional<z.ZodUUID>;
|
|
2755
|
-
firstName: z.ZodOptional<z.ZodString>;
|
|
2756
|
-
lastName: z.ZodOptional<z.ZodString>;
|
|
2757
|
-
picture: z.ZodOptional<z.ZodString>;
|
|
2758
|
-
}, z.core.$strip>;
|
|
2759
|
-
export declare const zText: z.ZodObject<{
|
|
2760
|
-
body: z.ZodOptional<z.ZodString>;
|
|
2761
|
-
kind: z.ZodEnum<{
|
|
2762
|
-
TEXT: "TEXT";
|
|
2736
|
+
CONTACT_ASSIGNED: "CONTACT_ASSIGNED";
|
|
2763
2737
|
}>;
|
|
2764
2738
|
}, z.core.$strip>;
|
|
2765
|
-
export declare const
|
|
2739
|
+
export declare const zNewMessage: z.ZodObject<{
|
|
2740
|
+
contactId: z.ZodOptional<z.ZodObject<{
|
|
2741
|
+
value: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2742
|
+
}, z.core.$strip>>;
|
|
2743
|
+
conversationId: z.ZodOptional<z.ZodObject<{
|
|
2744
|
+
value: z.ZodOptional<z.ZodUUID>;
|
|
2745
|
+
}, z.core.$strip>>;
|
|
2746
|
+
channelType: z.ZodOptional<z.ZodEnum<{
|
|
2747
|
+
FACEBOOK: "FACEBOOK";
|
|
2748
|
+
INSTAGRAM: "INSTAGRAM";
|
|
2749
|
+
WHATSAPP: "WHATSAPP";
|
|
2750
|
+
}>>;
|
|
2751
|
+
preview: z.ZodOptional<z.ZodString>;
|
|
2752
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
2766
2753
|
kind: z.ZodEnum<{
|
|
2767
|
-
|
|
2754
|
+
NEW_MESSAGE: "NEW_MESSAGE";
|
|
2768
2755
|
}>;
|
|
2769
2756
|
}, z.core.$strip>;
|
|
2770
|
-
export declare const
|
|
2771
|
-
|
|
2772
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
2773
|
-
body: z.ZodOptional<z.ZodString>;
|
|
2774
|
-
kind: z.ZodEnum<{
|
|
2775
|
-
TEXT: "TEXT";
|
|
2776
|
-
}>;
|
|
2777
|
-
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
2778
|
-
kind: z.ZodLiteral<"UNSUPPORTED">;
|
|
2779
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
2780
|
-
kind: z.ZodEnum<{
|
|
2781
|
-
UNSUPPORTED: "UNSUPPORTED";
|
|
2782
|
-
}>;
|
|
2783
|
-
}, z.core.$strip>>]>;
|
|
2784
|
-
export declare const zMessageView: z.ZodObject<{
|
|
2757
|
+
export declare const zNotificationContent: z.ZodUnknown;
|
|
2758
|
+
export declare const zNotificationView: z.ZodObject<{
|
|
2785
2759
|
id: z.ZodUUID;
|
|
2786
2760
|
seq: z.ZodCoercedBigInt<unknown>;
|
|
2787
|
-
|
|
2788
|
-
|
|
2789
|
-
|
|
2761
|
+
type: z.ZodEnum<{
|
|
2762
|
+
CONTACT_ASSIGNED: "CONTACT_ASSIGNED";
|
|
2763
|
+
NEW_MESSAGE: "NEW_MESSAGE";
|
|
2790
2764
|
}>;
|
|
2791
|
-
|
|
2792
|
-
|
|
2793
|
-
|
|
2794
|
-
|
|
2765
|
+
targetId: z.ZodOptional<z.ZodString>;
|
|
2766
|
+
payload: z.ZodUnion<readonly [z.ZodObject<{
|
|
2767
|
+
contactId: z.ZodOptional<z.ZodObject<{
|
|
2768
|
+
value: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2769
|
+
}, z.core.$strip>>;
|
|
2770
|
+
contactName: z.ZodOptional<z.ZodString>;
|
|
2771
|
+
from: z.ZodOptional<z.ZodObject<{
|
|
2772
|
+
value: z.ZodOptional<z.ZodUUID>;
|
|
2773
|
+
}, z.core.$strip>>;
|
|
2774
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
2775
|
+
value: z.ZodOptional<z.ZodUUID>;
|
|
2776
|
+
}, z.core.$strip>>;
|
|
2777
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
2778
|
+
FACEBOOK: "FACEBOOK";
|
|
2779
|
+
INSTAGRAM: "INSTAGRAM";
|
|
2780
|
+
UNKNOWN: "UNKNOWN";
|
|
2781
|
+
WHATSAPP: "WHATSAPP";
|
|
2782
|
+
SS: "SS";
|
|
2783
|
+
MY_HOME: "MY_HOME";
|
|
2784
|
+
HOME_SPOT: "HOME_SPOT";
|
|
2785
|
+
AGENCY_MEMBER: "AGENCY_MEMBER";
|
|
2786
|
+
}>>;
|
|
2795
2787
|
kind: z.ZodEnum<{
|
|
2796
|
-
|
|
2788
|
+
CONTACT_ASSIGNED: "CONTACT_ASSIGNED";
|
|
2797
2789
|
}>;
|
|
2798
|
-
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
2799
|
-
kind: z.ZodLiteral<"UNSUPPORTED">;
|
|
2800
2790
|
}, z.core.$strip>, z.ZodObject<{
|
|
2791
|
+
contactId: z.ZodOptional<z.ZodObject<{
|
|
2792
|
+
value: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2793
|
+
}, z.core.$strip>>;
|
|
2794
|
+
conversationId: z.ZodOptional<z.ZodObject<{
|
|
2795
|
+
value: z.ZodOptional<z.ZodUUID>;
|
|
2796
|
+
}, z.core.$strip>>;
|
|
2797
|
+
channelType: z.ZodOptional<z.ZodEnum<{
|
|
2798
|
+
FACEBOOK: "FACEBOOK";
|
|
2799
|
+
INSTAGRAM: "INSTAGRAM";
|
|
2800
|
+
WHATSAPP: "WHATSAPP";
|
|
2801
|
+
}>>;
|
|
2802
|
+
preview: z.ZodOptional<z.ZodString>;
|
|
2803
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
2801
2804
|
kind: z.ZodEnum<{
|
|
2802
|
-
|
|
2805
|
+
NEW_MESSAGE: "NEW_MESSAGE";
|
|
2803
2806
|
}>;
|
|
2804
|
-
}, z.core.$strip
|
|
2805
|
-
|
|
2806
|
-
|
|
2807
|
-
RECEIVED: "RECEIVED";
|
|
2808
|
-
SENT: "SENT";
|
|
2809
|
-
FAILED: "FAILED";
|
|
2810
|
-
}>;
|
|
2811
|
-
sentAt: z.ZodISODateTime;
|
|
2812
|
-
failureReason: z.ZodOptional<z.ZodString>;
|
|
2813
|
-
sentBy: z.ZodOptional<z.ZodObject<{
|
|
2814
|
-
memberId: z.ZodOptional<z.ZodUUID>;
|
|
2815
|
-
firstName: z.ZodOptional<z.ZodString>;
|
|
2816
|
-
lastName: z.ZodOptional<z.ZodString>;
|
|
2817
|
-
picture: z.ZodOptional<z.ZodString>;
|
|
2818
|
-
}, z.core.$strip>>;
|
|
2807
|
+
}, z.core.$strip>]>;
|
|
2808
|
+
createdAt: z.ZodISODateTime;
|
|
2809
|
+
read: z.ZodBoolean;
|
|
2819
2810
|
}, z.core.$strip>;
|
|
2820
|
-
export declare const
|
|
2821
|
-
|
|
2822
|
-
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2811
|
+
export declare const zCursorPageNotificationView: z.ZodObject<{
|
|
2812
|
+
items: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2823
2813
|
id: z.ZodUUID;
|
|
2824
2814
|
seq: z.ZodCoercedBigInt<unknown>;
|
|
2825
|
-
|
|
2826
|
-
|
|
2827
|
-
|
|
2815
|
+
type: z.ZodEnum<{
|
|
2816
|
+
CONTACT_ASSIGNED: "CONTACT_ASSIGNED";
|
|
2817
|
+
NEW_MESSAGE: "NEW_MESSAGE";
|
|
2828
2818
|
}>;
|
|
2829
|
-
|
|
2830
|
-
|
|
2831
|
-
|
|
2832
|
-
|
|
2819
|
+
targetId: z.ZodOptional<z.ZodString>;
|
|
2820
|
+
payload: z.ZodUnion<readonly [z.ZodObject<{
|
|
2821
|
+
contactId: z.ZodOptional<z.ZodObject<{
|
|
2822
|
+
value: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2823
|
+
}, z.core.$strip>>;
|
|
2824
|
+
contactName: z.ZodOptional<z.ZodString>;
|
|
2825
|
+
from: z.ZodOptional<z.ZodObject<{
|
|
2826
|
+
value: z.ZodOptional<z.ZodUUID>;
|
|
2827
|
+
}, z.core.$strip>>;
|
|
2828
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
2829
|
+
value: z.ZodOptional<z.ZodUUID>;
|
|
2830
|
+
}, z.core.$strip>>;
|
|
2831
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
2832
|
+
FACEBOOK: "FACEBOOK";
|
|
2833
|
+
INSTAGRAM: "INSTAGRAM";
|
|
2834
|
+
UNKNOWN: "UNKNOWN";
|
|
2835
|
+
WHATSAPP: "WHATSAPP";
|
|
2836
|
+
SS: "SS";
|
|
2837
|
+
MY_HOME: "MY_HOME";
|
|
2838
|
+
HOME_SPOT: "HOME_SPOT";
|
|
2839
|
+
AGENCY_MEMBER: "AGENCY_MEMBER";
|
|
2840
|
+
}>>;
|
|
2833
2841
|
kind: z.ZodEnum<{
|
|
2834
|
-
|
|
2842
|
+
CONTACT_ASSIGNED: "CONTACT_ASSIGNED";
|
|
2835
2843
|
}>;
|
|
2836
|
-
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
2837
|
-
kind: z.ZodLiteral<"UNSUPPORTED">;
|
|
2838
2844
|
}, z.core.$strip>, z.ZodObject<{
|
|
2845
|
+
contactId: z.ZodOptional<z.ZodObject<{
|
|
2846
|
+
value: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2847
|
+
}, z.core.$strip>>;
|
|
2848
|
+
conversationId: z.ZodOptional<z.ZodObject<{
|
|
2849
|
+
value: z.ZodOptional<z.ZodUUID>;
|
|
2850
|
+
}, z.core.$strip>>;
|
|
2851
|
+
channelType: z.ZodOptional<z.ZodEnum<{
|
|
2852
|
+
FACEBOOK: "FACEBOOK";
|
|
2853
|
+
INSTAGRAM: "INSTAGRAM";
|
|
2854
|
+
WHATSAPP: "WHATSAPP";
|
|
2855
|
+
}>>;
|
|
2856
|
+
preview: z.ZodOptional<z.ZodString>;
|
|
2857
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
2839
2858
|
kind: z.ZodEnum<{
|
|
2840
|
-
|
|
2859
|
+
NEW_MESSAGE: "NEW_MESSAGE";
|
|
2841
2860
|
}>;
|
|
2842
|
-
}, z.core.$strip
|
|
2843
|
-
|
|
2844
|
-
|
|
2845
|
-
RECEIVED: "RECEIVED";
|
|
2846
|
-
SENT: "SENT";
|
|
2847
|
-
FAILED: "FAILED";
|
|
2848
|
-
}>;
|
|
2849
|
-
sentAt: z.ZodISODateTime;
|
|
2850
|
-
failureReason: z.ZodOptional<z.ZodString>;
|
|
2851
|
-
sentBy: z.ZodOptional<z.ZodObject<{
|
|
2852
|
-
memberId: z.ZodOptional<z.ZodUUID>;
|
|
2853
|
-
firstName: z.ZodOptional<z.ZodString>;
|
|
2854
|
-
lastName: z.ZodOptional<z.ZodString>;
|
|
2855
|
-
picture: z.ZodOptional<z.ZodString>;
|
|
2856
|
-
}, z.core.$strip>>;
|
|
2861
|
+
}, z.core.$strip>]>;
|
|
2862
|
+
createdAt: z.ZodISODateTime;
|
|
2863
|
+
read: z.ZodBoolean;
|
|
2857
2864
|
}, z.core.$strip>>>;
|
|
2858
|
-
|
|
2859
|
-
|
|
2865
|
+
nextCursor: z.ZodOptional<z.ZodString>;
|
|
2866
|
+
hasNext: z.ZodOptional<z.ZodBoolean>;
|
|
2860
2867
|
}, z.core.$strip>;
|
|
2861
|
-
export declare const
|
|
2862
|
-
|
|
2863
|
-
|
|
2864
|
-
|
|
2865
|
-
|
|
2866
|
-
|
|
2867
|
-
|
|
2868
|
-
|
|
2869
|
-
|
|
2870
|
-
kind: z.ZodLiteral<"TEXT">;
|
|
2871
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
2872
|
-
body: z.ZodOptional<z.ZodString>;
|
|
2873
|
-
kind: z.ZodEnum<{
|
|
2874
|
-
TEXT: "TEXT";
|
|
2875
|
-
}>;
|
|
2876
|
-
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
2877
|
-
kind: z.ZodLiteral<"UNSUPPORTED">;
|
|
2878
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
2879
|
-
kind: z.ZodEnum<{
|
|
2880
|
-
UNSUPPORTED: "UNSUPPORTED";
|
|
2868
|
+
export declare const zNotificationFeed: z.ZodObject<{
|
|
2869
|
+
unreadCount: z.ZodInt;
|
|
2870
|
+
notifications: z.ZodObject<{
|
|
2871
|
+
items: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2872
|
+
id: z.ZodUUID;
|
|
2873
|
+
seq: z.ZodCoercedBigInt<unknown>;
|
|
2874
|
+
type: z.ZodEnum<{
|
|
2875
|
+
CONTACT_ASSIGNED: "CONTACT_ASSIGNED";
|
|
2876
|
+
NEW_MESSAGE: "NEW_MESSAGE";
|
|
2881
2877
|
}>;
|
|
2882
|
-
|
|
2878
|
+
targetId: z.ZodOptional<z.ZodString>;
|
|
2879
|
+
payload: z.ZodUnion<readonly [z.ZodObject<{
|
|
2880
|
+
contactId: z.ZodOptional<z.ZodObject<{
|
|
2881
|
+
value: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2882
|
+
}, z.core.$strip>>;
|
|
2883
|
+
contactName: z.ZodOptional<z.ZodString>;
|
|
2884
|
+
from: z.ZodOptional<z.ZodObject<{
|
|
2885
|
+
value: z.ZodOptional<z.ZodUUID>;
|
|
2886
|
+
}, z.core.$strip>>;
|
|
2887
|
+
by: z.ZodOptional<z.ZodObject<{
|
|
2888
|
+
value: z.ZodOptional<z.ZodUUID>;
|
|
2889
|
+
}, z.core.$strip>>;
|
|
2890
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
2891
|
+
FACEBOOK: "FACEBOOK";
|
|
2892
|
+
INSTAGRAM: "INSTAGRAM";
|
|
2893
|
+
UNKNOWN: "UNKNOWN";
|
|
2894
|
+
WHATSAPP: "WHATSAPP";
|
|
2895
|
+
SS: "SS";
|
|
2896
|
+
MY_HOME: "MY_HOME";
|
|
2897
|
+
HOME_SPOT: "HOME_SPOT";
|
|
2898
|
+
AGENCY_MEMBER: "AGENCY_MEMBER";
|
|
2899
|
+
}>>;
|
|
2900
|
+
kind: z.ZodEnum<{
|
|
2901
|
+
CONTACT_ASSIGNED: "CONTACT_ASSIGNED";
|
|
2902
|
+
}>;
|
|
2903
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2904
|
+
contactId: z.ZodOptional<z.ZodObject<{
|
|
2905
|
+
value: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2906
|
+
}, z.core.$strip>>;
|
|
2907
|
+
conversationId: z.ZodOptional<z.ZodObject<{
|
|
2908
|
+
value: z.ZodOptional<z.ZodUUID>;
|
|
2909
|
+
}, z.core.$strip>>;
|
|
2910
|
+
channelType: z.ZodOptional<z.ZodEnum<{
|
|
2911
|
+
FACEBOOK: "FACEBOOK";
|
|
2912
|
+
INSTAGRAM: "INSTAGRAM";
|
|
2913
|
+
WHATSAPP: "WHATSAPP";
|
|
2914
|
+
}>>;
|
|
2915
|
+
preview: z.ZodOptional<z.ZodString>;
|
|
2916
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
2917
|
+
kind: z.ZodEnum<{
|
|
2918
|
+
NEW_MESSAGE: "NEW_MESSAGE";
|
|
2919
|
+
}>;
|
|
2920
|
+
}, z.core.$strip>]>;
|
|
2921
|
+
createdAt: z.ZodISODateTime;
|
|
2922
|
+
read: z.ZodBoolean;
|
|
2923
|
+
}, z.core.$strip>>>;
|
|
2924
|
+
nextCursor: z.ZodOptional<z.ZodString>;
|
|
2925
|
+
hasNext: z.ZodOptional<z.ZodBoolean>;
|
|
2926
|
+
}, z.core.$strip>;
|
|
2927
|
+
}, z.core.$strip>;
|
|
2928
|
+
export declare const zUnreadCount: z.ZodObject<{
|
|
2929
|
+
count: z.ZodInt;
|
|
2930
|
+
}, z.core.$strip>;
|
|
2931
|
+
export declare const zMemberViewResponse: z.ZodObject<{
|
|
2932
|
+
userId: z.ZodString;
|
|
2933
|
+
memberId: z.ZodUUID;
|
|
2934
|
+
firstName: z.ZodString;
|
|
2935
|
+
lastName: z.ZodString;
|
|
2936
|
+
profilePictureUrl: z.ZodOptional<z.ZodString>;
|
|
2937
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
2938
|
+
email: z.ZodString;
|
|
2939
|
+
roleId: z.ZodInt;
|
|
2940
|
+
roleName: z.ZodString;
|
|
2941
|
+
joinedAt: z.ZodISODateTime;
|
|
2942
|
+
}, z.core.$strip>;
|
|
2943
|
+
export declare const zPageable: z.ZodObject<{
|
|
2944
|
+
page: z.ZodOptional<z.ZodInt>;
|
|
2945
|
+
size: z.ZodOptional<z.ZodInt>;
|
|
2946
|
+
sort: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2947
|
+
}, z.core.$strip>;
|
|
2948
|
+
export declare const zMeetingCalendarView: z.ZodObject<{
|
|
2949
|
+
meetingId: z.ZodUUID;
|
|
2950
|
+
title: z.ZodString;
|
|
2951
|
+
start: z.ZodISODateTime;
|
|
2952
|
+
end: z.ZodISODateTime;
|
|
2953
|
+
status: z.ZodEnum<{
|
|
2954
|
+
CANCELLED: "CANCELLED";
|
|
2955
|
+
SCHEDULED: "SCHEDULED";
|
|
2956
|
+
}>;
|
|
2957
|
+
format: z.ZodEnum<{
|
|
2958
|
+
OTHER: "OTHER";
|
|
2959
|
+
IN_PERSON: "IN_PERSON";
|
|
2960
|
+
ONLINE: "ONLINE";
|
|
2961
|
+
}>;
|
|
2962
|
+
type: z.ZodEnum<{
|
|
2963
|
+
OTHER: "OTHER";
|
|
2964
|
+
PROPERTY_VIEWING: "PROPERTY_VIEWING";
|
|
2965
|
+
INTERNAL: "INTERNAL";
|
|
2966
|
+
CLIENT_CONSULTATION: "CLIENT_CONSULTATION";
|
|
2967
|
+
}>;
|
|
2968
|
+
color: z.ZodInt;
|
|
2969
|
+
hasGoogleMeet: z.ZodBoolean;
|
|
2970
|
+
hasProperty: z.ZodBoolean;
|
|
2971
|
+
attendeeCount: z.ZodInt;
|
|
2972
|
+
organizerId: z.ZodUUID;
|
|
2973
|
+
organizerName: z.ZodString;
|
|
2974
|
+
}, z.core.$strip>;
|
|
2975
|
+
export declare const zPagedModelMeetingCalendarView: z.ZodObject<{
|
|
2976
|
+
content: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2977
|
+
meetingId: z.ZodUUID;
|
|
2978
|
+
title: z.ZodString;
|
|
2979
|
+
start: z.ZodISODateTime;
|
|
2980
|
+
end: z.ZodISODateTime;
|
|
2883
2981
|
status: z.ZodEnum<{
|
|
2884
|
-
|
|
2885
|
-
|
|
2886
|
-
SENT: "SENT";
|
|
2887
|
-
FAILED: "FAILED";
|
|
2982
|
+
CANCELLED: "CANCELLED";
|
|
2983
|
+
SCHEDULED: "SCHEDULED";
|
|
2888
2984
|
}>;
|
|
2889
|
-
|
|
2890
|
-
|
|
2891
|
-
|
|
2892
|
-
|
|
2893
|
-
|
|
2894
|
-
|
|
2895
|
-
|
|
2896
|
-
|
|
2985
|
+
format: z.ZodEnum<{
|
|
2986
|
+
OTHER: "OTHER";
|
|
2987
|
+
IN_PERSON: "IN_PERSON";
|
|
2988
|
+
ONLINE: "ONLINE";
|
|
2989
|
+
}>;
|
|
2990
|
+
type: z.ZodEnum<{
|
|
2991
|
+
OTHER: "OTHER";
|
|
2992
|
+
PROPERTY_VIEWING: "PROPERTY_VIEWING";
|
|
2993
|
+
INTERNAL: "INTERNAL";
|
|
2994
|
+
CLIENT_CONSULTATION: "CLIENT_CONSULTATION";
|
|
2995
|
+
}>;
|
|
2996
|
+
color: z.ZodInt;
|
|
2997
|
+
hasGoogleMeet: z.ZodBoolean;
|
|
2998
|
+
hasProperty: z.ZodBoolean;
|
|
2999
|
+
attendeeCount: z.ZodInt;
|
|
3000
|
+
organizerId: z.ZodUUID;
|
|
3001
|
+
organizerName: z.ZodString;
|
|
2897
3002
|
}, z.core.$strip>>>;
|
|
2898
|
-
|
|
2899
|
-
|
|
3003
|
+
page: z.ZodOptional<z.ZodObject<{
|
|
3004
|
+
size: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
3005
|
+
number: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
3006
|
+
totalElements: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
3007
|
+
totalPages: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
3008
|
+
}, z.core.$strip>>;
|
|
2900
3009
|
}, z.core.$strip>;
|
|
2901
|
-
export declare const
|
|
2902
|
-
|
|
2903
|
-
|
|
3010
|
+
export declare const zAttendeeView: z.ZodObject<{
|
|
3011
|
+
role: z.ZodEnum<{
|
|
3012
|
+
OTHER: "OTHER";
|
|
3013
|
+
ORGANIZER: "ORGANIZER";
|
|
3014
|
+
MEMBER: "MEMBER";
|
|
3015
|
+
OWNER: "OWNER";
|
|
3016
|
+
CLIENT: "CLIENT";
|
|
3017
|
+
}>;
|
|
3018
|
+
memberId: z.ZodOptional<z.ZodUUID>;
|
|
3019
|
+
contactId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
3020
|
+
email: z.ZodOptional<z.ZodString>;
|
|
3021
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
2904
3022
|
}, z.core.$strip>;
|
|
2905
|
-
export declare const
|
|
2906
|
-
|
|
2907
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
3023
|
+
export declare const zPropertyId: z.ZodObject<{
|
|
3024
|
+
value: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2908
3025
|
}, z.core.$strip>;
|
|
2909
|
-
export declare const
|
|
2910
|
-
|
|
2911
|
-
|
|
3026
|
+
export declare const zMeetingDetailView: z.ZodObject<{
|
|
3027
|
+
meetingId: z.ZodUUID;
|
|
3028
|
+
agencyId: z.ZodUUID;
|
|
3029
|
+
createdBy: z.ZodUUID;
|
|
3030
|
+
title: z.ZodString;
|
|
3031
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3032
|
+
location: z.ZodOptional<z.ZodString>;
|
|
3033
|
+
start: z.ZodISODateTime;
|
|
3034
|
+
end: z.ZodISODateTime;
|
|
3035
|
+
status: z.ZodEnum<{
|
|
3036
|
+
CANCELLED: "CANCELLED";
|
|
3037
|
+
SCHEDULED: "SCHEDULED";
|
|
3038
|
+
}>;
|
|
3039
|
+
format: z.ZodEnum<{
|
|
3040
|
+
OTHER: "OTHER";
|
|
3041
|
+
IN_PERSON: "IN_PERSON";
|
|
3042
|
+
ONLINE: "ONLINE";
|
|
3043
|
+
}>;
|
|
3044
|
+
type: z.ZodEnum<{
|
|
3045
|
+
OTHER: "OTHER";
|
|
3046
|
+
PROPERTY_VIEWING: "PROPERTY_VIEWING";
|
|
3047
|
+
INTERNAL: "INTERNAL";
|
|
3048
|
+
CLIENT_CONSULTATION: "CLIENT_CONSULTATION";
|
|
3049
|
+
}>;
|
|
3050
|
+
color: z.ZodInt;
|
|
3051
|
+
googleEventId: z.ZodOptional<z.ZodString>;
|
|
3052
|
+
googleMeetLink: z.ZodOptional<z.ZodString>;
|
|
3053
|
+
cancellationReason: z.ZodOptional<z.ZodString>;
|
|
3054
|
+
propertyId: z.ZodOptional<z.ZodObject<{
|
|
3055
|
+
value: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
3056
|
+
}, z.core.$strip>>;
|
|
3057
|
+
attendees: z.ZodArray<z.ZodObject<{
|
|
3058
|
+
role: z.ZodEnum<{
|
|
3059
|
+
OTHER: "OTHER";
|
|
3060
|
+
ORGANIZER: "ORGANIZER";
|
|
3061
|
+
MEMBER: "MEMBER";
|
|
3062
|
+
OWNER: "OWNER";
|
|
3063
|
+
CLIENT: "CLIENT";
|
|
3064
|
+
}>;
|
|
3065
|
+
memberId: z.ZodOptional<z.ZodUUID>;
|
|
3066
|
+
contactId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
3067
|
+
email: z.ZodOptional<z.ZodString>;
|
|
3068
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
3069
|
+
}, z.core.$strip>>;
|
|
3070
|
+
createdAt: z.ZodISODateTime;
|
|
2912
3071
|
}, z.core.$strip>;
|
|
2913
|
-
export declare const
|
|
2914
|
-
|
|
3072
|
+
export declare const zAssignedToResponse: z.ZodObject<{
|
|
3073
|
+
memberId: z.ZodUUID;
|
|
3074
|
+
firstName: z.ZodString;
|
|
3075
|
+
lastName: z.ZodString;
|
|
3076
|
+
photo: z.ZodOptional<z.ZodString>;
|
|
3077
|
+
email: z.ZodString;
|
|
3078
|
+
}, z.core.$strip>;
|
|
3079
|
+
export declare const zPlatformView: z.ZodObject<{
|
|
3080
|
+
platformId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
3081
|
+
platform: z.ZodOptional<z.ZodEnum<{
|
|
3082
|
+
SS: "SS";
|
|
3083
|
+
MY_HOME: "MY_HOME";
|
|
3084
|
+
}>>;
|
|
3085
|
+
expiresAt: z.ZodOptional<z.ZodISODate>;
|
|
3086
|
+
tier: z.ZodOptional<z.ZodEnum<{
|
|
3087
|
+
VIP: "VIP";
|
|
3088
|
+
VIP_PLUS: "VIP_PLUS";
|
|
3089
|
+
SUPER_VIP: "SUPER_VIP";
|
|
3090
|
+
}>>;
|
|
3091
|
+
boostExpiresAt: z.ZodOptional<z.ZodISODate>;
|
|
3092
|
+
}, z.core.$strip>;
|
|
3093
|
+
export declare const zListingGridView: z.ZodObject<{
|
|
3094
|
+
externalPropertyId: z.ZodOptional<z.ZodUUID>;
|
|
3095
|
+
externalListingId: z.ZodOptional<z.ZodUUID>;
|
|
3096
|
+
propertyId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
3097
|
+
listingId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
3098
|
+
contactId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
3099
|
+
contactPhoneNumber: z.ZodOptional<z.ZodString>;
|
|
3100
|
+
contactFullName: z.ZodOptional<z.ZodString>;
|
|
3101
|
+
assignedTo: z.ZodOptional<z.ZodObject<{
|
|
3102
|
+
memberId: z.ZodUUID;
|
|
3103
|
+
firstName: z.ZodString;
|
|
3104
|
+
lastName: z.ZodString;
|
|
3105
|
+
photo: z.ZodOptional<z.ZodString>;
|
|
3106
|
+
email: z.ZodString;
|
|
3107
|
+
}, z.core.$strip>>;
|
|
3108
|
+
propertyType: z.ZodOptional<z.ZodEnum<{
|
|
2915
3109
|
GARAGE: "GARAGE";
|
|
2916
3110
|
HOUSE: "HOUSE";
|
|
2917
3111
|
TOWN_HOUSE: "TOWN_HOUSE";
|
|
@@ -2933,32 +3127,7 @@ export declare const zCriteria: z.ZodObject<{
|
|
|
2933
3127
|
CO_WORKING_SPACE: "CO_WORKING_SPACE";
|
|
2934
3128
|
WAREHOUSE: "WAREHOUSE";
|
|
2935
3129
|
}>>;
|
|
2936
|
-
|
|
2937
|
-
SALE: "SALE";
|
|
2938
|
-
RENT: "RENT";
|
|
2939
|
-
DAILY_RENT: "DAILY_RENT";
|
|
2940
|
-
PLEDGE: "PLEDGE";
|
|
2941
|
-
}>;
|
|
2942
|
-
budget: z.ZodOptional<z.ZodObject<{
|
|
2943
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
2944
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
2945
|
-
}, z.core.$strip>>;
|
|
2946
|
-
bedrooms: z.ZodOptional<z.ZodObject<{
|
|
2947
|
-
min: z.ZodOptional<z.ZodInt>;
|
|
2948
|
-
max: z.ZodOptional<z.ZodInt>;
|
|
2949
|
-
}, z.core.$strip>>;
|
|
2950
|
-
bathrooms: z.ZodOptional<z.ZodObject<{
|
|
2951
|
-
min: z.ZodOptional<z.ZodInt>;
|
|
2952
|
-
max: z.ZodOptional<z.ZodInt>;
|
|
2953
|
-
}, z.core.$strip>>;
|
|
2954
|
-
totalArea: z.ZodOptional<z.ZodObject<{
|
|
2955
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
2956
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
2957
|
-
}, z.core.$strip>>;
|
|
2958
|
-
livingArea: z.ZodOptional<z.ZodObject<{
|
|
2959
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
2960
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
2961
|
-
}, z.core.$strip>>;
|
|
3130
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2962
3131
|
region: z.ZodOptional<z.ZodObject<{
|
|
2963
3132
|
id: z.ZodCoercedBigInt<unknown>;
|
|
2964
3133
|
names: z.ZodArray<z.ZodObject<{
|
|
@@ -2981,7 +3150,7 @@ export declare const zCriteria: z.ZodObject<{
|
|
|
2981
3150
|
text: z.ZodString;
|
|
2982
3151
|
}, z.core.$strip>>;
|
|
2983
3152
|
}, z.core.$strip>>;
|
|
2984
|
-
|
|
3153
|
+
subdistrict: z.ZodOptional<z.ZodObject<{
|
|
2985
3154
|
id: z.ZodCoercedBigInt<unknown>;
|
|
2986
3155
|
names: z.ZodArray<z.ZodObject<{
|
|
2987
3156
|
language: z.ZodEnum<{
|
|
@@ -3003,25 +3172,67 @@ export declare const zCriteria: z.ZodObject<{
|
|
|
3003
3172
|
text: z.ZodString;
|
|
3004
3173
|
}, z.core.$strip>>;
|
|
3005
3174
|
}, z.core.$strip>>;
|
|
3006
|
-
|
|
3007
|
-
|
|
3008
|
-
|
|
3009
|
-
|
|
3010
|
-
|
|
3011
|
-
|
|
3012
|
-
|
|
3013
|
-
|
|
3014
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
3015
|
-
title: z.ZodString;
|
|
3016
|
-
status: z.ZodEnum<{
|
|
3017
|
-
UNPUBLISHED: "UNPUBLISHED";
|
|
3018
|
-
PUBLISHED: "PUBLISHED";
|
|
3175
|
+
cover: z.ZodOptional<z.ZodString>;
|
|
3176
|
+
agreementType: z.ZodOptional<z.ZodEnum<{
|
|
3177
|
+
EXCLUSIVE: "EXCLUSIVE";
|
|
3178
|
+
NON_EXCLUSIVE: "NON_EXCLUSIVE";
|
|
3179
|
+
}>>;
|
|
3180
|
+
agreementExpiresAt: z.ZodOptional<z.ZodISODate>;
|
|
3181
|
+
propertyState: z.ZodOptional<z.ZodEnum<{
|
|
3182
|
+
IN_REGISTRATION: "IN_REGISTRATION";
|
|
3019
3183
|
CLOSED: "CLOSED";
|
|
3020
|
-
|
|
3021
|
-
|
|
3022
|
-
|
|
3023
|
-
|
|
3024
|
-
|
|
3184
|
+
UNLISTED: "UNLISTED";
|
|
3185
|
+
LISTED_INTERNALLY: "LISTED_INTERNALLY";
|
|
3186
|
+
LISTED: "LISTED";
|
|
3187
|
+
}>>;
|
|
3188
|
+
listingType: z.ZodOptional<z.ZodEnum<{
|
|
3189
|
+
SALE: "SALE";
|
|
3190
|
+
RENT: "RENT";
|
|
3191
|
+
DAILY_RENT: "DAILY_RENT";
|
|
3192
|
+
PLEDGE: "PLEDGE";
|
|
3193
|
+
}>>;
|
|
3194
|
+
price: z.ZodOptional<z.ZodNumber>;
|
|
3195
|
+
commissionType: z.ZodOptional<z.ZodEnum<{
|
|
3196
|
+
FIXED: "FIXED";
|
|
3197
|
+
MONTHS_OF_RENT: "MONTHS_OF_RENT";
|
|
3198
|
+
PERCENTAGE: "PERCENTAGE";
|
|
3199
|
+
NOT_SET: "NOT_SET";
|
|
3200
|
+
}>>;
|
|
3201
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
3202
|
+
platforms: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3203
|
+
platformId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
3204
|
+
platform: z.ZodOptional<z.ZodEnum<{
|
|
3205
|
+
SS: "SS";
|
|
3206
|
+
MY_HOME: "MY_HOME";
|
|
3207
|
+
}>>;
|
|
3208
|
+
expiresAt: z.ZodOptional<z.ZodISODate>;
|
|
3209
|
+
tier: z.ZodOptional<z.ZodEnum<{
|
|
3210
|
+
VIP: "VIP";
|
|
3211
|
+
VIP_PLUS: "VIP_PLUS";
|
|
3212
|
+
SUPER_VIP: "SUPER_VIP";
|
|
3213
|
+
}>>;
|
|
3214
|
+
boostExpiresAt: z.ZodOptional<z.ZodISODate>;
|
|
3215
|
+
}, z.core.$strip>>>;
|
|
3216
|
+
createdAt: z.ZodOptional<z.ZodISODateTime>;
|
|
3217
|
+
updatedAt: z.ZodOptional<z.ZodISODateTime>;
|
|
3218
|
+
}, z.core.$strip>;
|
|
3219
|
+
export declare const zPagedModelListingGridView: z.ZodObject<{
|
|
3220
|
+
content: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3221
|
+
externalPropertyId: z.ZodOptional<z.ZodUUID>;
|
|
3222
|
+
externalListingId: z.ZodOptional<z.ZodUUID>;
|
|
3223
|
+
propertyId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
3224
|
+
listingId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
3225
|
+
contactId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
3226
|
+
contactPhoneNumber: z.ZodOptional<z.ZodString>;
|
|
3227
|
+
contactFullName: z.ZodOptional<z.ZodString>;
|
|
3228
|
+
assignedTo: z.ZodOptional<z.ZodObject<{
|
|
3229
|
+
memberId: z.ZodUUID;
|
|
3230
|
+
firstName: z.ZodString;
|
|
3231
|
+
lastName: z.ZodString;
|
|
3232
|
+
photo: z.ZodOptional<z.ZodString>;
|
|
3233
|
+
email: z.ZodString;
|
|
3234
|
+
}, z.core.$strip>>;
|
|
3235
|
+
propertyType: z.ZodOptional<z.ZodEnum<{
|
|
3025
3236
|
GARAGE: "GARAGE";
|
|
3026
3237
|
HOUSE: "HOUSE";
|
|
3027
3238
|
TOWN_HOUSE: "TOWN_HOUSE";
|
|
@@ -3040,35 +3251,10 @@ export declare const zInterestResponse: z.ZodObject<{
|
|
|
3040
3251
|
CO_LIVING_SPACE: "CO_LIVING_SPACE";
|
|
3041
3252
|
OFFICE: "OFFICE";
|
|
3042
3253
|
COMMERCIAL_SPACE: "COMMERCIAL_SPACE";
|
|
3043
|
-
CO_WORKING_SPACE: "CO_WORKING_SPACE";
|
|
3044
|
-
WAREHOUSE: "WAREHOUSE";
|
|
3045
|
-
}>>;
|
|
3046
|
-
|
|
3047
|
-
SALE: "SALE";
|
|
3048
|
-
RENT: "RENT";
|
|
3049
|
-
DAILY_RENT: "DAILY_RENT";
|
|
3050
|
-
PLEDGE: "PLEDGE";
|
|
3051
|
-
}>;
|
|
3052
|
-
budget: z.ZodOptional<z.ZodObject<{
|
|
3053
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
3054
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
3055
|
-
}, z.core.$strip>>;
|
|
3056
|
-
bedrooms: z.ZodOptional<z.ZodObject<{
|
|
3057
|
-
min: z.ZodOptional<z.ZodInt>;
|
|
3058
|
-
max: z.ZodOptional<z.ZodInt>;
|
|
3059
|
-
}, z.core.$strip>>;
|
|
3060
|
-
bathrooms: z.ZodOptional<z.ZodObject<{
|
|
3061
|
-
min: z.ZodOptional<z.ZodInt>;
|
|
3062
|
-
max: z.ZodOptional<z.ZodInt>;
|
|
3063
|
-
}, z.core.$strip>>;
|
|
3064
|
-
totalArea: z.ZodOptional<z.ZodObject<{
|
|
3065
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
3066
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
3067
|
-
}, z.core.$strip>>;
|
|
3068
|
-
livingArea: z.ZodOptional<z.ZodObject<{
|
|
3069
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
3070
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
3071
|
-
}, z.core.$strip>>;
|
|
3254
|
+
CO_WORKING_SPACE: "CO_WORKING_SPACE";
|
|
3255
|
+
WAREHOUSE: "WAREHOUSE";
|
|
3256
|
+
}>>;
|
|
3257
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3072
3258
|
region: z.ZodOptional<z.ZodObject<{
|
|
3073
3259
|
id: z.ZodCoercedBigInt<unknown>;
|
|
3074
3260
|
names: z.ZodArray<z.ZodObject<{
|
|
@@ -3091,7 +3277,18 @@ export declare const zInterestResponse: z.ZodObject<{
|
|
|
3091
3277
|
text: z.ZodString;
|
|
3092
3278
|
}, z.core.$strip>>;
|
|
3093
3279
|
}, z.core.$strip>>;
|
|
3094
|
-
|
|
3280
|
+
subdistrict: z.ZodOptional<z.ZodObject<{
|
|
3281
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
3282
|
+
names: z.ZodArray<z.ZodObject<{
|
|
3283
|
+
language: z.ZodEnum<{
|
|
3284
|
+
ka: "ka";
|
|
3285
|
+
en: "en";
|
|
3286
|
+
ru: "ru";
|
|
3287
|
+
}>;
|
|
3288
|
+
text: z.ZodString;
|
|
3289
|
+
}, z.core.$strip>>;
|
|
3290
|
+
}, z.core.$strip>>;
|
|
3291
|
+
street: z.ZodOptional<z.ZodObject<{
|
|
3095
3292
|
id: z.ZodCoercedBigInt<unknown>;
|
|
3096
3293
|
names: z.ZodArray<z.ZodObject<{
|
|
3097
3294
|
language: z.ZodEnum<{
|
|
@@ -3102,24 +3299,303 @@ export declare const zInterestResponse: z.ZodObject<{
|
|
|
3102
3299
|
text: z.ZodString;
|
|
3103
3300
|
}, z.core.$strip>>;
|
|
3104
3301
|
}, z.core.$strip>>;
|
|
3105
|
-
|
|
3106
|
-
|
|
3107
|
-
|
|
3108
|
-
|
|
3109
|
-
|
|
3110
|
-
|
|
3111
|
-
|
|
3112
|
-
|
|
3113
|
-
|
|
3114
|
-
|
|
3302
|
+
cover: z.ZodOptional<z.ZodString>;
|
|
3303
|
+
agreementType: z.ZodOptional<z.ZodEnum<{
|
|
3304
|
+
EXCLUSIVE: "EXCLUSIVE";
|
|
3305
|
+
NON_EXCLUSIVE: "NON_EXCLUSIVE";
|
|
3306
|
+
}>>;
|
|
3307
|
+
agreementExpiresAt: z.ZodOptional<z.ZodISODate>;
|
|
3308
|
+
propertyState: z.ZodOptional<z.ZodEnum<{
|
|
3309
|
+
IN_REGISTRATION: "IN_REGISTRATION";
|
|
3310
|
+
CLOSED: "CLOSED";
|
|
3311
|
+
UNLISTED: "UNLISTED";
|
|
3312
|
+
LISTED_INTERNALLY: "LISTED_INTERNALLY";
|
|
3313
|
+
LISTED: "LISTED";
|
|
3314
|
+
}>>;
|
|
3315
|
+
listingType: z.ZodOptional<z.ZodEnum<{
|
|
3316
|
+
SALE: "SALE";
|
|
3317
|
+
RENT: "RENT";
|
|
3318
|
+
DAILY_RENT: "DAILY_RENT";
|
|
3319
|
+
PLEDGE: "PLEDGE";
|
|
3320
|
+
}>>;
|
|
3321
|
+
price: z.ZodOptional<z.ZodNumber>;
|
|
3322
|
+
commissionType: z.ZodOptional<z.ZodEnum<{
|
|
3323
|
+
FIXED: "FIXED";
|
|
3324
|
+
MONTHS_OF_RENT: "MONTHS_OF_RENT";
|
|
3325
|
+
PERCENTAGE: "PERCENTAGE";
|
|
3326
|
+
NOT_SET: "NOT_SET";
|
|
3327
|
+
}>>;
|
|
3328
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
3329
|
+
platforms: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3330
|
+
platformId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
3331
|
+
platform: z.ZodOptional<z.ZodEnum<{
|
|
3332
|
+
SS: "SS";
|
|
3333
|
+
MY_HOME: "MY_HOME";
|
|
3334
|
+
}>>;
|
|
3335
|
+
expiresAt: z.ZodOptional<z.ZodISODate>;
|
|
3336
|
+
tier: z.ZodOptional<z.ZodEnum<{
|
|
3337
|
+
VIP: "VIP";
|
|
3338
|
+
VIP_PLUS: "VIP_PLUS";
|
|
3339
|
+
SUPER_VIP: "SUPER_VIP";
|
|
3340
|
+
}>>;
|
|
3341
|
+
boostExpiresAt: z.ZodOptional<z.ZodISODate>;
|
|
3342
|
+
}, z.core.$strip>>>;
|
|
3343
|
+
createdAt: z.ZodOptional<z.ZodISODateTime>;
|
|
3344
|
+
updatedAt: z.ZodOptional<z.ZodISODateTime>;
|
|
3345
|
+
}, z.core.$strip>>>;
|
|
3346
|
+
page: z.ZodOptional<z.ZodObject<{
|
|
3347
|
+
size: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
3348
|
+
number: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
3349
|
+
totalElements: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
3350
|
+
totalPages: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
3351
|
+
}, z.core.$strip>>;
|
|
3352
|
+
}, z.core.$strip>;
|
|
3353
|
+
export declare const zGroupCount: z.ZodObject<{
|
|
3354
|
+
groupKey: z.ZodString;
|
|
3355
|
+
label: z.ZodString;
|
|
3356
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
3357
|
+
}, z.core.$strip>;
|
|
3358
|
+
export declare const zInvitationViewResponse: z.ZodObject<{
|
|
3359
|
+
invitationId: z.ZodUUID;
|
|
3360
|
+
email: z.ZodString;
|
|
3361
|
+
status: z.ZodEnum<{
|
|
3362
|
+
EXPIRED: "EXPIRED";
|
|
3363
|
+
PENDING: "PENDING";
|
|
3364
|
+
ACCEPTED: "ACCEPTED";
|
|
3365
|
+
CANCELLED: "CANCELLED";
|
|
3366
|
+
}>;
|
|
3367
|
+
createdAt: z.ZodISODateTime;
|
|
3368
|
+
expiresAt: z.ZodISODateTime;
|
|
3369
|
+
acceptedAt: z.ZodOptional<z.ZodISODateTime>;
|
|
3370
|
+
acceptedBy: z.ZodOptional<z.ZodString>;
|
|
3371
|
+
}, z.core.$strip>;
|
|
3372
|
+
export declare const zPagedModelInvitationViewResponse: z.ZodObject<{
|
|
3373
|
+
content: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3374
|
+
invitationId: z.ZodUUID;
|
|
3375
|
+
email: z.ZodString;
|
|
3376
|
+
status: z.ZodEnum<{
|
|
3377
|
+
EXPIRED: "EXPIRED";
|
|
3378
|
+
PENDING: "PENDING";
|
|
3379
|
+
ACCEPTED: "ACCEPTED";
|
|
3380
|
+
CANCELLED: "CANCELLED";
|
|
3381
|
+
}>;
|
|
3382
|
+
createdAt: z.ZodISODateTime;
|
|
3383
|
+
expiresAt: z.ZodISODateTime;
|
|
3384
|
+
acceptedAt: z.ZodOptional<z.ZodISODateTime>;
|
|
3385
|
+
acceptedBy: z.ZodOptional<z.ZodString>;
|
|
3386
|
+
}, z.core.$strip>>>;
|
|
3387
|
+
page: z.ZodOptional<z.ZodObject<{
|
|
3388
|
+
size: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
3389
|
+
number: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
3390
|
+
totalElements: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
3391
|
+
totalPages: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
3392
|
+
}, z.core.$strip>>;
|
|
3393
|
+
}, z.core.$strip>;
|
|
3394
|
+
export declare const zInboxResponse: z.ZodObject<{
|
|
3395
|
+
conversationId: z.ZodOptional<z.ZodUUID>;
|
|
3396
|
+
lastMessageAt: z.ZodOptional<z.ZodISODateTime>;
|
|
3397
|
+
unreadCount: z.ZodOptional<z.ZodInt>;
|
|
3398
|
+
lastMessagePreview: z.ZodOptional<z.ZodString>;
|
|
3399
|
+
direction: z.ZodOptional<z.ZodEnum<{
|
|
3400
|
+
INBOUND: "INBOUND";
|
|
3401
|
+
OUTBOUND: "OUTBOUND";
|
|
3402
|
+
}>>;
|
|
3403
|
+
channelType: z.ZodOptional<z.ZodEnum<{
|
|
3404
|
+
FACEBOOK: "FACEBOOK";
|
|
3405
|
+
INSTAGRAM: "INSTAGRAM";
|
|
3406
|
+
WHATSAPP: "WHATSAPP";
|
|
3407
|
+
}>>;
|
|
3408
|
+
contactId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
3409
|
+
isReachable: z.ZodOptional<z.ZodBoolean>;
|
|
3410
|
+
windowExpiresAt: z.ZodOptional<z.ZodISODateTime>;
|
|
3411
|
+
contactFirstName: z.ZodOptional<z.ZodString>;
|
|
3412
|
+
contactLastName: z.ZodOptional<z.ZodString>;
|
|
3413
|
+
managedBy: z.ZodOptional<z.ZodUUID>;
|
|
3414
|
+
memberFirstName: z.ZodOptional<z.ZodString>;
|
|
3415
|
+
memberLastName: z.ZodOptional<z.ZodString>;
|
|
3416
|
+
memberPicture: z.ZodOptional<z.ZodString>;
|
|
3417
|
+
}, z.core.$strip>;
|
|
3418
|
+
export declare const zCursorPageInboxResponse: z.ZodObject<{
|
|
3419
|
+
items: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3420
|
+
conversationId: z.ZodOptional<z.ZodUUID>;
|
|
3421
|
+
lastMessageAt: z.ZodOptional<z.ZodISODateTime>;
|
|
3422
|
+
unreadCount: z.ZodOptional<z.ZodInt>;
|
|
3423
|
+
lastMessagePreview: z.ZodOptional<z.ZodString>;
|
|
3424
|
+
direction: z.ZodOptional<z.ZodEnum<{
|
|
3425
|
+
INBOUND: "INBOUND";
|
|
3426
|
+
OUTBOUND: "OUTBOUND";
|
|
3427
|
+
}>>;
|
|
3428
|
+
channelType: z.ZodOptional<z.ZodEnum<{
|
|
3429
|
+
FACEBOOK: "FACEBOOK";
|
|
3430
|
+
INSTAGRAM: "INSTAGRAM";
|
|
3431
|
+
WHATSAPP: "WHATSAPP";
|
|
3432
|
+
}>>;
|
|
3433
|
+
contactId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
3434
|
+
isReachable: z.ZodOptional<z.ZodBoolean>;
|
|
3435
|
+
windowExpiresAt: z.ZodOptional<z.ZodISODateTime>;
|
|
3436
|
+
contactFirstName: z.ZodOptional<z.ZodString>;
|
|
3437
|
+
contactLastName: z.ZodOptional<z.ZodString>;
|
|
3438
|
+
managedBy: z.ZodOptional<z.ZodUUID>;
|
|
3439
|
+
memberFirstName: z.ZodOptional<z.ZodString>;
|
|
3440
|
+
memberLastName: z.ZodOptional<z.ZodString>;
|
|
3441
|
+
memberPicture: z.ZodOptional<z.ZodString>;
|
|
3442
|
+
}, z.core.$strip>>>;
|
|
3443
|
+
nextCursor: z.ZodOptional<z.ZodString>;
|
|
3444
|
+
hasNext: z.ZodOptional<z.ZodBoolean>;
|
|
3445
|
+
}, z.core.$strip>;
|
|
3446
|
+
export declare const zImage: z.ZodObject<{
|
|
3447
|
+
urls: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3448
|
+
kind: z.ZodEnum<{
|
|
3449
|
+
IMAGE: "IMAGE";
|
|
3450
|
+
}>;
|
|
3451
|
+
}, z.core.$strip>;
|
|
3452
|
+
export declare const zSentBy: z.ZodObject<{
|
|
3453
|
+
memberId: z.ZodOptional<z.ZodUUID>;
|
|
3454
|
+
firstName: z.ZodOptional<z.ZodString>;
|
|
3455
|
+
lastName: z.ZodOptional<z.ZodString>;
|
|
3456
|
+
picture: z.ZodOptional<z.ZodString>;
|
|
3457
|
+
}, z.core.$strip>;
|
|
3458
|
+
export declare const zText: z.ZodObject<{
|
|
3459
|
+
body: z.ZodOptional<z.ZodString>;
|
|
3460
|
+
kind: z.ZodEnum<{
|
|
3461
|
+
TEXT: "TEXT";
|
|
3462
|
+
}>;
|
|
3463
|
+
}, z.core.$strip>;
|
|
3464
|
+
export declare const zUnsupported: z.ZodObject<{
|
|
3465
|
+
kind: z.ZodEnum<{
|
|
3466
|
+
UNSUPPORTED: "UNSUPPORTED";
|
|
3467
|
+
}>;
|
|
3468
|
+
}, z.core.$strip>;
|
|
3469
|
+
export declare const zMessageContent: z.ZodUnion<readonly [z.ZodIntersection<z.ZodObject<{
|
|
3470
|
+
kind: z.ZodLiteral<"TEXT">;
|
|
3471
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3472
|
+
body: z.ZodOptional<z.ZodString>;
|
|
3473
|
+
kind: z.ZodEnum<{
|
|
3474
|
+
TEXT: "TEXT";
|
|
3475
|
+
}>;
|
|
3476
|
+
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
3477
|
+
kind: z.ZodLiteral<"UNSUPPORTED">;
|
|
3478
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3479
|
+
kind: z.ZodEnum<{
|
|
3480
|
+
UNSUPPORTED: "UNSUPPORTED";
|
|
3481
|
+
}>;
|
|
3482
|
+
}, z.core.$strip>>]>;
|
|
3483
|
+
export declare const zMessageView: z.ZodObject<{
|
|
3484
|
+
id: z.ZodUUID;
|
|
3485
|
+
seq: z.ZodCoercedBigInt<unknown>;
|
|
3486
|
+
direction: z.ZodEnum<{
|
|
3487
|
+
INBOUND: "INBOUND";
|
|
3488
|
+
OUTBOUND: "OUTBOUND";
|
|
3489
|
+
}>;
|
|
3490
|
+
content: z.ZodUnion<readonly [z.ZodIntersection<z.ZodObject<{
|
|
3491
|
+
kind: z.ZodLiteral<"TEXT">;
|
|
3492
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3493
|
+
body: z.ZodOptional<z.ZodString>;
|
|
3494
|
+
kind: z.ZodEnum<{
|
|
3495
|
+
TEXT: "TEXT";
|
|
3496
|
+
}>;
|
|
3497
|
+
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
3498
|
+
kind: z.ZodLiteral<"UNSUPPORTED">;
|
|
3499
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3500
|
+
kind: z.ZodEnum<{
|
|
3501
|
+
UNSUPPORTED: "UNSUPPORTED";
|
|
3502
|
+
}>;
|
|
3503
|
+
}, z.core.$strip>>]>;
|
|
3504
|
+
status: z.ZodEnum<{
|
|
3505
|
+
PENDING: "PENDING";
|
|
3506
|
+
FAILED: "FAILED";
|
|
3507
|
+
RECEIVED: "RECEIVED";
|
|
3508
|
+
SENT: "SENT";
|
|
3509
|
+
}>;
|
|
3510
|
+
sentAt: z.ZodISODateTime;
|
|
3511
|
+
failureReason: z.ZodOptional<z.ZodString>;
|
|
3512
|
+
sentBy: z.ZodOptional<z.ZodObject<{
|
|
3513
|
+
memberId: z.ZodOptional<z.ZodUUID>;
|
|
3514
|
+
firstName: z.ZodOptional<z.ZodString>;
|
|
3515
|
+
lastName: z.ZodOptional<z.ZodString>;
|
|
3516
|
+
picture: z.ZodOptional<z.ZodString>;
|
|
3517
|
+
}, z.core.$strip>>;
|
|
3518
|
+
}, z.core.$strip>;
|
|
3519
|
+
export declare const zThreadUpdates: z.ZodObject<{
|
|
3520
|
+
customerReadUpTo: z.ZodOptional<z.ZodISODateTime>;
|
|
3521
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3522
|
+
id: z.ZodUUID;
|
|
3523
|
+
seq: z.ZodCoercedBigInt<unknown>;
|
|
3524
|
+
direction: z.ZodEnum<{
|
|
3525
|
+
INBOUND: "INBOUND";
|
|
3526
|
+
OUTBOUND: "OUTBOUND";
|
|
3527
|
+
}>;
|
|
3528
|
+
content: z.ZodUnion<readonly [z.ZodIntersection<z.ZodObject<{
|
|
3529
|
+
kind: z.ZodLiteral<"TEXT">;
|
|
3530
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3531
|
+
body: z.ZodOptional<z.ZodString>;
|
|
3532
|
+
kind: z.ZodEnum<{
|
|
3533
|
+
TEXT: "TEXT";
|
|
3534
|
+
}>;
|
|
3535
|
+
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
3536
|
+
kind: z.ZodLiteral<"UNSUPPORTED">;
|
|
3537
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3538
|
+
kind: z.ZodEnum<{
|
|
3539
|
+
UNSUPPORTED: "UNSUPPORTED";
|
|
3540
|
+
}>;
|
|
3541
|
+
}, z.core.$strip>>]>;
|
|
3542
|
+
status: z.ZodEnum<{
|
|
3543
|
+
PENDING: "PENDING";
|
|
3544
|
+
FAILED: "FAILED";
|
|
3545
|
+
RECEIVED: "RECEIVED";
|
|
3546
|
+
SENT: "SENT";
|
|
3547
|
+
}>;
|
|
3548
|
+
sentAt: z.ZodISODateTime;
|
|
3549
|
+
failureReason: z.ZodOptional<z.ZodString>;
|
|
3550
|
+
sentBy: z.ZodOptional<z.ZodObject<{
|
|
3551
|
+
memberId: z.ZodOptional<z.ZodUUID>;
|
|
3552
|
+
firstName: z.ZodOptional<z.ZodString>;
|
|
3553
|
+
lastName: z.ZodOptional<z.ZodString>;
|
|
3554
|
+
picture: z.ZodOptional<z.ZodString>;
|
|
3555
|
+
}, z.core.$strip>>;
|
|
3556
|
+
}, z.core.$strip>>>;
|
|
3557
|
+
nextSeq: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
3558
|
+
hasMore: z.ZodOptional<z.ZodBoolean>;
|
|
3559
|
+
}, z.core.$strip>;
|
|
3560
|
+
export declare const zCursorPageMessageView: z.ZodObject<{
|
|
3561
|
+
items: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3562
|
+
id: z.ZodUUID;
|
|
3563
|
+
seq: z.ZodCoercedBigInt<unknown>;
|
|
3564
|
+
direction: z.ZodEnum<{
|
|
3565
|
+
INBOUND: "INBOUND";
|
|
3566
|
+
OUTBOUND: "OUTBOUND";
|
|
3567
|
+
}>;
|
|
3568
|
+
content: z.ZodUnion<readonly [z.ZodIntersection<z.ZodObject<{
|
|
3569
|
+
kind: z.ZodLiteral<"TEXT">;
|
|
3570
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3571
|
+
body: z.ZodOptional<z.ZodString>;
|
|
3572
|
+
kind: z.ZodEnum<{
|
|
3573
|
+
TEXT: "TEXT";
|
|
3574
|
+
}>;
|
|
3575
|
+
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
3576
|
+
kind: z.ZodLiteral<"UNSUPPORTED">;
|
|
3577
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3578
|
+
kind: z.ZodEnum<{
|
|
3579
|
+
UNSUPPORTED: "UNSUPPORTED";
|
|
3580
|
+
}>;
|
|
3581
|
+
}, z.core.$strip>>]>;
|
|
3582
|
+
status: z.ZodEnum<{
|
|
3583
|
+
PENDING: "PENDING";
|
|
3584
|
+
FAILED: "FAILED";
|
|
3585
|
+
RECEIVED: "RECEIVED";
|
|
3586
|
+
SENT: "SENT";
|
|
3587
|
+
}>;
|
|
3588
|
+
sentAt: z.ZodISODateTime;
|
|
3589
|
+
failureReason: z.ZodOptional<z.ZodString>;
|
|
3590
|
+
sentBy: z.ZodOptional<z.ZodObject<{
|
|
3591
|
+
memberId: z.ZodOptional<z.ZodUUID>;
|
|
3592
|
+
firstName: z.ZodOptional<z.ZodString>;
|
|
3593
|
+
lastName: z.ZodOptional<z.ZodString>;
|
|
3594
|
+
picture: z.ZodOptional<z.ZodString>;
|
|
3115
3595
|
}, z.core.$strip>>;
|
|
3116
|
-
}, z.core.$strip
|
|
3117
|
-
|
|
3118
|
-
|
|
3119
|
-
liked: z.ZodInt;
|
|
3120
|
-
disliked: z.ZodInt;
|
|
3121
|
-
undecided: z.ZodInt;
|
|
3122
|
-
}, z.core.$strip>;
|
|
3596
|
+
}, z.core.$strip>>>;
|
|
3597
|
+
nextCursor: z.ZodOptional<z.ZodString>;
|
|
3598
|
+
hasNext: z.ZodOptional<z.ZodBoolean>;
|
|
3123
3599
|
}, z.core.$strip>;
|
|
3124
3600
|
export declare const zCommentView: z.ZodObject<{
|
|
3125
3601
|
id: z.ZodUUID;
|
|
@@ -3261,21 +3737,6 @@ export declare const zPagedModelContactGridResponse: z.ZodObject<{
|
|
|
3261
3737
|
totalPages: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
3262
3738
|
}, z.core.$strip>>;
|
|
3263
3739
|
}, 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
3740
|
export declare const zAssignedMember: z.ZodObject<{
|
|
3280
3741
|
memberId: z.ZodUUID;
|
|
3281
3742
|
name: z.ZodString;
|
|
@@ -3305,63 +3766,6 @@ export declare const zContactInfoResponse: z.ZodObject<{
|
|
|
3305
3766
|
phoneNumber: z.ZodString;
|
|
3306
3767
|
email: z.ZodOptional<z.ZodString>;
|
|
3307
3768
|
}, 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>;
|
|
3364
|
-
}, z.core.$strip>;
|
|
3365
3769
|
export declare const zContactPropertyResponse: z.ZodObject<{
|
|
3366
3770
|
publicId: z.ZodCoercedBigInt<unknown>;
|
|
3367
3771
|
propertyId: z.ZodUUID;
|
|
@@ -3650,12 +4054,122 @@ export declare const zClient360Response: z.ZodObject<{
|
|
|
3650
4054
|
}, z.core.$strip>>;
|
|
3651
4055
|
}, z.core.$strip>>;
|
|
3652
4056
|
}, z.core.$strip>;
|
|
3653
|
-
|
|
4057
|
+
recommendationStats: z.ZodObject<{
|
|
3654
4058
|
total: z.ZodInt;
|
|
3655
4059
|
liked: z.ZodInt;
|
|
3656
4060
|
disliked: z.ZodInt;
|
|
3657
4061
|
undecided: z.ZodInt;
|
|
3658
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>;
|
|
3659
4173
|
}, z.core.$strip>>;
|
|
3660
4174
|
properties: z.ZodArray<z.ZodObject<{
|
|
3661
4175
|
publicId: z.ZodCoercedBigInt<unknown>;
|
|
@@ -4305,7 +4819,20 @@ export declare const zGetContactsByContactIdInterestsByInterestIdData: z.ZodObje
|
|
|
4305
4819
|
contactId: z.ZodCoercedBigInt<unknown>;
|
|
4306
4820
|
interestId: z.ZodCoercedBigInt<unknown>;
|
|
4307
4821
|
}, z.core.$strip>;
|
|
4308
|
-
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>>;
|
|
4309
4836
|
}, z.core.$strip>;
|
|
4310
4837
|
/**
|
|
4311
4838
|
* OK
|
|
@@ -4414,12 +4941,122 @@ export declare const zGetContactsByContactIdInterestsByInterestIdResponse: z.Zod
|
|
|
4414
4941
|
}, z.core.$strip>>;
|
|
4415
4942
|
}, z.core.$strip>>;
|
|
4416
4943
|
}, z.core.$strip>;
|
|
4417
|
-
|
|
4418
|
-
total: z.ZodInt;
|
|
4419
|
-
liked: z.ZodInt;
|
|
4420
|
-
disliked: z.ZodInt;
|
|
4421
|
-
undecided: z.ZodInt;
|
|
4422
|
-
}, 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>;
|
|
4423
5060
|
}, z.core.$strip>;
|
|
4424
5061
|
export declare const zPutContactsByContactIdInterestsByInterestIdData: z.ZodObject<{
|
|
4425
5062
|
body: z.ZodObject<{
|
|
@@ -4531,6 +5168,26 @@ export declare const zPutContactsByContactIdInterestsByInterestIdPublishData: z.
|
|
|
4531
5168
|
* No Content
|
|
4532
5169
|
*/
|
|
4533
5170
|
export declare const zPutContactsByContactIdInterestsByInterestIdPublishResponse: z.ZodVoid;
|
|
5171
|
+
export declare const zPutContactsByContactIdInterestsByInterestIdListingsByExternalListingIdRateData: z.ZodObject<{
|
|
5172
|
+
body: z.ZodObject<{
|
|
5173
|
+
decision: z.ZodEnum<{
|
|
5174
|
+
MAYBE: "MAYBE";
|
|
5175
|
+
DISLIKE: "DISLIKE";
|
|
5176
|
+
LIKE: "LIKE";
|
|
5177
|
+
}>;
|
|
5178
|
+
note: z.ZodOptional<z.ZodString>;
|
|
5179
|
+
}, z.core.$strip>;
|
|
5180
|
+
path: z.ZodObject<{
|
|
5181
|
+
contactId: z.ZodCoercedBigInt<unknown>;
|
|
5182
|
+
interestId: z.ZodCoercedBigInt<unknown>;
|
|
5183
|
+
externalListingId: z.ZodUUID;
|
|
5184
|
+
}, z.core.$strip>;
|
|
5185
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
5186
|
+
}, z.core.$strip>;
|
|
5187
|
+
/**
|
|
5188
|
+
* No Content
|
|
5189
|
+
*/
|
|
5190
|
+
export declare const zPutContactsByContactIdInterestsByInterestIdListingsByExternalListingIdRateResponse: z.ZodVoid;
|
|
4534
5191
|
export declare const zPutContactsByContactIdInterestsByInterestIdItemsData: z.ZodObject<{
|
|
4535
5192
|
body: z.ZodObject<{
|
|
4536
5193
|
externalPropertyId: z.ZodUUID;
|
|
@@ -5077,7 +5734,7 @@ export declare const zPostPublicWebhooksFlittData: z.ZodObject<{
|
|
|
5077
5734
|
path: z.ZodOptional<z.ZodNever>;
|
|
5078
5735
|
query: z.ZodOptional<z.ZodNever>;
|
|
5079
5736
|
}, z.core.$strip>;
|
|
5080
|
-
export declare const
|
|
5737
|
+
export declare const zPostPublicRecomendationsByTokenListingsByExternalListingIdRateData: z.ZodObject<{
|
|
5081
5738
|
body: z.ZodObject<{
|
|
5082
5739
|
decision: z.ZodEnum<{
|
|
5083
5740
|
MAYBE: "MAYBE";
|
|
@@ -5088,14 +5745,14 @@ export declare const zPostPublicRecomendationsByTokenItemsByItemIdRateData: z.Zo
|
|
|
5088
5745
|
}, z.core.$strip>;
|
|
5089
5746
|
path: z.ZodObject<{
|
|
5090
5747
|
token: z.ZodUUID;
|
|
5091
|
-
|
|
5748
|
+
externalListingId: z.ZodUUID;
|
|
5092
5749
|
}, z.core.$strip>;
|
|
5093
5750
|
query: z.ZodOptional<z.ZodNever>;
|
|
5094
5751
|
}, z.core.$strip>;
|
|
5095
5752
|
/**
|
|
5096
5753
|
* No Content
|
|
5097
5754
|
*/
|
|
5098
|
-
export declare const
|
|
5755
|
+
export declare const zPostPublicRecomendationsByTokenListingsByExternalListingIdRateResponse: z.ZodVoid;
|
|
5099
5756
|
export declare const zPostPublicOtpPhoneData: z.ZodObject<{
|
|
5100
5757
|
body: z.ZodObject<{
|
|
5101
5758
|
phoneNumber: z.ZodString;
|
|
@@ -5469,9 +6126,9 @@ export declare const zGetConversationsByConversationIdMessagesResponse: z.ZodObj
|
|
|
5469
6126
|
}, z.core.$strip>>]>;
|
|
5470
6127
|
status: z.ZodEnum<{
|
|
5471
6128
|
PENDING: "PENDING";
|
|
6129
|
+
FAILED: "FAILED";
|
|
5472
6130
|
RECEIVED: "RECEIVED";
|
|
5473
6131
|
SENT: "SENT";
|
|
5474
|
-
FAILED: "FAILED";
|
|
5475
6132
|
}>;
|
|
5476
6133
|
sentAt: z.ZodISODateTime;
|
|
5477
6134
|
failureReason: z.ZodOptional<z.ZodString>;
|
|
@@ -5521,6 +6178,37 @@ export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsData:
|
|
|
5521
6178
|
PLEDGE: "PLEDGE";
|
|
5522
6179
|
}>;
|
|
5523
6180
|
askingPrice: z.ZodNumber;
|
|
6181
|
+
deal: z.ZodOptional<z.ZodUnion<readonly [z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
6182
|
+
type: z.ZodString;
|
|
6183
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
6184
|
+
amount: z.ZodNumber;
|
|
6185
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
6186
|
+
type: z.ZodString;
|
|
6187
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
6188
|
+
amount: z.ZodNumber;
|
|
6189
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
6190
|
+
type: z.ZodLiteral<"FIXED">;
|
|
6191
|
+
}, z.core.$strip>>, z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
6192
|
+
type: z.ZodString;
|
|
6193
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
6194
|
+
factor: z.ZodNumber;
|
|
6195
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
6196
|
+
type: z.ZodString;
|
|
6197
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
6198
|
+
factor: z.ZodNumber;
|
|
6199
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
6200
|
+
type: z.ZodLiteral<"MONTHS_OF_RENT">;
|
|
6201
|
+
}, z.core.$strip>>, z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
6202
|
+
type: z.ZodString;
|
|
6203
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
6204
|
+
rate: z.ZodNumber;
|
|
6205
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
6206
|
+
type: z.ZodString;
|
|
6207
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
6208
|
+
rate: z.ZodNumber;
|
|
6209
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
6210
|
+
type: z.ZodLiteral<"PERCENTAGE">;
|
|
6211
|
+
}, z.core.$strip>>]>>;
|
|
5524
6212
|
}, z.core.$strip>;
|
|
5525
6213
|
path: z.ZodObject<{
|
|
5526
6214
|
contactId: z.ZodCoercedBigInt<unknown>;
|
|
@@ -5534,6 +6222,19 @@ export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsData:
|
|
|
5534
6222
|
export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsResponse: z.ZodObject<{
|
|
5535
6223
|
id: z.ZodUUID;
|
|
5536
6224
|
}, z.core.$strip>;
|
|
6225
|
+
export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdResumeData: z.ZodObject<{
|
|
6226
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
6227
|
+
path: z.ZodObject<{
|
|
6228
|
+
contactId: z.ZodCoercedBigInt<unknown>;
|
|
6229
|
+
propertyId: z.ZodCoercedBigInt<unknown>;
|
|
6230
|
+
listingId: z.ZodCoercedBigInt<unknown>;
|
|
6231
|
+
}, z.core.$strip>;
|
|
6232
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
6233
|
+
}, z.core.$strip>;
|
|
6234
|
+
/**
|
|
6235
|
+
* No Content
|
|
6236
|
+
*/
|
|
6237
|
+
export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdResumeResponse: z.ZodVoid;
|
|
5537
6238
|
export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdReopenData: z.ZodObject<{
|
|
5538
6239
|
body: z.ZodOptional<z.ZodNever>;
|
|
5539
6240
|
path: z.ZodObject<{
|
|
@@ -5547,6 +6248,32 @@ export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByLis
|
|
|
5547
6248
|
* No Content
|
|
5548
6249
|
*/
|
|
5549
6250
|
export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdReopenResponse: z.ZodVoid;
|
|
6251
|
+
export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdRenewData: z.ZodObject<{
|
|
6252
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
6253
|
+
path: z.ZodObject<{
|
|
6254
|
+
contactId: z.ZodCoercedBigInt<unknown>;
|
|
6255
|
+
propertyId: z.ZodCoercedBigInt<unknown>;
|
|
6256
|
+
listingId: z.ZodCoercedBigInt<unknown>;
|
|
6257
|
+
}, z.core.$strip>;
|
|
6258
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
6259
|
+
}, z.core.$strip>;
|
|
6260
|
+
/**
|
|
6261
|
+
* No Content
|
|
6262
|
+
*/
|
|
6263
|
+
export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdRenewResponse: z.ZodVoid;
|
|
6264
|
+
export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdPauseData: z.ZodObject<{
|
|
6265
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
6266
|
+
path: z.ZodObject<{
|
|
6267
|
+
contactId: z.ZodCoercedBigInt<unknown>;
|
|
6268
|
+
propertyId: z.ZodCoercedBigInt<unknown>;
|
|
6269
|
+
listingId: z.ZodCoercedBigInt<unknown>;
|
|
6270
|
+
}, z.core.$strip>;
|
|
6271
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
6272
|
+
}, z.core.$strip>;
|
|
6273
|
+
/**
|
|
6274
|
+
* No Content
|
|
6275
|
+
*/
|
|
6276
|
+
export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdPauseResponse: z.ZodVoid;
|
|
5550
6277
|
export declare const zDeleteContactsByContactIdPropertiesByPropertyIdListingsByListingIdDealData: z.ZodObject<{
|
|
5551
6278
|
body: z.ZodOptional<z.ZodNever>;
|
|
5552
6279
|
path: z.ZodObject<{
|
|
@@ -5561,18 +6288,37 @@ export declare const zDeleteContactsByContactIdPropertiesByPropertyIdListingsByL
|
|
|
5561
6288
|
*/
|
|
5562
6289
|
export declare const zDeleteContactsByContactIdPropertiesByPropertyIdListingsByListingIdDealResponse: z.ZodVoid;
|
|
5563
6290
|
export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdDealData: z.ZodObject<{
|
|
5564
|
-
body: z.ZodObject<{
|
|
5565
|
-
|
|
5566
|
-
|
|
5567
|
-
|
|
5568
|
-
|
|
5569
|
-
|
|
5570
|
-
|
|
5571
|
-
|
|
5572
|
-
|
|
5573
|
-
|
|
5574
|
-
|
|
5575
|
-
|
|
6291
|
+
body: z.ZodUnion<readonly [z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
6292
|
+
type: z.ZodString;
|
|
6293
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
6294
|
+
amount: z.ZodNumber;
|
|
6295
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
6296
|
+
type: z.ZodString;
|
|
6297
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
6298
|
+
amount: z.ZodNumber;
|
|
6299
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
6300
|
+
type: z.ZodLiteral<"FIXED">;
|
|
6301
|
+
}, z.core.$strip>>, z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
6302
|
+
type: z.ZodString;
|
|
6303
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
6304
|
+
factor: z.ZodNumber;
|
|
6305
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
6306
|
+
type: z.ZodString;
|
|
6307
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
6308
|
+
factor: z.ZodNumber;
|
|
6309
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
6310
|
+
type: z.ZodLiteral<"MONTHS_OF_RENT">;
|
|
6311
|
+
}, z.core.$strip>>, z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
6312
|
+
type: z.ZodString;
|
|
6313
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
6314
|
+
rate: z.ZodNumber;
|
|
6315
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
6316
|
+
type: z.ZodString;
|
|
6317
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
6318
|
+
rate: z.ZodNumber;
|
|
6319
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
6320
|
+
type: z.ZodLiteral<"PERCENTAGE">;
|
|
6321
|
+
}, z.core.$strip>>]>;
|
|
5576
6322
|
path: z.ZodObject<{
|
|
5577
6323
|
contactId: z.ZodCoercedBigInt<unknown>;
|
|
5578
6324
|
propertyId: z.ZodCoercedBigInt<unknown>;
|
|
@@ -6278,85 +7024,196 @@ export declare const zGetStatisticsInboxResponse: z.ZodObject<{
|
|
|
6278
7024
|
key: z.ZodString;
|
|
6279
7025
|
count: z.ZodCoercedBigInt<unknown>;
|
|
6280
7026
|
}, z.core.$strip>>;
|
|
6281
|
-
}, z.core.$strip>;
|
|
6282
|
-
}, z.core.$strip>;
|
|
6283
|
-
export declare const zGetStatisticsDemandData: z.ZodObject<{
|
|
6284
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
6285
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
6286
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
6287
|
-
}, z.core.$strip>;
|
|
6288
|
-
/**
|
|
6289
|
-
* OK
|
|
6290
|
-
*/
|
|
6291
|
-
export declare const zGetStatisticsDemandResponse: z.ZodObject<{
|
|
6292
|
-
period: z.ZodString;
|
|
6293
|
-
computedAt: z.ZodISODateTime;
|
|
6294
|
-
data: z.ZodObject<{
|
|
6295
|
-
activeInterests: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
6296
|
-
byListingType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6297
|
-
key: z.ZodString;
|
|
6298
|
-
count: z.ZodCoercedBigInt<unknown>;
|
|
6299
|
-
}, z.core.$strip>>>;
|
|
6300
|
-
byPropertyType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6301
|
-
key: z.ZodString;
|
|
6302
|
-
count: z.ZodCoercedBigInt<unknown>;
|
|
6303
|
-
}, z.core.$strip>>>;
|
|
6304
|
-
budgetByDealType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6305
|
-
listingType: z.ZodOptional<z.ZodEnum<{
|
|
6306
|
-
SALE: "SALE";
|
|
6307
|
-
RENT: "RENT";
|
|
6308
|
-
DAILY_RENT: "DAILY_RENT";
|
|
6309
|
-
PLEDGE: "PLEDGE";
|
|
6310
|
-
}>>;
|
|
6311
|
-
buckets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6312
|
-
key: z.ZodString;
|
|
6313
|
-
count: z.ZodCoercedBigInt<unknown>;
|
|
6314
|
-
}, z.core.$strip>>>;
|
|
6315
|
-
}, z.core.$strip>>>;
|
|
6316
|
-
topDistricts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6317
|
-
location: z.ZodOptional<z.ZodObject<{
|
|
6318
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
6319
|
-
names: z.ZodArray<z.ZodObject<{
|
|
6320
|
-
language: z.ZodEnum<{
|
|
6321
|
-
ka: "ka";
|
|
6322
|
-
en: "en";
|
|
6323
|
-
ru: "ru";
|
|
6324
|
-
}>;
|
|
6325
|
-
text: z.ZodString;
|
|
6326
|
-
}, z.core.$strip>>;
|
|
7027
|
+
}, z.core.$strip>;
|
|
7028
|
+
}, z.core.$strip>;
|
|
7029
|
+
export declare const zGetStatisticsDemandData: z.ZodObject<{
|
|
7030
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
7031
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
7032
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
7033
|
+
}, z.core.$strip>;
|
|
7034
|
+
/**
|
|
7035
|
+
* OK
|
|
7036
|
+
*/
|
|
7037
|
+
export declare const zGetStatisticsDemandResponse: z.ZodObject<{
|
|
7038
|
+
period: z.ZodString;
|
|
7039
|
+
computedAt: z.ZodISODateTime;
|
|
7040
|
+
data: z.ZodObject<{
|
|
7041
|
+
activeInterests: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
7042
|
+
byListingType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7043
|
+
key: z.ZodString;
|
|
7044
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
7045
|
+
}, z.core.$strip>>>;
|
|
7046
|
+
byPropertyType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7047
|
+
key: z.ZodString;
|
|
7048
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
7049
|
+
}, z.core.$strip>>>;
|
|
7050
|
+
budgetByDealType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7051
|
+
listingType: z.ZodOptional<z.ZodEnum<{
|
|
7052
|
+
SALE: "SALE";
|
|
7053
|
+
RENT: "RENT";
|
|
7054
|
+
DAILY_RENT: "DAILY_RENT";
|
|
7055
|
+
PLEDGE: "PLEDGE";
|
|
7056
|
+
}>>;
|
|
7057
|
+
buckets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7058
|
+
key: z.ZodString;
|
|
7059
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
7060
|
+
}, z.core.$strip>>>;
|
|
7061
|
+
}, z.core.$strip>>>;
|
|
7062
|
+
topDistricts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7063
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
7064
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
7065
|
+
names: z.ZodArray<z.ZodObject<{
|
|
7066
|
+
language: z.ZodEnum<{
|
|
7067
|
+
ka: "ka";
|
|
7068
|
+
en: "en";
|
|
7069
|
+
ru: "ru";
|
|
7070
|
+
}>;
|
|
7071
|
+
text: z.ZodString;
|
|
7072
|
+
}, z.core.$strip>>;
|
|
7073
|
+
}, z.core.$strip>>;
|
|
7074
|
+
count: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
7075
|
+
}, z.core.$strip>>>;
|
|
7076
|
+
}, z.core.$strip>;
|
|
7077
|
+
}, z.core.$strip>;
|
|
7078
|
+
export declare const zGetPublicRecomendationsByTokenItemsData: z.ZodObject<{
|
|
7079
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
7080
|
+
path: z.ZodObject<{
|
|
7081
|
+
token: z.ZodUUID;
|
|
7082
|
+
}, z.core.$strip>;
|
|
7083
|
+
query: z.ZodOptional<z.ZodObject<{
|
|
7084
|
+
decision: z.ZodOptional<z.ZodEnum<{
|
|
7085
|
+
MAYBE: "MAYBE";
|
|
7086
|
+
DISLIKE: "DISLIKE";
|
|
7087
|
+
LIKE: "LIKE";
|
|
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>;
|
|
7093
|
+
page: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
7094
|
+
size: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
7095
|
+
sort: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7096
|
+
}, z.core.$strip>>;
|
|
7097
|
+
}, z.core.$strip>;
|
|
7098
|
+
/**
|
|
7099
|
+
* OK
|
|
7100
|
+
*/
|
|
7101
|
+
export declare const zGetPublicRecomendationsByTokenItemsResponse: z.ZodObject<{
|
|
7102
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
7103
|
+
title: z.ZodString;
|
|
7104
|
+
status: z.ZodEnum<{
|
|
7105
|
+
UNPUBLISHED: "UNPUBLISHED";
|
|
7106
|
+
PUBLISHED: "PUBLISHED";
|
|
7107
|
+
CLOSED: "CLOSED";
|
|
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;
|
|
6327
7202
|
}, z.core.$strip>>;
|
|
6328
|
-
|
|
6329
|
-
}, z.core.$strip>>>;
|
|
7203
|
+
}, z.core.$strip>>;
|
|
6330
7204
|
}, z.core.$strip>;
|
|
6331
|
-
|
|
6332
|
-
|
|
6333
|
-
|
|
6334
|
-
|
|
6335
|
-
|
|
7205
|
+
recommendationStats: z.ZodObject<{
|
|
7206
|
+
total: z.ZodInt;
|
|
7207
|
+
liked: z.ZodInt;
|
|
7208
|
+
disliked: z.ZodInt;
|
|
7209
|
+
undecided: z.ZodInt;
|
|
6336
7210
|
}, z.core.$strip>;
|
|
6337
|
-
|
|
6338
|
-
|
|
6339
|
-
|
|
6340
|
-
|
|
6341
|
-
|
|
6342
|
-
}>>;
|
|
6343
|
-
page: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
6344
|
-
size: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
6345
|
-
sort: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7211
|
+
boundedBox: z.ZodOptional<z.ZodObject<{
|
|
7212
|
+
minLat: z.ZodNumber;
|
|
7213
|
+
maxLat: z.ZodNumber;
|
|
7214
|
+
minLng: z.ZodNumber;
|
|
7215
|
+
maxLng: z.ZodNumber;
|
|
6346
7216
|
}, z.core.$strip>>;
|
|
6347
|
-
}, z.core.$strip>;
|
|
6348
|
-
/**
|
|
6349
|
-
* OK
|
|
6350
|
-
*/
|
|
6351
|
-
export declare const zGetPublicRecomendationsByTokenItemsResponse: z.ZodObject<{
|
|
6352
|
-
shareToken: z.ZodUUID;
|
|
6353
|
-
title: z.ZodString;
|
|
6354
|
-
createdAt: z.ZodISODateTime;
|
|
6355
|
-
status: z.ZodEnum<{
|
|
6356
|
-
UNPUBLISHED: "UNPUBLISHED";
|
|
6357
|
-
PUBLISHED: "PUBLISHED";
|
|
6358
|
-
CLOSED: "CLOSED";
|
|
6359
|
-
}>;
|
|
6360
7217
|
recommendations: z.ZodObject<{
|
|
6361
7218
|
content: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6362
7219
|
decision: z.ZodOptional<z.ZodEnum<{
|
|
@@ -6473,7 +7330,6 @@ export declare const zGetPublicRecomendationsByTokenDecisionsData: z.ZodObject<{
|
|
|
6473
7330
|
* OK
|
|
6474
7331
|
*/
|
|
6475
7332
|
export declare const zGetPublicRecomendationsByTokenDecisionsResponse: z.ZodArray<z.ZodObject<{
|
|
6476
|
-
itemId: z.ZodCoercedBigInt<unknown>;
|
|
6477
7333
|
externalPropertyId: z.ZodUUID;
|
|
6478
7334
|
externalListingId: z.ZodUUID;
|
|
6479
7335
|
decision: z.ZodEnum<{
|
|
@@ -6732,61 +7588,270 @@ export declare const zGetPublicAgencySubdomainBySubdomainLandingResponse: z.ZodO
|
|
|
6732
7588
|
en: "en";
|
|
6733
7589
|
ru: "ru";
|
|
6734
7590
|
}>;
|
|
6735
|
-
text: z.ZodString;
|
|
6736
|
-
}, z.core.$strip>>>;
|
|
6737
|
-
body: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6738
|
-
language: z.ZodEnum<{
|
|
6739
|
-
ka: "ka";
|
|
6740
|
-
en: "en";
|
|
6741
|
-
ru: "ru";
|
|
7591
|
+
text: z.ZodString;
|
|
7592
|
+
}, z.core.$strip>>>;
|
|
7593
|
+
body: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7594
|
+
language: z.ZodEnum<{
|
|
7595
|
+
ka: "ka";
|
|
7596
|
+
en: "en";
|
|
7597
|
+
ru: "ru";
|
|
7598
|
+
}>;
|
|
7599
|
+
text: z.ZodString;
|
|
7600
|
+
}, z.core.$strip>>>;
|
|
7601
|
+
}, z.core.$strip>>;
|
|
7602
|
+
agencyInfo: z.ZodOptional<z.ZodObject<{
|
|
7603
|
+
phone: z.ZodString;
|
|
7604
|
+
email: z.ZodString;
|
|
7605
|
+
address: z.ZodOptional<z.ZodString>;
|
|
7606
|
+
}, z.core.$strip>>;
|
|
7607
|
+
socialLinks: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7608
|
+
url: z.ZodString;
|
|
7609
|
+
type: z.ZodEnum<{
|
|
7610
|
+
FACEBOOK: "FACEBOOK";
|
|
7611
|
+
YOUTUBE: "YOUTUBE";
|
|
7612
|
+
INSTAGRAM: "INSTAGRAM";
|
|
7613
|
+
TIKTOK: "TIKTOK";
|
|
7614
|
+
LINKEDIN: "LINKEDIN";
|
|
7615
|
+
}>;
|
|
7616
|
+
}, z.core.$strip>>>;
|
|
7617
|
+
website: z.ZodOptional<z.ZodString>;
|
|
7618
|
+
}, z.core.$strip>;
|
|
7619
|
+
export declare const zGetPublicAgencySubdomainBySubDomainData: z.ZodObject<{
|
|
7620
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
7621
|
+
path: z.ZodObject<{
|
|
7622
|
+
subDomain: z.ZodString;
|
|
7623
|
+
}, z.core.$strip>;
|
|
7624
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
7625
|
+
}, z.core.$strip>;
|
|
7626
|
+
/**
|
|
7627
|
+
* OK
|
|
7628
|
+
*/
|
|
7629
|
+
export declare const zGetPublicAgencySubdomainBySubDomainResponse: z.ZodObject<{
|
|
7630
|
+
id: z.ZodUUID;
|
|
7631
|
+
owner: z.ZodString;
|
|
7632
|
+
name: z.ZodString;
|
|
7633
|
+
email: z.ZodString;
|
|
7634
|
+
seats: z.ZodInt;
|
|
7635
|
+
subdomain: z.ZodString;
|
|
7636
|
+
phone: z.ZodString;
|
|
7637
|
+
establishedYear: z.ZodOptional<z.ZodInt>;
|
|
7638
|
+
status: z.ZodEnum<{
|
|
7639
|
+
ACTIVE: "ACTIVE";
|
|
7640
|
+
NEW: "NEW";
|
|
7641
|
+
PAYMENT_FAILED: "PAYMENT_FAILED";
|
|
7642
|
+
INACTIVE: "INACTIVE";
|
|
7643
|
+
}>;
|
|
7644
|
+
logo: z.ZodOptional<z.ZodString>;
|
|
7645
|
+
theme: z.ZodOptional<z.ZodInt>;
|
|
7646
|
+
}, z.core.$strip>;
|
|
7647
|
+
export declare const zGetPropertyByPropertyIdPageData: z.ZodObject<{
|
|
7648
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
7649
|
+
path: z.ZodObject<{
|
|
7650
|
+
propertyId: z.ZodCoercedBigInt<unknown>;
|
|
7651
|
+
}, z.core.$strip>;
|
|
7652
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
7653
|
+
}, z.core.$strip>;
|
|
7654
|
+
/**
|
|
7655
|
+
* OK
|
|
7656
|
+
*/
|
|
7657
|
+
export declare const zGetPropertyByPropertyIdPageResponse: z.ZodObject<{
|
|
7658
|
+
publicId: z.ZodCoercedBigInt<unknown>;
|
|
7659
|
+
propertyId: z.ZodUUID;
|
|
7660
|
+
type: z.ZodEnum<{
|
|
7661
|
+
GARAGE: "GARAGE";
|
|
7662
|
+
HOUSE: "HOUSE";
|
|
7663
|
+
TOWN_HOUSE: "TOWN_HOUSE";
|
|
7664
|
+
COUNTRY_HOUSE: "COUNTRY_HOUSE";
|
|
7665
|
+
VILLA: "VILLA";
|
|
7666
|
+
COTTAGE: "COTTAGE";
|
|
7667
|
+
APARTMENT: "APARTMENT";
|
|
7668
|
+
DUPLEX: "DUPLEX";
|
|
7669
|
+
TRIPLEX: "TRIPLEX";
|
|
7670
|
+
SEMI_BASEMENT: "SEMI_BASEMENT";
|
|
7671
|
+
ATTIC: "ATTIC";
|
|
7672
|
+
AGRICULTURAL_LAND: "AGRICULTURAL_LAND";
|
|
7673
|
+
RESIDENTIAL_LAND: "RESIDENTIAL_LAND";
|
|
7674
|
+
HOTEL_ROOM: "HOTEL_ROOM";
|
|
7675
|
+
MOTEL_ROOM: "MOTEL_ROOM";
|
|
7676
|
+
CO_LIVING_SPACE: "CO_LIVING_SPACE";
|
|
7677
|
+
OFFICE: "OFFICE";
|
|
7678
|
+
COMMERCIAL_SPACE: "COMMERCIAL_SPACE";
|
|
7679
|
+
CO_WORKING_SPACE: "CO_WORKING_SPACE";
|
|
7680
|
+
WAREHOUSE: "WAREHOUSE";
|
|
7681
|
+
}>;
|
|
7682
|
+
state: z.ZodEnum<{
|
|
7683
|
+
IN_REGISTRATION: "IN_REGISTRATION";
|
|
7684
|
+
CLOSED: "CLOSED";
|
|
7685
|
+
UNLISTED: "UNLISTED";
|
|
7686
|
+
LISTED_INTERNALLY: "LISTED_INTERNALLY";
|
|
7687
|
+
LISTED: "LISTED";
|
|
7688
|
+
}>;
|
|
7689
|
+
details: z.ZodOptional<z.ZodObject<{
|
|
7690
|
+
title: z.ZodString;
|
|
7691
|
+
coverPhoto: z.ZodOptional<z.ZodString>;
|
|
7692
|
+
photoCount: z.ZodOptional<z.ZodInt>;
|
|
7693
|
+
totalArea: z.ZodNumber;
|
|
7694
|
+
livingArea: z.ZodOptional<z.ZodNumber>;
|
|
7695
|
+
balconyArea: z.ZodOptional<z.ZodNumber>;
|
|
7696
|
+
address: z.ZodObject<{
|
|
7697
|
+
region: z.ZodObject<{
|
|
7698
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
7699
|
+
names: z.ZodArray<z.ZodObject<{
|
|
7700
|
+
language: z.ZodEnum<{
|
|
7701
|
+
ka: "ka";
|
|
7702
|
+
en: "en";
|
|
7703
|
+
ru: "ru";
|
|
7704
|
+
}>;
|
|
7705
|
+
text: z.ZodString;
|
|
7706
|
+
}, z.core.$strip>>;
|
|
7707
|
+
}, z.core.$strip>;
|
|
7708
|
+
district: z.ZodObject<{
|
|
7709
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
7710
|
+
names: z.ZodArray<z.ZodObject<{
|
|
7711
|
+
language: z.ZodEnum<{
|
|
7712
|
+
ka: "ka";
|
|
7713
|
+
en: "en";
|
|
7714
|
+
ru: "ru";
|
|
7715
|
+
}>;
|
|
7716
|
+
text: z.ZodString;
|
|
7717
|
+
}, z.core.$strip>>;
|
|
7718
|
+
}, z.core.$strip>;
|
|
7719
|
+
subdistrict: z.ZodObject<{
|
|
7720
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
7721
|
+
names: z.ZodArray<z.ZodObject<{
|
|
7722
|
+
language: z.ZodEnum<{
|
|
7723
|
+
ka: "ka";
|
|
7724
|
+
en: "en";
|
|
7725
|
+
ru: "ru";
|
|
7726
|
+
}>;
|
|
7727
|
+
text: z.ZodString;
|
|
7728
|
+
}, z.core.$strip>>;
|
|
7729
|
+
}, z.core.$strip>;
|
|
7730
|
+
street: z.ZodOptional<z.ZodObject<{
|
|
7731
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
7732
|
+
names: z.ZodArray<z.ZodObject<{
|
|
7733
|
+
language: z.ZodEnum<{
|
|
7734
|
+
ka: "ka";
|
|
7735
|
+
en: "en";
|
|
7736
|
+
ru: "ru";
|
|
7737
|
+
}>;
|
|
7738
|
+
text: z.ZodString;
|
|
7739
|
+
}, z.core.$strip>>;
|
|
7740
|
+
}, z.core.$strip>>;
|
|
7741
|
+
cadastreCode: z.ZodOptional<z.ZodString>;
|
|
7742
|
+
lat: z.ZodNumber;
|
|
7743
|
+
lng: z.ZodNumber;
|
|
7744
|
+
}, z.core.$strip>;
|
|
7745
|
+
}, z.core.$strip>>;
|
|
7746
|
+
agreement: z.ZodObject<{
|
|
7747
|
+
agreement: z.ZodEnum<{
|
|
7748
|
+
EXCLUSIVE: "EXCLUSIVE";
|
|
7749
|
+
NON_EXCLUSIVE: "NON_EXCLUSIVE";
|
|
7750
|
+
}>;
|
|
7751
|
+
expiryDate: z.ZodOptional<z.ZodISODate>;
|
|
7752
|
+
}, z.core.$strip>;
|
|
7753
|
+
listings: z.ZodArray<z.ZodObject<{
|
|
7754
|
+
publicId: z.ZodCoercedBigInt<unknown>;
|
|
7755
|
+
listingId: z.ZodUUID;
|
|
7756
|
+
listingType: z.ZodEnum<{
|
|
7757
|
+
SALE: "SALE";
|
|
7758
|
+
RENT: "RENT";
|
|
7759
|
+
DAILY_RENT: "DAILY_RENT";
|
|
7760
|
+
PLEDGE: "PLEDGE";
|
|
7761
|
+
}>;
|
|
7762
|
+
marketplaceStatus: z.ZodEnum<{
|
|
7763
|
+
ACTIVE: "ACTIVE";
|
|
7764
|
+
PAUSED: "PAUSED";
|
|
7765
|
+
EXPIRED: "EXPIRED";
|
|
7766
|
+
PENDING: "PENDING";
|
|
7767
|
+
FAILED: "FAILED";
|
|
7768
|
+
}>;
|
|
7769
|
+
crmState: z.ZodEnum<{
|
|
7770
|
+
CLOSED: "CLOSED";
|
|
7771
|
+
OPEN: "OPEN";
|
|
7772
|
+
}>;
|
|
7773
|
+
isProcessing: z.ZodBoolean;
|
|
7774
|
+
price: z.ZodNumber;
|
|
7775
|
+
deal: z.ZodOptional<z.ZodUnion<readonly [z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
7776
|
+
type: z.ZodString;
|
|
7777
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
7778
|
+
amount: z.ZodNumber;
|
|
7779
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
7780
|
+
type: z.ZodString;
|
|
7781
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
7782
|
+
amount: z.ZodNumber;
|
|
7783
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
7784
|
+
type: z.ZodLiteral<"FIXED">;
|
|
7785
|
+
}, z.core.$strip>>, z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
7786
|
+
type: z.ZodString;
|
|
7787
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
7788
|
+
factor: z.ZodNumber;
|
|
7789
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
7790
|
+
type: z.ZodString;
|
|
7791
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
7792
|
+
factor: z.ZodNumber;
|
|
7793
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
7794
|
+
type: z.ZodLiteral<"MONTHS_OF_RENT">;
|
|
7795
|
+
}, z.core.$strip>>, z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
7796
|
+
type: z.ZodString;
|
|
7797
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
7798
|
+
rate: z.ZodNumber;
|
|
7799
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
7800
|
+
type: z.ZodString;
|
|
7801
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
7802
|
+
rate: z.ZodNumber;
|
|
7803
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
7804
|
+
type: z.ZodLiteral<"PERCENTAGE">;
|
|
7805
|
+
}, z.core.$strip>>]>>;
|
|
7806
|
+
platformListings: z.ZodArray<z.ZodObject<{
|
|
7807
|
+
platformId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
7808
|
+
platformType: z.ZodEnum<{
|
|
7809
|
+
SS: "SS";
|
|
7810
|
+
MY_HOME: "MY_HOME";
|
|
7811
|
+
}>;
|
|
7812
|
+
status: z.ZodEnum<{
|
|
7813
|
+
EXPIRED: "EXPIRED";
|
|
7814
|
+
PENDING: "PENDING";
|
|
7815
|
+
FAILED: "FAILED";
|
|
7816
|
+
SYNDICATED: "SYNDICATED";
|
|
6742
7817
|
}>;
|
|
6743
|
-
|
|
6744
|
-
|
|
6745
|
-
|
|
6746
|
-
|
|
6747
|
-
|
|
6748
|
-
|
|
6749
|
-
|
|
7818
|
+
listedAt: z.ZodOptional<z.ZodISODate>;
|
|
7819
|
+
expiresAt: z.ZodOptional<z.ZodISODate>;
|
|
7820
|
+
renewedAt: z.ZodOptional<z.ZodISODate>;
|
|
7821
|
+
boost: z.ZodOptional<z.ZodObject<{
|
|
7822
|
+
tier: z.ZodEnum<{
|
|
7823
|
+
VIP: "VIP";
|
|
7824
|
+
VIP_PLUS: "VIP_PLUS";
|
|
7825
|
+
SUPER_VIP: "SUPER_VIP";
|
|
7826
|
+
}>;
|
|
7827
|
+
status: z.ZodEnum<{
|
|
7828
|
+
ACTIVE: "ACTIVE";
|
|
7829
|
+
PENDING: "PENDING";
|
|
7830
|
+
FAIL_NO_BALANCE: "FAIL_NO_BALANCE";
|
|
7831
|
+
FAILED: "FAILED";
|
|
7832
|
+
}>;
|
|
7833
|
+
activatedAt: z.ZodOptional<z.ZodISODate>;
|
|
7834
|
+
expiresAt: z.ZodOptional<z.ZodISODate>;
|
|
7835
|
+
}, z.core.$strip>>;
|
|
7836
|
+
coloredListing: z.ZodOptional<z.ZodObject<{
|
|
7837
|
+
activatedAt: z.ZodISODate;
|
|
7838
|
+
expiresAt: z.ZodISODate;
|
|
7839
|
+
}, z.core.$strip>>;
|
|
7840
|
+
}, z.core.$strip>>;
|
|
7841
|
+
createdAt: z.ZodISODateTime;
|
|
7842
|
+
closedAt: z.ZodOptional<z.ZodISODateTime>;
|
|
6750
7843
|
}, z.core.$strip>>;
|
|
6751
|
-
|
|
6752
|
-
|
|
6753
|
-
|
|
6754
|
-
|
|
6755
|
-
|
|
6756
|
-
|
|
6757
|
-
|
|
6758
|
-
|
|
7844
|
+
createdAt: z.ZodISODateTime;
|
|
7845
|
+
updatedAt: z.ZodISODateTime;
|
|
7846
|
+
closeReason: z.ZodOptional<z.ZodObject<{
|
|
7847
|
+
closedAt: z.ZodISODateTime;
|
|
7848
|
+
reason: z.ZodEnum<{
|
|
7849
|
+
OTHER: "OTHER";
|
|
7850
|
+
DEAL_CLOSED: "DEAL_CLOSED";
|
|
7851
|
+
OWNER_WITHDREW: "OWNER_WITHDREW";
|
|
7852
|
+
MANDATE_EXPIRED: "MANDATE_EXPIRED";
|
|
6759
7853
|
}>;
|
|
6760
|
-
}, z.core.$strip
|
|
6761
|
-
website: z.ZodOptional<z.ZodString>;
|
|
6762
|
-
}, z.core.$strip>;
|
|
6763
|
-
export declare const zGetPublicAgencySubdomainBySubDomainData: z.ZodObject<{
|
|
6764
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
6765
|
-
path: z.ZodObject<{
|
|
6766
|
-
subDomain: z.ZodString;
|
|
6767
|
-
}, z.core.$strip>;
|
|
6768
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
6769
|
-
}, z.core.$strip>;
|
|
6770
|
-
/**
|
|
6771
|
-
* OK
|
|
6772
|
-
*/
|
|
6773
|
-
export declare const zGetPublicAgencySubdomainBySubDomainResponse: z.ZodObject<{
|
|
6774
|
-
id: z.ZodUUID;
|
|
6775
|
-
owner: z.ZodString;
|
|
6776
|
-
name: z.ZodString;
|
|
6777
|
-
email: z.ZodString;
|
|
6778
|
-
seats: z.ZodInt;
|
|
6779
|
-
subdomain: z.ZodString;
|
|
6780
|
-
phone: z.ZodString;
|
|
6781
|
-
establishedYear: z.ZodOptional<z.ZodInt>;
|
|
6782
|
-
status: z.ZodEnum<{
|
|
6783
|
-
ACTIVE: "ACTIVE";
|
|
6784
|
-
NEW: "NEW";
|
|
6785
|
-
PAYMENT_FAILED: "PAYMENT_FAILED";
|
|
6786
|
-
INACTIVE: "INACTIVE";
|
|
6787
|
-
}>;
|
|
6788
|
-
logo: z.ZodOptional<z.ZodString>;
|
|
6789
|
-
theme: z.ZodOptional<z.ZodInt>;
|
|
7854
|
+
}, z.core.$strip>>;
|
|
6790
7855
|
}, z.core.$strip>;
|
|
6791
7856
|
export declare const zGetOauthData: z.ZodObject<{
|
|
6792
7857
|
body: z.ZodOptional<z.ZodNever>;
|
|
@@ -6890,6 +7955,17 @@ export declare const zGetOauthGoogleAuthorizeData: z.ZodObject<{
|
|
|
6890
7955
|
* OK
|
|
6891
7956
|
*/
|
|
6892
7957
|
export declare const zGetOauthGoogleAuthorizeResponse: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7958
|
+
export declare const zDeleteNotificationsData: z.ZodObject<{
|
|
7959
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
7960
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
7961
|
+
query: z.ZodOptional<z.ZodObject<{
|
|
7962
|
+
target: z.ZodOptional<z.ZodString>;
|
|
7963
|
+
}, z.core.$strip>>;
|
|
7964
|
+
}, z.core.$strip>;
|
|
7965
|
+
/**
|
|
7966
|
+
* No Content
|
|
7967
|
+
*/
|
|
7968
|
+
export declare const zDeleteNotificationsResponse: z.ZodVoid;
|
|
6893
7969
|
export declare const zGetNotificationsData: z.ZodObject<{
|
|
6894
7970
|
body: z.ZodOptional<z.ZodNever>;
|
|
6895
7971
|
path: z.ZodOptional<z.ZodNever>;
|
|
@@ -7308,10 +8384,10 @@ export declare const zGetListingResponse: z.ZodObject<{
|
|
|
7308
8384
|
}>>;
|
|
7309
8385
|
price: z.ZodOptional<z.ZodNumber>;
|
|
7310
8386
|
commissionType: z.ZodOptional<z.ZodEnum<{
|
|
7311
|
-
|
|
7312
|
-
FIXED_RENT: "FIXED_RENT";
|
|
7313
|
-
PERCENTAGE: "PERCENTAGE";
|
|
8387
|
+
FIXED: "FIXED";
|
|
7314
8388
|
MONTHS_OF_RENT: "MONTHS_OF_RENT";
|
|
8389
|
+
PERCENTAGE: "PERCENTAGE";
|
|
8390
|
+
NOT_SET: "NOT_SET";
|
|
7315
8391
|
}>>;
|
|
7316
8392
|
commission: z.ZodOptional<z.ZodNumber>;
|
|
7317
8393
|
platforms: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -7451,10 +8527,10 @@ export declare const zGetListingByPropertyIdResponse: z.ZodObject<{
|
|
|
7451
8527
|
}>>;
|
|
7452
8528
|
price: z.ZodOptional<z.ZodNumber>;
|
|
7453
8529
|
commissionType: z.ZodOptional<z.ZodEnum<{
|
|
7454
|
-
|
|
7455
|
-
FIXED_RENT: "FIXED_RENT";
|
|
7456
|
-
PERCENTAGE: "PERCENTAGE";
|
|
8530
|
+
FIXED: "FIXED";
|
|
7457
8531
|
MONTHS_OF_RENT: "MONTHS_OF_RENT";
|
|
8532
|
+
PERCENTAGE: "PERCENTAGE";
|
|
8533
|
+
NOT_SET: "NOT_SET";
|
|
7458
8534
|
}>>;
|
|
7459
8535
|
commission: z.ZodOptional<z.ZodNumber>;
|
|
7460
8536
|
platforms: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -7723,9 +8799,9 @@ export declare const zGetConversationsByConversationIdUpdatesResponse: z.ZodObje
|
|
|
7723
8799
|
}, z.core.$strip>>]>;
|
|
7724
8800
|
status: z.ZodEnum<{
|
|
7725
8801
|
PENDING: "PENDING";
|
|
8802
|
+
FAILED: "FAILED";
|
|
7726
8803
|
RECEIVED: "RECEIVED";
|
|
7727
8804
|
SENT: "SENT";
|
|
7728
|
-
FAILED: "FAILED";
|
|
7729
8805
|
}>;
|
|
7730
8806
|
sentAt: z.ZodISODateTime;
|
|
7731
8807
|
failureReason: z.ZodOptional<z.ZodString>;
|
|
@@ -7739,140 +8815,26 @@ export declare const zGetConversationsByConversationIdUpdatesResponse: z.ZodObje
|
|
|
7739
8815
|
nextSeq: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
7740
8816
|
hasMore: z.ZodOptional<z.ZodBoolean>;
|
|
7741
8817
|
}, z.core.$strip>;
|
|
7742
|
-
export declare const
|
|
8818
|
+
export declare const zGetContactsByContactIdInterestsByInterestIdRecommendationsDecisionsData: z.ZodObject<{
|
|
7743
8819
|
body: z.ZodOptional<z.ZodNever>;
|
|
7744
8820
|
path: z.ZodObject<{
|
|
7745
8821
|
contactId: z.ZodCoercedBigInt<unknown>;
|
|
7746
8822
|
interestId: z.ZodCoercedBigInt<unknown>;
|
|
7747
8823
|
}, z.core.$strip>;
|
|
7748
|
-
query: z.ZodOptional<z.
|
|
7749
|
-
decision: z.ZodOptional<z.ZodEnum<{
|
|
7750
|
-
MAYBE: "MAYBE";
|
|
7751
|
-
DISLIKE: "DISLIKE";
|
|
7752
|
-
LIKE: "LIKE";
|
|
7753
|
-
}>>;
|
|
7754
|
-
page: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
7755
|
-
size: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
7756
|
-
sort: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7757
|
-
}, z.core.$strip>>;
|
|
8824
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
7758
8825
|
}, z.core.$strip>;
|
|
7759
8826
|
/**
|
|
7760
8827
|
* OK
|
|
7761
8828
|
*/
|
|
7762
|
-
export declare const
|
|
7763
|
-
|
|
7764
|
-
|
|
7765
|
-
|
|
7766
|
-
|
|
7767
|
-
|
|
7768
|
-
|
|
7769
|
-
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";
|
|
7770
8836
|
}>;
|
|
7771
|
-
|
|
7772
|
-
content: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7773
|
-
decision: z.ZodOptional<z.ZodEnum<{
|
|
7774
|
-
MAYBE: "MAYBE";
|
|
7775
|
-
DISLIKE: "DISLIKE";
|
|
7776
|
-
LIKE: "LIKE";
|
|
7777
|
-
}>>;
|
|
7778
|
-
clientNote: z.ZodOptional<z.ZodString>;
|
|
7779
|
-
ownerContactId: z.ZodCoercedBigInt<unknown>;
|
|
7780
|
-
listingId: z.ZodCoercedBigInt<unknown>;
|
|
7781
|
-
externalListingId: z.ZodUUID;
|
|
7782
|
-
listingType: z.ZodEnum<{
|
|
7783
|
-
SALE: "SALE";
|
|
7784
|
-
RENT: "RENT";
|
|
7785
|
-
DAILY_RENT: "DAILY_RENT";
|
|
7786
|
-
PLEDGE: "PLEDGE";
|
|
7787
|
-
}>;
|
|
7788
|
-
price: z.ZodNumber;
|
|
7789
|
-
propertyId: z.ZodCoercedBigInt<unknown>;
|
|
7790
|
-
externalPropertyId: z.ZodUUID;
|
|
7791
|
-
type: z.ZodEnum<{
|
|
7792
|
-
GARAGE: "GARAGE";
|
|
7793
|
-
HOUSE: "HOUSE";
|
|
7794
|
-
TOWN_HOUSE: "TOWN_HOUSE";
|
|
7795
|
-
COUNTRY_HOUSE: "COUNTRY_HOUSE";
|
|
7796
|
-
VILLA: "VILLA";
|
|
7797
|
-
COTTAGE: "COTTAGE";
|
|
7798
|
-
APARTMENT: "APARTMENT";
|
|
7799
|
-
DUPLEX: "DUPLEX";
|
|
7800
|
-
TRIPLEX: "TRIPLEX";
|
|
7801
|
-
SEMI_BASEMENT: "SEMI_BASEMENT";
|
|
7802
|
-
ATTIC: "ATTIC";
|
|
7803
|
-
AGRICULTURAL_LAND: "AGRICULTURAL_LAND";
|
|
7804
|
-
RESIDENTIAL_LAND: "RESIDENTIAL_LAND";
|
|
7805
|
-
HOTEL_ROOM: "HOTEL_ROOM";
|
|
7806
|
-
MOTEL_ROOM: "MOTEL_ROOM";
|
|
7807
|
-
CO_LIVING_SPACE: "CO_LIVING_SPACE";
|
|
7808
|
-
OFFICE: "OFFICE";
|
|
7809
|
-
COMMERCIAL_SPACE: "COMMERCIAL_SPACE";
|
|
7810
|
-
CO_WORKING_SPACE: "CO_WORKING_SPACE";
|
|
7811
|
-
WAREHOUSE: "WAREHOUSE";
|
|
7812
|
-
}>;
|
|
7813
|
-
coverPhoto: z.ZodOptional<z.ZodString>;
|
|
7814
|
-
photoCount: z.ZodOptional<z.ZodInt>;
|
|
7815
|
-
totalArea: z.ZodNumber;
|
|
7816
|
-
livingArea: z.ZodOptional<z.ZodNumber>;
|
|
7817
|
-
balconyArea: z.ZodOptional<z.ZodNumber>;
|
|
7818
|
-
address: z.ZodObject<{
|
|
7819
|
-
region: z.ZodObject<{
|
|
7820
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
7821
|
-
names: z.ZodArray<z.ZodObject<{
|
|
7822
|
-
language: z.ZodEnum<{
|
|
7823
|
-
ka: "ka";
|
|
7824
|
-
en: "en";
|
|
7825
|
-
ru: "ru";
|
|
7826
|
-
}>;
|
|
7827
|
-
text: z.ZodString;
|
|
7828
|
-
}, z.core.$strip>>;
|
|
7829
|
-
}, z.core.$strip>;
|
|
7830
|
-
district: z.ZodObject<{
|
|
7831
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
7832
|
-
names: z.ZodArray<z.ZodObject<{
|
|
7833
|
-
language: z.ZodEnum<{
|
|
7834
|
-
ka: "ka";
|
|
7835
|
-
en: "en";
|
|
7836
|
-
ru: "ru";
|
|
7837
|
-
}>;
|
|
7838
|
-
text: z.ZodString;
|
|
7839
|
-
}, z.core.$strip>>;
|
|
7840
|
-
}, z.core.$strip>;
|
|
7841
|
-
subdistrict: z.ZodObject<{
|
|
7842
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
7843
|
-
names: z.ZodArray<z.ZodObject<{
|
|
7844
|
-
language: z.ZodEnum<{
|
|
7845
|
-
ka: "ka";
|
|
7846
|
-
en: "en";
|
|
7847
|
-
ru: "ru";
|
|
7848
|
-
}>;
|
|
7849
|
-
text: z.ZodString;
|
|
7850
|
-
}, z.core.$strip>>;
|
|
7851
|
-
}, z.core.$strip>;
|
|
7852
|
-
street: z.ZodOptional<z.ZodObject<{
|
|
7853
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
7854
|
-
names: z.ZodArray<z.ZodObject<{
|
|
7855
|
-
language: z.ZodEnum<{
|
|
7856
|
-
ka: "ka";
|
|
7857
|
-
en: "en";
|
|
7858
|
-
ru: "ru";
|
|
7859
|
-
}>;
|
|
7860
|
-
text: z.ZodString;
|
|
7861
|
-
}, z.core.$strip>>;
|
|
7862
|
-
}, z.core.$strip>>;
|
|
7863
|
-
cadastreCode: z.ZodOptional<z.ZodString>;
|
|
7864
|
-
lat: z.ZodNumber;
|
|
7865
|
-
lng: z.ZodNumber;
|
|
7866
|
-
}, z.core.$strip>;
|
|
7867
|
-
}, z.core.$strip>>>;
|
|
7868
|
-
page: z.ZodOptional<z.ZodObject<{
|
|
7869
|
-
size: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
7870
|
-
number: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
7871
|
-
totalElements: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
7872
|
-
totalPages: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
7873
|
-
}, z.core.$strip>>;
|
|
7874
|
-
}, z.core.$strip>;
|
|
7875
|
-
}, z.core.$strip>;
|
|
8837
|
+
}, z.core.$strip>>;
|
|
7876
8838
|
export declare const zGetContactByContactIdData: z.ZodObject<{
|
|
7877
8839
|
body: z.ZodOptional<z.ZodNever>;
|
|
7878
8840
|
path: z.ZodObject<{
|
|
@@ -7934,24 +8896,6 @@ export declare const zGetContactByContactIdResponse: z.ZodObject<{
|
|
|
7934
8896
|
createdAt: z.ZodISODateTime;
|
|
7935
8897
|
updatedAt: z.ZodISODateTime;
|
|
7936
8898
|
}, 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
8899
|
export declare const zGetContactByContactId360Data: z.ZodObject<{
|
|
7956
8900
|
body: z.ZodOptional<z.ZodNever>;
|
|
7957
8901
|
path: z.ZodObject<{
|
|
@@ -8134,12 +9078,122 @@ export declare const zGetContactByContactId360Response: z.ZodObject<{
|
|
|
8134
9078
|
}, z.core.$strip>>;
|
|
8135
9079
|
}, z.core.$strip>>;
|
|
8136
9080
|
}, z.core.$strip>;
|
|
8137
|
-
|
|
9081
|
+
recommendationStats: z.ZodObject<{
|
|
8138
9082
|
total: z.ZodInt;
|
|
8139
9083
|
liked: z.ZodInt;
|
|
8140
9084
|
disliked: z.ZodInt;
|
|
8141
9085
|
undecided: z.ZodInt;
|
|
8142
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>;
|
|
8143
9197
|
}, z.core.$strip>>;
|
|
8144
9198
|
properties: z.ZodArray<z.ZodObject<{
|
|
8145
9199
|
publicId: z.ZodCoercedBigInt<unknown>;
|
|
@@ -8649,17 +9703,17 @@ export declare const zDeleteContactsByContactIdPropertiesByPropertyIdListingsByL
|
|
|
8649
9703
|
* No Content
|
|
8650
9704
|
*/
|
|
8651
9705
|
export declare const zDeleteContactsByContactIdPropertiesByPropertyIdListingsByListingIdResponse: z.ZodVoid;
|
|
8652
|
-
export declare const
|
|
9706
|
+
export declare const zDeleteContactsByContactIdInterestsByInterestIdListingsByExternalListingIdData: z.ZodObject<{
|
|
8653
9707
|
body: z.ZodOptional<z.ZodNever>;
|
|
8654
9708
|
path: z.ZodObject<{
|
|
8655
9709
|
contactId: z.ZodCoercedBigInt<unknown>;
|
|
8656
9710
|
interestId: z.ZodCoercedBigInt<unknown>;
|
|
8657
|
-
|
|
9711
|
+
externalListingId: z.ZodUUID;
|
|
8658
9712
|
}, z.core.$strip>;
|
|
8659
9713
|
query: z.ZodOptional<z.ZodNever>;
|
|
8660
9714
|
}, z.core.$strip>;
|
|
8661
9715
|
/**
|
|
8662
9716
|
* No Content
|
|
8663
9717
|
*/
|
|
8664
|
-
export declare const
|
|
9718
|
+
export declare const zDeleteContactsByContactIdInterestsByInterestIdListingsByExternalListingIdResponse: z.ZodVoid;
|
|
8665
9719
|
//# sourceMappingURL=zod.gen.d.ts.map
|