@homespot-sdk/core 0.0.214 → 0.0.216

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.
@@ -50,6 +50,22 @@ export declare const zCreateAgencyRequest: z.ZodObject<{
50
50
  }, z.core.$strip>;
51
51
  establishedYear: z.ZodInt;
52
52
  }, z.core.$strip>;
53
+ export declare const zPresignedUrlResponse: z.ZodObject<{
54
+ originalName: z.ZodString;
55
+ key: z.ZodString;
56
+ url: z.ZodString;
57
+ }, z.core.$strip>;
58
+ export declare const zPresignedUrlsResponse: z.ZodObject<{
59
+ data: z.ZodArray<z.ZodObject<{
60
+ originalName: z.ZodString;
61
+ key: z.ZodString;
62
+ url: z.ZodString;
63
+ }, z.core.$strip>>;
64
+ }, z.core.$strip>;
65
+ export declare const zUploadAcknowledgmentResponse: z.ZodObject<{
66
+ success: z.ZodArray<z.ZodString>;
67
+ fail: z.ZodArray<z.ZodString>;
68
+ }, z.core.$strip>;
53
69
  export declare const zTransferFundsRequest: z.ZodObject<{
54
70
  transferTo: z.ZodUUID;
55
71
  amount: z.ZodNumber;
@@ -128,21 +144,14 @@ export declare const zInterestId: z.ZodObject<{
128
144
  export declare const zIdResponseUuid: z.ZodObject<{
129
145
  id: z.ZodUUID;
130
146
  }, z.core.$strip>;
131
- export declare const zPresignedUrlResponse: z.ZodObject<{
132
- originalName: z.ZodString;
133
- key: z.ZodString;
134
- url: z.ZodString;
147
+ export declare const zWebsiteRequest: z.ZodObject<{
148
+ url: z.ZodOptional<z.ZodString>;
135
149
  }, z.core.$strip>;
136
- export declare const zPresignedUrlsResponse: z.ZodObject<{
137
- data: z.ZodArray<z.ZodObject<{
138
- originalName: z.ZodString;
139
- key: z.ZodString;
140
- url: z.ZodString;
141
- }, z.core.$strip>>;
150
+ export declare const zThemeRequest: z.ZodObject<{
151
+ primaryColor: z.ZodInt;
142
152
  }, z.core.$strip>;
143
- export declare const zUploadAcknowledgmentResponse: z.ZodObject<{
144
- success: z.ZodArray<z.ZodString>;
145
- fail: z.ZodArray<z.ZodString>;
153
+ export declare const zEstablishedYearRequest: z.ZodObject<{
154
+ year: z.ZodInt;
146
155
  }, z.core.$strip>;
147
156
  export declare const zUserSummaryViewResponse: z.ZodObject<{
148
157
  email: z.ZodString;
@@ -164,6 +173,24 @@ export declare const zAddressResponse: z.ZodObject<{
164
173
  lat: z.ZodNumber;
165
174
  lng: z.ZodNumber;
166
175
  }, z.core.$strip>;
176
+ export declare const zAgencyContactInfoResponse: z.ZodObject<{
177
+ phone: z.ZodString;
178
+ email: z.ZodString;
179
+ address: z.ZodOptional<z.ZodString>;
180
+ }, z.core.$strip>;
181
+ export declare const zAgencyStatsResponse: z.ZodObject<{
182
+ membersCount: z.ZodInt;
183
+ listingCount: z.ZodInt;
184
+ operatingSince: z.ZodInt;
185
+ }, z.core.$strip>;
186
+ export declare const zMemberResponse: z.ZodObject<{
187
+ memberId: z.ZodUUID;
188
+ firstName: z.ZodString;
189
+ lastName: z.ZodString;
190
+ phone: z.ZodOptional<z.ZodString>;
191
+ email: z.ZodString;
192
+ profilePictureUrl: z.ZodOptional<z.ZodString>;
193
+ }, z.core.$strip>;
167
194
  export declare const zMemberViewResponse: z.ZodObject<{
168
195
  userId: z.ZodString;
169
196
  firstName: z.ZodString;
@@ -239,7 +266,6 @@ export declare const zAgencyProfileResponse: z.ZodObject<{
239
266
  subdistrict: z.ZodString;
240
267
  street: z.ZodString;
241
268
  }, z.core.$strip>;
242
- establishedYear: z.ZodInt;
243
269
  }, z.core.$strip>;
244
270
  export declare const zSchemaEnum: z.ZodEnum<{
245
271
  MAYBE: "MAYBE";
@@ -278,11 +304,10 @@ export declare const zAgencySummaryResponse: z.ZodObject<{
278
304
  owner: z.ZodString;
279
305
  name: z.ZodString;
280
306
  email: z.ZodString;
281
- seats: z.ZodString;
307
+ seats: z.ZodInt;
282
308
  subdomain: z.ZodString;
283
309
  phone: z.ZodString;
284
- website: z.ZodOptional<z.ZodString>;
285
- establishedYear: z.ZodString;
310
+ establishedYear: z.ZodOptional<z.ZodInt>;
286
311
  status: z.ZodEnum<{
287
312
  ACTIVE: "ACTIVE";
288
313
  NEW: "NEW";
@@ -290,6 +315,7 @@ export declare const zAgencySummaryResponse: z.ZodObject<{
290
315
  INACTIVE: "INACTIVE";
291
316
  }>;
292
317
  logo: z.ZodOptional<z.ZodString>;
318
+ theme: z.ZodOptional<z.ZodInt>;
293
319
  }, z.core.$strip>;
294
320
  export declare const zPagedModelAgencySummaryResponse: z.ZodObject<{
295
321
  content: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -297,11 +323,10 @@ export declare const zPagedModelAgencySummaryResponse: z.ZodObject<{
297
323
  owner: z.ZodString;
298
324
  name: z.ZodString;
299
325
  email: z.ZodString;
300
- seats: z.ZodString;
326
+ seats: z.ZodInt;
301
327
  subdomain: z.ZodString;
302
328
  phone: z.ZodString;
303
- website: z.ZodOptional<z.ZodString>;
304
- establishedYear: z.ZodString;
329
+ establishedYear: z.ZodOptional<z.ZodInt>;
305
330
  status: z.ZodEnum<{
306
331
  ACTIVE: "ACTIVE";
307
332
  NEW: "NEW";
@@ -309,6 +334,7 @@ export declare const zPagedModelAgencySummaryResponse: z.ZodObject<{
309
334
  INACTIVE: "INACTIVE";
310
335
  }>;
311
336
  logo: z.ZodOptional<z.ZodString>;
337
+ theme: z.ZodOptional<z.ZodInt>;
312
338
  }, z.core.$strip>>>;
313
339
  page: z.ZodOptional<z.ZodObject<{
314
340
  size: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
@@ -318,6 +344,135 @@ export declare const zPagedModelAgencySummaryResponse: z.ZodObject<{
318
344
  }, z.core.$strip>>;
319
345
  }, z.core.$strip>;
320
346
  export declare const zSchemaEnum3: z.ZodEnum<{
347
+ ka: "ka";
348
+ en: "en";
349
+ ru: "ru";
350
+ }>;
351
+ export declare const zTextRequest: z.ZodObject<{
352
+ language: z.ZodEnum<{
353
+ ka: "ka";
354
+ en: "en";
355
+ ru: "ru";
356
+ }>;
357
+ text: z.ZodOptional<z.ZodString>;
358
+ }, z.core.$strip>;
359
+ export declare const zMultiLangTextRequest: z.ZodObject<{
360
+ data: z.ZodArray<z.ZodObject<{
361
+ language: z.ZodEnum<{
362
+ ka: "ka";
363
+ en: "en";
364
+ ru: "ru";
365
+ }>;
366
+ text: z.ZodOptional<z.ZodString>;
367
+ }, z.core.$strip>>;
368
+ }, z.core.$strip>;
369
+ export declare const zWhitelabelSectionRequest: z.ZodObject<{
370
+ title: z.ZodObject<{
371
+ data: z.ZodArray<z.ZodObject<{
372
+ language: z.ZodEnum<{
373
+ ka: "ka";
374
+ en: "en";
375
+ ru: "ru";
376
+ }>;
377
+ text: z.ZodOptional<z.ZodString>;
378
+ }, z.core.$strip>>;
379
+ }, z.core.$strip>;
380
+ body: z.ZodObject<{
381
+ data: z.ZodArray<z.ZodObject<{
382
+ language: z.ZodEnum<{
383
+ ka: "ka";
384
+ en: "en";
385
+ ru: "ru";
386
+ }>;
387
+ text: z.ZodOptional<z.ZodString>;
388
+ }, z.core.$strip>>;
389
+ }, z.core.$strip>;
390
+ }, z.core.$strip>;
391
+ export declare const zWhitelabelReviewRequest: z.ZodObject<{
392
+ quote: z.ZodObject<{
393
+ data: z.ZodArray<z.ZodObject<{
394
+ language: z.ZodEnum<{
395
+ ka: "ka";
396
+ en: "en";
397
+ ru: "ru";
398
+ }>;
399
+ text: z.ZodOptional<z.ZodString>;
400
+ }, z.core.$strip>>;
401
+ }, z.core.$strip>;
402
+ name: z.ZodObject<{
403
+ data: z.ZodArray<z.ZodObject<{
404
+ language: z.ZodEnum<{
405
+ ka: "ka";
406
+ en: "en";
407
+ ru: "ru";
408
+ }>;
409
+ text: z.ZodOptional<z.ZodString>;
410
+ }, z.core.$strip>>;
411
+ }, z.core.$strip>;
412
+ status: z.ZodObject<{
413
+ data: z.ZodArray<z.ZodObject<{
414
+ language: z.ZodEnum<{
415
+ ka: "ka";
416
+ en: "en";
417
+ ru: "ru";
418
+ }>;
419
+ text: z.ZodOptional<z.ZodString>;
420
+ }, z.core.$strip>>;
421
+ }, z.core.$strip>;
422
+ }, z.core.$strip>;
423
+ export declare const zLangTextResponse: z.ZodObject<{
424
+ language: z.ZodEnum<{
425
+ ka: "ka";
426
+ en: "en";
427
+ ru: "ru";
428
+ }>;
429
+ text: z.ZodString;
430
+ }, z.core.$strip>;
431
+ export declare const zReviewResponse: z.ZodObject<{
432
+ quote: z.ZodOptional<z.ZodObject<{
433
+ language: z.ZodEnum<{
434
+ ka: "ka";
435
+ en: "en";
436
+ ru: "ru";
437
+ }>;
438
+ text: z.ZodString;
439
+ }, z.core.$strip>>;
440
+ name: z.ZodOptional<z.ZodObject<{
441
+ language: z.ZodEnum<{
442
+ ka: "ka";
443
+ en: "en";
444
+ ru: "ru";
445
+ }>;
446
+ text: z.ZodString;
447
+ }, z.core.$strip>>;
448
+ status: z.ZodOptional<z.ZodObject<{
449
+ language: z.ZodEnum<{
450
+ ka: "ka";
451
+ en: "en";
452
+ ru: "ru";
453
+ }>;
454
+ text: z.ZodString;
455
+ }, z.core.$strip>>;
456
+ }, z.core.$strip>;
457
+ export declare const zSegmentResponse: z.ZodObject<{
458
+ title: z.ZodOptional<z.ZodObject<{
459
+ language: z.ZodEnum<{
460
+ ka: "ka";
461
+ en: "en";
462
+ ru: "ru";
463
+ }>;
464
+ text: z.ZodString;
465
+ }, z.core.$strip>>;
466
+ body: z.ZodOptional<z.ZodObject<{
467
+ language: z.ZodEnum<{
468
+ ka: "ka";
469
+ en: "en";
470
+ ru: "ru";
471
+ }>;
472
+ text: z.ZodString;
473
+ }, z.core.$strip>>;
474
+ }, z.core.$strip>;
475
+ export declare const zSchemaEnum4: z.ZodEnum<{
321
476
  CONVERTED: "CONVERTED";
322
477
  LOST: "LOST";
323
478
  DISQUALIFIED: "DISQUALIFIED";
@@ -1240,33 +1395,21 @@ export declare const zCommunicationPreferenceResponse: z.ZodObject<{
1240
1395
  }>>;
1241
1396
  }, z.core.$strip>;
1242
1397
  export declare const zTypeEnum2: z.ZodEnum<{
1243
- FACEBOOK: "FACEBOOK";
1244
- YOUTUBE: "YOUTUBE";
1245
- INSTAGRAM: "INSTAGRAM";
1246
- TIKTOK: "TIKTOK";
1247
- LINKEDIN: "LINKEDIN";
1398
+ JPEG: "JPEG";
1399
+ JPG: "JPG";
1400
+ PNG: "PNG";
1401
+ WEBP: "WEBP";
1248
1402
  }>;
1249
- export declare const zSocialMediaRequest: z.ZodObject<{
1403
+ export declare const zPhotoRequest: z.ZodObject<{
1404
+ photo: z.ZodString;
1250
1405
  type: z.ZodEnum<{
1251
- FACEBOOK: "FACEBOOK";
1252
- YOUTUBE: "YOUTUBE";
1253
- INSTAGRAM: "INSTAGRAM";
1254
- TIKTOK: "TIKTOK";
1255
- LINKEDIN: "LINKEDIN";
1406
+ JPEG: "JPEG";
1407
+ JPG: "JPG";
1408
+ PNG: "PNG";
1409
+ WEBP: "WEBP";
1256
1410
  }>;
1257
- url: z.ZodOptional<z.ZodString>;
1258
- }, z.core.$strip>;
1259
- export declare const zSocialMediasRequest: z.ZodObject<{
1260
- data: z.ZodArray<z.ZodObject<{
1261
- type: z.ZodEnum<{
1262
- FACEBOOK: "FACEBOOK";
1263
- YOUTUBE: "YOUTUBE";
1264
- INSTAGRAM: "INSTAGRAM";
1265
- TIKTOK: "TIKTOK";
1266
- LINKEDIN: "LINKEDIN";
1267
- }>;
1268
- url: z.ZodOptional<z.ZodString>;
1269
- }, z.core.$strip>>;
1411
+ width: z.ZodInt;
1412
+ height: z.ZodOptional<z.ZodInt>;
1270
1413
  }, z.core.$strip>;
1271
1414
  export declare const zOutcomeEnum: z.ZodEnum<{
1272
1415
  CONVERTED: "CONVERTED";
@@ -1419,21 +1562,176 @@ export declare const zClientListingsResponse: z.ZodObject<{
1419
1562
  }, z.core.$strip>>;
1420
1563
  }, z.core.$strip>;
1421
1564
  export declare const zTypeEnum3: z.ZodEnum<{
1422
- JPEG: "JPEG";
1423
- JPG: "JPG";
1424
- PNG: "PNG";
1425
- WEBP: "WEBP";
1565
+ FACEBOOK: "FACEBOOK";
1566
+ YOUTUBE: "YOUTUBE";
1567
+ INSTAGRAM: "INSTAGRAM";
1568
+ TIKTOK: "TIKTOK";
1569
+ LINKEDIN: "LINKEDIN";
1426
1570
  }>;
1427
- export declare const zPhotoRequest: z.ZodObject<{
1428
- photo: z.ZodString;
1571
+ export declare const zSocialMediaRequest: z.ZodObject<{
1429
1572
  type: z.ZodEnum<{
1430
- JPEG: "JPEG";
1431
- JPG: "JPG";
1432
- PNG: "PNG";
1433
- WEBP: "WEBP";
1573
+ FACEBOOK: "FACEBOOK";
1574
+ YOUTUBE: "YOUTUBE";
1575
+ INSTAGRAM: "INSTAGRAM";
1576
+ TIKTOK: "TIKTOK";
1577
+ LINKEDIN: "LINKEDIN";
1434
1578
  }>;
1435
- width: z.ZodInt;
1436
- height: z.ZodOptional<z.ZodInt>;
1579
+ url: z.ZodOptional<z.ZodString>;
1580
+ }, z.core.$strip>;
1581
+ export declare const zSocialMediasRequest: z.ZodObject<{
1582
+ data: z.ZodArray<z.ZodObject<{
1583
+ type: z.ZodEnum<{
1584
+ FACEBOOK: "FACEBOOK";
1585
+ YOUTUBE: "YOUTUBE";
1586
+ INSTAGRAM: "INSTAGRAM";
1587
+ TIKTOK: "TIKTOK";
1588
+ LINKEDIN: "LINKEDIN";
1589
+ }>;
1590
+ url: z.ZodOptional<z.ZodString>;
1591
+ }, z.core.$strip>>;
1592
+ }, z.core.$strip>;
1593
+ export declare const zSocialLinkResponse: z.ZodObject<{
1594
+ url: z.ZodString;
1595
+ type: z.ZodEnum<{
1596
+ FACEBOOK: "FACEBOOK";
1597
+ YOUTUBE: "YOUTUBE";
1598
+ INSTAGRAM: "INSTAGRAM";
1599
+ TIKTOK: "TIKTOK";
1600
+ LINKEDIN: "LINKEDIN";
1601
+ }>;
1602
+ }, z.core.$strip>;
1603
+ export declare const zWhitelabelResponse: z.ZodObject<{
1604
+ theme: z.ZodInt;
1605
+ name: z.ZodString;
1606
+ logoUrl: z.ZodOptional<z.ZodString>;
1607
+ coverUrl: z.ZodOptional<z.ZodString>;
1608
+ slogan: z.ZodOptional<z.ZodObject<{
1609
+ title: z.ZodOptional<z.ZodObject<{
1610
+ language: z.ZodEnum<{
1611
+ ka: "ka";
1612
+ en: "en";
1613
+ ru: "ru";
1614
+ }>;
1615
+ text: z.ZodString;
1616
+ }, z.core.$strip>>;
1617
+ body: z.ZodOptional<z.ZodObject<{
1618
+ language: z.ZodEnum<{
1619
+ ka: "ka";
1620
+ en: "en";
1621
+ ru: "ru";
1622
+ }>;
1623
+ text: z.ZodString;
1624
+ }, z.core.$strip>>;
1625
+ }, z.core.$strip>>;
1626
+ stats: z.ZodObject<{
1627
+ membersCount: z.ZodInt;
1628
+ listingCount: z.ZodInt;
1629
+ operatingSince: z.ZodInt;
1630
+ }, z.core.$strip>;
1631
+ ourTeam: z.ZodOptional<z.ZodObject<{
1632
+ title: z.ZodOptional<z.ZodObject<{
1633
+ language: z.ZodEnum<{
1634
+ ka: "ka";
1635
+ en: "en";
1636
+ ru: "ru";
1637
+ }>;
1638
+ text: z.ZodString;
1639
+ }, z.core.$strip>>;
1640
+ body: z.ZodOptional<z.ZodObject<{
1641
+ language: z.ZodEnum<{
1642
+ ka: "ka";
1643
+ en: "en";
1644
+ ru: "ru";
1645
+ }>;
1646
+ text: z.ZodString;
1647
+ }, z.core.$strip>>;
1648
+ }, z.core.$strip>>;
1649
+ members: z.ZodArray<z.ZodObject<{
1650
+ memberId: z.ZodUUID;
1651
+ firstName: z.ZodString;
1652
+ lastName: z.ZodString;
1653
+ phone: z.ZodOptional<z.ZodString>;
1654
+ email: z.ZodString;
1655
+ profilePictureUrl: z.ZodOptional<z.ZodString>;
1656
+ }, z.core.$strip>>;
1657
+ review: z.ZodOptional<z.ZodObject<{
1658
+ title: z.ZodOptional<z.ZodObject<{
1659
+ language: z.ZodEnum<{
1660
+ ka: "ka";
1661
+ en: "en";
1662
+ ru: "ru";
1663
+ }>;
1664
+ text: z.ZodString;
1665
+ }, z.core.$strip>>;
1666
+ body: z.ZodOptional<z.ZodObject<{
1667
+ language: z.ZodEnum<{
1668
+ ka: "ka";
1669
+ en: "en";
1670
+ ru: "ru";
1671
+ }>;
1672
+ text: z.ZodString;
1673
+ }, z.core.$strip>>;
1674
+ }, z.core.$strip>>;
1675
+ reviews: z.ZodOptional<z.ZodArray<z.ZodObject<{
1676
+ quote: z.ZodOptional<z.ZodObject<{
1677
+ language: z.ZodEnum<{
1678
+ ka: "ka";
1679
+ en: "en";
1680
+ ru: "ru";
1681
+ }>;
1682
+ text: z.ZodString;
1683
+ }, z.core.$strip>>;
1684
+ name: z.ZodOptional<z.ZodObject<{
1685
+ language: z.ZodEnum<{
1686
+ ka: "ka";
1687
+ en: "en";
1688
+ ru: "ru";
1689
+ }>;
1690
+ text: z.ZodString;
1691
+ }, z.core.$strip>>;
1692
+ status: z.ZodOptional<z.ZodObject<{
1693
+ language: z.ZodEnum<{
1694
+ ka: "ka";
1695
+ en: "en";
1696
+ ru: "ru";
1697
+ }>;
1698
+ text: z.ZodString;
1699
+ }, z.core.$strip>>;
1700
+ }, z.core.$strip>>>;
1701
+ contactUs: z.ZodOptional<z.ZodObject<{
1702
+ title: z.ZodOptional<z.ZodObject<{
1703
+ language: z.ZodEnum<{
1704
+ ka: "ka";
1705
+ en: "en";
1706
+ ru: "ru";
1707
+ }>;
1708
+ text: z.ZodString;
1709
+ }, z.core.$strip>>;
1710
+ body: z.ZodOptional<z.ZodObject<{
1711
+ language: z.ZodEnum<{
1712
+ ka: "ka";
1713
+ en: "en";
1714
+ ru: "ru";
1715
+ }>;
1716
+ text: z.ZodString;
1717
+ }, z.core.$strip>>;
1718
+ }, z.core.$strip>>;
1719
+ agencyInfo: z.ZodOptional<z.ZodObject<{
1720
+ phone: z.ZodString;
1721
+ email: z.ZodString;
1722
+ address: z.ZodOptional<z.ZodString>;
1723
+ }, z.core.$strip>>;
1724
+ socialLinks: z.ZodOptional<z.ZodArray<z.ZodObject<{
1725
+ url: z.ZodString;
1726
+ type: z.ZodEnum<{
1727
+ FACEBOOK: "FACEBOOK";
1728
+ YOUTUBE: "YOUTUBE";
1729
+ INSTAGRAM: "INSTAGRAM";
1730
+ TIKTOK: "TIKTOK";
1731
+ LINKEDIN: "LINKEDIN";
1732
+ }>;
1733
+ }, z.core.$strip>>>;
1734
+ website: z.ZodOptional<z.ZodString>;
1437
1735
  }, z.core.$strip>;
1438
1736
  export declare const zStatusEnum: z.ZodEnum<{
1439
1737
  DRAFT: "DRAFT";
@@ -1638,6 +1936,8 @@ export declare const zLeadGridResponse: z.ZodObject<{
1638
1936
  id: z.ZodCoercedBigInt<unknown>;
1639
1937
  createdBy: z.ZodUUID;
1640
1938
  assignedTo: z.ZodOptional<z.ZodUUID>;
1939
+ assignedToName: z.ZodOptional<z.ZodString>;
1940
+ assignedToPhoto: z.ZodOptional<z.ZodString>;
1641
1941
  status: z.ZodEnum<{
1642
1942
  CONVERTED: "CONVERTED";
1643
1943
  LOST: "LOST";
@@ -1712,6 +2012,8 @@ export declare const zPagedModelLeadGridResponse: z.ZodObject<{
1712
2012
  id: z.ZodCoercedBigInt<unknown>;
1713
2013
  createdBy: z.ZodUUID;
1714
2014
  assignedTo: z.ZodOptional<z.ZodUUID>;
2015
+ assignedToName: z.ZodOptional<z.ZodString>;
2016
+ assignedToPhoto: z.ZodOptional<z.ZodString>;
1715
2017
  status: z.ZodEnum<{
1716
2018
  CONVERTED: "CONVERTED";
1717
2019
  LOST: "LOST";
@@ -1793,6 +2095,8 @@ export declare const zClientGridResponse: z.ZodObject<{
1793
2095
  createdBy: z.ZodUUID;
1794
2096
  leadId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
1795
2097
  assignedTo: z.ZodOptional<z.ZodUUID>;
2098
+ assignedToName: z.ZodOptional<z.ZodString>;
2099
+ assignedToPhoto: z.ZodOptional<z.ZodString>;
1796
2100
  contactFullName: z.ZodOptional<z.ZodString>;
1797
2101
  contactPhoneNumber: z.ZodString;
1798
2102
  contactGender: z.ZodOptional<z.ZodEnum<{
@@ -1832,6 +2136,8 @@ export declare const zPagedModelClientGridResponse: z.ZodObject<{
1832
2136
  createdBy: z.ZodUUID;
1833
2137
  leadId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
1834
2138
  assignedTo: z.ZodOptional<z.ZodUUID>;
2139
+ assignedToName: z.ZodOptional<z.ZodString>;
2140
+ assignedToPhoto: z.ZodOptional<z.ZodString>;
1835
2141
  contactFullName: z.ZodOptional<z.ZodString>;
1836
2142
  contactPhoneNumber: z.ZodString;
1837
2143
  contactGender: z.ZodOptional<z.ZodEnum<{
@@ -2599,44 +2905,120 @@ export declare const zPutAgencyByAgencyIdActivateData: z.ZodObject<{
2599
2905
  * No Content
2600
2906
  */
2601
2907
  export declare const zPutAgencyByAgencyIdActivateResponse: z.ZodVoid;
2602
- export declare const zPutAgencySocialMediaData: z.ZodObject<{
2603
- body: z.ZodObject<{
2604
- data: z.ZodArray<z.ZodObject<{
2605
- type: z.ZodEnum<{
2606
- FACEBOOK: "FACEBOOK";
2607
- YOUTUBE: "YOUTUBE";
2608
- INSTAGRAM: "INSTAGRAM";
2609
- TIKTOK: "TIKTOK";
2610
- LINKEDIN: "LINKEDIN";
2611
- }>;
2612
- url: z.ZodOptional<z.ZodString>;
2613
- }, z.core.$strip>>;
2614
- }, z.core.$strip>;
2908
+ export declare const zPostWhitelabelData: z.ZodObject<{
2909
+ body: z.ZodOptional<z.ZodNever>;
2615
2910
  path: z.ZodOptional<z.ZodNever>;
2616
2911
  query: z.ZodOptional<z.ZodNever>;
2617
2912
  }, z.core.$strip>;
2618
2913
  /**
2619
2914
  * No Content
2620
2915
  */
2621
- export declare const zPutAgencySocialMediaResponse: z.ZodVoid;
2622
- export declare const zPostWalletTransferData: z.ZodObject<{
2916
+ export declare const zPostWhitelabelResponse: z.ZodVoid;
2917
+ export declare const zPostWhitelabelPresignedUrlsData: z.ZodObject<{
2623
2918
  body: z.ZodObject<{
2624
- transferTo: z.ZodUUID;
2625
- amount: z.ZodNumber;
2919
+ photo: z.ZodString;
2920
+ type: z.ZodEnum<{
2921
+ JPEG: "JPEG";
2922
+ JPG: "JPG";
2923
+ PNG: "PNG";
2924
+ WEBP: "WEBP";
2925
+ }>;
2926
+ width: z.ZodInt;
2927
+ height: z.ZodOptional<z.ZodInt>;
2626
2928
  }, z.core.$strip>;
2627
2929
  path: z.ZodOptional<z.ZodNever>;
2628
2930
  query: z.ZodOptional<z.ZodNever>;
2629
2931
  }, z.core.$strip>;
2630
2932
  /**
2631
- * No Content
2933
+ * OK
2632
2934
  */
2633
- export declare const zPostWalletTransferResponse: z.ZodVoid;
2634
- export declare const zPostWalletDepositData: z.ZodObject<{
2635
- body: z.ZodObject<{
2636
- amount: z.ZodNumber;
2637
- }, z.core.$strip>;
2638
- path: z.ZodOptional<z.ZodNever>;
2639
- query: z.ZodOptional<z.ZodNever>;
2935
+ export declare const zPostWhitelabelPresignedUrlsResponse: z.ZodObject<{
2936
+ data: z.ZodArray<z.ZodObject<{
2937
+ originalName: z.ZodString;
2938
+ key: z.ZodString;
2939
+ url: z.ZodString;
2940
+ }, z.core.$strip>>;
2941
+ }, z.core.$strip>;
2942
+ export declare const zPostWhitelabelPresignedUrlsNotifyLogoData: z.ZodObject<{
2943
+ body: z.ZodObject<{
2944
+ photo: z.ZodString;
2945
+ type: z.ZodEnum<{
2946
+ JPEG: "JPEG";
2947
+ JPG: "JPG";
2948
+ PNG: "PNG";
2949
+ WEBP: "WEBP";
2950
+ }>;
2951
+ width: z.ZodInt;
2952
+ height: z.ZodOptional<z.ZodInt>;
2953
+ }, z.core.$strip>;
2954
+ path: z.ZodOptional<z.ZodNever>;
2955
+ query: z.ZodOptional<z.ZodNever>;
2956
+ }, z.core.$strip>;
2957
+ /**
2958
+ * OK
2959
+ */
2960
+ export declare const zPostWhitelabelPresignedUrlsNotifyLogoResponse: z.ZodObject<{
2961
+ success: z.ZodArray<z.ZodString>;
2962
+ fail: z.ZodArray<z.ZodString>;
2963
+ }, z.core.$strip>;
2964
+ export declare const zPostWhitelabelPresignedUrlsNotifyCoverData: z.ZodObject<{
2965
+ body: z.ZodObject<{
2966
+ photo: z.ZodString;
2967
+ type: z.ZodEnum<{
2968
+ JPEG: "JPEG";
2969
+ JPG: "JPG";
2970
+ PNG: "PNG";
2971
+ WEBP: "WEBP";
2972
+ }>;
2973
+ width: z.ZodInt;
2974
+ height: z.ZodOptional<z.ZodInt>;
2975
+ }, z.core.$strip>;
2976
+ path: z.ZodOptional<z.ZodNever>;
2977
+ query: z.ZodOptional<z.ZodNever>;
2978
+ }, z.core.$strip>;
2979
+ /**
2980
+ * OK
2981
+ */
2982
+ export declare const zPostWhitelabelPresignedUrlsNotifyCoverResponse: z.ZodObject<{
2983
+ success: z.ZodArray<z.ZodString>;
2984
+ fail: z.ZodArray<z.ZodString>;
2985
+ }, z.core.$strip>;
2986
+ export declare const zPostWhitelabelDeactivateData: z.ZodObject<{
2987
+ body: z.ZodOptional<z.ZodNever>;
2988
+ path: z.ZodOptional<z.ZodNever>;
2989
+ query: z.ZodOptional<z.ZodNever>;
2990
+ }, z.core.$strip>;
2991
+ /**
2992
+ * No Content
2993
+ */
2994
+ export declare const zPostWhitelabelDeactivateResponse: z.ZodVoid;
2995
+ export declare const zPostWhitelabelActivateData: z.ZodObject<{
2996
+ body: z.ZodOptional<z.ZodNever>;
2997
+ path: z.ZodOptional<z.ZodNever>;
2998
+ query: z.ZodOptional<z.ZodNever>;
2999
+ }, z.core.$strip>;
3000
+ /**
3001
+ * No Content
3002
+ */
3003
+ export declare const zPostWhitelabelActivateResponse: z.ZodVoid;
3004
+ export declare const zPostWalletTransferData: z.ZodObject<{
3005
+ body: z.ZodObject<{
3006
+ transferTo: z.ZodUUID;
3007
+ amount: z.ZodNumber;
3008
+ }, z.core.$strip>;
3009
+ path: z.ZodOptional<z.ZodNever>;
3010
+ query: z.ZodOptional<z.ZodNever>;
3011
+ }, z.core.$strip>;
3012
+ /**
3013
+ * No Content
3014
+ */
3015
+ export declare const zPostWalletTransferResponse: z.ZodVoid;
3016
+ export declare const zPostWalletDepositData: z.ZodObject<{
3017
+ body: z.ZodObject<{
3018
+ amount: z.ZodNumber;
3019
+ }, z.core.$strip>;
3020
+ path: z.ZodOptional<z.ZodNever>;
3021
+ query: z.ZodOptional<z.ZodNever>;
2640
3022
  }, z.core.$strip>;
2641
3023
  /**
2642
3024
  * No Content
@@ -2737,6 +3119,53 @@ export declare const zPostPublicRecomendationsByRecommendationsIdItemsByItemIdRa
2737
3119
  * No Content
2738
3120
  */
2739
3121
  export declare const zPostPublicRecomendationsByRecommendationsIdItemsByItemIdRateResponse: z.ZodVoid;
3122
+ export declare const zPostMemberPresignedUrlsData: z.ZodObject<{
3123
+ body: z.ZodObject<{
3124
+ photo: z.ZodString;
3125
+ type: z.ZodEnum<{
3126
+ JPEG: "JPEG";
3127
+ JPG: "JPG";
3128
+ PNG: "PNG";
3129
+ WEBP: "WEBP";
3130
+ }>;
3131
+ width: z.ZodInt;
3132
+ height: z.ZodOptional<z.ZodInt>;
3133
+ }, z.core.$strip>;
3134
+ path: z.ZodOptional<z.ZodNever>;
3135
+ query: z.ZodOptional<z.ZodNever>;
3136
+ }, z.core.$strip>;
3137
+ /**
3138
+ * OK
3139
+ */
3140
+ export declare const zPostMemberPresignedUrlsResponse: z.ZodObject<{
3141
+ data: z.ZodArray<z.ZodObject<{
3142
+ originalName: z.ZodString;
3143
+ key: z.ZodString;
3144
+ url: z.ZodString;
3145
+ }, z.core.$strip>>;
3146
+ }, z.core.$strip>;
3147
+ export declare const zPostMemberPresignedUrlsNotifyData: z.ZodObject<{
3148
+ body: z.ZodObject<{
3149
+ photo: z.ZodString;
3150
+ type: z.ZodEnum<{
3151
+ JPEG: "JPEG";
3152
+ JPG: "JPG";
3153
+ PNG: "PNG";
3154
+ WEBP: "WEBP";
3155
+ }>;
3156
+ width: z.ZodInt;
3157
+ height: z.ZodOptional<z.ZodInt>;
3158
+ }, z.core.$strip>;
3159
+ path: z.ZodOptional<z.ZodNever>;
3160
+ query: z.ZodOptional<z.ZodNever>;
3161
+ }, z.core.$strip>;
3162
+ /**
3163
+ * OK
3164
+ */
3165
+ export declare const zPostMemberPresignedUrlsNotifyResponse: z.ZodObject<{
3166
+ success: z.ZodArray<z.ZodString>;
3167
+ fail: z.ZodArray<z.ZodString>;
3168
+ }, z.core.$strip>;
2740
3169
  export declare const zPostLeadsData: z.ZodObject<{
2741
3170
  body: z.ZodObject<{
2742
3171
  contactInfo: z.ZodObject<{
@@ -3490,75 +3919,219 @@ export declare const zPostAgencyData: z.ZodObject<{
3490
3919
  export declare const zPostAgencyResponse: z.ZodObject<{
3491
3920
  id: z.ZodUUID;
3492
3921
  }, z.core.$strip>;
3493
- export declare const zPostAgencyPresignedUrlsData: z.ZodObject<{
3922
+ export declare const zPatchWhitelabelWebsiteData: z.ZodObject<{
3494
3923
  body: z.ZodObject<{
3495
- photo: z.ZodString;
3496
- type: z.ZodEnum<{
3497
- JPEG: "JPEG";
3498
- JPG: "JPG";
3499
- PNG: "PNG";
3500
- WEBP: "WEBP";
3501
- }>;
3502
- width: z.ZodInt;
3503
- height: z.ZodOptional<z.ZodInt>;
3924
+ url: z.ZodOptional<z.ZodString>;
3504
3925
  }, z.core.$strip>;
3505
3926
  path: z.ZodOptional<z.ZodNever>;
3506
3927
  query: z.ZodOptional<z.ZodNever>;
3507
3928
  }, z.core.$strip>;
3508
3929
  /**
3509
- * OK
3930
+ * No Content
3510
3931
  */
3511
- export declare const zPostAgencyPresignedUrlsResponse: z.ZodObject<{
3512
- data: z.ZodArray<z.ZodObject<{
3513
- originalName: z.ZodString;
3514
- key: z.ZodString;
3515
- url: z.ZodString;
3932
+ export declare const zPatchWhitelabelWebsiteResponse: z.ZodVoid;
3933
+ export declare const zPatchWhitelabelThemeData: z.ZodObject<{
3934
+ body: z.ZodObject<{
3935
+ primaryColor: z.ZodInt;
3936
+ }, z.core.$strip>;
3937
+ path: z.ZodOptional<z.ZodNever>;
3938
+ query: z.ZodOptional<z.ZodNever>;
3939
+ }, z.core.$strip>;
3940
+ /**
3941
+ * No Content
3942
+ */
3943
+ export declare const zPatchWhitelabelThemeResponse: z.ZodVoid;
3944
+ export declare const zPatchWhitelabelSocialLinksData: z.ZodObject<{
3945
+ body: z.ZodObject<{
3946
+ data: z.ZodArray<z.ZodObject<{
3947
+ type: z.ZodEnum<{
3948
+ FACEBOOK: "FACEBOOK";
3949
+ YOUTUBE: "YOUTUBE";
3950
+ INSTAGRAM: "INSTAGRAM";
3951
+ TIKTOK: "TIKTOK";
3952
+ LINKEDIN: "LINKEDIN";
3953
+ }>;
3954
+ url: z.ZodOptional<z.ZodString>;
3955
+ }, z.core.$strip>>;
3956
+ }, z.core.$strip>;
3957
+ path: z.ZodOptional<z.ZodNever>;
3958
+ query: z.ZodOptional<z.ZodNever>;
3959
+ }, z.core.$strip>;
3960
+ /**
3961
+ * No Content
3962
+ */
3963
+ export declare const zPatchWhitelabelSocialLinksResponse: z.ZodVoid;
3964
+ export declare const zPatchWhitelabelSloganData: z.ZodObject<{
3965
+ body: z.ZodObject<{
3966
+ title: z.ZodObject<{
3967
+ data: z.ZodArray<z.ZodObject<{
3968
+ language: z.ZodEnum<{
3969
+ ka: "ka";
3970
+ en: "en";
3971
+ ru: "ru";
3972
+ }>;
3973
+ text: z.ZodOptional<z.ZodString>;
3974
+ }, z.core.$strip>>;
3975
+ }, z.core.$strip>;
3976
+ body: z.ZodObject<{
3977
+ data: z.ZodArray<z.ZodObject<{
3978
+ language: z.ZodEnum<{
3979
+ ka: "ka";
3980
+ en: "en";
3981
+ ru: "ru";
3982
+ }>;
3983
+ text: z.ZodOptional<z.ZodString>;
3984
+ }, z.core.$strip>>;
3985
+ }, z.core.$strip>;
3986
+ }, z.core.$strip>;
3987
+ path: z.ZodOptional<z.ZodNever>;
3988
+ query: z.ZodOptional<z.ZodNever>;
3989
+ }, z.core.$strip>;
3990
+ /**
3991
+ * No Content
3992
+ */
3993
+ export declare const zPatchWhitelabelSloganResponse: z.ZodVoid;
3994
+ export declare const zPatchWhitelabelReviewsData: z.ZodObject<{
3995
+ body: z.ZodArray<z.ZodObject<{
3996
+ quote: z.ZodObject<{
3997
+ data: z.ZodArray<z.ZodObject<{
3998
+ language: z.ZodEnum<{
3999
+ ka: "ka";
4000
+ en: "en";
4001
+ ru: "ru";
4002
+ }>;
4003
+ text: z.ZodOptional<z.ZodString>;
4004
+ }, z.core.$strip>>;
4005
+ }, z.core.$strip>;
4006
+ name: z.ZodObject<{
4007
+ data: z.ZodArray<z.ZodObject<{
4008
+ language: z.ZodEnum<{
4009
+ ka: "ka";
4010
+ en: "en";
4011
+ ru: "ru";
4012
+ }>;
4013
+ text: z.ZodOptional<z.ZodString>;
4014
+ }, z.core.$strip>>;
4015
+ }, z.core.$strip>;
4016
+ status: z.ZodObject<{
4017
+ data: z.ZodArray<z.ZodObject<{
4018
+ language: z.ZodEnum<{
4019
+ ka: "ka";
4020
+ en: "en";
4021
+ ru: "ru";
4022
+ }>;
4023
+ text: z.ZodOptional<z.ZodString>;
4024
+ }, z.core.$strip>>;
4025
+ }, z.core.$strip>;
3516
4026
  }, z.core.$strip>>;
4027
+ path: z.ZodOptional<z.ZodNever>;
4028
+ query: z.ZodOptional<z.ZodNever>;
3517
4029
  }, z.core.$strip>;
3518
- export declare const zPostAgencyPresignedUrlsNotifyLogoData: z.ZodObject<{
4030
+ /**
4031
+ * No Content
4032
+ */
4033
+ export declare const zPatchWhitelabelReviewsResponse: z.ZodVoid;
4034
+ export declare const zPatchWhitelabelReviewSectionData: z.ZodObject<{
3519
4035
  body: z.ZodObject<{
3520
- photo: z.ZodString;
3521
- type: z.ZodEnum<{
3522
- JPEG: "JPEG";
3523
- JPG: "JPG";
3524
- PNG: "PNG";
3525
- WEBP: "WEBP";
3526
- }>;
3527
- width: z.ZodInt;
3528
- height: z.ZodOptional<z.ZodInt>;
4036
+ title: z.ZodObject<{
4037
+ data: z.ZodArray<z.ZodObject<{
4038
+ language: z.ZodEnum<{
4039
+ ka: "ka";
4040
+ en: "en";
4041
+ ru: "ru";
4042
+ }>;
4043
+ text: z.ZodOptional<z.ZodString>;
4044
+ }, z.core.$strip>>;
4045
+ }, z.core.$strip>;
4046
+ body: z.ZodObject<{
4047
+ data: z.ZodArray<z.ZodObject<{
4048
+ language: z.ZodEnum<{
4049
+ ka: "ka";
4050
+ en: "en";
4051
+ ru: "ru";
4052
+ }>;
4053
+ text: z.ZodOptional<z.ZodString>;
4054
+ }, z.core.$strip>>;
4055
+ }, z.core.$strip>;
3529
4056
  }, z.core.$strip>;
3530
4057
  path: z.ZodOptional<z.ZodNever>;
3531
4058
  query: z.ZodOptional<z.ZodNever>;
3532
4059
  }, z.core.$strip>;
3533
4060
  /**
3534
- * OK
4061
+ * No Content
3535
4062
  */
3536
- export declare const zPostAgencyPresignedUrlsNotifyLogoResponse: z.ZodObject<{
3537
- success: z.ZodArray<z.ZodString>;
3538
- fail: z.ZodArray<z.ZodString>;
4063
+ export declare const zPatchWhitelabelReviewSectionResponse: z.ZodVoid;
4064
+ export declare const zPatchWhitelabelOurTeamData: z.ZodObject<{
4065
+ body: z.ZodObject<{
4066
+ title: z.ZodObject<{
4067
+ data: z.ZodArray<z.ZodObject<{
4068
+ language: z.ZodEnum<{
4069
+ ka: "ka";
4070
+ en: "en";
4071
+ ru: "ru";
4072
+ }>;
4073
+ text: z.ZodOptional<z.ZodString>;
4074
+ }, z.core.$strip>>;
4075
+ }, z.core.$strip>;
4076
+ body: z.ZodObject<{
4077
+ data: z.ZodArray<z.ZodObject<{
4078
+ language: z.ZodEnum<{
4079
+ ka: "ka";
4080
+ en: "en";
4081
+ ru: "ru";
4082
+ }>;
4083
+ text: z.ZodOptional<z.ZodString>;
4084
+ }, z.core.$strip>>;
4085
+ }, z.core.$strip>;
4086
+ }, z.core.$strip>;
4087
+ path: z.ZodOptional<z.ZodNever>;
4088
+ query: z.ZodOptional<z.ZodNever>;
3539
4089
  }, z.core.$strip>;
3540
- export declare const zPostAgencyPresignedUrlsNotifyCoverData: z.ZodObject<{
4090
+ /**
4091
+ * No Content
4092
+ */
4093
+ export declare const zPatchWhitelabelOurTeamResponse: z.ZodVoid;
4094
+ export declare const zPatchWhitelabelEstablishedYearData: z.ZodObject<{
3541
4095
  body: z.ZodObject<{
3542
- photo: z.ZodString;
3543
- type: z.ZodEnum<{
3544
- JPEG: "JPEG";
3545
- JPG: "JPG";
3546
- PNG: "PNG";
3547
- WEBP: "WEBP";
3548
- }>;
3549
- width: z.ZodInt;
3550
- height: z.ZodOptional<z.ZodInt>;
4096
+ year: z.ZodInt;
3551
4097
  }, z.core.$strip>;
3552
4098
  path: z.ZodOptional<z.ZodNever>;
3553
4099
  query: z.ZodOptional<z.ZodNever>;
3554
4100
  }, z.core.$strip>;
3555
4101
  /**
3556
- * OK
4102
+ * No Content
3557
4103
  */
3558
- export declare const zPostAgencyPresignedUrlsNotifyCoverResponse: z.ZodObject<{
3559
- success: z.ZodArray<z.ZodString>;
3560
- fail: z.ZodArray<z.ZodString>;
4104
+ export declare const zPatchWhitelabelEstablishedYearResponse: z.ZodVoid;
4105
+ export declare const zPatchWhitelabelContactUsData: z.ZodObject<{
4106
+ body: z.ZodObject<{
4107
+ title: z.ZodObject<{
4108
+ data: z.ZodArray<z.ZodObject<{
4109
+ language: z.ZodEnum<{
4110
+ ka: "ka";
4111
+ en: "en";
4112
+ ru: "ru";
4113
+ }>;
4114
+ text: z.ZodOptional<z.ZodString>;
4115
+ }, z.core.$strip>>;
4116
+ }, z.core.$strip>;
4117
+ body: z.ZodObject<{
4118
+ data: z.ZodArray<z.ZodObject<{
4119
+ language: z.ZodEnum<{
4120
+ ka: "ka";
4121
+ en: "en";
4122
+ ru: "ru";
4123
+ }>;
4124
+ text: z.ZodOptional<z.ZodString>;
4125
+ }, z.core.$strip>>;
4126
+ }, z.core.$strip>;
4127
+ }, z.core.$strip>;
4128
+ path: z.ZodOptional<z.ZodNever>;
4129
+ query: z.ZodOptional<z.ZodNever>;
3561
4130
  }, z.core.$strip>;
4131
+ /**
4132
+ * No Content
4133
+ */
4134
+ export declare const zPatchWhitelabelContactUsResponse: z.ZodVoid;
3562
4135
  export declare const zGetUserMeData: z.ZodObject<{
3563
4136
  body: z.ZodOptional<z.ZodNever>;
3564
4137
  path: z.ZodOptional<z.ZodNever>;
@@ -3830,11 +4403,10 @@ export declare const zGetPublicAgencyResponse: z.ZodObject<{
3830
4403
  owner: z.ZodString;
3831
4404
  name: z.ZodString;
3832
4405
  email: z.ZodString;
3833
- seats: z.ZodString;
4406
+ seats: z.ZodInt;
3834
4407
  subdomain: z.ZodString;
3835
4408
  phone: z.ZodString;
3836
- website: z.ZodOptional<z.ZodString>;
3837
- establishedYear: z.ZodString;
4409
+ establishedYear: z.ZodOptional<z.ZodInt>;
3838
4410
  status: z.ZodEnum<{
3839
4411
  ACTIVE: "ACTIVE";
3840
4412
  NEW: "NEW";
@@ -3842,6 +4414,7 @@ export declare const zGetPublicAgencyResponse: z.ZodObject<{
3842
4414
  INACTIVE: "INACTIVE";
3843
4415
  }>;
3844
4416
  logo: z.ZodOptional<z.ZodString>;
4417
+ theme: z.ZodOptional<z.ZodInt>;
3845
4418
  }, z.core.$strip>>>;
3846
4419
  page: z.ZodOptional<z.ZodObject<{
3847
4420
  size: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
@@ -3850,6 +4423,155 @@ export declare const zGetPublicAgencyResponse: z.ZodObject<{
3850
4423
  totalPages: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
3851
4424
  }, z.core.$strip>>;
3852
4425
  }, z.core.$strip>;
4426
+ export declare const zGetPublicAgencySubdomainBySubdomainLandingData: z.ZodObject<{
4427
+ body: z.ZodOptional<z.ZodNever>;
4428
+ path: z.ZodObject<{
4429
+ subdomain: z.ZodString;
4430
+ }, z.core.$strip>;
4431
+ query: z.ZodOptional<z.ZodObject<{
4432
+ language: z.ZodOptional<z.ZodEnum<{
4433
+ ka: "ka";
4434
+ en: "en";
4435
+ ru: "ru";
4436
+ }>>;
4437
+ }, z.core.$strip>>;
4438
+ }, z.core.$strip>;
4439
+ /**
4440
+ * OK
4441
+ */
4442
+ export declare const zGetPublicAgencySubdomainBySubdomainLandingResponse: z.ZodObject<{
4443
+ theme: z.ZodInt;
4444
+ name: z.ZodString;
4445
+ logoUrl: z.ZodOptional<z.ZodString>;
4446
+ coverUrl: z.ZodOptional<z.ZodString>;
4447
+ slogan: z.ZodOptional<z.ZodObject<{
4448
+ title: z.ZodOptional<z.ZodObject<{
4449
+ language: z.ZodEnum<{
4450
+ ka: "ka";
4451
+ en: "en";
4452
+ ru: "ru";
4453
+ }>;
4454
+ text: z.ZodString;
4455
+ }, z.core.$strip>>;
4456
+ body: z.ZodOptional<z.ZodObject<{
4457
+ language: z.ZodEnum<{
4458
+ ka: "ka";
4459
+ en: "en";
4460
+ ru: "ru";
4461
+ }>;
4462
+ text: z.ZodString;
4463
+ }, z.core.$strip>>;
4464
+ }, z.core.$strip>>;
4465
+ stats: z.ZodObject<{
4466
+ membersCount: z.ZodInt;
4467
+ listingCount: z.ZodInt;
4468
+ operatingSince: z.ZodInt;
4469
+ }, z.core.$strip>;
4470
+ ourTeam: z.ZodOptional<z.ZodObject<{
4471
+ title: z.ZodOptional<z.ZodObject<{
4472
+ language: z.ZodEnum<{
4473
+ ka: "ka";
4474
+ en: "en";
4475
+ ru: "ru";
4476
+ }>;
4477
+ text: z.ZodString;
4478
+ }, z.core.$strip>>;
4479
+ body: z.ZodOptional<z.ZodObject<{
4480
+ language: z.ZodEnum<{
4481
+ ka: "ka";
4482
+ en: "en";
4483
+ ru: "ru";
4484
+ }>;
4485
+ text: z.ZodString;
4486
+ }, z.core.$strip>>;
4487
+ }, z.core.$strip>>;
4488
+ members: z.ZodArray<z.ZodObject<{
4489
+ memberId: z.ZodUUID;
4490
+ firstName: z.ZodString;
4491
+ lastName: z.ZodString;
4492
+ phone: z.ZodOptional<z.ZodString>;
4493
+ email: z.ZodString;
4494
+ profilePictureUrl: z.ZodOptional<z.ZodString>;
4495
+ }, z.core.$strip>>;
4496
+ review: z.ZodOptional<z.ZodObject<{
4497
+ title: z.ZodOptional<z.ZodObject<{
4498
+ language: z.ZodEnum<{
4499
+ ka: "ka";
4500
+ en: "en";
4501
+ ru: "ru";
4502
+ }>;
4503
+ text: z.ZodString;
4504
+ }, z.core.$strip>>;
4505
+ body: z.ZodOptional<z.ZodObject<{
4506
+ language: z.ZodEnum<{
4507
+ ka: "ka";
4508
+ en: "en";
4509
+ ru: "ru";
4510
+ }>;
4511
+ text: z.ZodString;
4512
+ }, z.core.$strip>>;
4513
+ }, z.core.$strip>>;
4514
+ reviews: z.ZodOptional<z.ZodArray<z.ZodObject<{
4515
+ quote: z.ZodOptional<z.ZodObject<{
4516
+ language: z.ZodEnum<{
4517
+ ka: "ka";
4518
+ en: "en";
4519
+ ru: "ru";
4520
+ }>;
4521
+ text: z.ZodString;
4522
+ }, z.core.$strip>>;
4523
+ name: z.ZodOptional<z.ZodObject<{
4524
+ language: z.ZodEnum<{
4525
+ ka: "ka";
4526
+ en: "en";
4527
+ ru: "ru";
4528
+ }>;
4529
+ text: z.ZodString;
4530
+ }, z.core.$strip>>;
4531
+ status: z.ZodOptional<z.ZodObject<{
4532
+ language: z.ZodEnum<{
4533
+ ka: "ka";
4534
+ en: "en";
4535
+ ru: "ru";
4536
+ }>;
4537
+ text: z.ZodString;
4538
+ }, z.core.$strip>>;
4539
+ }, z.core.$strip>>>;
4540
+ contactUs: z.ZodOptional<z.ZodObject<{
4541
+ title: z.ZodOptional<z.ZodObject<{
4542
+ language: z.ZodEnum<{
4543
+ ka: "ka";
4544
+ en: "en";
4545
+ ru: "ru";
4546
+ }>;
4547
+ text: z.ZodString;
4548
+ }, z.core.$strip>>;
4549
+ body: z.ZodOptional<z.ZodObject<{
4550
+ language: z.ZodEnum<{
4551
+ ka: "ka";
4552
+ en: "en";
4553
+ ru: "ru";
4554
+ }>;
4555
+ text: z.ZodString;
4556
+ }, z.core.$strip>>;
4557
+ }, z.core.$strip>>;
4558
+ agencyInfo: z.ZodOptional<z.ZodObject<{
4559
+ phone: z.ZodString;
4560
+ email: z.ZodString;
4561
+ address: z.ZodOptional<z.ZodString>;
4562
+ }, z.core.$strip>>;
4563
+ socialLinks: z.ZodOptional<z.ZodArray<z.ZodObject<{
4564
+ url: z.ZodString;
4565
+ type: z.ZodEnum<{
4566
+ FACEBOOK: "FACEBOOK";
4567
+ YOUTUBE: "YOUTUBE";
4568
+ INSTAGRAM: "INSTAGRAM";
4569
+ TIKTOK: "TIKTOK";
4570
+ LINKEDIN: "LINKEDIN";
4571
+ }>;
4572
+ }, z.core.$strip>>>;
4573
+ website: z.ZodOptional<z.ZodString>;
4574
+ }, z.core.$strip>;
3853
4575
  export declare const zGetPublicAgencySubdomainBySubDomainData: z.ZodObject<{
3854
4576
  body: z.ZodOptional<z.ZodNever>;
3855
4577
  path: z.ZodObject<{
@@ -3865,11 +4587,10 @@ export declare const zGetPublicAgencySubdomainBySubDomainResponse: z.ZodObject<{
3865
4587
  owner: z.ZodString;
3866
4588
  name: z.ZodString;
3867
4589
  email: z.ZodString;
3868
- seats: z.ZodString;
4590
+ seats: z.ZodInt;
3869
4591
  subdomain: z.ZodString;
3870
4592
  phone: z.ZodString;
3871
- website: z.ZodOptional<z.ZodString>;
3872
- establishedYear: z.ZodString;
4593
+ establishedYear: z.ZodOptional<z.ZodInt>;
3873
4594
  status: z.ZodEnum<{
3874
4595
  ACTIVE: "ACTIVE";
3875
4596
  NEW: "NEW";
@@ -3877,6 +4598,7 @@ export declare const zGetPublicAgencySubdomainBySubDomainResponse: z.ZodObject<{
3877
4598
  INACTIVE: "INACTIVE";
3878
4599
  }>;
3879
4600
  logo: z.ZodOptional<z.ZodString>;
4601
+ theme: z.ZodOptional<z.ZodInt>;
3880
4602
  }, z.core.$strip>;
3881
4603
  export declare const zGetMemberData: z.ZodObject<{
3882
4604
  body: z.ZodOptional<z.ZodNever>;
@@ -3936,6 +4658,8 @@ export declare const zGetLeadResponse: z.ZodObject<{
3936
4658
  id: z.ZodCoercedBigInt<unknown>;
3937
4659
  createdBy: z.ZodUUID;
3938
4660
  assignedTo: z.ZodOptional<z.ZodUUID>;
4661
+ assignedToName: z.ZodOptional<z.ZodString>;
4662
+ assignedToPhoto: z.ZodOptional<z.ZodString>;
3939
4663
  status: z.ZodEnum<{
3940
4664
  CONVERTED: "CONVERTED";
3941
4665
  LOST: "LOST";
@@ -4026,6 +4750,8 @@ export declare const zGetLeadByLeadIdResponse: z.ZodObject<{
4026
4750
  id: z.ZodCoercedBigInt<unknown>;
4027
4751
  createdBy: z.ZodUUID;
4028
4752
  assignedTo: z.ZodOptional<z.ZodUUID>;
4753
+ assignedToName: z.ZodOptional<z.ZodString>;
4754
+ assignedToPhoto: z.ZodOptional<z.ZodString>;
4029
4755
  status: z.ZodEnum<{
4030
4756
  CONVERTED: "CONVERTED";
4031
4757
  LOST: "LOST";
@@ -4122,6 +4848,8 @@ export declare const zGetLeadMineResponse: z.ZodObject<{
4122
4848
  id: z.ZodCoercedBigInt<unknown>;
4123
4849
  createdBy: z.ZodUUID;
4124
4850
  assignedTo: z.ZodOptional<z.ZodUUID>;
4851
+ assignedToName: z.ZodOptional<z.ZodString>;
4852
+ assignedToPhoto: z.ZodOptional<z.ZodString>;
4125
4853
  status: z.ZodEnum<{
4126
4854
  CONVERTED: "CONVERTED";
4127
4855
  LOST: "LOST";
@@ -4412,6 +5140,8 @@ export declare const zGetClientResponse: z.ZodObject<{
4412
5140
  createdBy: z.ZodUUID;
4413
5141
  leadId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
4414
5142
  assignedTo: z.ZodOptional<z.ZodUUID>;
5143
+ assignedToName: z.ZodOptional<z.ZodString>;
5144
+ assignedToPhoto: z.ZodOptional<z.ZodString>;
4415
5145
  contactFullName: z.ZodOptional<z.ZodString>;
4416
5146
  contactPhoneNumber: z.ZodString;
4417
5147
  contactGender: z.ZodOptional<z.ZodEnum<{
@@ -4467,6 +5197,8 @@ export declare const zGetClientByClientIdResponse: z.ZodObject<{
4467
5197
  createdBy: z.ZodUUID;
4468
5198
  leadId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
4469
5199
  assignedTo: z.ZodOptional<z.ZodUUID>;
5200
+ assignedToName: z.ZodOptional<z.ZodString>;
5201
+ assignedToPhoto: z.ZodOptional<z.ZodString>;
4470
5202
  contactFullName: z.ZodOptional<z.ZodString>;
4471
5203
  contactPhoneNumber: z.ZodString;
4472
5204
  contactGender: z.ZodOptional<z.ZodEnum<{
@@ -4734,6 +5466,8 @@ export declare const zGetClientMyResponse: z.ZodObject<{
4734
5466
  createdBy: z.ZodUUID;
4735
5467
  leadId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
4736
5468
  assignedTo: z.ZodOptional<z.ZodUUID>;
5469
+ assignedToName: z.ZodOptional<z.ZodString>;
5470
+ assignedToPhoto: z.ZodOptional<z.ZodString>;
4737
5471
  contactFullName: z.ZodOptional<z.ZodString>;
4738
5472
  contactPhoneNumber: z.ZodString;
4739
5473
  contactGender: z.ZodOptional<z.ZodEnum<{
@@ -4797,7 +5531,6 @@ export declare const zGetAgencyByAgencyIdResponse: z.ZodObject<{
4797
5531
  subdistrict: z.ZodString;
4798
5532
  street: z.ZodString;
4799
5533
  }, z.core.$strip>;
4800
- establishedYear: z.ZodInt;
4801
5534
  }, z.core.$strip>;
4802
5535
  export declare const zDeleteMemberByMemberIdData: z.ZodObject<{
4803
5536
  body: z.ZodOptional<z.ZodNever>;