@homespot-sdk/core 0.0.242 → 0.0.244

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. package/dist/property/index.d.ts +1 -1
  2. package/dist/property/index.d.ts.map +1 -1
  3. package/dist/property/schemas.gen.d.ts +110 -40
  4. package/dist/property/schemas.gen.d.ts.map +1 -1
  5. package/dist/property/schemas.gen.js +113 -48
  6. package/dist/property/schemas.gen.js.map +1 -1
  7. package/dist/property/sdk.gen.d.ts +3 -0
  8. package/dist/property/sdk.gen.d.ts.map +1 -1
  9. package/dist/property/sdk.gen.js +3 -0
  10. package/dist/property/sdk.gen.js.map +1 -1
  11. package/dist/property/types.gen.d.ts +54 -19
  12. package/dist/property/types.gen.d.ts.map +1 -1
  13. package/dist/property/zod.gen.d.ts +251 -53
  14. package/dist/property/zod.gen.d.ts.map +1 -1
  15. package/dist/property/zod.gen.js +58 -138
  16. package/dist/property/zod.gen.js.map +1 -1
  17. package/dist/registration/index.d.ts +1 -1
  18. package/dist/registration/index.d.ts.map +1 -1
  19. package/dist/registration/schemas.gen.d.ts +52 -35
  20. package/dist/registration/schemas.gen.d.ts.map +1 -1
  21. package/dist/registration/schemas.gen.js +52 -42
  22. package/dist/registration/schemas.gen.js.map +1 -1
  23. package/dist/registration/types.gen.d.ts +17 -10
  24. package/dist/registration/types.gen.d.ts.map +1 -1
  25. package/dist/registration/zod.gen.d.ts +263 -29
  26. package/dist/registration/zod.gen.d.ts.map +1 -1
  27. package/dist/registration/zod.gen.js +31 -80
  28. package/dist/registration/zod.gen.js.map +1 -1
  29. package/dist/rem/index.d.ts +1 -1
  30. package/dist/rem/index.d.ts.map +1 -1
  31. package/dist/rem/schemas.gen.d.ts +112 -56
  32. package/dist/rem/schemas.gen.d.ts.map +1 -1
  33. package/dist/rem/schemas.gen.js +112 -63
  34. package/dist/rem/schemas.gen.js.map +1 -1
  35. package/dist/rem/types.gen.d.ts +39 -17
  36. package/dist/rem/types.gen.d.ts.map +1 -1
  37. package/dist/rem/zod.gen.d.ts +1077 -104
  38. package/dist/rem/zod.gen.d.ts.map +1 -1
  39. package/dist/rem/zod.gen.js +32 -95
  40. package/dist/rem/zod.gen.js.map +1 -1
  41. package/dist/utils/index.d.ts +2 -2
  42. package/dist/utils/index.d.ts.map +1 -1
  43. package/dist/utils/index.js +1 -1
  44. package/dist/utils/index.js.map +1 -1
  45. package/dist/utils/schemas.gen.d.ts +56 -0
  46. package/dist/utils/schemas.gen.d.ts.map +1 -1
  47. package/dist/utils/schemas.gen.js +56 -0
  48. package/dist/utils/schemas.gen.js.map +1 -1
  49. package/dist/utils/sdk.gen.d.ts +3 -1
  50. package/dist/utils/sdk.gen.d.ts.map +1 -1
  51. package/dist/utils/sdk.gen.js +5 -0
  52. package/dist/utils/sdk.gen.js.map +1 -1
  53. package/dist/utils/types.gen.d.ts +54 -0
  54. package/dist/utils/types.gen.d.ts.map +1 -1
  55. package/dist/utils/zod.gen.d.ts +77 -0
  56. package/dist/utils/zod.gen.d.ts.map +1 -1
  57. package/dist/utils/zod.gen.js +80 -0
  58. package/dist/utils/zod.gen.js.map +1 -1
  59. package/package.json +1 -1
@@ -556,6 +556,12 @@ export declare const zOnboardClientRequest: z.ZodObject<{
556
556
  }>>;
557
557
  convertedFromLeadId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
558
558
  }, z.core.$strip>;
559
+ export declare const zAddressNames: z.ZodObject<{
560
+ region: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
561
+ district: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
562
+ subdistrict: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
563
+ street: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
564
+ }, z.core.$strip>;
559
565
  export declare const zContactSummary: z.ZodObject<{
560
566
  firstName: z.ZodOptional<z.ZodString>;
561
567
  lastName: z.ZodOptional<z.ZodString>;
@@ -576,6 +582,12 @@ export declare const zAddressRef: z.ZodObject<{
576
582
  districtId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
577
583
  subdistrictId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
578
584
  streetId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
585
+ names: z.ZodOptional<z.ZodObject<{
586
+ region: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
587
+ district: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
588
+ subdistrict: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
589
+ street: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
590
+ }, z.core.$strip>>;
579
591
  cadastreCode: z.ZodOptional<z.ZodString>;
580
592
  coordinates: z.ZodOptional<z.ZodObject<{
581
593
  lat: z.ZodOptional<z.ZodNumber>;
@@ -627,6 +639,12 @@ export declare const zPropertyCreationRequest: z.ZodObject<{
627
639
  districtId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
628
640
  subdistrictId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
629
641
  streetId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
642
+ names: z.ZodOptional<z.ZodObject<{
643
+ region: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
644
+ district: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
645
+ subdistrict: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
646
+ street: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
647
+ }, z.core.$strip>>;
630
648
  cadastreCode: z.ZodOptional<z.ZodString>;
631
649
  coordinates: z.ZodOptional<z.ZodObject<{
632
650
  lat: z.ZodOptional<z.ZodNumber>;
@@ -713,6 +731,12 @@ export declare const zImportedPropertyDraft: z.ZodObject<{
713
731
  districtId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
714
732
  subdistrictId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
715
733
  streetId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
734
+ names: z.ZodOptional<z.ZodObject<{
735
+ region: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
736
+ district: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
737
+ subdistrict: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
738
+ street: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
739
+ }, z.core.$strip>>;
716
740
  cadastreCode: z.ZodOptional<z.ZodString>;
717
741
  coordinates: z.ZodOptional<z.ZodObject<{
718
742
  lat: z.ZodOptional<z.ZodNumber>;
@@ -809,6 +833,12 @@ export declare const zClientOnboardedResponse: z.ZodObject<{
809
833
  districtId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
810
834
  subdistrictId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
811
835
  streetId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
836
+ names: z.ZodOptional<z.ZodObject<{
837
+ region: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
838
+ district: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
839
+ subdistrict: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
840
+ street: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
841
+ }, z.core.$strip>>;
812
842
  cadastreCode: z.ZodOptional<z.ZodString>;
813
843
  coordinates: z.ZodOptional<z.ZodObject<{
814
844
  lat: z.ZodOptional<z.ZodNumber>;
@@ -1050,11 +1080,70 @@ export declare const zPagedModelRoleResponse: z.ZodObject<{
1050
1080
  totalPages: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
1051
1081
  }, z.core.$strip>>;
1052
1082
  }, z.core.$strip>;
1083
+ export declare const zLangTextResponse: z.ZodObject<{
1084
+ language: z.ZodEnum<{
1085
+ ka: "ka";
1086
+ en: "en";
1087
+ ru: "ru";
1088
+ }>;
1089
+ text: z.ZodString;
1090
+ }, z.core.$strip>;
1091
+ export declare const zLocationResponse: z.ZodObject<{
1092
+ id: z.ZodCoercedBigInt<unknown>;
1093
+ names: z.ZodArray<z.ZodObject<{
1094
+ language: z.ZodEnum<{
1095
+ ka: "ka";
1096
+ en: "en";
1097
+ ru: "ru";
1098
+ }>;
1099
+ text: z.ZodString;
1100
+ }, z.core.$strip>>;
1101
+ }, z.core.$strip>;
1053
1102
  export declare const zAddressResponse: z.ZodObject<{
1054
- regionId: z.ZodCoercedBigInt<unknown>;
1055
- districtId: z.ZodCoercedBigInt<unknown>;
1056
- subdistrictId: z.ZodCoercedBigInt<unknown>;
1057
- streetId: z.ZodCoercedBigInt<unknown>;
1103
+ region: z.ZodObject<{
1104
+ id: z.ZodCoercedBigInt<unknown>;
1105
+ names: z.ZodArray<z.ZodObject<{
1106
+ language: z.ZodEnum<{
1107
+ ka: "ka";
1108
+ en: "en";
1109
+ ru: "ru";
1110
+ }>;
1111
+ text: z.ZodString;
1112
+ }, z.core.$strip>>;
1113
+ }, z.core.$strip>;
1114
+ district: z.ZodObject<{
1115
+ id: z.ZodCoercedBigInt<unknown>;
1116
+ names: z.ZodArray<z.ZodObject<{
1117
+ language: z.ZodEnum<{
1118
+ ka: "ka";
1119
+ en: "en";
1120
+ ru: "ru";
1121
+ }>;
1122
+ text: z.ZodString;
1123
+ }, z.core.$strip>>;
1124
+ }, z.core.$strip>;
1125
+ subdistrict: z.ZodObject<{
1126
+ id: z.ZodCoercedBigInt<unknown>;
1127
+ names: z.ZodArray<z.ZodObject<{
1128
+ language: z.ZodEnum<{
1129
+ ka: "ka";
1130
+ en: "en";
1131
+ ru: "ru";
1132
+ }>;
1133
+ text: z.ZodString;
1134
+ }, z.core.$strip>>;
1135
+ }, z.core.$strip>;
1136
+ street: z.ZodOptional<z.ZodObject<{
1137
+ id: z.ZodCoercedBigInt<unknown>;
1138
+ names: z.ZodArray<z.ZodObject<{
1139
+ language: z.ZodEnum<{
1140
+ ka: "ka";
1141
+ en: "en";
1142
+ ru: "ru";
1143
+ }>;
1144
+ text: z.ZodString;
1145
+ }, z.core.$strip>>;
1146
+ }, z.core.$strip>>;
1058
1147
  cadastreCode: z.ZodOptional<z.ZodString>;
1059
1148
  lat: z.ZodNumber;
1060
1149
  lng: z.ZodNumber;
@@ -1108,10 +1197,50 @@ export declare const zRecommendationsCardView: z.ZodObject<{
1108
1197
  livingArea: z.ZodOptional<z.ZodNumber>;
1109
1198
  balconyArea: z.ZodOptional<z.ZodNumber>;
1110
1199
  address: z.ZodObject<{
1111
- regionId: z.ZodCoercedBigInt<unknown>;
1112
- districtId: z.ZodCoercedBigInt<unknown>;
1113
- subdistrictId: z.ZodCoercedBigInt<unknown>;
1114
- streetId: z.ZodCoercedBigInt<unknown>;
1200
+ region: z.ZodObject<{
1201
+ id: z.ZodCoercedBigInt<unknown>;
1202
+ names: z.ZodArray<z.ZodObject<{
1203
+ language: z.ZodEnum<{
1204
+ ka: "ka";
1205
+ en: "en";
1206
+ ru: "ru";
1207
+ }>;
1208
+ text: z.ZodString;
1209
+ }, z.core.$strip>>;
1210
+ }, z.core.$strip>;
1211
+ district: z.ZodObject<{
1212
+ id: z.ZodCoercedBigInt<unknown>;
1213
+ names: z.ZodArray<z.ZodObject<{
1214
+ language: z.ZodEnum<{
1215
+ ka: "ka";
1216
+ en: "en";
1217
+ ru: "ru";
1218
+ }>;
1219
+ text: z.ZodString;
1220
+ }, z.core.$strip>>;
1221
+ }, z.core.$strip>;
1222
+ subdistrict: z.ZodObject<{
1223
+ id: z.ZodCoercedBigInt<unknown>;
1224
+ names: z.ZodArray<z.ZodObject<{
1225
+ language: z.ZodEnum<{
1226
+ ka: "ka";
1227
+ en: "en";
1228
+ ru: "ru";
1229
+ }>;
1230
+ text: z.ZodString;
1231
+ }, z.core.$strip>>;
1232
+ }, z.core.$strip>;
1233
+ street: z.ZodOptional<z.ZodObject<{
1234
+ id: z.ZodCoercedBigInt<unknown>;
1235
+ names: z.ZodArray<z.ZodObject<{
1236
+ language: z.ZodEnum<{
1237
+ ka: "ka";
1238
+ en: "en";
1239
+ ru: "ru";
1240
+ }>;
1241
+ text: z.ZodString;
1242
+ }, z.core.$strip>>;
1243
+ }, z.core.$strip>>;
1115
1244
  cadastreCode: z.ZodOptional<z.ZodString>;
1116
1245
  lat: z.ZodNumber;
1117
1246
  lng: z.ZodNumber;
@@ -1167,10 +1296,50 @@ export declare const zPagedModelRecommendationsCardView: z.ZodObject<{
1167
1296
  livingArea: z.ZodOptional<z.ZodNumber>;
1168
1297
  balconyArea: z.ZodOptional<z.ZodNumber>;
1169
1298
  address: z.ZodObject<{
1170
- regionId: z.ZodCoercedBigInt<unknown>;
1171
- districtId: z.ZodCoercedBigInt<unknown>;
1172
- subdistrictId: z.ZodCoercedBigInt<unknown>;
1173
- streetId: z.ZodCoercedBigInt<unknown>;
1299
+ region: z.ZodObject<{
1300
+ id: z.ZodCoercedBigInt<unknown>;
1301
+ names: z.ZodArray<z.ZodObject<{
1302
+ language: z.ZodEnum<{
1303
+ ka: "ka";
1304
+ en: "en";
1305
+ ru: "ru";
1306
+ }>;
1307
+ text: z.ZodString;
1308
+ }, z.core.$strip>>;
1309
+ }, z.core.$strip>;
1310
+ district: z.ZodObject<{
1311
+ id: z.ZodCoercedBigInt<unknown>;
1312
+ names: z.ZodArray<z.ZodObject<{
1313
+ language: z.ZodEnum<{
1314
+ ka: "ka";
1315
+ en: "en";
1316
+ ru: "ru";
1317
+ }>;
1318
+ text: z.ZodString;
1319
+ }, z.core.$strip>>;
1320
+ }, z.core.$strip>;
1321
+ subdistrict: z.ZodObject<{
1322
+ id: z.ZodCoercedBigInt<unknown>;
1323
+ names: z.ZodArray<z.ZodObject<{
1324
+ language: z.ZodEnum<{
1325
+ ka: "ka";
1326
+ en: "en";
1327
+ ru: "ru";
1328
+ }>;
1329
+ text: z.ZodString;
1330
+ }, z.core.$strip>>;
1331
+ }, z.core.$strip>;
1332
+ street: z.ZodOptional<z.ZodObject<{
1333
+ id: z.ZodCoercedBigInt<unknown>;
1334
+ names: z.ZodArray<z.ZodObject<{
1335
+ language: z.ZodEnum<{
1336
+ ka: "ka";
1337
+ en: "en";
1338
+ ru: "ru";
1339
+ }>;
1340
+ text: z.ZodString;
1341
+ }, z.core.$strip>>;
1342
+ }, z.core.$strip>>;
1174
1343
  cadastreCode: z.ZodOptional<z.ZodString>;
1175
1344
  lat: z.ZodNumber;
1176
1345
  lng: z.ZodNumber;
@@ -1242,10 +1411,50 @@ export declare const zRecommendationResponse: z.ZodObject<{
1242
1411
  livingArea: z.ZodOptional<z.ZodNumber>;
1243
1412
  balconyArea: z.ZodOptional<z.ZodNumber>;
1244
1413
  address: z.ZodObject<{
1245
- regionId: z.ZodCoercedBigInt<unknown>;
1246
- districtId: z.ZodCoercedBigInt<unknown>;
1247
- subdistrictId: z.ZodCoercedBigInt<unknown>;
1248
- streetId: z.ZodCoercedBigInt<unknown>;
1414
+ region: z.ZodObject<{
1415
+ id: z.ZodCoercedBigInt<unknown>;
1416
+ names: z.ZodArray<z.ZodObject<{
1417
+ language: z.ZodEnum<{
1418
+ ka: "ka";
1419
+ en: "en";
1420
+ ru: "ru";
1421
+ }>;
1422
+ text: z.ZodString;
1423
+ }, z.core.$strip>>;
1424
+ }, z.core.$strip>;
1425
+ district: z.ZodObject<{
1426
+ id: z.ZodCoercedBigInt<unknown>;
1427
+ names: z.ZodArray<z.ZodObject<{
1428
+ language: z.ZodEnum<{
1429
+ ka: "ka";
1430
+ en: "en";
1431
+ ru: "ru";
1432
+ }>;
1433
+ text: z.ZodString;
1434
+ }, z.core.$strip>>;
1435
+ }, z.core.$strip>;
1436
+ subdistrict: z.ZodObject<{
1437
+ id: z.ZodCoercedBigInt<unknown>;
1438
+ names: z.ZodArray<z.ZodObject<{
1439
+ language: z.ZodEnum<{
1440
+ ka: "ka";
1441
+ en: "en";
1442
+ ru: "ru";
1443
+ }>;
1444
+ text: z.ZodString;
1445
+ }, z.core.$strip>>;
1446
+ }, z.core.$strip>;
1447
+ street: z.ZodOptional<z.ZodObject<{
1448
+ id: z.ZodCoercedBigInt<unknown>;
1449
+ names: z.ZodArray<z.ZodObject<{
1450
+ language: z.ZodEnum<{
1451
+ ka: "ka";
1452
+ en: "en";
1453
+ ru: "ru";
1454
+ }>;
1455
+ text: z.ZodString;
1456
+ }, z.core.$strip>>;
1457
+ }, z.core.$strip>>;
1249
1458
  cadastreCode: z.ZodOptional<z.ZodString>;
1250
1459
  lat: z.ZodNumber;
1251
1460
  lng: z.ZodNumber;
@@ -1426,14 +1635,6 @@ export declare const zAgencyStatsResponse: z.ZodObject<{
1426
1635
  listingCount: z.ZodInt;
1427
1636
  operatingSince: z.ZodInt;
1428
1637
  }, z.core.$strip>;
1429
- export declare const zLangTextResponse: z.ZodObject<{
1430
- language: z.ZodEnum<{
1431
- ka: "ka";
1432
- en: "en";
1433
- ru: "ru";
1434
- }>;
1435
- text: z.ZodString;
1436
- }, z.core.$strip>;
1437
1638
  export declare const zMemberResponse: z.ZodObject<{
1438
1639
  memberId: z.ZodUUID;
1439
1640
  firstName: z.ZodString;
@@ -1829,10 +2030,50 @@ export declare const zListingGridView: z.ZodObject<{
1829
2030
  WAREHOUSE: "WAREHOUSE";
1830
2031
  }>>;
1831
2032
  title: z.ZodOptional<z.ZodString>;
1832
- regionId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
1833
- districtId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
1834
- subdistrictId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
1835
- streetId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
2033
+ region: z.ZodOptional<z.ZodObject<{
2034
+ id: z.ZodCoercedBigInt<unknown>;
2035
+ names: z.ZodArray<z.ZodObject<{
2036
+ language: z.ZodEnum<{
2037
+ ka: "ka";
2038
+ en: "en";
2039
+ ru: "ru";
2040
+ }>;
2041
+ text: z.ZodString;
2042
+ }, z.core.$strip>>;
2043
+ }, z.core.$strip>>;
2044
+ district: z.ZodOptional<z.ZodObject<{
2045
+ id: z.ZodCoercedBigInt<unknown>;
2046
+ names: z.ZodArray<z.ZodObject<{
2047
+ language: z.ZodEnum<{
2048
+ ka: "ka";
2049
+ en: "en";
2050
+ ru: "ru";
2051
+ }>;
2052
+ text: z.ZodString;
2053
+ }, z.core.$strip>>;
2054
+ }, z.core.$strip>>;
2055
+ subdistrict: z.ZodOptional<z.ZodObject<{
2056
+ id: z.ZodCoercedBigInt<unknown>;
2057
+ names: z.ZodArray<z.ZodObject<{
2058
+ language: z.ZodEnum<{
2059
+ ka: "ka";
2060
+ en: "en";
2061
+ ru: "ru";
2062
+ }>;
2063
+ text: z.ZodString;
2064
+ }, z.core.$strip>>;
2065
+ }, z.core.$strip>>;
2066
+ street: z.ZodOptional<z.ZodObject<{
2067
+ id: z.ZodCoercedBigInt<unknown>;
2068
+ names: z.ZodArray<z.ZodObject<{
2069
+ language: z.ZodEnum<{
2070
+ ka: "ka";
2071
+ en: "en";
2072
+ ru: "ru";
2073
+ }>;
2074
+ text: z.ZodString;
2075
+ }, z.core.$strip>>;
2076
+ }, z.core.$strip>>;
1836
2077
  cover: z.ZodOptional<z.ZodString>;
1837
2078
  agreementType: z.ZodOptional<z.ZodEnum<{
1838
2079
  EXCLUSIVE: "EXCLUSIVE";
@@ -1916,10 +2157,50 @@ export declare const zPagedModelListingGridView: z.ZodObject<{
1916
2157
  WAREHOUSE: "WAREHOUSE";
1917
2158
  }>>;
1918
2159
  title: z.ZodOptional<z.ZodString>;
1919
- regionId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
1920
- districtId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
1921
- subdistrictId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
1922
- streetId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
2160
+ region: z.ZodOptional<z.ZodObject<{
2161
+ id: z.ZodCoercedBigInt<unknown>;
2162
+ names: z.ZodArray<z.ZodObject<{
2163
+ language: z.ZodEnum<{
2164
+ ka: "ka";
2165
+ en: "en";
2166
+ ru: "ru";
2167
+ }>;
2168
+ text: z.ZodString;
2169
+ }, z.core.$strip>>;
2170
+ }, z.core.$strip>>;
2171
+ district: z.ZodOptional<z.ZodObject<{
2172
+ id: z.ZodCoercedBigInt<unknown>;
2173
+ names: z.ZodArray<z.ZodObject<{
2174
+ language: z.ZodEnum<{
2175
+ ka: "ka";
2176
+ en: "en";
2177
+ ru: "ru";
2178
+ }>;
2179
+ text: z.ZodString;
2180
+ }, z.core.$strip>>;
2181
+ }, z.core.$strip>>;
2182
+ subdistrict: z.ZodOptional<z.ZodObject<{
2183
+ id: z.ZodCoercedBigInt<unknown>;
2184
+ names: z.ZodArray<z.ZodObject<{
2185
+ language: z.ZodEnum<{
2186
+ ka: "ka";
2187
+ en: "en";
2188
+ ru: "ru";
2189
+ }>;
2190
+ text: z.ZodString;
2191
+ }, z.core.$strip>>;
2192
+ }, z.core.$strip>>;
2193
+ street: z.ZodOptional<z.ZodObject<{
2194
+ id: z.ZodCoercedBigInt<unknown>;
2195
+ names: z.ZodArray<z.ZodObject<{
2196
+ language: z.ZodEnum<{
2197
+ ka: "ka";
2198
+ en: "en";
2199
+ ru: "ru";
2200
+ }>;
2201
+ text: z.ZodString;
2202
+ }, z.core.$strip>>;
2203
+ }, z.core.$strip>>;
1923
2204
  cover: z.ZodOptional<z.ZodString>;
1924
2205
  agreementType: z.ZodOptional<z.ZodEnum<{
1925
2206
  EXCLUSIVE: "EXCLUSIVE";
@@ -2012,12 +2293,52 @@ export declare const zIntentResponse: z.ZodObject<{
2012
2293
  }>;
2013
2294
  priceMin: z.ZodOptional<z.ZodNumber>;
2014
2295
  priceMax: z.ZodOptional<z.ZodNumber>;
2015
- regionId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
2016
- districtId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
2017
- subDistrictId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
2018
- streetId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
2019
2296
  area: z.ZodOptional<z.ZodNumber>;
2020
2297
  numberOfRooms: z.ZodOptional<z.ZodInt>;
2298
+ region: z.ZodOptional<z.ZodObject<{
2299
+ id: z.ZodCoercedBigInt<unknown>;
2300
+ names: z.ZodArray<z.ZodObject<{
2301
+ language: z.ZodEnum<{
2302
+ ka: "ka";
2303
+ en: "en";
2304
+ ru: "ru";
2305
+ }>;
2306
+ text: z.ZodString;
2307
+ }, z.core.$strip>>;
2308
+ }, z.core.$strip>>;
2309
+ district: z.ZodOptional<z.ZodObject<{
2310
+ id: z.ZodCoercedBigInt<unknown>;
2311
+ names: z.ZodArray<z.ZodObject<{
2312
+ language: z.ZodEnum<{
2313
+ ka: "ka";
2314
+ en: "en";
2315
+ ru: "ru";
2316
+ }>;
2317
+ text: z.ZodString;
2318
+ }, z.core.$strip>>;
2319
+ }, z.core.$strip>>;
2320
+ subDistrict: z.ZodOptional<z.ZodObject<{
2321
+ id: z.ZodCoercedBigInt<unknown>;
2322
+ names: z.ZodArray<z.ZodObject<{
2323
+ language: z.ZodEnum<{
2324
+ ka: "ka";
2325
+ en: "en";
2326
+ ru: "ru";
2327
+ }>;
2328
+ text: z.ZodString;
2329
+ }, z.core.$strip>>;
2330
+ }, z.core.$strip>>;
2331
+ street: z.ZodOptional<z.ZodObject<{
2332
+ id: z.ZodCoercedBigInt<unknown>;
2333
+ names: z.ZodArray<z.ZodObject<{
2334
+ language: z.ZodEnum<{
2335
+ ka: "ka";
2336
+ en: "en";
2337
+ ru: "ru";
2338
+ }>;
2339
+ text: z.ZodString;
2340
+ }, z.core.$strip>>;
2341
+ }, z.core.$strip>>;
2021
2342
  }, z.core.$strip>;
2022
2343
  export declare const zLeadGridResponse: z.ZodObject<{
2023
2344
  id: z.ZodCoercedBigInt<unknown>;
@@ -2091,12 +2412,52 @@ export declare const zLeadGridResponse: z.ZodObject<{
2091
2412
  }>;
2092
2413
  priceMin: z.ZodOptional<z.ZodNumber>;
2093
2414
  priceMax: z.ZodOptional<z.ZodNumber>;
2094
- regionId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
2095
- districtId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
2096
- subDistrictId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
2097
- streetId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
2098
2415
  area: z.ZodOptional<z.ZodNumber>;
2099
2416
  numberOfRooms: z.ZodOptional<z.ZodInt>;
2417
+ region: z.ZodOptional<z.ZodObject<{
2418
+ id: z.ZodCoercedBigInt<unknown>;
2419
+ names: z.ZodArray<z.ZodObject<{
2420
+ language: z.ZodEnum<{
2421
+ ka: "ka";
2422
+ en: "en";
2423
+ ru: "ru";
2424
+ }>;
2425
+ text: z.ZodString;
2426
+ }, z.core.$strip>>;
2427
+ }, z.core.$strip>>;
2428
+ district: z.ZodOptional<z.ZodObject<{
2429
+ id: z.ZodCoercedBigInt<unknown>;
2430
+ names: z.ZodArray<z.ZodObject<{
2431
+ language: z.ZodEnum<{
2432
+ ka: "ka";
2433
+ en: "en";
2434
+ ru: "ru";
2435
+ }>;
2436
+ text: z.ZodString;
2437
+ }, z.core.$strip>>;
2438
+ }, z.core.$strip>>;
2439
+ subDistrict: z.ZodOptional<z.ZodObject<{
2440
+ id: z.ZodCoercedBigInt<unknown>;
2441
+ names: z.ZodArray<z.ZodObject<{
2442
+ language: z.ZodEnum<{
2443
+ ka: "ka";
2444
+ en: "en";
2445
+ ru: "ru";
2446
+ }>;
2447
+ text: z.ZodString;
2448
+ }, z.core.$strip>>;
2449
+ }, z.core.$strip>>;
2450
+ street: z.ZodOptional<z.ZodObject<{
2451
+ id: z.ZodCoercedBigInt<unknown>;
2452
+ names: z.ZodArray<z.ZodObject<{
2453
+ language: z.ZodEnum<{
2454
+ ka: "ka";
2455
+ en: "en";
2456
+ ru: "ru";
2457
+ }>;
2458
+ text: z.ZodString;
2459
+ }, z.core.$strip>>;
2460
+ }, z.core.$strip>>;
2100
2461
  }, z.core.$strip>>>;
2101
2462
  }, z.core.$strip>;
2102
2463
  export declare const zPagedModelLeadGridResponse: z.ZodObject<{
@@ -2172,12 +2533,52 @@ export declare const zPagedModelLeadGridResponse: z.ZodObject<{
2172
2533
  }>;
2173
2534
  priceMin: z.ZodOptional<z.ZodNumber>;
2174
2535
  priceMax: z.ZodOptional<z.ZodNumber>;
2175
- regionId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
2176
- districtId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
2177
- subDistrictId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
2178
- streetId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
2179
2536
  area: z.ZodOptional<z.ZodNumber>;
2180
2537
  numberOfRooms: z.ZodOptional<z.ZodInt>;
2538
+ region: z.ZodOptional<z.ZodObject<{
2539
+ id: z.ZodCoercedBigInt<unknown>;
2540
+ names: z.ZodArray<z.ZodObject<{
2541
+ language: z.ZodEnum<{
2542
+ ka: "ka";
2543
+ en: "en";
2544
+ ru: "ru";
2545
+ }>;
2546
+ text: z.ZodString;
2547
+ }, z.core.$strip>>;
2548
+ }, z.core.$strip>>;
2549
+ district: z.ZodOptional<z.ZodObject<{
2550
+ id: z.ZodCoercedBigInt<unknown>;
2551
+ names: z.ZodArray<z.ZodObject<{
2552
+ language: z.ZodEnum<{
2553
+ ka: "ka";
2554
+ en: "en";
2555
+ ru: "ru";
2556
+ }>;
2557
+ text: z.ZodString;
2558
+ }, z.core.$strip>>;
2559
+ }, z.core.$strip>>;
2560
+ subDistrict: z.ZodOptional<z.ZodObject<{
2561
+ id: z.ZodCoercedBigInt<unknown>;
2562
+ names: z.ZodArray<z.ZodObject<{
2563
+ language: z.ZodEnum<{
2564
+ ka: "ka";
2565
+ en: "en";
2566
+ ru: "ru";
2567
+ }>;
2568
+ text: z.ZodString;
2569
+ }, z.core.$strip>>;
2570
+ }, z.core.$strip>>;
2571
+ street: z.ZodOptional<z.ZodObject<{
2572
+ id: z.ZodCoercedBigInt<unknown>;
2573
+ names: z.ZodArray<z.ZodObject<{
2574
+ language: z.ZodEnum<{
2575
+ ka: "ka";
2576
+ en: "en";
2577
+ ru: "ru";
2578
+ }>;
2579
+ text: z.ZodString;
2580
+ }, z.core.$strip>>;
2581
+ }, z.core.$strip>>;
2181
2582
  }, z.core.$strip>>>;
2182
2583
  }, z.core.$strip>>>;
2183
2584
  page: z.ZodOptional<z.ZodObject<{
@@ -2465,11 +2866,49 @@ export declare const zClientInterestResponse: z.ZodObject<{
2465
2866
  totalAreaMax: z.ZodOptional<z.ZodNumber>;
2466
2867
  livingAreaMin: z.ZodOptional<z.ZodNumber>;
2467
2868
  livingAreaMax: z.ZodOptional<z.ZodNumber>;
2468
- location: z.ZodOptional<z.ZodObject<{
2469
- regionId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
2470
- districtId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
2471
- subdistrictId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
2472
- streetId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
2869
+ region: z.ZodOptional<z.ZodObject<{
2870
+ id: z.ZodCoercedBigInt<unknown>;
2871
+ names: z.ZodArray<z.ZodObject<{
2872
+ language: z.ZodEnum<{
2873
+ ka: "ka";
2874
+ en: "en";
2875
+ ru: "ru";
2876
+ }>;
2877
+ text: z.ZodString;
2878
+ }, z.core.$strip>>;
2879
+ }, z.core.$strip>>;
2880
+ district: z.ZodOptional<z.ZodObject<{
2881
+ id: z.ZodCoercedBigInt<unknown>;
2882
+ names: z.ZodArray<z.ZodObject<{
2883
+ language: z.ZodEnum<{
2884
+ ka: "ka";
2885
+ en: "en";
2886
+ ru: "ru";
2887
+ }>;
2888
+ text: z.ZodString;
2889
+ }, z.core.$strip>>;
2890
+ }, z.core.$strip>>;
2891
+ subDistrict: z.ZodOptional<z.ZodObject<{
2892
+ id: z.ZodCoercedBigInt<unknown>;
2893
+ names: z.ZodArray<z.ZodObject<{
2894
+ language: z.ZodEnum<{
2895
+ ka: "ka";
2896
+ en: "en";
2897
+ ru: "ru";
2898
+ }>;
2899
+ text: z.ZodString;
2900
+ }, z.core.$strip>>;
2901
+ }, z.core.$strip>>;
2902
+ street: z.ZodOptional<z.ZodObject<{
2903
+ id: z.ZodCoercedBigInt<unknown>;
2904
+ names: z.ZodArray<z.ZodObject<{
2905
+ language: z.ZodEnum<{
2906
+ ka: "ka";
2907
+ en: "en";
2908
+ ru: "ru";
2909
+ }>;
2910
+ text: z.ZodString;
2911
+ }, z.core.$strip>>;
2473
2912
  }, z.core.$strip>>;
2474
2913
  active: z.ZodBoolean;
2475
2914
  }, z.core.$strip>;
@@ -2589,10 +3028,50 @@ export declare const zPropertyDetailsResponse: z.ZodObject<{
2589
3028
  livingArea: z.ZodOptional<z.ZodNumber>;
2590
3029
  balconyArea: z.ZodOptional<z.ZodNumber>;
2591
3030
  address: z.ZodObject<{
2592
- regionId: z.ZodCoercedBigInt<unknown>;
2593
- districtId: z.ZodCoercedBigInt<unknown>;
2594
- subdistrictId: z.ZodCoercedBigInt<unknown>;
2595
- streetId: z.ZodCoercedBigInt<unknown>;
3031
+ region: z.ZodObject<{
3032
+ id: z.ZodCoercedBigInt<unknown>;
3033
+ names: z.ZodArray<z.ZodObject<{
3034
+ language: z.ZodEnum<{
3035
+ ka: "ka";
3036
+ en: "en";
3037
+ ru: "ru";
3038
+ }>;
3039
+ text: z.ZodString;
3040
+ }, z.core.$strip>>;
3041
+ }, z.core.$strip>;
3042
+ district: z.ZodObject<{
3043
+ id: z.ZodCoercedBigInt<unknown>;
3044
+ names: z.ZodArray<z.ZodObject<{
3045
+ language: z.ZodEnum<{
3046
+ ka: "ka";
3047
+ en: "en";
3048
+ ru: "ru";
3049
+ }>;
3050
+ text: z.ZodString;
3051
+ }, z.core.$strip>>;
3052
+ }, z.core.$strip>;
3053
+ subdistrict: z.ZodObject<{
3054
+ id: z.ZodCoercedBigInt<unknown>;
3055
+ names: z.ZodArray<z.ZodObject<{
3056
+ language: z.ZodEnum<{
3057
+ ka: "ka";
3058
+ en: "en";
3059
+ ru: "ru";
3060
+ }>;
3061
+ text: z.ZodString;
3062
+ }, z.core.$strip>>;
3063
+ }, z.core.$strip>;
3064
+ street: z.ZodOptional<z.ZodObject<{
3065
+ id: z.ZodCoercedBigInt<unknown>;
3066
+ names: z.ZodArray<z.ZodObject<{
3067
+ language: z.ZodEnum<{
3068
+ ka: "ka";
3069
+ en: "en";
3070
+ ru: "ru";
3071
+ }>;
3072
+ text: z.ZodString;
3073
+ }, z.core.$strip>>;
3074
+ }, z.core.$strip>>;
2596
3075
  cadastreCode: z.ZodOptional<z.ZodString>;
2597
3076
  lat: z.ZodNumber;
2598
3077
  lng: z.ZodNumber;
@@ -2638,10 +3117,50 @@ export declare const zClientPropertyResponse: z.ZodObject<{
2638
3117
  livingArea: z.ZodOptional<z.ZodNumber>;
2639
3118
  balconyArea: z.ZodOptional<z.ZodNumber>;
2640
3119
  address: z.ZodObject<{
2641
- regionId: z.ZodCoercedBigInt<unknown>;
2642
- districtId: z.ZodCoercedBigInt<unknown>;
2643
- subdistrictId: z.ZodCoercedBigInt<unknown>;
2644
- streetId: z.ZodCoercedBigInt<unknown>;
3120
+ region: z.ZodObject<{
3121
+ id: z.ZodCoercedBigInt<unknown>;
3122
+ names: z.ZodArray<z.ZodObject<{
3123
+ language: z.ZodEnum<{
3124
+ ka: "ka";
3125
+ en: "en";
3126
+ ru: "ru";
3127
+ }>;
3128
+ text: z.ZodString;
3129
+ }, z.core.$strip>>;
3130
+ }, z.core.$strip>;
3131
+ district: z.ZodObject<{
3132
+ id: z.ZodCoercedBigInt<unknown>;
3133
+ names: z.ZodArray<z.ZodObject<{
3134
+ language: z.ZodEnum<{
3135
+ ka: "ka";
3136
+ en: "en";
3137
+ ru: "ru";
3138
+ }>;
3139
+ text: z.ZodString;
3140
+ }, z.core.$strip>>;
3141
+ }, z.core.$strip>;
3142
+ subdistrict: z.ZodObject<{
3143
+ id: z.ZodCoercedBigInt<unknown>;
3144
+ names: z.ZodArray<z.ZodObject<{
3145
+ language: z.ZodEnum<{
3146
+ ka: "ka";
3147
+ en: "en";
3148
+ ru: "ru";
3149
+ }>;
3150
+ text: z.ZodString;
3151
+ }, z.core.$strip>>;
3152
+ }, z.core.$strip>;
3153
+ street: z.ZodOptional<z.ZodObject<{
3154
+ id: z.ZodCoercedBigInt<unknown>;
3155
+ names: z.ZodArray<z.ZodObject<{
3156
+ language: z.ZodEnum<{
3157
+ ka: "ka";
3158
+ en: "en";
3159
+ ru: "ru";
3160
+ }>;
3161
+ text: z.ZodString;
3162
+ }, z.core.$strip>>;
3163
+ }, z.core.$strip>>;
2645
3164
  cadastreCode: z.ZodOptional<z.ZodString>;
2646
3165
  lat: z.ZodNumber;
2647
3166
  lng: z.ZodNumber;
@@ -2803,11 +3322,49 @@ export declare const zClient360Response: z.ZodObject<{
2803
3322
  totalAreaMax: z.ZodOptional<z.ZodNumber>;
2804
3323
  livingAreaMin: z.ZodOptional<z.ZodNumber>;
2805
3324
  livingAreaMax: z.ZodOptional<z.ZodNumber>;
2806
- location: z.ZodOptional<z.ZodObject<{
2807
- regionId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
2808
- districtId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
2809
- subdistrictId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
2810
- streetId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
3325
+ region: z.ZodOptional<z.ZodObject<{
3326
+ id: z.ZodCoercedBigInt<unknown>;
3327
+ names: z.ZodArray<z.ZodObject<{
3328
+ language: z.ZodEnum<{
3329
+ ka: "ka";
3330
+ en: "en";
3331
+ ru: "ru";
3332
+ }>;
3333
+ text: z.ZodString;
3334
+ }, z.core.$strip>>;
3335
+ }, z.core.$strip>>;
3336
+ district: z.ZodOptional<z.ZodObject<{
3337
+ id: z.ZodCoercedBigInt<unknown>;
3338
+ names: z.ZodArray<z.ZodObject<{
3339
+ language: z.ZodEnum<{
3340
+ ka: "ka";
3341
+ en: "en";
3342
+ ru: "ru";
3343
+ }>;
3344
+ text: z.ZodString;
3345
+ }, z.core.$strip>>;
3346
+ }, z.core.$strip>>;
3347
+ subDistrict: z.ZodOptional<z.ZodObject<{
3348
+ id: z.ZodCoercedBigInt<unknown>;
3349
+ names: z.ZodArray<z.ZodObject<{
3350
+ language: z.ZodEnum<{
3351
+ ka: "ka";
3352
+ en: "en";
3353
+ ru: "ru";
3354
+ }>;
3355
+ text: z.ZodString;
3356
+ }, z.core.$strip>>;
3357
+ }, z.core.$strip>>;
3358
+ street: z.ZodOptional<z.ZodObject<{
3359
+ id: z.ZodCoercedBigInt<unknown>;
3360
+ names: z.ZodArray<z.ZodObject<{
3361
+ language: z.ZodEnum<{
3362
+ ka: "ka";
3363
+ en: "en";
3364
+ ru: "ru";
3365
+ }>;
3366
+ text: z.ZodString;
3367
+ }, z.core.$strip>>;
2811
3368
  }, z.core.$strip>>;
2812
3369
  active: z.ZodBoolean;
2813
3370
  }, z.core.$strip>>;
@@ -2851,10 +3408,50 @@ export declare const zClient360Response: z.ZodObject<{
2851
3408
  livingArea: z.ZodOptional<z.ZodNumber>;
2852
3409
  balconyArea: z.ZodOptional<z.ZodNumber>;
2853
3410
  address: z.ZodObject<{
2854
- regionId: z.ZodCoercedBigInt<unknown>;
2855
- districtId: z.ZodCoercedBigInt<unknown>;
2856
- subdistrictId: z.ZodCoercedBigInt<unknown>;
2857
- streetId: z.ZodCoercedBigInt<unknown>;
3411
+ region: z.ZodObject<{
3412
+ id: z.ZodCoercedBigInt<unknown>;
3413
+ names: z.ZodArray<z.ZodObject<{
3414
+ language: z.ZodEnum<{
3415
+ ka: "ka";
3416
+ en: "en";
3417
+ ru: "ru";
3418
+ }>;
3419
+ text: z.ZodString;
3420
+ }, z.core.$strip>>;
3421
+ }, z.core.$strip>;
3422
+ district: z.ZodObject<{
3423
+ id: z.ZodCoercedBigInt<unknown>;
3424
+ names: z.ZodArray<z.ZodObject<{
3425
+ language: z.ZodEnum<{
3426
+ ka: "ka";
3427
+ en: "en";
3428
+ ru: "ru";
3429
+ }>;
3430
+ text: z.ZodString;
3431
+ }, z.core.$strip>>;
3432
+ }, z.core.$strip>;
3433
+ subdistrict: z.ZodObject<{
3434
+ id: z.ZodCoercedBigInt<unknown>;
3435
+ names: z.ZodArray<z.ZodObject<{
3436
+ language: z.ZodEnum<{
3437
+ ka: "ka";
3438
+ en: "en";
3439
+ ru: "ru";
3440
+ }>;
3441
+ text: z.ZodString;
3442
+ }, z.core.$strip>>;
3443
+ }, z.core.$strip>;
3444
+ street: z.ZodOptional<z.ZodObject<{
3445
+ id: z.ZodCoercedBigInt<unknown>;
3446
+ names: z.ZodArray<z.ZodObject<{
3447
+ language: z.ZodEnum<{
3448
+ ka: "ka";
3449
+ en: "en";
3450
+ ru: "ru";
3451
+ }>;
3452
+ text: z.ZodString;
3453
+ }, z.core.$strip>>;
3454
+ }, z.core.$strip>>;
2858
3455
  cadastreCode: z.ZodOptional<z.ZodString>;
2859
3456
  lat: z.ZodNumber;
2860
3457
  lng: z.ZodNumber;
@@ -4352,6 +4949,12 @@ export declare const zPostClientsResponse: z.ZodObject<{
4352
4949
  districtId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
4353
4950
  subdistrictId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
4354
4951
  streetId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
4952
+ names: z.ZodOptional<z.ZodObject<{
4953
+ region: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
4954
+ district: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
4955
+ subdistrict: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
4956
+ street: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
4957
+ }, z.core.$strip>>;
4355
4958
  cadastreCode: z.ZodOptional<z.ZodString>;
4356
4959
  coordinates: z.ZodOptional<z.ZodObject<{
4357
4960
  lat: z.ZodOptional<z.ZodNumber>;
@@ -4676,6 +5279,12 @@ export declare const zPostClientsSourceResponse: z.ZodObject<{
4676
5279
  districtId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
4677
5280
  subdistrictId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
4678
5281
  streetId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
5282
+ names: z.ZodOptional<z.ZodObject<{
5283
+ region: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
5284
+ district: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
5285
+ subdistrict: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
5286
+ street: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
5287
+ }, z.core.$strip>>;
4679
5288
  cadastreCode: z.ZodOptional<z.ZodString>;
4680
5289
  coordinates: z.ZodOptional<z.ZodObject<{
4681
5290
  lat: z.ZodOptional<z.ZodNumber>;
@@ -4783,6 +5392,12 @@ export declare const zPostClientsFromLeadByLeadIdResponse: z.ZodObject<{
4783
5392
  districtId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
4784
5393
  subdistrictId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
4785
5394
  streetId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
5395
+ names: z.ZodOptional<z.ZodObject<{
5396
+ region: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
5397
+ district: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
5398
+ subdistrict: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
5399
+ street: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
5400
+ }, z.core.$strip>>;
4786
5401
  cadastreCode: z.ZodOptional<z.ZodString>;
4787
5402
  coordinates: z.ZodOptional<z.ZodObject<{
4788
5403
  lat: z.ZodOptional<z.ZodNumber>;
@@ -4981,10 +5596,50 @@ export declare const zGetPublicRecomendationsByRecommendationsIdItemsResponse: z
4981
5596
  livingArea: z.ZodOptional<z.ZodNumber>;
4982
5597
  balconyArea: z.ZodOptional<z.ZodNumber>;
4983
5598
  address: z.ZodObject<{
4984
- regionId: z.ZodCoercedBigInt<unknown>;
4985
- districtId: z.ZodCoercedBigInt<unknown>;
4986
- subdistrictId: z.ZodCoercedBigInt<unknown>;
4987
- streetId: z.ZodCoercedBigInt<unknown>;
5599
+ region: z.ZodObject<{
5600
+ id: z.ZodCoercedBigInt<unknown>;
5601
+ names: z.ZodArray<z.ZodObject<{
5602
+ language: z.ZodEnum<{
5603
+ ka: "ka";
5604
+ en: "en";
5605
+ ru: "ru";
5606
+ }>;
5607
+ text: z.ZodString;
5608
+ }, z.core.$strip>>;
5609
+ }, z.core.$strip>;
5610
+ district: z.ZodObject<{
5611
+ id: z.ZodCoercedBigInt<unknown>;
5612
+ names: z.ZodArray<z.ZodObject<{
5613
+ language: z.ZodEnum<{
5614
+ ka: "ka";
5615
+ en: "en";
5616
+ ru: "ru";
5617
+ }>;
5618
+ text: z.ZodString;
5619
+ }, z.core.$strip>>;
5620
+ }, z.core.$strip>;
5621
+ subdistrict: z.ZodObject<{
5622
+ id: z.ZodCoercedBigInt<unknown>;
5623
+ names: z.ZodArray<z.ZodObject<{
5624
+ language: z.ZodEnum<{
5625
+ ka: "ka";
5626
+ en: "en";
5627
+ ru: "ru";
5628
+ }>;
5629
+ text: z.ZodString;
5630
+ }, z.core.$strip>>;
5631
+ }, z.core.$strip>;
5632
+ street: z.ZodOptional<z.ZodObject<{
5633
+ id: z.ZodCoercedBigInt<unknown>;
5634
+ names: z.ZodArray<z.ZodObject<{
5635
+ language: z.ZodEnum<{
5636
+ ka: "ka";
5637
+ en: "en";
5638
+ ru: "ru";
5639
+ }>;
5640
+ text: z.ZodString;
5641
+ }, z.core.$strip>>;
5642
+ }, z.core.$strip>>;
4988
5643
  cadastreCode: z.ZodOptional<z.ZodString>;
4989
5644
  lat: z.ZodNumber;
4990
5645
  lng: z.ZodNumber;
@@ -5608,10 +6263,50 @@ export declare const zGetListingResponse: z.ZodObject<{
5608
6263
  WAREHOUSE: "WAREHOUSE";
5609
6264
  }>>;
5610
6265
  title: z.ZodOptional<z.ZodString>;
5611
- regionId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
5612
- districtId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
5613
- subdistrictId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
5614
- streetId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
6266
+ region: z.ZodOptional<z.ZodObject<{
6267
+ id: z.ZodCoercedBigInt<unknown>;
6268
+ names: z.ZodArray<z.ZodObject<{
6269
+ language: z.ZodEnum<{
6270
+ ka: "ka";
6271
+ en: "en";
6272
+ ru: "ru";
6273
+ }>;
6274
+ text: z.ZodString;
6275
+ }, z.core.$strip>>;
6276
+ }, z.core.$strip>>;
6277
+ district: z.ZodOptional<z.ZodObject<{
6278
+ id: z.ZodCoercedBigInt<unknown>;
6279
+ names: z.ZodArray<z.ZodObject<{
6280
+ language: z.ZodEnum<{
6281
+ ka: "ka";
6282
+ en: "en";
6283
+ ru: "ru";
6284
+ }>;
6285
+ text: z.ZodString;
6286
+ }, z.core.$strip>>;
6287
+ }, z.core.$strip>>;
6288
+ subdistrict: z.ZodOptional<z.ZodObject<{
6289
+ id: z.ZodCoercedBigInt<unknown>;
6290
+ names: z.ZodArray<z.ZodObject<{
6291
+ language: z.ZodEnum<{
6292
+ ka: "ka";
6293
+ en: "en";
6294
+ ru: "ru";
6295
+ }>;
6296
+ text: z.ZodString;
6297
+ }, z.core.$strip>>;
6298
+ }, z.core.$strip>>;
6299
+ street: z.ZodOptional<z.ZodObject<{
6300
+ id: z.ZodCoercedBigInt<unknown>;
6301
+ names: z.ZodArray<z.ZodObject<{
6302
+ language: z.ZodEnum<{
6303
+ ka: "ka";
6304
+ en: "en";
6305
+ ru: "ru";
6306
+ }>;
6307
+ text: z.ZodString;
6308
+ }, z.core.$strip>>;
6309
+ }, z.core.$strip>>;
5615
6310
  cover: z.ZodOptional<z.ZodString>;
5616
6311
  agreementType: z.ZodOptional<z.ZodEnum<{
5617
6312
  EXCLUSIVE: "EXCLUSIVE";
@@ -5711,10 +6406,50 @@ export declare const zGetListingByPropertyIdResponse: z.ZodObject<{
5711
6406
  WAREHOUSE: "WAREHOUSE";
5712
6407
  }>>;
5713
6408
  title: z.ZodOptional<z.ZodString>;
5714
- regionId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
5715
- districtId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
5716
- subdistrictId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
5717
- streetId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
6409
+ region: z.ZodOptional<z.ZodObject<{
6410
+ id: z.ZodCoercedBigInt<unknown>;
6411
+ names: z.ZodArray<z.ZodObject<{
6412
+ language: z.ZodEnum<{
6413
+ ka: "ka";
6414
+ en: "en";
6415
+ ru: "ru";
6416
+ }>;
6417
+ text: z.ZodString;
6418
+ }, z.core.$strip>>;
6419
+ }, z.core.$strip>>;
6420
+ district: z.ZodOptional<z.ZodObject<{
6421
+ id: z.ZodCoercedBigInt<unknown>;
6422
+ names: z.ZodArray<z.ZodObject<{
6423
+ language: z.ZodEnum<{
6424
+ ka: "ka";
6425
+ en: "en";
6426
+ ru: "ru";
6427
+ }>;
6428
+ text: z.ZodString;
6429
+ }, z.core.$strip>>;
6430
+ }, z.core.$strip>>;
6431
+ subdistrict: z.ZodOptional<z.ZodObject<{
6432
+ id: z.ZodCoercedBigInt<unknown>;
6433
+ names: z.ZodArray<z.ZodObject<{
6434
+ language: z.ZodEnum<{
6435
+ ka: "ka";
6436
+ en: "en";
6437
+ ru: "ru";
6438
+ }>;
6439
+ text: z.ZodString;
6440
+ }, z.core.$strip>>;
6441
+ }, z.core.$strip>>;
6442
+ street: z.ZodOptional<z.ZodObject<{
6443
+ id: z.ZodCoercedBigInt<unknown>;
6444
+ names: z.ZodArray<z.ZodObject<{
6445
+ language: z.ZodEnum<{
6446
+ ka: "ka";
6447
+ en: "en";
6448
+ ru: "ru";
6449
+ }>;
6450
+ text: z.ZodString;
6451
+ }, z.core.$strip>>;
6452
+ }, z.core.$strip>>;
5718
6453
  cover: z.ZodOptional<z.ZodString>;
5719
6454
  agreementType: z.ZodOptional<z.ZodEnum<{
5720
6455
  EXCLUSIVE: "EXCLUSIVE";
@@ -5764,12 +6499,12 @@ export declare const zGetListingGroupsData: z.ZodObject<{
5764
6499
  path: z.ZodOptional<z.ZodNever>;
5765
6500
  query: z.ZodObject<{
5766
6501
  groupBy: z.ZodEnum<{
6502
+ REGION: "REGION";
5767
6503
  CLIENT: "CLIENT";
5768
6504
  STATE: "STATE";
5769
6505
  PROPERTY_TYPE: "PROPERTY_TYPE";
5770
6506
  LISTING_TYPE: "LISTING_TYPE";
5771
6507
  ASSIGNED_TO: "ASSIGNED_TO";
5772
- REGION: "REGION";
5773
6508
  PLATFORM: "PLATFORM";
5774
6509
  BOOST_TIER: "BOOST_TIER";
5775
6510
  CREATED_AT_DAY: "CREATED_AT_DAY";
@@ -5998,12 +6733,52 @@ export declare const zGetLeadResponse: z.ZodObject<{
5998
6733
  }>;
5999
6734
  priceMin: z.ZodOptional<z.ZodNumber>;
6000
6735
  priceMax: z.ZodOptional<z.ZodNumber>;
6001
- regionId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
6002
- districtId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
6003
- subDistrictId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
6004
- streetId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
6005
6736
  area: z.ZodOptional<z.ZodNumber>;
6006
6737
  numberOfRooms: z.ZodOptional<z.ZodInt>;
6738
+ region: z.ZodOptional<z.ZodObject<{
6739
+ id: z.ZodCoercedBigInt<unknown>;
6740
+ names: z.ZodArray<z.ZodObject<{
6741
+ language: z.ZodEnum<{
6742
+ ka: "ka";
6743
+ en: "en";
6744
+ ru: "ru";
6745
+ }>;
6746
+ text: z.ZodString;
6747
+ }, z.core.$strip>>;
6748
+ }, z.core.$strip>>;
6749
+ district: z.ZodOptional<z.ZodObject<{
6750
+ id: z.ZodCoercedBigInt<unknown>;
6751
+ names: z.ZodArray<z.ZodObject<{
6752
+ language: z.ZodEnum<{
6753
+ ka: "ka";
6754
+ en: "en";
6755
+ ru: "ru";
6756
+ }>;
6757
+ text: z.ZodString;
6758
+ }, z.core.$strip>>;
6759
+ }, z.core.$strip>>;
6760
+ subDistrict: z.ZodOptional<z.ZodObject<{
6761
+ id: z.ZodCoercedBigInt<unknown>;
6762
+ names: z.ZodArray<z.ZodObject<{
6763
+ language: z.ZodEnum<{
6764
+ ka: "ka";
6765
+ en: "en";
6766
+ ru: "ru";
6767
+ }>;
6768
+ text: z.ZodString;
6769
+ }, z.core.$strip>>;
6770
+ }, z.core.$strip>>;
6771
+ street: z.ZodOptional<z.ZodObject<{
6772
+ id: z.ZodCoercedBigInt<unknown>;
6773
+ names: z.ZodArray<z.ZodObject<{
6774
+ language: z.ZodEnum<{
6775
+ ka: "ka";
6776
+ en: "en";
6777
+ ru: "ru";
6778
+ }>;
6779
+ text: z.ZodString;
6780
+ }, z.core.$strip>>;
6781
+ }, z.core.$strip>>;
6007
6782
  }, z.core.$strip>>>;
6008
6783
  }, z.core.$strip>>>;
6009
6784
  page: z.ZodOptional<z.ZodObject<{
@@ -6095,12 +6870,52 @@ export declare const zGetLeadByLeadIdResponse: z.ZodObject<{
6095
6870
  }>;
6096
6871
  priceMin: z.ZodOptional<z.ZodNumber>;
6097
6872
  priceMax: z.ZodOptional<z.ZodNumber>;
6098
- regionId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
6099
- districtId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
6100
- subDistrictId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
6101
- streetId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
6102
6873
  area: z.ZodOptional<z.ZodNumber>;
6103
6874
  numberOfRooms: z.ZodOptional<z.ZodInt>;
6875
+ region: z.ZodOptional<z.ZodObject<{
6876
+ id: z.ZodCoercedBigInt<unknown>;
6877
+ names: z.ZodArray<z.ZodObject<{
6878
+ language: z.ZodEnum<{
6879
+ ka: "ka";
6880
+ en: "en";
6881
+ ru: "ru";
6882
+ }>;
6883
+ text: z.ZodString;
6884
+ }, z.core.$strip>>;
6885
+ }, z.core.$strip>>;
6886
+ district: z.ZodOptional<z.ZodObject<{
6887
+ id: z.ZodCoercedBigInt<unknown>;
6888
+ names: z.ZodArray<z.ZodObject<{
6889
+ language: z.ZodEnum<{
6890
+ ka: "ka";
6891
+ en: "en";
6892
+ ru: "ru";
6893
+ }>;
6894
+ text: z.ZodString;
6895
+ }, z.core.$strip>>;
6896
+ }, z.core.$strip>>;
6897
+ subDistrict: z.ZodOptional<z.ZodObject<{
6898
+ id: z.ZodCoercedBigInt<unknown>;
6899
+ names: z.ZodArray<z.ZodObject<{
6900
+ language: z.ZodEnum<{
6901
+ ka: "ka";
6902
+ en: "en";
6903
+ ru: "ru";
6904
+ }>;
6905
+ text: z.ZodString;
6906
+ }, z.core.$strip>>;
6907
+ }, z.core.$strip>>;
6908
+ street: z.ZodOptional<z.ZodObject<{
6909
+ id: z.ZodCoercedBigInt<unknown>;
6910
+ names: z.ZodArray<z.ZodObject<{
6911
+ language: z.ZodEnum<{
6912
+ ka: "ka";
6913
+ en: "en";
6914
+ ru: "ru";
6915
+ }>;
6916
+ text: z.ZodString;
6917
+ }, z.core.$strip>>;
6918
+ }, z.core.$strip>>;
6104
6919
  }, z.core.$strip>>>;
6105
6920
  }, z.core.$strip>;
6106
6921
  export declare const zGetLeadGroupsData: z.ZodObject<{
@@ -6329,10 +7144,50 @@ export declare const zGetClientsByClientIdRecommendationsByRecommendationsIdResp
6329
7144
  livingArea: z.ZodOptional<z.ZodNumber>;
6330
7145
  balconyArea: z.ZodOptional<z.ZodNumber>;
6331
7146
  address: z.ZodObject<{
6332
- regionId: z.ZodCoercedBigInt<unknown>;
6333
- districtId: z.ZodCoercedBigInt<unknown>;
6334
- subdistrictId: z.ZodCoercedBigInt<unknown>;
6335
- streetId: z.ZodCoercedBigInt<unknown>;
7147
+ region: z.ZodObject<{
7148
+ id: z.ZodCoercedBigInt<unknown>;
7149
+ names: z.ZodArray<z.ZodObject<{
7150
+ language: z.ZodEnum<{
7151
+ ka: "ka";
7152
+ en: "en";
7153
+ ru: "ru";
7154
+ }>;
7155
+ text: z.ZodString;
7156
+ }, z.core.$strip>>;
7157
+ }, z.core.$strip>;
7158
+ district: z.ZodObject<{
7159
+ id: z.ZodCoercedBigInt<unknown>;
7160
+ names: z.ZodArray<z.ZodObject<{
7161
+ language: z.ZodEnum<{
7162
+ ka: "ka";
7163
+ en: "en";
7164
+ ru: "ru";
7165
+ }>;
7166
+ text: z.ZodString;
7167
+ }, z.core.$strip>>;
7168
+ }, z.core.$strip>;
7169
+ subdistrict: z.ZodObject<{
7170
+ id: z.ZodCoercedBigInt<unknown>;
7171
+ names: z.ZodArray<z.ZodObject<{
7172
+ language: z.ZodEnum<{
7173
+ ka: "ka";
7174
+ en: "en";
7175
+ ru: "ru";
7176
+ }>;
7177
+ text: z.ZodString;
7178
+ }, z.core.$strip>>;
7179
+ }, z.core.$strip>;
7180
+ street: z.ZodOptional<z.ZodObject<{
7181
+ id: z.ZodCoercedBigInt<unknown>;
7182
+ names: z.ZodArray<z.ZodObject<{
7183
+ language: z.ZodEnum<{
7184
+ ka: "ka";
7185
+ en: "en";
7186
+ ru: "ru";
7187
+ }>;
7188
+ text: z.ZodString;
7189
+ }, z.core.$strip>>;
7190
+ }, z.core.$strip>>;
6336
7191
  cadastreCode: z.ZodOptional<z.ZodString>;
6337
7192
  lat: z.ZodNumber;
6338
7193
  lng: z.ZodNumber;
@@ -6426,10 +7281,50 @@ export declare const zGetClientsByClientIdRecommendationsInterestByInterestIdRes
6426
7281
  livingArea: z.ZodOptional<z.ZodNumber>;
6427
7282
  balconyArea: z.ZodOptional<z.ZodNumber>;
6428
7283
  address: z.ZodObject<{
6429
- regionId: z.ZodCoercedBigInt<unknown>;
6430
- districtId: z.ZodCoercedBigInt<unknown>;
6431
- subdistrictId: z.ZodCoercedBigInt<unknown>;
6432
- streetId: z.ZodCoercedBigInt<unknown>;
7284
+ region: z.ZodObject<{
7285
+ id: z.ZodCoercedBigInt<unknown>;
7286
+ names: z.ZodArray<z.ZodObject<{
7287
+ language: z.ZodEnum<{
7288
+ ka: "ka";
7289
+ en: "en";
7290
+ ru: "ru";
7291
+ }>;
7292
+ text: z.ZodString;
7293
+ }, z.core.$strip>>;
7294
+ }, z.core.$strip>;
7295
+ district: z.ZodObject<{
7296
+ id: z.ZodCoercedBigInt<unknown>;
7297
+ names: z.ZodArray<z.ZodObject<{
7298
+ language: z.ZodEnum<{
7299
+ ka: "ka";
7300
+ en: "en";
7301
+ ru: "ru";
7302
+ }>;
7303
+ text: z.ZodString;
7304
+ }, z.core.$strip>>;
7305
+ }, z.core.$strip>;
7306
+ subdistrict: z.ZodObject<{
7307
+ id: z.ZodCoercedBigInt<unknown>;
7308
+ names: z.ZodArray<z.ZodObject<{
7309
+ language: z.ZodEnum<{
7310
+ ka: "ka";
7311
+ en: "en";
7312
+ ru: "ru";
7313
+ }>;
7314
+ text: z.ZodString;
7315
+ }, z.core.$strip>>;
7316
+ }, z.core.$strip>;
7317
+ street: z.ZodOptional<z.ZodObject<{
7318
+ id: z.ZodCoercedBigInt<unknown>;
7319
+ names: z.ZodArray<z.ZodObject<{
7320
+ language: z.ZodEnum<{
7321
+ ka: "ka";
7322
+ en: "en";
7323
+ ru: "ru";
7324
+ }>;
7325
+ text: z.ZodString;
7326
+ }, z.core.$strip>>;
7327
+ }, z.core.$strip>>;
6433
7328
  cadastreCode: z.ZodOptional<z.ZodString>;
6434
7329
  lat: z.ZodNumber;
6435
7330
  lng: z.ZodNumber;
@@ -6692,11 +7587,49 @@ export declare const zGetClientByClientId360Response: z.ZodObject<{
6692
7587
  totalAreaMax: z.ZodOptional<z.ZodNumber>;
6693
7588
  livingAreaMin: z.ZodOptional<z.ZodNumber>;
6694
7589
  livingAreaMax: z.ZodOptional<z.ZodNumber>;
6695
- location: z.ZodOptional<z.ZodObject<{
6696
- regionId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
6697
- districtId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
6698
- subdistrictId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
6699
- streetId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
7590
+ region: z.ZodOptional<z.ZodObject<{
7591
+ id: z.ZodCoercedBigInt<unknown>;
7592
+ names: z.ZodArray<z.ZodObject<{
7593
+ language: z.ZodEnum<{
7594
+ ka: "ka";
7595
+ en: "en";
7596
+ ru: "ru";
7597
+ }>;
7598
+ text: z.ZodString;
7599
+ }, z.core.$strip>>;
7600
+ }, z.core.$strip>>;
7601
+ district: z.ZodOptional<z.ZodObject<{
7602
+ id: z.ZodCoercedBigInt<unknown>;
7603
+ names: z.ZodArray<z.ZodObject<{
7604
+ language: z.ZodEnum<{
7605
+ ka: "ka";
7606
+ en: "en";
7607
+ ru: "ru";
7608
+ }>;
7609
+ text: z.ZodString;
7610
+ }, z.core.$strip>>;
7611
+ }, z.core.$strip>>;
7612
+ subDistrict: z.ZodOptional<z.ZodObject<{
7613
+ id: z.ZodCoercedBigInt<unknown>;
7614
+ names: z.ZodArray<z.ZodObject<{
7615
+ language: z.ZodEnum<{
7616
+ ka: "ka";
7617
+ en: "en";
7618
+ ru: "ru";
7619
+ }>;
7620
+ text: z.ZodString;
7621
+ }, z.core.$strip>>;
7622
+ }, z.core.$strip>>;
7623
+ street: z.ZodOptional<z.ZodObject<{
7624
+ id: z.ZodCoercedBigInt<unknown>;
7625
+ names: z.ZodArray<z.ZodObject<{
7626
+ language: z.ZodEnum<{
7627
+ ka: "ka";
7628
+ en: "en";
7629
+ ru: "ru";
7630
+ }>;
7631
+ text: z.ZodString;
7632
+ }, z.core.$strip>>;
6700
7633
  }, z.core.$strip>>;
6701
7634
  active: z.ZodBoolean;
6702
7635
  }, z.core.$strip>>;
@@ -6740,10 +7673,50 @@ export declare const zGetClientByClientId360Response: z.ZodObject<{
6740
7673
  livingArea: z.ZodOptional<z.ZodNumber>;
6741
7674
  balconyArea: z.ZodOptional<z.ZodNumber>;
6742
7675
  address: z.ZodObject<{
6743
- regionId: z.ZodCoercedBigInt<unknown>;
6744
- districtId: z.ZodCoercedBigInt<unknown>;
6745
- subdistrictId: z.ZodCoercedBigInt<unknown>;
6746
- streetId: z.ZodCoercedBigInt<unknown>;
7676
+ region: z.ZodObject<{
7677
+ id: z.ZodCoercedBigInt<unknown>;
7678
+ names: z.ZodArray<z.ZodObject<{
7679
+ language: z.ZodEnum<{
7680
+ ka: "ka";
7681
+ en: "en";
7682
+ ru: "ru";
7683
+ }>;
7684
+ text: z.ZodString;
7685
+ }, z.core.$strip>>;
7686
+ }, z.core.$strip>;
7687
+ district: z.ZodObject<{
7688
+ id: z.ZodCoercedBigInt<unknown>;
7689
+ names: z.ZodArray<z.ZodObject<{
7690
+ language: z.ZodEnum<{
7691
+ ka: "ka";
7692
+ en: "en";
7693
+ ru: "ru";
7694
+ }>;
7695
+ text: z.ZodString;
7696
+ }, z.core.$strip>>;
7697
+ }, z.core.$strip>;
7698
+ subdistrict: z.ZodObject<{
7699
+ id: z.ZodCoercedBigInt<unknown>;
7700
+ names: z.ZodArray<z.ZodObject<{
7701
+ language: z.ZodEnum<{
7702
+ ka: "ka";
7703
+ en: "en";
7704
+ ru: "ru";
7705
+ }>;
7706
+ text: z.ZodString;
7707
+ }, z.core.$strip>>;
7708
+ }, z.core.$strip>;
7709
+ street: z.ZodOptional<z.ZodObject<{
7710
+ id: z.ZodCoercedBigInt<unknown>;
7711
+ names: z.ZodArray<z.ZodObject<{
7712
+ language: z.ZodEnum<{
7713
+ ka: "ka";
7714
+ en: "en";
7715
+ ru: "ru";
7716
+ }>;
7717
+ text: z.ZodString;
7718
+ }, z.core.$strip>>;
7719
+ }, z.core.$strip>>;
6747
7720
  cadastreCode: z.ZodOptional<z.ZodString>;
6748
7721
  lat: z.ZodNumber;
6749
7722
  lng: z.ZodNumber;