@homespot-sdk/core 0.0.215 → 0.0.217
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/rem/index.d.ts +2 -2
- package/dist/rem/index.d.ts.map +1 -1
- package/dist/rem/index.js +1 -1
- package/dist/rem/index.js.map +1 -1
- package/dist/rem/schemas.gen.d.ts +185 -72
- package/dist/rem/schemas.gen.d.ts.map +1 -1
- package/dist/rem/schemas.gen.js +184 -88
- package/dist/rem/schemas.gen.js.map +1 -1
- package/dist/rem/sdk.gen.d.ts +21 -8
- package/dist/rem/sdk.gen.d.ts.map +1 -1
- package/dist/rem/sdk.gen.js +119 -14
- package/dist/rem/sdk.gen.js.map +1 -1
- package/dist/rem/types.gen.d.ts +283 -78
- package/dist/rem/types.gen.d.ts.map +1 -1
- package/dist/rem/zod.gen.d.ts +775 -385
- package/dist/rem/zod.gen.d.ts.map +1 -1
- package/dist/rem/zod.gen.js +289 -115
- package/dist/rem/zod.gen.js.map +1 -1
- package/package.json +1 -1
package/dist/rem/zod.gen.d.ts
CHANGED
|
@@ -48,7 +48,22 @@ export declare const zCreateAgencyRequest: z.ZodObject<{
|
|
|
48
48
|
subdistrict: z.ZodString;
|
|
49
49
|
street: z.ZodString;
|
|
50
50
|
}, z.core.$strip>;
|
|
51
|
-
|
|
51
|
+
}, z.core.$strip>;
|
|
52
|
+
export declare const zPresignedUrlResponse: z.ZodObject<{
|
|
53
|
+
originalName: z.ZodString;
|
|
54
|
+
key: z.ZodString;
|
|
55
|
+
url: z.ZodString;
|
|
56
|
+
}, z.core.$strip>;
|
|
57
|
+
export declare const zPresignedUrlsResponse: z.ZodObject<{
|
|
58
|
+
data: z.ZodArray<z.ZodObject<{
|
|
59
|
+
originalName: z.ZodString;
|
|
60
|
+
key: z.ZodString;
|
|
61
|
+
url: z.ZodString;
|
|
62
|
+
}, z.core.$strip>>;
|
|
63
|
+
}, z.core.$strip>;
|
|
64
|
+
export declare const zUploadAcknowledgmentResponse: z.ZodObject<{
|
|
65
|
+
success: z.ZodArray<z.ZodString>;
|
|
66
|
+
fail: z.ZodArray<z.ZodString>;
|
|
52
67
|
}, z.core.$strip>;
|
|
53
68
|
export declare const zTransferFundsRequest: z.ZodObject<{
|
|
54
69
|
transferTo: z.ZodUUID;
|
|
@@ -128,21 +143,14 @@ export declare const zInterestId: z.ZodObject<{
|
|
|
128
143
|
export declare const zIdResponseUuid: z.ZodObject<{
|
|
129
144
|
id: z.ZodUUID;
|
|
130
145
|
}, z.core.$strip>;
|
|
131
|
-
export declare const
|
|
132
|
-
|
|
133
|
-
key: z.ZodString;
|
|
134
|
-
url: z.ZodString;
|
|
146
|
+
export declare const zWebsiteRequest: z.ZodObject<{
|
|
147
|
+
url: z.ZodOptional<z.ZodString>;
|
|
135
148
|
}, z.core.$strip>;
|
|
136
|
-
export declare const
|
|
137
|
-
|
|
138
|
-
originalName: z.ZodString;
|
|
139
|
-
key: z.ZodString;
|
|
140
|
-
url: z.ZodString;
|
|
141
|
-
}, z.core.$strip>>;
|
|
149
|
+
export declare const zThemeRequest: z.ZodObject<{
|
|
150
|
+
primaryColor: z.ZodInt;
|
|
142
151
|
}, z.core.$strip>;
|
|
143
|
-
export declare const
|
|
144
|
-
|
|
145
|
-
fail: z.ZodArray<z.ZodString>;
|
|
152
|
+
export declare const zEstablishedYearRequest: z.ZodObject<{
|
|
153
|
+
year: z.ZodInt;
|
|
146
154
|
}, z.core.$strip>;
|
|
147
155
|
export declare const zUserSummaryViewResponse: z.ZodObject<{
|
|
148
156
|
email: z.ZodString;
|
|
@@ -165,8 +173,8 @@ export declare const zAddressResponse: z.ZodObject<{
|
|
|
165
173
|
lng: z.ZodNumber;
|
|
166
174
|
}, z.core.$strip>;
|
|
167
175
|
export declare const zAgencyContactInfoResponse: z.ZodObject<{
|
|
168
|
-
phone: z.
|
|
169
|
-
email: z.
|
|
176
|
+
phone: z.ZodString;
|
|
177
|
+
email: z.ZodString;
|
|
170
178
|
address: z.ZodOptional<z.ZodString>;
|
|
171
179
|
}, z.core.$strip>;
|
|
172
180
|
export declare const zAgencyStatsResponse: z.ZodObject<{
|
|
@@ -174,6 +182,14 @@ export declare const zAgencyStatsResponse: z.ZodObject<{
|
|
|
174
182
|
listingCount: z.ZodInt;
|
|
175
183
|
operatingSince: z.ZodInt;
|
|
176
184
|
}, z.core.$strip>;
|
|
185
|
+
export declare const zMemberResponse: z.ZodObject<{
|
|
186
|
+
memberId: z.ZodUUID;
|
|
187
|
+
firstName: z.ZodString;
|
|
188
|
+
lastName: z.ZodString;
|
|
189
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
190
|
+
email: z.ZodString;
|
|
191
|
+
profilePictureUrl: z.ZodOptional<z.ZodString>;
|
|
192
|
+
}, z.core.$strip>;
|
|
177
193
|
export declare const zMemberViewResponse: z.ZodObject<{
|
|
178
194
|
userId: z.ZodString;
|
|
179
195
|
firstName: z.ZodString;
|
|
@@ -249,7 +265,6 @@ export declare const zAgencyProfileResponse: z.ZodObject<{
|
|
|
249
265
|
subdistrict: z.ZodString;
|
|
250
266
|
street: z.ZodString;
|
|
251
267
|
}, z.core.$strip>;
|
|
252
|
-
establishedYear: z.ZodInt;
|
|
253
268
|
}, z.core.$strip>;
|
|
254
269
|
export declare const zSchemaEnum: z.ZodEnum<{
|
|
255
270
|
MAYBE: "MAYBE";
|
|
@@ -288,11 +303,10 @@ export declare const zAgencySummaryResponse: z.ZodObject<{
|
|
|
288
303
|
owner: z.ZodString;
|
|
289
304
|
name: z.ZodString;
|
|
290
305
|
email: z.ZodString;
|
|
291
|
-
seats: z.
|
|
306
|
+
seats: z.ZodInt;
|
|
292
307
|
subdomain: z.ZodString;
|
|
293
308
|
phone: z.ZodString;
|
|
294
|
-
|
|
295
|
-
establishedYear: z.ZodString;
|
|
309
|
+
establishedYear: z.ZodOptional<z.ZodInt>;
|
|
296
310
|
status: z.ZodEnum<{
|
|
297
311
|
ACTIVE: "ACTIVE";
|
|
298
312
|
NEW: "NEW";
|
|
@@ -300,6 +314,7 @@ export declare const zAgencySummaryResponse: z.ZodObject<{
|
|
|
300
314
|
INACTIVE: "INACTIVE";
|
|
301
315
|
}>;
|
|
302
316
|
logo: z.ZodOptional<z.ZodString>;
|
|
317
|
+
theme: z.ZodOptional<z.ZodInt>;
|
|
303
318
|
}, z.core.$strip>;
|
|
304
319
|
export declare const zPagedModelAgencySummaryResponse: z.ZodObject<{
|
|
305
320
|
content: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -307,11 +322,10 @@ export declare const zPagedModelAgencySummaryResponse: z.ZodObject<{
|
|
|
307
322
|
owner: z.ZodString;
|
|
308
323
|
name: z.ZodString;
|
|
309
324
|
email: z.ZodString;
|
|
310
|
-
seats: z.
|
|
325
|
+
seats: z.ZodInt;
|
|
311
326
|
subdomain: z.ZodString;
|
|
312
327
|
phone: z.ZodString;
|
|
313
|
-
|
|
314
|
-
establishedYear: z.ZodString;
|
|
328
|
+
establishedYear: z.ZodOptional<z.ZodInt>;
|
|
315
329
|
status: z.ZodEnum<{
|
|
316
330
|
ACTIVE: "ACTIVE";
|
|
317
331
|
NEW: "NEW";
|
|
@@ -319,6 +333,7 @@ export declare const zPagedModelAgencySummaryResponse: z.ZodObject<{
|
|
|
319
333
|
INACTIVE: "INACTIVE";
|
|
320
334
|
}>;
|
|
321
335
|
logo: z.ZodOptional<z.ZodString>;
|
|
336
|
+
theme: z.ZodOptional<z.ZodInt>;
|
|
322
337
|
}, z.core.$strip>>>;
|
|
323
338
|
page: z.ZodOptional<z.ZodObject<{
|
|
324
339
|
size: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
@@ -328,6 +343,135 @@ export declare const zPagedModelAgencySummaryResponse: z.ZodObject<{
|
|
|
328
343
|
}, z.core.$strip>>;
|
|
329
344
|
}, z.core.$strip>;
|
|
330
345
|
export declare const zSchemaEnum3: z.ZodEnum<{
|
|
346
|
+
ka: "ka";
|
|
347
|
+
en: "en";
|
|
348
|
+
ru: "ru";
|
|
349
|
+
}>;
|
|
350
|
+
export declare const zTextRequest: z.ZodObject<{
|
|
351
|
+
language: z.ZodEnum<{
|
|
352
|
+
ka: "ka";
|
|
353
|
+
en: "en";
|
|
354
|
+
ru: "ru";
|
|
355
|
+
}>;
|
|
356
|
+
text: z.ZodOptional<z.ZodString>;
|
|
357
|
+
}, z.core.$strip>;
|
|
358
|
+
export declare const zMultiLangTextRequest: z.ZodObject<{
|
|
359
|
+
data: z.ZodArray<z.ZodObject<{
|
|
360
|
+
language: z.ZodEnum<{
|
|
361
|
+
ka: "ka";
|
|
362
|
+
en: "en";
|
|
363
|
+
ru: "ru";
|
|
364
|
+
}>;
|
|
365
|
+
text: z.ZodOptional<z.ZodString>;
|
|
366
|
+
}, z.core.$strip>>;
|
|
367
|
+
}, z.core.$strip>;
|
|
368
|
+
export declare const zWhitelabelSectionRequest: z.ZodObject<{
|
|
369
|
+
title: z.ZodObject<{
|
|
370
|
+
data: z.ZodArray<z.ZodObject<{
|
|
371
|
+
language: z.ZodEnum<{
|
|
372
|
+
ka: "ka";
|
|
373
|
+
en: "en";
|
|
374
|
+
ru: "ru";
|
|
375
|
+
}>;
|
|
376
|
+
text: z.ZodOptional<z.ZodString>;
|
|
377
|
+
}, z.core.$strip>>;
|
|
378
|
+
}, z.core.$strip>;
|
|
379
|
+
body: z.ZodObject<{
|
|
380
|
+
data: z.ZodArray<z.ZodObject<{
|
|
381
|
+
language: z.ZodEnum<{
|
|
382
|
+
ka: "ka";
|
|
383
|
+
en: "en";
|
|
384
|
+
ru: "ru";
|
|
385
|
+
}>;
|
|
386
|
+
text: z.ZodOptional<z.ZodString>;
|
|
387
|
+
}, z.core.$strip>>;
|
|
388
|
+
}, z.core.$strip>;
|
|
389
|
+
}, z.core.$strip>;
|
|
390
|
+
export declare const zWhitelabelReviewRequest: z.ZodObject<{
|
|
391
|
+
quote: z.ZodObject<{
|
|
392
|
+
data: z.ZodArray<z.ZodObject<{
|
|
393
|
+
language: z.ZodEnum<{
|
|
394
|
+
ka: "ka";
|
|
395
|
+
en: "en";
|
|
396
|
+
ru: "ru";
|
|
397
|
+
}>;
|
|
398
|
+
text: z.ZodOptional<z.ZodString>;
|
|
399
|
+
}, z.core.$strip>>;
|
|
400
|
+
}, z.core.$strip>;
|
|
401
|
+
name: z.ZodObject<{
|
|
402
|
+
data: z.ZodArray<z.ZodObject<{
|
|
403
|
+
language: z.ZodEnum<{
|
|
404
|
+
ka: "ka";
|
|
405
|
+
en: "en";
|
|
406
|
+
ru: "ru";
|
|
407
|
+
}>;
|
|
408
|
+
text: z.ZodOptional<z.ZodString>;
|
|
409
|
+
}, z.core.$strip>>;
|
|
410
|
+
}, z.core.$strip>;
|
|
411
|
+
status: z.ZodObject<{
|
|
412
|
+
data: z.ZodArray<z.ZodObject<{
|
|
413
|
+
language: z.ZodEnum<{
|
|
414
|
+
ka: "ka";
|
|
415
|
+
en: "en";
|
|
416
|
+
ru: "ru";
|
|
417
|
+
}>;
|
|
418
|
+
text: z.ZodOptional<z.ZodString>;
|
|
419
|
+
}, z.core.$strip>>;
|
|
420
|
+
}, z.core.$strip>;
|
|
421
|
+
}, z.core.$strip>;
|
|
422
|
+
export declare const zLangTextResponse: z.ZodObject<{
|
|
423
|
+
language: z.ZodEnum<{
|
|
424
|
+
ka: "ka";
|
|
425
|
+
en: "en";
|
|
426
|
+
ru: "ru";
|
|
427
|
+
}>;
|
|
428
|
+
text: z.ZodString;
|
|
429
|
+
}, z.core.$strip>;
|
|
430
|
+
export declare const zReviewResponse: z.ZodObject<{
|
|
431
|
+
quote: z.ZodOptional<z.ZodObject<{
|
|
432
|
+
language: z.ZodEnum<{
|
|
433
|
+
ka: "ka";
|
|
434
|
+
en: "en";
|
|
435
|
+
ru: "ru";
|
|
436
|
+
}>;
|
|
437
|
+
text: z.ZodString;
|
|
438
|
+
}, z.core.$strip>>;
|
|
439
|
+
name: z.ZodOptional<z.ZodObject<{
|
|
440
|
+
language: z.ZodEnum<{
|
|
441
|
+
ka: "ka";
|
|
442
|
+
en: "en";
|
|
443
|
+
ru: "ru";
|
|
444
|
+
}>;
|
|
445
|
+
text: z.ZodString;
|
|
446
|
+
}, z.core.$strip>>;
|
|
447
|
+
status: z.ZodOptional<z.ZodObject<{
|
|
448
|
+
language: z.ZodEnum<{
|
|
449
|
+
ka: "ka";
|
|
450
|
+
en: "en";
|
|
451
|
+
ru: "ru";
|
|
452
|
+
}>;
|
|
453
|
+
text: z.ZodString;
|
|
454
|
+
}, z.core.$strip>>;
|
|
455
|
+
}, z.core.$strip>;
|
|
456
|
+
export declare const zSegmentResponse: z.ZodObject<{
|
|
457
|
+
title: z.ZodOptional<z.ZodObject<{
|
|
458
|
+
language: z.ZodEnum<{
|
|
459
|
+
ka: "ka";
|
|
460
|
+
en: "en";
|
|
461
|
+
ru: "ru";
|
|
462
|
+
}>;
|
|
463
|
+
text: z.ZodString;
|
|
464
|
+
}, z.core.$strip>>;
|
|
465
|
+
body: z.ZodOptional<z.ZodObject<{
|
|
466
|
+
language: z.ZodEnum<{
|
|
467
|
+
ka: "ka";
|
|
468
|
+
en: "en";
|
|
469
|
+
ru: "ru";
|
|
470
|
+
}>;
|
|
471
|
+
text: z.ZodString;
|
|
472
|
+
}, z.core.$strip>>;
|
|
473
|
+
}, z.core.$strip>;
|
|
474
|
+
export declare const zSchemaEnum4: z.ZodEnum<{
|
|
331
475
|
CONVERTED: "CONVERTED";
|
|
332
476
|
LOST: "LOST";
|
|
333
477
|
DISQUALIFIED: "DISQUALIFIED";
|
|
@@ -1237,19 +1381,6 @@ export declare const zOnboardClientRequest: z.ZodObject<{
|
|
|
1237
1381
|
}>>;
|
|
1238
1382
|
convertedFromLeadId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
1239
1383
|
}, z.core.$strip>;
|
|
1240
|
-
export declare const zMemberResponse: z.ZodObject<{
|
|
1241
|
-
memberId: z.ZodOptional<z.ZodUUID>;
|
|
1242
|
-
firstName: z.ZodOptional<z.ZodString>;
|
|
1243
|
-
lastName: z.ZodOptional<z.ZodString>;
|
|
1244
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
1245
|
-
email: z.ZodOptional<z.ZodString>;
|
|
1246
|
-
profilePictureUrl: z.ZodOptional<z.ZodString>;
|
|
1247
|
-
contactInfo: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1248
|
-
WHATSAPP: "WHATSAPP";
|
|
1249
|
-
VIBER: "VIBER";
|
|
1250
|
-
PHONE_CALL: "PHONE_CALL";
|
|
1251
|
-
}>>>;
|
|
1252
|
-
}, z.core.$strip>;
|
|
1253
1384
|
export declare const zCommunicationPreferenceResponse: z.ZodObject<{
|
|
1254
1385
|
preferredContactMethod: z.ZodOptional<z.ZodEnum<{
|
|
1255
1386
|
WHATSAPP: "WHATSAPP";
|
|
@@ -1263,33 +1394,21 @@ export declare const zCommunicationPreferenceResponse: z.ZodObject<{
|
|
|
1263
1394
|
}>>;
|
|
1264
1395
|
}, z.core.$strip>;
|
|
1265
1396
|
export declare const zTypeEnum2: z.ZodEnum<{
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
LINKEDIN: "LINKEDIN";
|
|
1397
|
+
JPEG: "JPEG";
|
|
1398
|
+
JPG: "JPG";
|
|
1399
|
+
PNG: "PNG";
|
|
1400
|
+
WEBP: "WEBP";
|
|
1271
1401
|
}>;
|
|
1272
|
-
export declare const
|
|
1402
|
+
export declare const zPhotoRequest: z.ZodObject<{
|
|
1403
|
+
photo: z.ZodString;
|
|
1273
1404
|
type: z.ZodEnum<{
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
LINKEDIN: "LINKEDIN";
|
|
1405
|
+
JPEG: "JPEG";
|
|
1406
|
+
JPG: "JPG";
|
|
1407
|
+
PNG: "PNG";
|
|
1408
|
+
WEBP: "WEBP";
|
|
1279
1409
|
}>;
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
export declare const zSocialMediasRequest: z.ZodObject<{
|
|
1283
|
-
data: z.ZodArray<z.ZodObject<{
|
|
1284
|
-
type: z.ZodEnum<{
|
|
1285
|
-
FACEBOOK: "FACEBOOK";
|
|
1286
|
-
YOUTUBE: "YOUTUBE";
|
|
1287
|
-
INSTAGRAM: "INSTAGRAM";
|
|
1288
|
-
TIKTOK: "TIKTOK";
|
|
1289
|
-
LINKEDIN: "LINKEDIN";
|
|
1290
|
-
}>;
|
|
1291
|
-
url: z.ZodOptional<z.ZodString>;
|
|
1292
|
-
}, z.core.$strip>>;
|
|
1410
|
+
width: z.ZodInt;
|
|
1411
|
+
height: z.ZodOptional<z.ZodInt>;
|
|
1293
1412
|
}, z.core.$strip>;
|
|
1294
1413
|
export declare const zOutcomeEnum: z.ZodEnum<{
|
|
1295
1414
|
CONVERTED: "CONVERTED";
|
|
@@ -1442,49 +1561,204 @@ export declare const zClientListingsResponse: z.ZodObject<{
|
|
|
1442
1561
|
}, z.core.$strip>>;
|
|
1443
1562
|
}, z.core.$strip>;
|
|
1444
1563
|
export declare const zTypeEnum3: z.ZodEnum<{
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1564
|
+
FACEBOOK: "FACEBOOK";
|
|
1565
|
+
YOUTUBE: "YOUTUBE";
|
|
1566
|
+
INSTAGRAM: "INSTAGRAM";
|
|
1567
|
+
TIKTOK: "TIKTOK";
|
|
1568
|
+
LINKEDIN: "LINKEDIN";
|
|
1449
1569
|
}>;
|
|
1450
|
-
export declare const
|
|
1451
|
-
photo: z.ZodString;
|
|
1570
|
+
export declare const zSocialMediaRequest: z.ZodObject<{
|
|
1452
1571
|
type: z.ZodEnum<{
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1572
|
+
FACEBOOK: "FACEBOOK";
|
|
1573
|
+
YOUTUBE: "YOUTUBE";
|
|
1574
|
+
INSTAGRAM: "INSTAGRAM";
|
|
1575
|
+
TIKTOK: "TIKTOK";
|
|
1576
|
+
LINKEDIN: "LINKEDIN";
|
|
1457
1577
|
}>;
|
|
1458
|
-
|
|
1459
|
-
height: z.ZodOptional<z.ZodInt>;
|
|
1578
|
+
url: z.ZodOptional<z.ZodString>;
|
|
1460
1579
|
}, z.core.$strip>;
|
|
1461
|
-
export declare const
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1580
|
+
export declare const zSocialMediasRequest: z.ZodObject<{
|
|
1581
|
+
data: z.ZodArray<z.ZodObject<{
|
|
1582
|
+
type: z.ZodEnum<{
|
|
1583
|
+
FACEBOOK: "FACEBOOK";
|
|
1584
|
+
YOUTUBE: "YOUTUBE";
|
|
1585
|
+
INSTAGRAM: "INSTAGRAM";
|
|
1586
|
+
TIKTOK: "TIKTOK";
|
|
1587
|
+
LINKEDIN: "LINKEDIN";
|
|
1588
|
+
}>;
|
|
1589
|
+
url: z.ZodOptional<z.ZodString>;
|
|
1590
|
+
}, z.core.$strip>>;
|
|
1591
|
+
}, z.core.$strip>;
|
|
1592
|
+
export declare const zSocialLinkResponse: z.ZodObject<{
|
|
1593
|
+
url: z.ZodString;
|
|
1594
|
+
type: z.ZodEnum<{
|
|
1595
|
+
FACEBOOK: "FACEBOOK";
|
|
1596
|
+
YOUTUBE: "YOUTUBE";
|
|
1597
|
+
INSTAGRAM: "INSTAGRAM";
|
|
1598
|
+
TIKTOK: "TIKTOK";
|
|
1599
|
+
LINKEDIN: "LINKEDIN";
|
|
1600
|
+
}>;
|
|
1601
|
+
}, z.core.$strip>;
|
|
1602
|
+
export declare const zWhitelabelResponse: z.ZodObject<{
|
|
1603
|
+
theme: z.ZodInt;
|
|
1604
|
+
name: z.ZodString;
|
|
1605
|
+
logoUrl: z.ZodOptional<z.ZodString>;
|
|
1606
|
+
coverUrl: z.ZodOptional<z.ZodString>;
|
|
1607
|
+
slogan: z.ZodOptional<z.ZodObject<{
|
|
1608
|
+
title: z.ZodOptional<z.ZodObject<{
|
|
1609
|
+
language: z.ZodEnum<{
|
|
1610
|
+
ka: "ka";
|
|
1611
|
+
en: "en";
|
|
1612
|
+
ru: "ru";
|
|
1613
|
+
}>;
|
|
1614
|
+
text: z.ZodString;
|
|
1615
|
+
}, z.core.$strip>>;
|
|
1616
|
+
body: z.ZodOptional<z.ZodObject<{
|
|
1617
|
+
language: z.ZodEnum<{
|
|
1618
|
+
ka: "ka";
|
|
1619
|
+
en: "en";
|
|
1620
|
+
ru: "ru";
|
|
1621
|
+
}>;
|
|
1622
|
+
text: z.ZodString;
|
|
1623
|
+
}, z.core.$strip>>;
|
|
1624
|
+
}, z.core.$strip>>;
|
|
1625
|
+
stats: z.ZodObject<{
|
|
1626
|
+
membersCount: z.ZodInt;
|
|
1627
|
+
listingCount: z.ZodInt;
|
|
1628
|
+
operatingSince: z.ZodInt;
|
|
1629
|
+
}, z.core.$strip>;
|
|
1630
|
+
ourTeam: z.ZodOptional<z.ZodObject<{
|
|
1631
|
+
title: z.ZodOptional<z.ZodObject<{
|
|
1632
|
+
language: z.ZodEnum<{
|
|
1633
|
+
ka: "ka";
|
|
1634
|
+
en: "en";
|
|
1635
|
+
ru: "ru";
|
|
1636
|
+
}>;
|
|
1637
|
+
text: z.ZodString;
|
|
1638
|
+
}, z.core.$strip>>;
|
|
1639
|
+
body: z.ZodOptional<z.ZodObject<{
|
|
1640
|
+
language: z.ZodEnum<{
|
|
1641
|
+
ka: "ka";
|
|
1642
|
+
en: "en";
|
|
1643
|
+
ru: "ru";
|
|
1644
|
+
}>;
|
|
1645
|
+
text: z.ZodString;
|
|
1646
|
+
}, z.core.$strip>>;
|
|
1647
|
+
}, z.core.$strip>>;
|
|
1648
|
+
members: z.ZodArray<z.ZodObject<{
|
|
1649
|
+
memberId: z.ZodUUID;
|
|
1650
|
+
firstName: z.ZodString;
|
|
1651
|
+
lastName: z.ZodString;
|
|
1652
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
1653
|
+
email: z.ZodString;
|
|
1654
|
+
profilePictureUrl: z.ZodOptional<z.ZodString>;
|
|
1655
|
+
}, z.core.$strip>>;
|
|
1656
|
+
review: z.ZodOptional<z.ZodObject<{
|
|
1657
|
+
title: z.ZodOptional<z.ZodObject<{
|
|
1658
|
+
language: z.ZodEnum<{
|
|
1659
|
+
ka: "ka";
|
|
1660
|
+
en: "en";
|
|
1661
|
+
ru: "ru";
|
|
1662
|
+
}>;
|
|
1663
|
+
text: z.ZodString;
|
|
1664
|
+
}, z.core.$strip>>;
|
|
1665
|
+
body: z.ZodOptional<z.ZodObject<{
|
|
1666
|
+
language: z.ZodEnum<{
|
|
1667
|
+
ka: "ka";
|
|
1668
|
+
en: "en";
|
|
1669
|
+
ru: "ru";
|
|
1670
|
+
}>;
|
|
1671
|
+
text: z.ZodString;
|
|
1672
|
+
}, z.core.$strip>>;
|
|
1673
|
+
}, z.core.$strip>>;
|
|
1674
|
+
reviews: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1675
|
+
quote: z.ZodOptional<z.ZodObject<{
|
|
1676
|
+
language: z.ZodEnum<{
|
|
1677
|
+
ka: "ka";
|
|
1678
|
+
en: "en";
|
|
1679
|
+
ru: "ru";
|
|
1680
|
+
}>;
|
|
1681
|
+
text: z.ZodString;
|
|
1682
|
+
}, z.core.$strip>>;
|
|
1683
|
+
name: z.ZodOptional<z.ZodObject<{
|
|
1684
|
+
language: z.ZodEnum<{
|
|
1685
|
+
ka: "ka";
|
|
1686
|
+
en: "en";
|
|
1687
|
+
ru: "ru";
|
|
1688
|
+
}>;
|
|
1689
|
+
text: z.ZodString;
|
|
1690
|
+
}, z.core.$strip>>;
|
|
1691
|
+
status: z.ZodOptional<z.ZodObject<{
|
|
1692
|
+
language: z.ZodEnum<{
|
|
1693
|
+
ka: "ka";
|
|
1694
|
+
en: "en";
|
|
1695
|
+
ru: "ru";
|
|
1696
|
+
}>;
|
|
1697
|
+
text: z.ZodString;
|
|
1698
|
+
}, z.core.$strip>>;
|
|
1699
|
+
}, z.core.$strip>>>;
|
|
1700
|
+
contactUs: z.ZodOptional<z.ZodObject<{
|
|
1701
|
+
title: z.ZodOptional<z.ZodObject<{
|
|
1702
|
+
language: z.ZodEnum<{
|
|
1703
|
+
ka: "ka";
|
|
1704
|
+
en: "en";
|
|
1705
|
+
ru: "ru";
|
|
1706
|
+
}>;
|
|
1707
|
+
text: z.ZodString;
|
|
1708
|
+
}, z.core.$strip>>;
|
|
1709
|
+
body: z.ZodOptional<z.ZodObject<{
|
|
1710
|
+
language: z.ZodEnum<{
|
|
1711
|
+
ka: "ka";
|
|
1712
|
+
en: "en";
|
|
1713
|
+
ru: "ru";
|
|
1714
|
+
}>;
|
|
1715
|
+
text: z.ZodString;
|
|
1716
|
+
}, z.core.$strip>>;
|
|
1717
|
+
}, z.core.$strip>>;
|
|
1718
|
+
agencyInfo: z.ZodOptional<z.ZodObject<{
|
|
1719
|
+
phone: z.ZodString;
|
|
1720
|
+
email: z.ZodString;
|
|
1721
|
+
address: z.ZodOptional<z.ZodString>;
|
|
1722
|
+
}, z.core.$strip>>;
|
|
1723
|
+
socialLinks: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1724
|
+
url: z.ZodString;
|
|
1725
|
+
type: z.ZodEnum<{
|
|
1726
|
+
FACEBOOK: "FACEBOOK";
|
|
1727
|
+
YOUTUBE: "YOUTUBE";
|
|
1728
|
+
INSTAGRAM: "INSTAGRAM";
|
|
1729
|
+
TIKTOK: "TIKTOK";
|
|
1730
|
+
LINKEDIN: "LINKEDIN";
|
|
1731
|
+
}>;
|
|
1732
|
+
}, z.core.$strip>>>;
|
|
1733
|
+
website: z.ZodOptional<z.ZodString>;
|
|
1734
|
+
}, z.core.$strip>;
|
|
1735
|
+
export declare const zStatusEnum: z.ZodEnum<{
|
|
1736
|
+
DRAFT: "DRAFT";
|
|
1737
|
+
AWAITING_CLIENT_REVIEW: "AWAITING_CLIENT_REVIEW";
|
|
1738
|
+
CLOSED: "CLOSED";
|
|
1739
|
+
}>;
|
|
1740
|
+
export declare const zRecommendationResponse: z.ZodObject<{
|
|
1741
|
+
recommendationsId: z.ZodUUID;
|
|
1742
|
+
title: z.ZodString;
|
|
1743
|
+
createdAt: z.ZodISODateTime;
|
|
1744
|
+
status: z.ZodEnum<{
|
|
1745
|
+
DRAFT: "DRAFT";
|
|
1746
|
+
AWAITING_CLIENT_REVIEW: "AWAITING_CLIENT_REVIEW";
|
|
1747
|
+
CLOSED: "CLOSED";
|
|
1748
|
+
}>;
|
|
1749
|
+
recommendations: z.ZodObject<{
|
|
1750
|
+
content: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1751
|
+
recommendationItemId: z.ZodCoercedBigInt<unknown>;
|
|
1752
|
+
decision: z.ZodOptional<z.ZodEnum<{
|
|
1753
|
+
MAYBE: "MAYBE";
|
|
1754
|
+
DISLIKE: "DISLIKE";
|
|
1755
|
+
LIKE: "LIKE";
|
|
1756
|
+
VISIT: "VISIT";
|
|
1757
|
+
}>>;
|
|
1758
|
+
clientNote: z.ZodOptional<z.ZodString>;
|
|
1759
|
+
ownerClientId: z.ZodCoercedBigInt<unknown>;
|
|
1760
|
+
listingId: z.ZodCoercedBigInt<unknown>;
|
|
1761
|
+
externalListingId: z.ZodUUID;
|
|
1488
1762
|
listingType: z.ZodEnum<{
|
|
1489
1763
|
SALE: "SALE";
|
|
1490
1764
|
RENT: "RENT";
|
|
@@ -1652,188 +1926,6 @@ export declare const zPagedModelInvitationViewResponse: z.ZodObject<{
|
|
|
1652
1926
|
totalPages: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
1653
1927
|
}, z.core.$strip>>;
|
|
1654
1928
|
}, z.core.$strip>;
|
|
1655
|
-
export declare const zLanguageEnum: z.ZodEnum<{
|
|
1656
|
-
ka: "ka";
|
|
1657
|
-
en: "en";
|
|
1658
|
-
ru: "ru";
|
|
1659
|
-
}>;
|
|
1660
|
-
export declare const zLangTextResponse: z.ZodObject<{
|
|
1661
|
-
language: z.ZodEnum<{
|
|
1662
|
-
ka: "ka";
|
|
1663
|
-
en: "en";
|
|
1664
|
-
ru: "ru";
|
|
1665
|
-
}>;
|
|
1666
|
-
text: z.ZodString;
|
|
1667
|
-
}, z.core.$strip>;
|
|
1668
|
-
export declare const zReview: z.ZodObject<{
|
|
1669
|
-
quote: z.ZodOptional<z.ZodObject<{
|
|
1670
|
-
language: z.ZodEnum<{
|
|
1671
|
-
ka: "ka";
|
|
1672
|
-
en: "en";
|
|
1673
|
-
ru: "ru";
|
|
1674
|
-
}>;
|
|
1675
|
-
text: z.ZodString;
|
|
1676
|
-
}, z.core.$strip>>;
|
|
1677
|
-
name: z.ZodOptional<z.ZodObject<{
|
|
1678
|
-
language: z.ZodEnum<{
|
|
1679
|
-
ka: "ka";
|
|
1680
|
-
en: "en";
|
|
1681
|
-
ru: "ru";
|
|
1682
|
-
}>;
|
|
1683
|
-
text: z.ZodString;
|
|
1684
|
-
}, z.core.$strip>>;
|
|
1685
|
-
status: z.ZodOptional<z.ZodObject<{
|
|
1686
|
-
language: z.ZodEnum<{
|
|
1687
|
-
ka: "ka";
|
|
1688
|
-
en: "en";
|
|
1689
|
-
ru: "ru";
|
|
1690
|
-
}>;
|
|
1691
|
-
text: z.ZodString;
|
|
1692
|
-
}, z.core.$strip>>;
|
|
1693
|
-
}, z.core.$strip>;
|
|
1694
|
-
export declare const zSegmentResponse: z.ZodObject<{
|
|
1695
|
-
title: z.ZodOptional<z.ZodObject<{
|
|
1696
|
-
language: z.ZodEnum<{
|
|
1697
|
-
ka: "ka";
|
|
1698
|
-
en: "en";
|
|
1699
|
-
ru: "ru";
|
|
1700
|
-
}>;
|
|
1701
|
-
text: z.ZodString;
|
|
1702
|
-
}, z.core.$strip>>;
|
|
1703
|
-
body: z.ZodOptional<z.ZodObject<{
|
|
1704
|
-
language: z.ZodEnum<{
|
|
1705
|
-
ka: "ka";
|
|
1706
|
-
en: "en";
|
|
1707
|
-
ru: "ru";
|
|
1708
|
-
}>;
|
|
1709
|
-
text: z.ZodString;
|
|
1710
|
-
}, z.core.$strip>>;
|
|
1711
|
-
}, z.core.$strip>;
|
|
1712
|
-
export declare const zWhitelabelResponse: z.ZodObject<{
|
|
1713
|
-
theme: z.ZodInt;
|
|
1714
|
-
name: z.ZodString;
|
|
1715
|
-
slogan: z.ZodOptional<z.ZodObject<{
|
|
1716
|
-
title: z.ZodOptional<z.ZodObject<{
|
|
1717
|
-
language: z.ZodEnum<{
|
|
1718
|
-
ka: "ka";
|
|
1719
|
-
en: "en";
|
|
1720
|
-
ru: "ru";
|
|
1721
|
-
}>;
|
|
1722
|
-
text: z.ZodString;
|
|
1723
|
-
}, z.core.$strip>>;
|
|
1724
|
-
body: z.ZodOptional<z.ZodObject<{
|
|
1725
|
-
language: z.ZodEnum<{
|
|
1726
|
-
ka: "ka";
|
|
1727
|
-
en: "en";
|
|
1728
|
-
ru: "ru";
|
|
1729
|
-
}>;
|
|
1730
|
-
text: z.ZodString;
|
|
1731
|
-
}, z.core.$strip>>;
|
|
1732
|
-
}, z.core.$strip>>;
|
|
1733
|
-
stats: z.ZodObject<{
|
|
1734
|
-
membersCount: z.ZodInt;
|
|
1735
|
-
listingCount: z.ZodInt;
|
|
1736
|
-
operatingSince: z.ZodInt;
|
|
1737
|
-
}, z.core.$strip>;
|
|
1738
|
-
ourTeam: z.ZodOptional<z.ZodObject<{
|
|
1739
|
-
title: z.ZodOptional<z.ZodObject<{
|
|
1740
|
-
language: z.ZodEnum<{
|
|
1741
|
-
ka: "ka";
|
|
1742
|
-
en: "en";
|
|
1743
|
-
ru: "ru";
|
|
1744
|
-
}>;
|
|
1745
|
-
text: z.ZodString;
|
|
1746
|
-
}, z.core.$strip>>;
|
|
1747
|
-
body: z.ZodOptional<z.ZodObject<{
|
|
1748
|
-
language: z.ZodEnum<{
|
|
1749
|
-
ka: "ka";
|
|
1750
|
-
en: "en";
|
|
1751
|
-
ru: "ru";
|
|
1752
|
-
}>;
|
|
1753
|
-
text: z.ZodString;
|
|
1754
|
-
}, z.core.$strip>>;
|
|
1755
|
-
}, z.core.$strip>>;
|
|
1756
|
-
members: z.ZodArray<z.ZodObject<{
|
|
1757
|
-
memberId: z.ZodOptional<z.ZodUUID>;
|
|
1758
|
-
firstName: z.ZodOptional<z.ZodString>;
|
|
1759
|
-
lastName: z.ZodOptional<z.ZodString>;
|
|
1760
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
1761
|
-
email: z.ZodOptional<z.ZodString>;
|
|
1762
|
-
profilePictureUrl: z.ZodOptional<z.ZodString>;
|
|
1763
|
-
contactInfo: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1764
|
-
WHATSAPP: "WHATSAPP";
|
|
1765
|
-
VIBER: "VIBER";
|
|
1766
|
-
PHONE_CALL: "PHONE_CALL";
|
|
1767
|
-
}>>>;
|
|
1768
|
-
}, z.core.$strip>>;
|
|
1769
|
-
review: z.ZodOptional<z.ZodObject<{
|
|
1770
|
-
title: z.ZodOptional<z.ZodObject<{
|
|
1771
|
-
language: z.ZodEnum<{
|
|
1772
|
-
ka: "ka";
|
|
1773
|
-
en: "en";
|
|
1774
|
-
ru: "ru";
|
|
1775
|
-
}>;
|
|
1776
|
-
text: z.ZodString;
|
|
1777
|
-
}, z.core.$strip>>;
|
|
1778
|
-
body: z.ZodOptional<z.ZodObject<{
|
|
1779
|
-
language: z.ZodEnum<{
|
|
1780
|
-
ka: "ka";
|
|
1781
|
-
en: "en";
|
|
1782
|
-
ru: "ru";
|
|
1783
|
-
}>;
|
|
1784
|
-
text: z.ZodString;
|
|
1785
|
-
}, z.core.$strip>>;
|
|
1786
|
-
}, z.core.$strip>>;
|
|
1787
|
-
reviews: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1788
|
-
quote: z.ZodOptional<z.ZodObject<{
|
|
1789
|
-
language: z.ZodEnum<{
|
|
1790
|
-
ka: "ka";
|
|
1791
|
-
en: "en";
|
|
1792
|
-
ru: "ru";
|
|
1793
|
-
}>;
|
|
1794
|
-
text: z.ZodString;
|
|
1795
|
-
}, z.core.$strip>>;
|
|
1796
|
-
name: z.ZodOptional<z.ZodObject<{
|
|
1797
|
-
language: z.ZodEnum<{
|
|
1798
|
-
ka: "ka";
|
|
1799
|
-
en: "en";
|
|
1800
|
-
ru: "ru";
|
|
1801
|
-
}>;
|
|
1802
|
-
text: z.ZodString;
|
|
1803
|
-
}, z.core.$strip>>;
|
|
1804
|
-
status: z.ZodOptional<z.ZodObject<{
|
|
1805
|
-
language: z.ZodEnum<{
|
|
1806
|
-
ka: "ka";
|
|
1807
|
-
en: "en";
|
|
1808
|
-
ru: "ru";
|
|
1809
|
-
}>;
|
|
1810
|
-
text: z.ZodString;
|
|
1811
|
-
}, z.core.$strip>>;
|
|
1812
|
-
}, z.core.$strip>>>;
|
|
1813
|
-
contactUs: z.ZodOptional<z.ZodObject<{
|
|
1814
|
-
title: z.ZodOptional<z.ZodObject<{
|
|
1815
|
-
language: z.ZodEnum<{
|
|
1816
|
-
ka: "ka";
|
|
1817
|
-
en: "en";
|
|
1818
|
-
ru: "ru";
|
|
1819
|
-
}>;
|
|
1820
|
-
text: z.ZodString;
|
|
1821
|
-
}, z.core.$strip>>;
|
|
1822
|
-
body: z.ZodOptional<z.ZodObject<{
|
|
1823
|
-
language: z.ZodEnum<{
|
|
1824
|
-
ka: "ka";
|
|
1825
|
-
en: "en";
|
|
1826
|
-
ru: "ru";
|
|
1827
|
-
}>;
|
|
1828
|
-
text: z.ZodString;
|
|
1829
|
-
}, z.core.$strip>>;
|
|
1830
|
-
}, z.core.$strip>>;
|
|
1831
|
-
agencyInfo: z.ZodOptional<z.ZodObject<{
|
|
1832
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
1833
|
-
email: z.ZodOptional<z.ZodString>;
|
|
1834
|
-
address: z.ZodOptional<z.ZodString>;
|
|
1835
|
-
}, z.core.$strip>>;
|
|
1836
|
-
}, z.core.$strip>;
|
|
1837
1929
|
export declare const zSourceTypeEnum: z.ZodEnum<{
|
|
1838
1930
|
UNKNOWN: "UNKNOWN";
|
|
1839
1931
|
SS: "SS";
|
|
@@ -1843,6 +1935,8 @@ export declare const zLeadGridResponse: z.ZodObject<{
|
|
|
1843
1935
|
id: z.ZodCoercedBigInt<unknown>;
|
|
1844
1936
|
createdBy: z.ZodUUID;
|
|
1845
1937
|
assignedTo: z.ZodOptional<z.ZodUUID>;
|
|
1938
|
+
assignedToName: z.ZodOptional<z.ZodString>;
|
|
1939
|
+
assignedToPhoto: z.ZodOptional<z.ZodString>;
|
|
1846
1940
|
status: z.ZodEnum<{
|
|
1847
1941
|
CONVERTED: "CONVERTED";
|
|
1848
1942
|
LOST: "LOST";
|
|
@@ -1917,6 +2011,8 @@ export declare const zPagedModelLeadGridResponse: z.ZodObject<{
|
|
|
1917
2011
|
id: z.ZodCoercedBigInt<unknown>;
|
|
1918
2012
|
createdBy: z.ZodUUID;
|
|
1919
2013
|
assignedTo: z.ZodOptional<z.ZodUUID>;
|
|
2014
|
+
assignedToName: z.ZodOptional<z.ZodString>;
|
|
2015
|
+
assignedToPhoto: z.ZodOptional<z.ZodString>;
|
|
1920
2016
|
status: z.ZodEnum<{
|
|
1921
2017
|
CONVERTED: "CONVERTED";
|
|
1922
2018
|
LOST: "LOST";
|
|
@@ -1998,6 +2094,8 @@ export declare const zClientGridResponse: z.ZodObject<{
|
|
|
1998
2094
|
createdBy: z.ZodUUID;
|
|
1999
2095
|
leadId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2000
2096
|
assignedTo: z.ZodOptional<z.ZodUUID>;
|
|
2097
|
+
assignedToName: z.ZodOptional<z.ZodString>;
|
|
2098
|
+
assignedToPhoto: z.ZodOptional<z.ZodString>;
|
|
2001
2099
|
contactFullName: z.ZodOptional<z.ZodString>;
|
|
2002
2100
|
contactPhoneNumber: z.ZodString;
|
|
2003
2101
|
contactGender: z.ZodOptional<z.ZodEnum<{
|
|
@@ -2037,6 +2135,8 @@ export declare const zPagedModelClientGridResponse: z.ZodObject<{
|
|
|
2037
2135
|
createdBy: z.ZodUUID;
|
|
2038
2136
|
leadId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2039
2137
|
assignedTo: z.ZodOptional<z.ZodUUID>;
|
|
2138
|
+
assignedToName: z.ZodOptional<z.ZodString>;
|
|
2139
|
+
assignedToPhoto: z.ZodOptional<z.ZodString>;
|
|
2040
2140
|
contactFullName: z.ZodOptional<z.ZodString>;
|
|
2041
2141
|
contactPhoneNumber: z.ZodString;
|
|
2042
2142
|
contactGender: z.ZodOptional<z.ZodEnum<{
|
|
@@ -2782,7 +2882,6 @@ export declare const zPutAgencyByAgencyIdDetailsData: z.ZodObject<{
|
|
|
2782
2882
|
subdistrict: z.ZodString;
|
|
2783
2883
|
street: z.ZodString;
|
|
2784
2884
|
}, z.core.$strip>;
|
|
2785
|
-
establishedYear: z.ZodInt;
|
|
2786
2885
|
}, z.core.$strip>;
|
|
2787
2886
|
path: z.ZodObject<{
|
|
2788
2887
|
agencyId: z.ZodUUID;
|
|
@@ -2804,26 +2903,102 @@ export declare const zPutAgencyByAgencyIdActivateData: z.ZodObject<{
|
|
|
2804
2903
|
* No Content
|
|
2805
2904
|
*/
|
|
2806
2905
|
export declare const zPutAgencyByAgencyIdActivateResponse: z.ZodVoid;
|
|
2807
|
-
export declare const
|
|
2906
|
+
export declare const zPostWhitelabelData: z.ZodObject<{
|
|
2907
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
2908
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
2909
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
2910
|
+
}, z.core.$strip>;
|
|
2911
|
+
/**
|
|
2912
|
+
* No Content
|
|
2913
|
+
*/
|
|
2914
|
+
export declare const zPostWhitelabelResponse: z.ZodVoid;
|
|
2915
|
+
export declare const zPostWhitelabelPresignedUrlsData: z.ZodObject<{
|
|
2808
2916
|
body: z.ZodObject<{
|
|
2809
|
-
|
|
2810
|
-
|
|
2811
|
-
|
|
2812
|
-
|
|
2813
|
-
|
|
2814
|
-
|
|
2815
|
-
|
|
2816
|
-
|
|
2817
|
-
|
|
2818
|
-
|
|
2917
|
+
photo: z.ZodString;
|
|
2918
|
+
type: z.ZodEnum<{
|
|
2919
|
+
JPEG: "JPEG";
|
|
2920
|
+
JPG: "JPG";
|
|
2921
|
+
PNG: "PNG";
|
|
2922
|
+
WEBP: "WEBP";
|
|
2923
|
+
}>;
|
|
2924
|
+
width: z.ZodInt;
|
|
2925
|
+
height: z.ZodOptional<z.ZodInt>;
|
|
2926
|
+
}, z.core.$strip>;
|
|
2927
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
2928
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
2929
|
+
}, z.core.$strip>;
|
|
2930
|
+
/**
|
|
2931
|
+
* OK
|
|
2932
|
+
*/
|
|
2933
|
+
export declare const zPostWhitelabelPresignedUrlsResponse: z.ZodObject<{
|
|
2934
|
+
data: z.ZodArray<z.ZodObject<{
|
|
2935
|
+
originalName: z.ZodString;
|
|
2936
|
+
key: z.ZodString;
|
|
2937
|
+
url: z.ZodString;
|
|
2938
|
+
}, z.core.$strip>>;
|
|
2939
|
+
}, z.core.$strip>;
|
|
2940
|
+
export declare const zPostWhitelabelPresignedUrlsNotifyLogoData: z.ZodObject<{
|
|
2941
|
+
body: z.ZodObject<{
|
|
2942
|
+
photo: z.ZodString;
|
|
2943
|
+
type: z.ZodEnum<{
|
|
2944
|
+
JPEG: "JPEG";
|
|
2945
|
+
JPG: "JPG";
|
|
2946
|
+
PNG: "PNG";
|
|
2947
|
+
WEBP: "WEBP";
|
|
2948
|
+
}>;
|
|
2949
|
+
width: z.ZodInt;
|
|
2950
|
+
height: z.ZodOptional<z.ZodInt>;
|
|
2819
2951
|
}, z.core.$strip>;
|
|
2820
2952
|
path: z.ZodOptional<z.ZodNever>;
|
|
2821
2953
|
query: z.ZodOptional<z.ZodNever>;
|
|
2822
2954
|
}, z.core.$strip>;
|
|
2955
|
+
/**
|
|
2956
|
+
* OK
|
|
2957
|
+
*/
|
|
2958
|
+
export declare const zPostWhitelabelPresignedUrlsNotifyLogoResponse: z.ZodObject<{
|
|
2959
|
+
success: z.ZodArray<z.ZodString>;
|
|
2960
|
+
fail: z.ZodArray<z.ZodString>;
|
|
2961
|
+
}, z.core.$strip>;
|
|
2962
|
+
export declare const zPostWhitelabelPresignedUrlsNotifyCoverData: z.ZodObject<{
|
|
2963
|
+
body: z.ZodObject<{
|
|
2964
|
+
photo: z.ZodString;
|
|
2965
|
+
type: z.ZodEnum<{
|
|
2966
|
+
JPEG: "JPEG";
|
|
2967
|
+
JPG: "JPG";
|
|
2968
|
+
PNG: "PNG";
|
|
2969
|
+
WEBP: "WEBP";
|
|
2970
|
+
}>;
|
|
2971
|
+
width: z.ZodInt;
|
|
2972
|
+
height: z.ZodOptional<z.ZodInt>;
|
|
2973
|
+
}, z.core.$strip>;
|
|
2974
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
2975
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
2976
|
+
}, z.core.$strip>;
|
|
2977
|
+
/**
|
|
2978
|
+
* OK
|
|
2979
|
+
*/
|
|
2980
|
+
export declare const zPostWhitelabelPresignedUrlsNotifyCoverResponse: z.ZodObject<{
|
|
2981
|
+
success: z.ZodArray<z.ZodString>;
|
|
2982
|
+
fail: z.ZodArray<z.ZodString>;
|
|
2983
|
+
}, z.core.$strip>;
|
|
2984
|
+
export declare const zPostWhitelabelDeactivateData: z.ZodObject<{
|
|
2985
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
2986
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
2987
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
2988
|
+
}, z.core.$strip>;
|
|
2989
|
+
/**
|
|
2990
|
+
* No Content
|
|
2991
|
+
*/
|
|
2992
|
+
export declare const zPostWhitelabelDeactivateResponse: z.ZodVoid;
|
|
2993
|
+
export declare const zPostWhitelabelActivateData: z.ZodObject<{
|
|
2994
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
2995
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
2996
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
2997
|
+
}, z.core.$strip>;
|
|
2823
2998
|
/**
|
|
2824
2999
|
* No Content
|
|
2825
3000
|
*/
|
|
2826
|
-
export declare const
|
|
3001
|
+
export declare const zPostWhitelabelActivateResponse: z.ZodVoid;
|
|
2827
3002
|
export declare const zPostWalletTransferData: z.ZodObject<{
|
|
2828
3003
|
body: z.ZodObject<{
|
|
2829
3004
|
transferTo: z.ZodUUID;
|
|
@@ -2942,6 +3117,53 @@ export declare const zPostPublicRecomendationsByRecommendationsIdItemsByItemIdRa
|
|
|
2942
3117
|
* No Content
|
|
2943
3118
|
*/
|
|
2944
3119
|
export declare const zPostPublicRecomendationsByRecommendationsIdItemsByItemIdRateResponse: z.ZodVoid;
|
|
3120
|
+
export declare const zPostMemberPresignedUrlsData: z.ZodObject<{
|
|
3121
|
+
body: z.ZodObject<{
|
|
3122
|
+
photo: z.ZodString;
|
|
3123
|
+
type: z.ZodEnum<{
|
|
3124
|
+
JPEG: "JPEG";
|
|
3125
|
+
JPG: "JPG";
|
|
3126
|
+
PNG: "PNG";
|
|
3127
|
+
WEBP: "WEBP";
|
|
3128
|
+
}>;
|
|
3129
|
+
width: z.ZodInt;
|
|
3130
|
+
height: z.ZodOptional<z.ZodInt>;
|
|
3131
|
+
}, z.core.$strip>;
|
|
3132
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
3133
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
3134
|
+
}, z.core.$strip>;
|
|
3135
|
+
/**
|
|
3136
|
+
* OK
|
|
3137
|
+
*/
|
|
3138
|
+
export declare const zPostMemberPresignedUrlsResponse: z.ZodObject<{
|
|
3139
|
+
data: z.ZodArray<z.ZodObject<{
|
|
3140
|
+
originalName: z.ZodString;
|
|
3141
|
+
key: z.ZodString;
|
|
3142
|
+
url: z.ZodString;
|
|
3143
|
+
}, z.core.$strip>>;
|
|
3144
|
+
}, z.core.$strip>;
|
|
3145
|
+
export declare const zPostMemberPresignedUrlsNotifyData: z.ZodObject<{
|
|
3146
|
+
body: z.ZodObject<{
|
|
3147
|
+
photo: z.ZodString;
|
|
3148
|
+
type: z.ZodEnum<{
|
|
3149
|
+
JPEG: "JPEG";
|
|
3150
|
+
JPG: "JPG";
|
|
3151
|
+
PNG: "PNG";
|
|
3152
|
+
WEBP: "WEBP";
|
|
3153
|
+
}>;
|
|
3154
|
+
width: z.ZodInt;
|
|
3155
|
+
height: z.ZodOptional<z.ZodInt>;
|
|
3156
|
+
}, z.core.$strip>;
|
|
3157
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
3158
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
3159
|
+
}, z.core.$strip>;
|
|
3160
|
+
/**
|
|
3161
|
+
* OK
|
|
3162
|
+
*/
|
|
3163
|
+
export declare const zPostMemberPresignedUrlsNotifyResponse: z.ZodObject<{
|
|
3164
|
+
success: z.ZodArray<z.ZodString>;
|
|
3165
|
+
fail: z.ZodArray<z.ZodString>;
|
|
3166
|
+
}, z.core.$strip>;
|
|
2945
3167
|
export declare const zPostLeadsData: z.ZodObject<{
|
|
2946
3168
|
body: z.ZodObject<{
|
|
2947
3169
|
contactInfo: z.ZodObject<{
|
|
@@ -3684,7 +3906,6 @@ export declare const zPostAgencyData: z.ZodObject<{
|
|
|
3684
3906
|
subdistrict: z.ZodString;
|
|
3685
3907
|
street: z.ZodString;
|
|
3686
3908
|
}, z.core.$strip>;
|
|
3687
|
-
establishedYear: z.ZodInt;
|
|
3688
3909
|
}, z.core.$strip>;
|
|
3689
3910
|
path: z.ZodOptional<z.ZodNever>;
|
|
3690
3911
|
query: z.ZodOptional<z.ZodNever>;
|
|
@@ -3695,75 +3916,219 @@ export declare const zPostAgencyData: z.ZodObject<{
|
|
|
3695
3916
|
export declare const zPostAgencyResponse: z.ZodObject<{
|
|
3696
3917
|
id: z.ZodUUID;
|
|
3697
3918
|
}, z.core.$strip>;
|
|
3698
|
-
export declare const
|
|
3919
|
+
export declare const zPatchWhitelabelWebsiteData: z.ZodObject<{
|
|
3699
3920
|
body: z.ZodObject<{
|
|
3700
|
-
|
|
3701
|
-
type: z.ZodEnum<{
|
|
3702
|
-
JPEG: "JPEG";
|
|
3703
|
-
JPG: "JPG";
|
|
3704
|
-
PNG: "PNG";
|
|
3705
|
-
WEBP: "WEBP";
|
|
3706
|
-
}>;
|
|
3707
|
-
width: z.ZodInt;
|
|
3708
|
-
height: z.ZodOptional<z.ZodInt>;
|
|
3921
|
+
url: z.ZodOptional<z.ZodString>;
|
|
3709
3922
|
}, z.core.$strip>;
|
|
3710
3923
|
path: z.ZodOptional<z.ZodNever>;
|
|
3711
3924
|
query: z.ZodOptional<z.ZodNever>;
|
|
3712
3925
|
}, z.core.$strip>;
|
|
3713
3926
|
/**
|
|
3714
|
-
*
|
|
3927
|
+
* No Content
|
|
3715
3928
|
*/
|
|
3716
|
-
export declare const
|
|
3717
|
-
|
|
3718
|
-
|
|
3719
|
-
|
|
3720
|
-
|
|
3929
|
+
export declare const zPatchWhitelabelWebsiteResponse: z.ZodVoid;
|
|
3930
|
+
export declare const zPatchWhitelabelThemeData: z.ZodObject<{
|
|
3931
|
+
body: z.ZodObject<{
|
|
3932
|
+
primaryColor: z.ZodInt;
|
|
3933
|
+
}, z.core.$strip>;
|
|
3934
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
3935
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
3936
|
+
}, z.core.$strip>;
|
|
3937
|
+
/**
|
|
3938
|
+
* No Content
|
|
3939
|
+
*/
|
|
3940
|
+
export declare const zPatchWhitelabelThemeResponse: z.ZodVoid;
|
|
3941
|
+
export declare const zPatchWhitelabelSocialLinksData: z.ZodObject<{
|
|
3942
|
+
body: z.ZodObject<{
|
|
3943
|
+
data: z.ZodArray<z.ZodObject<{
|
|
3944
|
+
type: z.ZodEnum<{
|
|
3945
|
+
FACEBOOK: "FACEBOOK";
|
|
3946
|
+
YOUTUBE: "YOUTUBE";
|
|
3947
|
+
INSTAGRAM: "INSTAGRAM";
|
|
3948
|
+
TIKTOK: "TIKTOK";
|
|
3949
|
+
LINKEDIN: "LINKEDIN";
|
|
3950
|
+
}>;
|
|
3951
|
+
url: z.ZodOptional<z.ZodString>;
|
|
3952
|
+
}, z.core.$strip>>;
|
|
3953
|
+
}, z.core.$strip>;
|
|
3954
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
3955
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
3956
|
+
}, z.core.$strip>;
|
|
3957
|
+
/**
|
|
3958
|
+
* No Content
|
|
3959
|
+
*/
|
|
3960
|
+
export declare const zPatchWhitelabelSocialLinksResponse: z.ZodVoid;
|
|
3961
|
+
export declare const zPatchWhitelabelSloganData: z.ZodObject<{
|
|
3962
|
+
body: z.ZodObject<{
|
|
3963
|
+
title: z.ZodObject<{
|
|
3964
|
+
data: z.ZodArray<z.ZodObject<{
|
|
3965
|
+
language: z.ZodEnum<{
|
|
3966
|
+
ka: "ka";
|
|
3967
|
+
en: "en";
|
|
3968
|
+
ru: "ru";
|
|
3969
|
+
}>;
|
|
3970
|
+
text: z.ZodOptional<z.ZodString>;
|
|
3971
|
+
}, z.core.$strip>>;
|
|
3972
|
+
}, z.core.$strip>;
|
|
3973
|
+
body: z.ZodObject<{
|
|
3974
|
+
data: z.ZodArray<z.ZodObject<{
|
|
3975
|
+
language: z.ZodEnum<{
|
|
3976
|
+
ka: "ka";
|
|
3977
|
+
en: "en";
|
|
3978
|
+
ru: "ru";
|
|
3979
|
+
}>;
|
|
3980
|
+
text: z.ZodOptional<z.ZodString>;
|
|
3981
|
+
}, z.core.$strip>>;
|
|
3982
|
+
}, z.core.$strip>;
|
|
3983
|
+
}, z.core.$strip>;
|
|
3984
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
3985
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
3986
|
+
}, z.core.$strip>;
|
|
3987
|
+
/**
|
|
3988
|
+
* No Content
|
|
3989
|
+
*/
|
|
3990
|
+
export declare const zPatchWhitelabelSloganResponse: z.ZodVoid;
|
|
3991
|
+
export declare const zPatchWhitelabelReviewsData: z.ZodObject<{
|
|
3992
|
+
body: z.ZodArray<z.ZodObject<{
|
|
3993
|
+
quote: z.ZodObject<{
|
|
3994
|
+
data: z.ZodArray<z.ZodObject<{
|
|
3995
|
+
language: z.ZodEnum<{
|
|
3996
|
+
ka: "ka";
|
|
3997
|
+
en: "en";
|
|
3998
|
+
ru: "ru";
|
|
3999
|
+
}>;
|
|
4000
|
+
text: z.ZodOptional<z.ZodString>;
|
|
4001
|
+
}, z.core.$strip>>;
|
|
4002
|
+
}, z.core.$strip>;
|
|
4003
|
+
name: z.ZodObject<{
|
|
4004
|
+
data: z.ZodArray<z.ZodObject<{
|
|
4005
|
+
language: z.ZodEnum<{
|
|
4006
|
+
ka: "ka";
|
|
4007
|
+
en: "en";
|
|
4008
|
+
ru: "ru";
|
|
4009
|
+
}>;
|
|
4010
|
+
text: z.ZodOptional<z.ZodString>;
|
|
4011
|
+
}, z.core.$strip>>;
|
|
4012
|
+
}, z.core.$strip>;
|
|
4013
|
+
status: z.ZodObject<{
|
|
4014
|
+
data: z.ZodArray<z.ZodObject<{
|
|
4015
|
+
language: z.ZodEnum<{
|
|
4016
|
+
ka: "ka";
|
|
4017
|
+
en: "en";
|
|
4018
|
+
ru: "ru";
|
|
4019
|
+
}>;
|
|
4020
|
+
text: z.ZodOptional<z.ZodString>;
|
|
4021
|
+
}, z.core.$strip>>;
|
|
4022
|
+
}, z.core.$strip>;
|
|
3721
4023
|
}, z.core.$strip>>;
|
|
4024
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
4025
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
3722
4026
|
}, z.core.$strip>;
|
|
3723
|
-
|
|
4027
|
+
/**
|
|
4028
|
+
* No Content
|
|
4029
|
+
*/
|
|
4030
|
+
export declare const zPatchWhitelabelReviewsResponse: z.ZodVoid;
|
|
4031
|
+
export declare const zPatchWhitelabelReviewSectionData: z.ZodObject<{
|
|
3724
4032
|
body: z.ZodObject<{
|
|
3725
|
-
|
|
3726
|
-
|
|
3727
|
-
|
|
3728
|
-
|
|
3729
|
-
|
|
3730
|
-
|
|
3731
|
-
|
|
3732
|
-
|
|
3733
|
-
|
|
4033
|
+
title: z.ZodObject<{
|
|
4034
|
+
data: z.ZodArray<z.ZodObject<{
|
|
4035
|
+
language: z.ZodEnum<{
|
|
4036
|
+
ka: "ka";
|
|
4037
|
+
en: "en";
|
|
4038
|
+
ru: "ru";
|
|
4039
|
+
}>;
|
|
4040
|
+
text: z.ZodOptional<z.ZodString>;
|
|
4041
|
+
}, z.core.$strip>>;
|
|
4042
|
+
}, z.core.$strip>;
|
|
4043
|
+
body: z.ZodObject<{
|
|
4044
|
+
data: z.ZodArray<z.ZodObject<{
|
|
4045
|
+
language: z.ZodEnum<{
|
|
4046
|
+
ka: "ka";
|
|
4047
|
+
en: "en";
|
|
4048
|
+
ru: "ru";
|
|
4049
|
+
}>;
|
|
4050
|
+
text: z.ZodOptional<z.ZodString>;
|
|
4051
|
+
}, z.core.$strip>>;
|
|
4052
|
+
}, z.core.$strip>;
|
|
3734
4053
|
}, z.core.$strip>;
|
|
3735
4054
|
path: z.ZodOptional<z.ZodNever>;
|
|
3736
4055
|
query: z.ZodOptional<z.ZodNever>;
|
|
3737
4056
|
}, z.core.$strip>;
|
|
3738
4057
|
/**
|
|
3739
|
-
*
|
|
4058
|
+
* No Content
|
|
3740
4059
|
*/
|
|
3741
|
-
export declare const
|
|
3742
|
-
|
|
3743
|
-
|
|
4060
|
+
export declare const zPatchWhitelabelReviewSectionResponse: z.ZodVoid;
|
|
4061
|
+
export declare const zPatchWhitelabelOurTeamData: z.ZodObject<{
|
|
4062
|
+
body: z.ZodObject<{
|
|
4063
|
+
title: z.ZodObject<{
|
|
4064
|
+
data: z.ZodArray<z.ZodObject<{
|
|
4065
|
+
language: z.ZodEnum<{
|
|
4066
|
+
ka: "ka";
|
|
4067
|
+
en: "en";
|
|
4068
|
+
ru: "ru";
|
|
4069
|
+
}>;
|
|
4070
|
+
text: z.ZodOptional<z.ZodString>;
|
|
4071
|
+
}, z.core.$strip>>;
|
|
4072
|
+
}, z.core.$strip>;
|
|
4073
|
+
body: z.ZodObject<{
|
|
4074
|
+
data: z.ZodArray<z.ZodObject<{
|
|
4075
|
+
language: z.ZodEnum<{
|
|
4076
|
+
ka: "ka";
|
|
4077
|
+
en: "en";
|
|
4078
|
+
ru: "ru";
|
|
4079
|
+
}>;
|
|
4080
|
+
text: z.ZodOptional<z.ZodString>;
|
|
4081
|
+
}, z.core.$strip>>;
|
|
4082
|
+
}, z.core.$strip>;
|
|
4083
|
+
}, z.core.$strip>;
|
|
4084
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
4085
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
3744
4086
|
}, z.core.$strip>;
|
|
3745
|
-
|
|
4087
|
+
/**
|
|
4088
|
+
* No Content
|
|
4089
|
+
*/
|
|
4090
|
+
export declare const zPatchWhitelabelOurTeamResponse: z.ZodVoid;
|
|
4091
|
+
export declare const zPatchWhitelabelEstablishedYearData: z.ZodObject<{
|
|
3746
4092
|
body: z.ZodObject<{
|
|
3747
|
-
|
|
3748
|
-
type: z.ZodEnum<{
|
|
3749
|
-
JPEG: "JPEG";
|
|
3750
|
-
JPG: "JPG";
|
|
3751
|
-
PNG: "PNG";
|
|
3752
|
-
WEBP: "WEBP";
|
|
3753
|
-
}>;
|
|
3754
|
-
width: z.ZodInt;
|
|
3755
|
-
height: z.ZodOptional<z.ZodInt>;
|
|
4093
|
+
year: z.ZodInt;
|
|
3756
4094
|
}, z.core.$strip>;
|
|
3757
4095
|
path: z.ZodOptional<z.ZodNever>;
|
|
3758
4096
|
query: z.ZodOptional<z.ZodNever>;
|
|
3759
4097
|
}, z.core.$strip>;
|
|
3760
4098
|
/**
|
|
3761
|
-
*
|
|
4099
|
+
* No Content
|
|
3762
4100
|
*/
|
|
3763
|
-
export declare const
|
|
3764
|
-
|
|
3765
|
-
|
|
4101
|
+
export declare const zPatchWhitelabelEstablishedYearResponse: z.ZodVoid;
|
|
4102
|
+
export declare const zPatchWhitelabelContactUsData: z.ZodObject<{
|
|
4103
|
+
body: z.ZodObject<{
|
|
4104
|
+
title: z.ZodObject<{
|
|
4105
|
+
data: z.ZodArray<z.ZodObject<{
|
|
4106
|
+
language: z.ZodEnum<{
|
|
4107
|
+
ka: "ka";
|
|
4108
|
+
en: "en";
|
|
4109
|
+
ru: "ru";
|
|
4110
|
+
}>;
|
|
4111
|
+
text: z.ZodOptional<z.ZodString>;
|
|
4112
|
+
}, z.core.$strip>>;
|
|
4113
|
+
}, z.core.$strip>;
|
|
4114
|
+
body: z.ZodObject<{
|
|
4115
|
+
data: z.ZodArray<z.ZodObject<{
|
|
4116
|
+
language: z.ZodEnum<{
|
|
4117
|
+
ka: "ka";
|
|
4118
|
+
en: "en";
|
|
4119
|
+
ru: "ru";
|
|
4120
|
+
}>;
|
|
4121
|
+
text: z.ZodOptional<z.ZodString>;
|
|
4122
|
+
}, z.core.$strip>>;
|
|
4123
|
+
}, z.core.$strip>;
|
|
4124
|
+
}, z.core.$strip>;
|
|
4125
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
4126
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
3766
4127
|
}, z.core.$strip>;
|
|
4128
|
+
/**
|
|
4129
|
+
* No Content
|
|
4130
|
+
*/
|
|
4131
|
+
export declare const zPatchWhitelabelContactUsResponse: z.ZodVoid;
|
|
3767
4132
|
export declare const zGetUserMeData: z.ZodObject<{
|
|
3768
4133
|
body: z.ZodOptional<z.ZodNever>;
|
|
3769
4134
|
path: z.ZodOptional<z.ZodNever>;
|
|
@@ -4035,11 +4400,10 @@ export declare const zGetPublicAgencyResponse: z.ZodObject<{
|
|
|
4035
4400
|
owner: z.ZodString;
|
|
4036
4401
|
name: z.ZodString;
|
|
4037
4402
|
email: z.ZodString;
|
|
4038
|
-
seats: z.
|
|
4403
|
+
seats: z.ZodInt;
|
|
4039
4404
|
subdomain: z.ZodString;
|
|
4040
4405
|
phone: z.ZodString;
|
|
4041
|
-
|
|
4042
|
-
establishedYear: z.ZodString;
|
|
4406
|
+
establishedYear: z.ZodOptional<z.ZodInt>;
|
|
4043
4407
|
status: z.ZodEnum<{
|
|
4044
4408
|
ACTIVE: "ACTIVE";
|
|
4045
4409
|
NEW: "NEW";
|
|
@@ -4047,6 +4411,7 @@ export declare const zGetPublicAgencyResponse: z.ZodObject<{
|
|
|
4047
4411
|
INACTIVE: "INACTIVE";
|
|
4048
4412
|
}>;
|
|
4049
4413
|
logo: z.ZodOptional<z.ZodString>;
|
|
4414
|
+
theme: z.ZodOptional<z.ZodInt>;
|
|
4050
4415
|
}, z.core.$strip>>>;
|
|
4051
4416
|
page: z.ZodOptional<z.ZodObject<{
|
|
4052
4417
|
size: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
@@ -4055,47 +4420,27 @@ export declare const zGetPublicAgencyResponse: z.ZodObject<{
|
|
|
4055
4420
|
totalPages: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
4056
4421
|
}, z.core.$strip>>;
|
|
4057
4422
|
}, z.core.$strip>;
|
|
4058
|
-
export declare const
|
|
4059
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
4060
|
-
path: z.ZodObject<{
|
|
4061
|
-
subDomain: z.ZodString;
|
|
4062
|
-
}, z.core.$strip>;
|
|
4063
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
4064
|
-
}, z.core.$strip>;
|
|
4065
|
-
/**
|
|
4066
|
-
* OK
|
|
4067
|
-
*/
|
|
4068
|
-
export declare const zGetPublicAgencySubdomainBySubDomainResponse: z.ZodObject<{
|
|
4069
|
-
id: z.ZodUUID;
|
|
4070
|
-
owner: z.ZodString;
|
|
4071
|
-
name: z.ZodString;
|
|
4072
|
-
email: z.ZodString;
|
|
4073
|
-
seats: z.ZodString;
|
|
4074
|
-
subdomain: z.ZodString;
|
|
4075
|
-
phone: z.ZodString;
|
|
4076
|
-
website: z.ZodOptional<z.ZodString>;
|
|
4077
|
-
establishedYear: z.ZodString;
|
|
4078
|
-
status: z.ZodEnum<{
|
|
4079
|
-
ACTIVE: "ACTIVE";
|
|
4080
|
-
NEW: "NEW";
|
|
4081
|
-
PAYMENT_FAILED: "PAYMENT_FAILED";
|
|
4082
|
-
INACTIVE: "INACTIVE";
|
|
4083
|
-
}>;
|
|
4084
|
-
logo: z.ZodOptional<z.ZodString>;
|
|
4085
|
-
}, z.core.$strip>;
|
|
4086
|
-
export declare const zGetPublicAgencyWhitelabelPageBySubdomainData: z.ZodObject<{
|
|
4423
|
+
export declare const zGetPublicAgencySubdomainBySubdomainLandingData: z.ZodObject<{
|
|
4087
4424
|
body: z.ZodOptional<z.ZodNever>;
|
|
4088
4425
|
path: z.ZodObject<{
|
|
4089
4426
|
subdomain: z.ZodString;
|
|
4090
4427
|
}, z.core.$strip>;
|
|
4091
|
-
query: z.ZodOptional<z.
|
|
4428
|
+
query: z.ZodOptional<z.ZodObject<{
|
|
4429
|
+
language: z.ZodOptional<z.ZodEnum<{
|
|
4430
|
+
ka: "ka";
|
|
4431
|
+
en: "en";
|
|
4432
|
+
ru: "ru";
|
|
4433
|
+
}>>;
|
|
4434
|
+
}, z.core.$strip>>;
|
|
4092
4435
|
}, z.core.$strip>;
|
|
4093
4436
|
/**
|
|
4094
4437
|
* OK
|
|
4095
4438
|
*/
|
|
4096
|
-
export declare const
|
|
4439
|
+
export declare const zGetPublicAgencySubdomainBySubdomainLandingResponse: z.ZodObject<{
|
|
4097
4440
|
theme: z.ZodInt;
|
|
4098
4441
|
name: z.ZodString;
|
|
4442
|
+
logoUrl: z.ZodOptional<z.ZodString>;
|
|
4443
|
+
coverUrl: z.ZodOptional<z.ZodString>;
|
|
4099
4444
|
slogan: z.ZodOptional<z.ZodObject<{
|
|
4100
4445
|
title: z.ZodOptional<z.ZodObject<{
|
|
4101
4446
|
language: z.ZodEnum<{
|
|
@@ -4138,17 +4483,12 @@ export declare const zGetPublicAgencyWhitelabelPageBySubdomainResponse: z.ZodObj
|
|
|
4138
4483
|
}, z.core.$strip>>;
|
|
4139
4484
|
}, z.core.$strip>>;
|
|
4140
4485
|
members: z.ZodArray<z.ZodObject<{
|
|
4141
|
-
memberId: z.
|
|
4142
|
-
firstName: z.
|
|
4143
|
-
lastName: z.
|
|
4486
|
+
memberId: z.ZodUUID;
|
|
4487
|
+
firstName: z.ZodString;
|
|
4488
|
+
lastName: z.ZodString;
|
|
4144
4489
|
phone: z.ZodOptional<z.ZodString>;
|
|
4145
|
-
email: z.
|
|
4490
|
+
email: z.ZodString;
|
|
4146
4491
|
profilePictureUrl: z.ZodOptional<z.ZodString>;
|
|
4147
|
-
contactInfo: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
4148
|
-
WHATSAPP: "WHATSAPP";
|
|
4149
|
-
VIBER: "VIBER";
|
|
4150
|
-
PHONE_CALL: "PHONE_CALL";
|
|
4151
|
-
}>>>;
|
|
4152
4492
|
}, z.core.$strip>>;
|
|
4153
4493
|
review: z.ZodOptional<z.ZodObject<{
|
|
4154
4494
|
title: z.ZodOptional<z.ZodObject<{
|
|
@@ -4213,10 +4553,49 @@ export declare const zGetPublicAgencyWhitelabelPageBySubdomainResponse: z.ZodObj
|
|
|
4213
4553
|
}, z.core.$strip>>;
|
|
4214
4554
|
}, z.core.$strip>>;
|
|
4215
4555
|
agencyInfo: z.ZodOptional<z.ZodObject<{
|
|
4216
|
-
phone: z.
|
|
4217
|
-
email: z.
|
|
4556
|
+
phone: z.ZodString;
|
|
4557
|
+
email: z.ZodString;
|
|
4218
4558
|
address: z.ZodOptional<z.ZodString>;
|
|
4219
4559
|
}, z.core.$strip>>;
|
|
4560
|
+
socialLinks: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4561
|
+
url: z.ZodString;
|
|
4562
|
+
type: z.ZodEnum<{
|
|
4563
|
+
FACEBOOK: "FACEBOOK";
|
|
4564
|
+
YOUTUBE: "YOUTUBE";
|
|
4565
|
+
INSTAGRAM: "INSTAGRAM";
|
|
4566
|
+
TIKTOK: "TIKTOK";
|
|
4567
|
+
LINKEDIN: "LINKEDIN";
|
|
4568
|
+
}>;
|
|
4569
|
+
}, z.core.$strip>>>;
|
|
4570
|
+
website: z.ZodOptional<z.ZodString>;
|
|
4571
|
+
}, z.core.$strip>;
|
|
4572
|
+
export declare const zGetPublicAgencySubdomainBySubDomainData: z.ZodObject<{
|
|
4573
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
4574
|
+
path: z.ZodObject<{
|
|
4575
|
+
subDomain: z.ZodString;
|
|
4576
|
+
}, z.core.$strip>;
|
|
4577
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
4578
|
+
}, z.core.$strip>;
|
|
4579
|
+
/**
|
|
4580
|
+
* OK
|
|
4581
|
+
*/
|
|
4582
|
+
export declare const zGetPublicAgencySubdomainBySubDomainResponse: z.ZodObject<{
|
|
4583
|
+
id: z.ZodUUID;
|
|
4584
|
+
owner: z.ZodString;
|
|
4585
|
+
name: z.ZodString;
|
|
4586
|
+
email: z.ZodString;
|
|
4587
|
+
seats: z.ZodInt;
|
|
4588
|
+
subdomain: z.ZodString;
|
|
4589
|
+
phone: z.ZodString;
|
|
4590
|
+
establishedYear: z.ZodOptional<z.ZodInt>;
|
|
4591
|
+
status: z.ZodEnum<{
|
|
4592
|
+
ACTIVE: "ACTIVE";
|
|
4593
|
+
NEW: "NEW";
|
|
4594
|
+
PAYMENT_FAILED: "PAYMENT_FAILED";
|
|
4595
|
+
INACTIVE: "INACTIVE";
|
|
4596
|
+
}>;
|
|
4597
|
+
logo: z.ZodOptional<z.ZodString>;
|
|
4598
|
+
theme: z.ZodOptional<z.ZodInt>;
|
|
4220
4599
|
}, z.core.$strip>;
|
|
4221
4600
|
export declare const zGetMemberData: z.ZodObject<{
|
|
4222
4601
|
body: z.ZodOptional<z.ZodNever>;
|
|
@@ -4276,6 +4655,8 @@ export declare const zGetLeadResponse: z.ZodObject<{
|
|
|
4276
4655
|
id: z.ZodCoercedBigInt<unknown>;
|
|
4277
4656
|
createdBy: z.ZodUUID;
|
|
4278
4657
|
assignedTo: z.ZodOptional<z.ZodUUID>;
|
|
4658
|
+
assignedToName: z.ZodOptional<z.ZodString>;
|
|
4659
|
+
assignedToPhoto: z.ZodOptional<z.ZodString>;
|
|
4279
4660
|
status: z.ZodEnum<{
|
|
4280
4661
|
CONVERTED: "CONVERTED";
|
|
4281
4662
|
LOST: "LOST";
|
|
@@ -4366,6 +4747,8 @@ export declare const zGetLeadByLeadIdResponse: z.ZodObject<{
|
|
|
4366
4747
|
id: z.ZodCoercedBigInt<unknown>;
|
|
4367
4748
|
createdBy: z.ZodUUID;
|
|
4368
4749
|
assignedTo: z.ZodOptional<z.ZodUUID>;
|
|
4750
|
+
assignedToName: z.ZodOptional<z.ZodString>;
|
|
4751
|
+
assignedToPhoto: z.ZodOptional<z.ZodString>;
|
|
4369
4752
|
status: z.ZodEnum<{
|
|
4370
4753
|
CONVERTED: "CONVERTED";
|
|
4371
4754
|
LOST: "LOST";
|
|
@@ -4462,6 +4845,8 @@ export declare const zGetLeadMineResponse: z.ZodObject<{
|
|
|
4462
4845
|
id: z.ZodCoercedBigInt<unknown>;
|
|
4463
4846
|
createdBy: z.ZodUUID;
|
|
4464
4847
|
assignedTo: z.ZodOptional<z.ZodUUID>;
|
|
4848
|
+
assignedToName: z.ZodOptional<z.ZodString>;
|
|
4849
|
+
assignedToPhoto: z.ZodOptional<z.ZodString>;
|
|
4465
4850
|
status: z.ZodEnum<{
|
|
4466
4851
|
CONVERTED: "CONVERTED";
|
|
4467
4852
|
LOST: "LOST";
|
|
@@ -4752,6 +5137,8 @@ export declare const zGetClientResponse: z.ZodObject<{
|
|
|
4752
5137
|
createdBy: z.ZodUUID;
|
|
4753
5138
|
leadId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
4754
5139
|
assignedTo: z.ZodOptional<z.ZodUUID>;
|
|
5140
|
+
assignedToName: z.ZodOptional<z.ZodString>;
|
|
5141
|
+
assignedToPhoto: z.ZodOptional<z.ZodString>;
|
|
4755
5142
|
contactFullName: z.ZodOptional<z.ZodString>;
|
|
4756
5143
|
contactPhoneNumber: z.ZodString;
|
|
4757
5144
|
contactGender: z.ZodOptional<z.ZodEnum<{
|
|
@@ -4807,6 +5194,8 @@ export declare const zGetClientByClientIdResponse: z.ZodObject<{
|
|
|
4807
5194
|
createdBy: z.ZodUUID;
|
|
4808
5195
|
leadId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
4809
5196
|
assignedTo: z.ZodOptional<z.ZodUUID>;
|
|
5197
|
+
assignedToName: z.ZodOptional<z.ZodString>;
|
|
5198
|
+
assignedToPhoto: z.ZodOptional<z.ZodString>;
|
|
4810
5199
|
contactFullName: z.ZodOptional<z.ZodString>;
|
|
4811
5200
|
contactPhoneNumber: z.ZodString;
|
|
4812
5201
|
contactGender: z.ZodOptional<z.ZodEnum<{
|
|
@@ -5074,6 +5463,8 @@ export declare const zGetClientMyResponse: z.ZodObject<{
|
|
|
5074
5463
|
createdBy: z.ZodUUID;
|
|
5075
5464
|
leadId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
5076
5465
|
assignedTo: z.ZodOptional<z.ZodUUID>;
|
|
5466
|
+
assignedToName: z.ZodOptional<z.ZodString>;
|
|
5467
|
+
assignedToPhoto: z.ZodOptional<z.ZodString>;
|
|
5077
5468
|
contactFullName: z.ZodOptional<z.ZodString>;
|
|
5078
5469
|
contactPhoneNumber: z.ZodString;
|
|
5079
5470
|
contactGender: z.ZodOptional<z.ZodEnum<{
|
|
@@ -5137,7 +5528,6 @@ export declare const zGetAgencyByAgencyIdResponse: z.ZodObject<{
|
|
|
5137
5528
|
subdistrict: z.ZodString;
|
|
5138
5529
|
street: z.ZodString;
|
|
5139
5530
|
}, z.core.$strip>;
|
|
5140
|
-
establishedYear: z.ZodInt;
|
|
5141
5531
|
}, z.core.$strip>;
|
|
5142
5532
|
export declare const zDeleteMemberByMemberIdData: z.ZodObject<{
|
|
5143
5533
|
body: z.ZodOptional<z.ZodNever>;
|