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