@homespot-sdk/core 0.0.243 → 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.
- package/dist/registration/schemas.gen.d.ts +13 -9
- package/dist/registration/schemas.gen.d.ts.map +1 -1
- package/dist/registration/schemas.gen.js +13 -9
- package/dist/registration/schemas.gen.js.map +1 -1
- package/dist/registration/types.gen.d.ts +5 -5
- package/dist/registration/types.gen.d.ts.map +1 -1
- package/dist/registration/zod.gen.d.ts +192 -17
- package/dist/registration/zod.gen.d.ts.map +1 -1
- package/dist/registration/zod.gen.js +5 -17
- package/dist/registration/zod.gen.js.map +1 -1
- package/dist/rem/schemas.gen.d.ts +27 -16
- package/dist/rem/schemas.gen.d.ts.map +1 -1
- package/dist/rem/schemas.gen.js +27 -16
- package/dist/rem/schemas.gen.js.map +1 -1
- package/dist/rem/types.gen.d.ts +5 -7
- package/dist/rem/types.gen.d.ts.map +1 -1
- package/dist/rem/zod.gen.d.ts +752 -101
- package/dist/rem/zod.gen.d.ts.map +1 -1
- package/dist/rem/zod.gen.js +5 -5
- package/dist/rem/zod.gen.js.map +1 -1
- package/package.json +1 -1
package/dist/rem/zod.gen.d.ts
CHANGED
|
@@ -1080,26 +1080,69 @@ export declare const zPagedModelRoleResponse: z.ZodObject<{
|
|
|
1080
1080
|
totalPages: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
1081
1081
|
}, z.core.$strip>>;
|
|
1082
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>;
|
|
1083
1091
|
export declare const zLocationResponse: z.ZodObject<{
|
|
1084
1092
|
id: z.ZodCoercedBigInt<unknown>;
|
|
1085
|
-
names: z.
|
|
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>>;
|
|
1086
1101
|
}, z.core.$strip>;
|
|
1087
1102
|
export declare const zAddressResponse: z.ZodObject<{
|
|
1088
1103
|
region: z.ZodObject<{
|
|
1089
1104
|
id: z.ZodCoercedBigInt<unknown>;
|
|
1090
|
-
names: z.
|
|
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>>;
|
|
1091
1113
|
}, z.core.$strip>;
|
|
1092
1114
|
district: z.ZodObject<{
|
|
1093
1115
|
id: z.ZodCoercedBigInt<unknown>;
|
|
1094
|
-
names: z.
|
|
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>>;
|
|
1095
1124
|
}, z.core.$strip>;
|
|
1096
1125
|
subdistrict: z.ZodObject<{
|
|
1097
1126
|
id: z.ZodCoercedBigInt<unknown>;
|
|
1098
|
-
names: z.
|
|
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>>;
|
|
1099
1135
|
}, z.core.$strip>;
|
|
1100
1136
|
street: z.ZodOptional<z.ZodObject<{
|
|
1101
1137
|
id: z.ZodCoercedBigInt<unknown>;
|
|
1102
|
-
names: z.
|
|
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>>;
|
|
1103
1146
|
}, z.core.$strip>>;
|
|
1104
1147
|
cadastreCode: z.ZodOptional<z.ZodString>;
|
|
1105
1148
|
lat: z.ZodNumber;
|
|
@@ -1156,19 +1199,47 @@ export declare const zRecommendationsCardView: z.ZodObject<{
|
|
|
1156
1199
|
address: z.ZodObject<{
|
|
1157
1200
|
region: z.ZodObject<{
|
|
1158
1201
|
id: z.ZodCoercedBigInt<unknown>;
|
|
1159
|
-
names: z.
|
|
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>>;
|
|
1160
1210
|
}, z.core.$strip>;
|
|
1161
1211
|
district: z.ZodObject<{
|
|
1162
1212
|
id: z.ZodCoercedBigInt<unknown>;
|
|
1163
|
-
names: z.
|
|
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>>;
|
|
1164
1221
|
}, z.core.$strip>;
|
|
1165
1222
|
subdistrict: z.ZodObject<{
|
|
1166
1223
|
id: z.ZodCoercedBigInt<unknown>;
|
|
1167
|
-
names: z.
|
|
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>>;
|
|
1168
1232
|
}, z.core.$strip>;
|
|
1169
1233
|
street: z.ZodOptional<z.ZodObject<{
|
|
1170
1234
|
id: z.ZodCoercedBigInt<unknown>;
|
|
1171
|
-
names: z.
|
|
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>>;
|
|
1172
1243
|
}, z.core.$strip>>;
|
|
1173
1244
|
cadastreCode: z.ZodOptional<z.ZodString>;
|
|
1174
1245
|
lat: z.ZodNumber;
|
|
@@ -1227,19 +1298,47 @@ export declare const zPagedModelRecommendationsCardView: z.ZodObject<{
|
|
|
1227
1298
|
address: z.ZodObject<{
|
|
1228
1299
|
region: z.ZodObject<{
|
|
1229
1300
|
id: z.ZodCoercedBigInt<unknown>;
|
|
1230
|
-
names: z.
|
|
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>>;
|
|
1231
1309
|
}, z.core.$strip>;
|
|
1232
1310
|
district: z.ZodObject<{
|
|
1233
1311
|
id: z.ZodCoercedBigInt<unknown>;
|
|
1234
|
-
names: z.
|
|
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>>;
|
|
1235
1320
|
}, z.core.$strip>;
|
|
1236
1321
|
subdistrict: z.ZodObject<{
|
|
1237
1322
|
id: z.ZodCoercedBigInt<unknown>;
|
|
1238
|
-
names: z.
|
|
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>>;
|
|
1239
1331
|
}, z.core.$strip>;
|
|
1240
1332
|
street: z.ZodOptional<z.ZodObject<{
|
|
1241
1333
|
id: z.ZodCoercedBigInt<unknown>;
|
|
1242
|
-
names: z.
|
|
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>>;
|
|
1243
1342
|
}, z.core.$strip>>;
|
|
1244
1343
|
cadastreCode: z.ZodOptional<z.ZodString>;
|
|
1245
1344
|
lat: z.ZodNumber;
|
|
@@ -1314,19 +1413,47 @@ export declare const zRecommendationResponse: z.ZodObject<{
|
|
|
1314
1413
|
address: z.ZodObject<{
|
|
1315
1414
|
region: z.ZodObject<{
|
|
1316
1415
|
id: z.ZodCoercedBigInt<unknown>;
|
|
1317
|
-
names: z.
|
|
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>>;
|
|
1318
1424
|
}, z.core.$strip>;
|
|
1319
1425
|
district: z.ZodObject<{
|
|
1320
1426
|
id: z.ZodCoercedBigInt<unknown>;
|
|
1321
|
-
names: z.
|
|
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>>;
|
|
1322
1435
|
}, z.core.$strip>;
|
|
1323
1436
|
subdistrict: z.ZodObject<{
|
|
1324
1437
|
id: z.ZodCoercedBigInt<unknown>;
|
|
1325
|
-
names: z.
|
|
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>>;
|
|
1326
1446
|
}, z.core.$strip>;
|
|
1327
1447
|
street: z.ZodOptional<z.ZodObject<{
|
|
1328
1448
|
id: z.ZodCoercedBigInt<unknown>;
|
|
1329
|
-
names: z.
|
|
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>>;
|
|
1330
1457
|
}, z.core.$strip>>;
|
|
1331
1458
|
cadastreCode: z.ZodOptional<z.ZodString>;
|
|
1332
1459
|
lat: z.ZodNumber;
|
|
@@ -1508,14 +1635,6 @@ export declare const zAgencyStatsResponse: z.ZodObject<{
|
|
|
1508
1635
|
listingCount: z.ZodInt;
|
|
1509
1636
|
operatingSince: z.ZodInt;
|
|
1510
1637
|
}, z.core.$strip>;
|
|
1511
|
-
export declare const zLangTextResponse: z.ZodObject<{
|
|
1512
|
-
language: z.ZodEnum<{
|
|
1513
|
-
ka: "ka";
|
|
1514
|
-
en: "en";
|
|
1515
|
-
ru: "ru";
|
|
1516
|
-
}>;
|
|
1517
|
-
text: z.ZodString;
|
|
1518
|
-
}, z.core.$strip>;
|
|
1519
1638
|
export declare const zMemberResponse: z.ZodObject<{
|
|
1520
1639
|
memberId: z.ZodUUID;
|
|
1521
1640
|
firstName: z.ZodString;
|
|
@@ -1913,19 +2032,47 @@ export declare const zListingGridView: z.ZodObject<{
|
|
|
1913
2032
|
title: z.ZodOptional<z.ZodString>;
|
|
1914
2033
|
region: z.ZodOptional<z.ZodObject<{
|
|
1915
2034
|
id: z.ZodCoercedBigInt<unknown>;
|
|
1916
|
-
names: z.
|
|
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>>;
|
|
1917
2043
|
}, z.core.$strip>>;
|
|
1918
2044
|
district: z.ZodOptional<z.ZodObject<{
|
|
1919
2045
|
id: z.ZodCoercedBigInt<unknown>;
|
|
1920
|
-
names: z.
|
|
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>>;
|
|
1921
2054
|
}, z.core.$strip>>;
|
|
1922
2055
|
subdistrict: z.ZodOptional<z.ZodObject<{
|
|
1923
2056
|
id: z.ZodCoercedBigInt<unknown>;
|
|
1924
|
-
names: z.
|
|
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>>;
|
|
1925
2065
|
}, z.core.$strip>>;
|
|
1926
2066
|
street: z.ZodOptional<z.ZodObject<{
|
|
1927
2067
|
id: z.ZodCoercedBigInt<unknown>;
|
|
1928
|
-
names: z.
|
|
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>>;
|
|
1929
2076
|
}, z.core.$strip>>;
|
|
1930
2077
|
cover: z.ZodOptional<z.ZodString>;
|
|
1931
2078
|
agreementType: z.ZodOptional<z.ZodEnum<{
|
|
@@ -2012,19 +2159,47 @@ export declare const zPagedModelListingGridView: z.ZodObject<{
|
|
|
2012
2159
|
title: z.ZodOptional<z.ZodString>;
|
|
2013
2160
|
region: z.ZodOptional<z.ZodObject<{
|
|
2014
2161
|
id: z.ZodCoercedBigInt<unknown>;
|
|
2015
|
-
names: z.
|
|
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>>;
|
|
2016
2170
|
}, z.core.$strip>>;
|
|
2017
2171
|
district: z.ZodOptional<z.ZodObject<{
|
|
2018
2172
|
id: z.ZodCoercedBigInt<unknown>;
|
|
2019
|
-
names: z.
|
|
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>>;
|
|
2020
2181
|
}, z.core.$strip>>;
|
|
2021
2182
|
subdistrict: z.ZodOptional<z.ZodObject<{
|
|
2022
2183
|
id: z.ZodCoercedBigInt<unknown>;
|
|
2023
|
-
names: z.
|
|
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>>;
|
|
2024
2192
|
}, z.core.$strip>>;
|
|
2025
2193
|
street: z.ZodOptional<z.ZodObject<{
|
|
2026
2194
|
id: z.ZodCoercedBigInt<unknown>;
|
|
2027
|
-
names: z.
|
|
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>>;
|
|
2028
2203
|
}, z.core.$strip>>;
|
|
2029
2204
|
cover: z.ZodOptional<z.ZodString>;
|
|
2030
2205
|
agreementType: z.ZodOptional<z.ZodEnum<{
|
|
@@ -2122,19 +2297,47 @@ export declare const zIntentResponse: z.ZodObject<{
|
|
|
2122
2297
|
numberOfRooms: z.ZodOptional<z.ZodInt>;
|
|
2123
2298
|
region: z.ZodOptional<z.ZodObject<{
|
|
2124
2299
|
id: z.ZodCoercedBigInt<unknown>;
|
|
2125
|
-
names: z.
|
|
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>>;
|
|
2126
2308
|
}, z.core.$strip>>;
|
|
2127
2309
|
district: z.ZodOptional<z.ZodObject<{
|
|
2128
2310
|
id: z.ZodCoercedBigInt<unknown>;
|
|
2129
|
-
names: z.
|
|
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>>;
|
|
2130
2319
|
}, z.core.$strip>>;
|
|
2131
2320
|
subDistrict: z.ZodOptional<z.ZodObject<{
|
|
2132
2321
|
id: z.ZodCoercedBigInt<unknown>;
|
|
2133
|
-
names: z.
|
|
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>>;
|
|
2134
2330
|
}, z.core.$strip>>;
|
|
2135
2331
|
street: z.ZodOptional<z.ZodObject<{
|
|
2136
2332
|
id: z.ZodCoercedBigInt<unknown>;
|
|
2137
|
-
names: z.
|
|
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>>;
|
|
2138
2341
|
}, z.core.$strip>>;
|
|
2139
2342
|
}, z.core.$strip>;
|
|
2140
2343
|
export declare const zLeadGridResponse: z.ZodObject<{
|
|
@@ -2213,19 +2416,47 @@ export declare const zLeadGridResponse: z.ZodObject<{
|
|
|
2213
2416
|
numberOfRooms: z.ZodOptional<z.ZodInt>;
|
|
2214
2417
|
region: z.ZodOptional<z.ZodObject<{
|
|
2215
2418
|
id: z.ZodCoercedBigInt<unknown>;
|
|
2216
|
-
names: z.
|
|
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>>;
|
|
2217
2427
|
}, z.core.$strip>>;
|
|
2218
2428
|
district: z.ZodOptional<z.ZodObject<{
|
|
2219
2429
|
id: z.ZodCoercedBigInt<unknown>;
|
|
2220
|
-
names: z.
|
|
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>>;
|
|
2221
2438
|
}, z.core.$strip>>;
|
|
2222
2439
|
subDistrict: z.ZodOptional<z.ZodObject<{
|
|
2223
2440
|
id: z.ZodCoercedBigInt<unknown>;
|
|
2224
|
-
names: z.
|
|
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>>;
|
|
2225
2449
|
}, z.core.$strip>>;
|
|
2226
2450
|
street: z.ZodOptional<z.ZodObject<{
|
|
2227
2451
|
id: z.ZodCoercedBigInt<unknown>;
|
|
2228
|
-
names: z.
|
|
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>>;
|
|
2229
2460
|
}, z.core.$strip>>;
|
|
2230
2461
|
}, z.core.$strip>>>;
|
|
2231
2462
|
}, z.core.$strip>;
|
|
@@ -2306,19 +2537,47 @@ export declare const zPagedModelLeadGridResponse: z.ZodObject<{
|
|
|
2306
2537
|
numberOfRooms: z.ZodOptional<z.ZodInt>;
|
|
2307
2538
|
region: z.ZodOptional<z.ZodObject<{
|
|
2308
2539
|
id: z.ZodCoercedBigInt<unknown>;
|
|
2309
|
-
names: z.
|
|
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>>;
|
|
2310
2548
|
}, z.core.$strip>>;
|
|
2311
2549
|
district: z.ZodOptional<z.ZodObject<{
|
|
2312
2550
|
id: z.ZodCoercedBigInt<unknown>;
|
|
2313
|
-
names: z.
|
|
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>>;
|
|
2314
2559
|
}, z.core.$strip>>;
|
|
2315
2560
|
subDistrict: z.ZodOptional<z.ZodObject<{
|
|
2316
2561
|
id: z.ZodCoercedBigInt<unknown>;
|
|
2317
|
-
names: z.
|
|
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>>;
|
|
2318
2570
|
}, z.core.$strip>>;
|
|
2319
2571
|
street: z.ZodOptional<z.ZodObject<{
|
|
2320
2572
|
id: z.ZodCoercedBigInt<unknown>;
|
|
2321
|
-
names: z.
|
|
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>>;
|
|
2322
2581
|
}, z.core.$strip>>;
|
|
2323
2582
|
}, z.core.$strip>>>;
|
|
2324
2583
|
}, z.core.$strip>>>;
|
|
@@ -2609,19 +2868,47 @@ export declare const zClientInterestResponse: z.ZodObject<{
|
|
|
2609
2868
|
livingAreaMax: z.ZodOptional<z.ZodNumber>;
|
|
2610
2869
|
region: z.ZodOptional<z.ZodObject<{
|
|
2611
2870
|
id: z.ZodCoercedBigInt<unknown>;
|
|
2612
|
-
names: z.
|
|
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>>;
|
|
2613
2879
|
}, z.core.$strip>>;
|
|
2614
2880
|
district: z.ZodOptional<z.ZodObject<{
|
|
2615
2881
|
id: z.ZodCoercedBigInt<unknown>;
|
|
2616
|
-
names: z.
|
|
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>>;
|
|
2617
2890
|
}, z.core.$strip>>;
|
|
2618
2891
|
subDistrict: z.ZodOptional<z.ZodObject<{
|
|
2619
2892
|
id: z.ZodCoercedBigInt<unknown>;
|
|
2620
|
-
names: z.
|
|
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>>;
|
|
2621
2901
|
}, z.core.$strip>>;
|
|
2622
2902
|
street: z.ZodOptional<z.ZodObject<{
|
|
2623
2903
|
id: z.ZodCoercedBigInt<unknown>;
|
|
2624
|
-
names: z.
|
|
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>>;
|
|
2625
2912
|
}, z.core.$strip>>;
|
|
2626
2913
|
active: z.ZodBoolean;
|
|
2627
2914
|
}, z.core.$strip>;
|
|
@@ -2743,19 +3030,47 @@ export declare const zPropertyDetailsResponse: z.ZodObject<{
|
|
|
2743
3030
|
address: z.ZodObject<{
|
|
2744
3031
|
region: z.ZodObject<{
|
|
2745
3032
|
id: z.ZodCoercedBigInt<unknown>;
|
|
2746
|
-
names: z.
|
|
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>>;
|
|
2747
3041
|
}, z.core.$strip>;
|
|
2748
3042
|
district: z.ZodObject<{
|
|
2749
3043
|
id: z.ZodCoercedBigInt<unknown>;
|
|
2750
|
-
names: z.
|
|
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>>;
|
|
2751
3052
|
}, z.core.$strip>;
|
|
2752
3053
|
subdistrict: z.ZodObject<{
|
|
2753
3054
|
id: z.ZodCoercedBigInt<unknown>;
|
|
2754
|
-
names: z.
|
|
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>>;
|
|
2755
3063
|
}, z.core.$strip>;
|
|
2756
3064
|
street: z.ZodOptional<z.ZodObject<{
|
|
2757
3065
|
id: z.ZodCoercedBigInt<unknown>;
|
|
2758
|
-
names: z.
|
|
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>>;
|
|
2759
3074
|
}, z.core.$strip>>;
|
|
2760
3075
|
cadastreCode: z.ZodOptional<z.ZodString>;
|
|
2761
3076
|
lat: z.ZodNumber;
|
|
@@ -2804,19 +3119,47 @@ export declare const zClientPropertyResponse: z.ZodObject<{
|
|
|
2804
3119
|
address: z.ZodObject<{
|
|
2805
3120
|
region: z.ZodObject<{
|
|
2806
3121
|
id: z.ZodCoercedBigInt<unknown>;
|
|
2807
|
-
names: z.
|
|
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>>;
|
|
2808
3130
|
}, z.core.$strip>;
|
|
2809
3131
|
district: z.ZodObject<{
|
|
2810
3132
|
id: z.ZodCoercedBigInt<unknown>;
|
|
2811
|
-
names: z.
|
|
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>>;
|
|
2812
3141
|
}, z.core.$strip>;
|
|
2813
3142
|
subdistrict: z.ZodObject<{
|
|
2814
3143
|
id: z.ZodCoercedBigInt<unknown>;
|
|
2815
|
-
names: z.
|
|
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>>;
|
|
2816
3152
|
}, z.core.$strip>;
|
|
2817
3153
|
street: z.ZodOptional<z.ZodObject<{
|
|
2818
3154
|
id: z.ZodCoercedBigInt<unknown>;
|
|
2819
|
-
names: z.
|
|
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>>;
|
|
2820
3163
|
}, z.core.$strip>>;
|
|
2821
3164
|
cadastreCode: z.ZodOptional<z.ZodString>;
|
|
2822
3165
|
lat: z.ZodNumber;
|
|
@@ -2981,19 +3324,47 @@ export declare const zClient360Response: z.ZodObject<{
|
|
|
2981
3324
|
livingAreaMax: z.ZodOptional<z.ZodNumber>;
|
|
2982
3325
|
region: z.ZodOptional<z.ZodObject<{
|
|
2983
3326
|
id: z.ZodCoercedBigInt<unknown>;
|
|
2984
|
-
names: z.
|
|
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>>;
|
|
2985
3335
|
}, z.core.$strip>>;
|
|
2986
3336
|
district: z.ZodOptional<z.ZodObject<{
|
|
2987
3337
|
id: z.ZodCoercedBigInt<unknown>;
|
|
2988
|
-
names: z.
|
|
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>>;
|
|
2989
3346
|
}, z.core.$strip>>;
|
|
2990
3347
|
subDistrict: z.ZodOptional<z.ZodObject<{
|
|
2991
3348
|
id: z.ZodCoercedBigInt<unknown>;
|
|
2992
|
-
names: z.
|
|
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>>;
|
|
2993
3357
|
}, z.core.$strip>>;
|
|
2994
3358
|
street: z.ZodOptional<z.ZodObject<{
|
|
2995
3359
|
id: z.ZodCoercedBigInt<unknown>;
|
|
2996
|
-
names: z.
|
|
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>>;
|
|
2997
3368
|
}, z.core.$strip>>;
|
|
2998
3369
|
active: z.ZodBoolean;
|
|
2999
3370
|
}, z.core.$strip>>;
|
|
@@ -3039,19 +3410,47 @@ export declare const zClient360Response: z.ZodObject<{
|
|
|
3039
3410
|
address: z.ZodObject<{
|
|
3040
3411
|
region: z.ZodObject<{
|
|
3041
3412
|
id: z.ZodCoercedBigInt<unknown>;
|
|
3042
|
-
names: z.
|
|
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>>;
|
|
3043
3421
|
}, z.core.$strip>;
|
|
3044
3422
|
district: z.ZodObject<{
|
|
3045
3423
|
id: z.ZodCoercedBigInt<unknown>;
|
|
3046
|
-
names: z.
|
|
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>>;
|
|
3047
3432
|
}, z.core.$strip>;
|
|
3048
3433
|
subdistrict: z.ZodObject<{
|
|
3049
3434
|
id: z.ZodCoercedBigInt<unknown>;
|
|
3050
|
-
names: z.
|
|
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>>;
|
|
3051
3443
|
}, z.core.$strip>;
|
|
3052
3444
|
street: z.ZodOptional<z.ZodObject<{
|
|
3053
3445
|
id: z.ZodCoercedBigInt<unknown>;
|
|
3054
|
-
names: z.
|
|
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>>;
|
|
3055
3454
|
}, z.core.$strip>>;
|
|
3056
3455
|
cadastreCode: z.ZodOptional<z.ZodString>;
|
|
3057
3456
|
lat: z.ZodNumber;
|
|
@@ -5199,19 +5598,47 @@ export declare const zGetPublicRecomendationsByRecommendationsIdItemsResponse: z
|
|
|
5199
5598
|
address: z.ZodObject<{
|
|
5200
5599
|
region: z.ZodObject<{
|
|
5201
5600
|
id: z.ZodCoercedBigInt<unknown>;
|
|
5202
|
-
names: z.
|
|
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>>;
|
|
5203
5609
|
}, z.core.$strip>;
|
|
5204
5610
|
district: z.ZodObject<{
|
|
5205
5611
|
id: z.ZodCoercedBigInt<unknown>;
|
|
5206
|
-
names: z.
|
|
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>>;
|
|
5207
5620
|
}, z.core.$strip>;
|
|
5208
5621
|
subdistrict: z.ZodObject<{
|
|
5209
5622
|
id: z.ZodCoercedBigInt<unknown>;
|
|
5210
|
-
names: z.
|
|
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>>;
|
|
5211
5631
|
}, z.core.$strip>;
|
|
5212
5632
|
street: z.ZodOptional<z.ZodObject<{
|
|
5213
5633
|
id: z.ZodCoercedBigInt<unknown>;
|
|
5214
|
-
names: z.
|
|
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>>;
|
|
5215
5642
|
}, z.core.$strip>>;
|
|
5216
5643
|
cadastreCode: z.ZodOptional<z.ZodString>;
|
|
5217
5644
|
lat: z.ZodNumber;
|
|
@@ -5838,19 +6265,47 @@ export declare const zGetListingResponse: z.ZodObject<{
|
|
|
5838
6265
|
title: z.ZodOptional<z.ZodString>;
|
|
5839
6266
|
region: z.ZodOptional<z.ZodObject<{
|
|
5840
6267
|
id: z.ZodCoercedBigInt<unknown>;
|
|
5841
|
-
names: z.
|
|
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>>;
|
|
5842
6276
|
}, z.core.$strip>>;
|
|
5843
6277
|
district: z.ZodOptional<z.ZodObject<{
|
|
5844
6278
|
id: z.ZodCoercedBigInt<unknown>;
|
|
5845
|
-
names: z.
|
|
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>>;
|
|
5846
6287
|
}, z.core.$strip>>;
|
|
5847
6288
|
subdistrict: z.ZodOptional<z.ZodObject<{
|
|
5848
6289
|
id: z.ZodCoercedBigInt<unknown>;
|
|
5849
|
-
names: z.
|
|
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>>;
|
|
5850
6298
|
}, z.core.$strip>>;
|
|
5851
6299
|
street: z.ZodOptional<z.ZodObject<{
|
|
5852
6300
|
id: z.ZodCoercedBigInt<unknown>;
|
|
5853
|
-
names: z.
|
|
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>>;
|
|
5854
6309
|
}, z.core.$strip>>;
|
|
5855
6310
|
cover: z.ZodOptional<z.ZodString>;
|
|
5856
6311
|
agreementType: z.ZodOptional<z.ZodEnum<{
|
|
@@ -5953,19 +6408,47 @@ export declare const zGetListingByPropertyIdResponse: z.ZodObject<{
|
|
|
5953
6408
|
title: z.ZodOptional<z.ZodString>;
|
|
5954
6409
|
region: z.ZodOptional<z.ZodObject<{
|
|
5955
6410
|
id: z.ZodCoercedBigInt<unknown>;
|
|
5956
|
-
names: z.
|
|
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>>;
|
|
5957
6419
|
}, z.core.$strip>>;
|
|
5958
6420
|
district: z.ZodOptional<z.ZodObject<{
|
|
5959
6421
|
id: z.ZodCoercedBigInt<unknown>;
|
|
5960
|
-
names: z.
|
|
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>>;
|
|
5961
6430
|
}, z.core.$strip>>;
|
|
5962
6431
|
subdistrict: z.ZodOptional<z.ZodObject<{
|
|
5963
6432
|
id: z.ZodCoercedBigInt<unknown>;
|
|
5964
|
-
names: z.
|
|
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>>;
|
|
5965
6441
|
}, z.core.$strip>>;
|
|
5966
6442
|
street: z.ZodOptional<z.ZodObject<{
|
|
5967
6443
|
id: z.ZodCoercedBigInt<unknown>;
|
|
5968
|
-
names: z.
|
|
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>>;
|
|
5969
6452
|
}, z.core.$strip>>;
|
|
5970
6453
|
cover: z.ZodOptional<z.ZodString>;
|
|
5971
6454
|
agreementType: z.ZodOptional<z.ZodEnum<{
|
|
@@ -6254,19 +6737,47 @@ export declare const zGetLeadResponse: z.ZodObject<{
|
|
|
6254
6737
|
numberOfRooms: z.ZodOptional<z.ZodInt>;
|
|
6255
6738
|
region: z.ZodOptional<z.ZodObject<{
|
|
6256
6739
|
id: z.ZodCoercedBigInt<unknown>;
|
|
6257
|
-
names: z.
|
|
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>>;
|
|
6258
6748
|
}, z.core.$strip>>;
|
|
6259
6749
|
district: z.ZodOptional<z.ZodObject<{
|
|
6260
6750
|
id: z.ZodCoercedBigInt<unknown>;
|
|
6261
|
-
names: z.
|
|
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>>;
|
|
6262
6759
|
}, z.core.$strip>>;
|
|
6263
6760
|
subDistrict: z.ZodOptional<z.ZodObject<{
|
|
6264
6761
|
id: z.ZodCoercedBigInt<unknown>;
|
|
6265
|
-
names: z.
|
|
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>>;
|
|
6266
6770
|
}, z.core.$strip>>;
|
|
6267
6771
|
street: z.ZodOptional<z.ZodObject<{
|
|
6268
6772
|
id: z.ZodCoercedBigInt<unknown>;
|
|
6269
|
-
names: z.
|
|
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>>;
|
|
6270
6781
|
}, z.core.$strip>>;
|
|
6271
6782
|
}, z.core.$strip>>>;
|
|
6272
6783
|
}, z.core.$strip>>>;
|
|
@@ -6363,19 +6874,47 @@ export declare const zGetLeadByLeadIdResponse: z.ZodObject<{
|
|
|
6363
6874
|
numberOfRooms: z.ZodOptional<z.ZodInt>;
|
|
6364
6875
|
region: z.ZodOptional<z.ZodObject<{
|
|
6365
6876
|
id: z.ZodCoercedBigInt<unknown>;
|
|
6366
|
-
names: z.
|
|
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>>;
|
|
6367
6885
|
}, z.core.$strip>>;
|
|
6368
6886
|
district: z.ZodOptional<z.ZodObject<{
|
|
6369
6887
|
id: z.ZodCoercedBigInt<unknown>;
|
|
6370
|
-
names: z.
|
|
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>>;
|
|
6371
6896
|
}, z.core.$strip>>;
|
|
6372
6897
|
subDistrict: z.ZodOptional<z.ZodObject<{
|
|
6373
6898
|
id: z.ZodCoercedBigInt<unknown>;
|
|
6374
|
-
names: z.
|
|
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>>;
|
|
6375
6907
|
}, z.core.$strip>>;
|
|
6376
6908
|
street: z.ZodOptional<z.ZodObject<{
|
|
6377
6909
|
id: z.ZodCoercedBigInt<unknown>;
|
|
6378
|
-
names: z.
|
|
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>>;
|
|
6379
6918
|
}, z.core.$strip>>;
|
|
6380
6919
|
}, z.core.$strip>>>;
|
|
6381
6920
|
}, z.core.$strip>;
|
|
@@ -6607,19 +7146,47 @@ export declare const zGetClientsByClientIdRecommendationsByRecommendationsIdResp
|
|
|
6607
7146
|
address: z.ZodObject<{
|
|
6608
7147
|
region: z.ZodObject<{
|
|
6609
7148
|
id: z.ZodCoercedBigInt<unknown>;
|
|
6610
|
-
names: z.
|
|
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>>;
|
|
6611
7157
|
}, z.core.$strip>;
|
|
6612
7158
|
district: z.ZodObject<{
|
|
6613
7159
|
id: z.ZodCoercedBigInt<unknown>;
|
|
6614
|
-
names: z.
|
|
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>>;
|
|
6615
7168
|
}, z.core.$strip>;
|
|
6616
7169
|
subdistrict: z.ZodObject<{
|
|
6617
7170
|
id: z.ZodCoercedBigInt<unknown>;
|
|
6618
|
-
names: z.
|
|
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>>;
|
|
6619
7179
|
}, z.core.$strip>;
|
|
6620
7180
|
street: z.ZodOptional<z.ZodObject<{
|
|
6621
7181
|
id: z.ZodCoercedBigInt<unknown>;
|
|
6622
|
-
names: z.
|
|
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>>;
|
|
6623
7190
|
}, z.core.$strip>>;
|
|
6624
7191
|
cadastreCode: z.ZodOptional<z.ZodString>;
|
|
6625
7192
|
lat: z.ZodNumber;
|
|
@@ -6716,19 +7283,47 @@ export declare const zGetClientsByClientIdRecommendationsInterestByInterestIdRes
|
|
|
6716
7283
|
address: z.ZodObject<{
|
|
6717
7284
|
region: z.ZodObject<{
|
|
6718
7285
|
id: z.ZodCoercedBigInt<unknown>;
|
|
6719
|
-
names: z.
|
|
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>>;
|
|
6720
7294
|
}, z.core.$strip>;
|
|
6721
7295
|
district: z.ZodObject<{
|
|
6722
7296
|
id: z.ZodCoercedBigInt<unknown>;
|
|
6723
|
-
names: z.
|
|
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>>;
|
|
6724
7305
|
}, z.core.$strip>;
|
|
6725
7306
|
subdistrict: z.ZodObject<{
|
|
6726
7307
|
id: z.ZodCoercedBigInt<unknown>;
|
|
6727
|
-
names: z.
|
|
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>>;
|
|
6728
7316
|
}, z.core.$strip>;
|
|
6729
7317
|
street: z.ZodOptional<z.ZodObject<{
|
|
6730
7318
|
id: z.ZodCoercedBigInt<unknown>;
|
|
6731
|
-
names: z.
|
|
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>>;
|
|
6732
7327
|
}, z.core.$strip>>;
|
|
6733
7328
|
cadastreCode: z.ZodOptional<z.ZodString>;
|
|
6734
7329
|
lat: z.ZodNumber;
|
|
@@ -6994,19 +7589,47 @@ export declare const zGetClientByClientId360Response: z.ZodObject<{
|
|
|
6994
7589
|
livingAreaMax: z.ZodOptional<z.ZodNumber>;
|
|
6995
7590
|
region: z.ZodOptional<z.ZodObject<{
|
|
6996
7591
|
id: z.ZodCoercedBigInt<unknown>;
|
|
6997
|
-
names: z.
|
|
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>>;
|
|
6998
7600
|
}, z.core.$strip>>;
|
|
6999
7601
|
district: z.ZodOptional<z.ZodObject<{
|
|
7000
7602
|
id: z.ZodCoercedBigInt<unknown>;
|
|
7001
|
-
names: z.
|
|
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>>;
|
|
7002
7611
|
}, z.core.$strip>>;
|
|
7003
7612
|
subDistrict: z.ZodOptional<z.ZodObject<{
|
|
7004
7613
|
id: z.ZodCoercedBigInt<unknown>;
|
|
7005
|
-
names: z.
|
|
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>>;
|
|
7006
7622
|
}, z.core.$strip>>;
|
|
7007
7623
|
street: z.ZodOptional<z.ZodObject<{
|
|
7008
7624
|
id: z.ZodCoercedBigInt<unknown>;
|
|
7009
|
-
names: z.
|
|
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>>;
|
|
7010
7633
|
}, z.core.$strip>>;
|
|
7011
7634
|
active: z.ZodBoolean;
|
|
7012
7635
|
}, z.core.$strip>>;
|
|
@@ -7052,19 +7675,47 @@ export declare const zGetClientByClientId360Response: z.ZodObject<{
|
|
|
7052
7675
|
address: z.ZodObject<{
|
|
7053
7676
|
region: z.ZodObject<{
|
|
7054
7677
|
id: z.ZodCoercedBigInt<unknown>;
|
|
7055
|
-
names: z.
|
|
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>>;
|
|
7056
7686
|
}, z.core.$strip>;
|
|
7057
7687
|
district: z.ZodObject<{
|
|
7058
7688
|
id: z.ZodCoercedBigInt<unknown>;
|
|
7059
|
-
names: z.
|
|
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>>;
|
|
7060
7697
|
}, z.core.$strip>;
|
|
7061
7698
|
subdistrict: z.ZodObject<{
|
|
7062
7699
|
id: z.ZodCoercedBigInt<unknown>;
|
|
7063
|
-
names: z.
|
|
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>>;
|
|
7064
7708
|
}, z.core.$strip>;
|
|
7065
7709
|
street: z.ZodOptional<z.ZodObject<{
|
|
7066
7710
|
id: z.ZodCoercedBigInt<unknown>;
|
|
7067
|
-
names: z.
|
|
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>>;
|
|
7068
7719
|
}, z.core.$strip>>;
|
|
7069
7720
|
cadastreCode: z.ZodOptional<z.ZodString>;
|
|
7070
7721
|
lat: z.ZodNumber;
|