@homespot-sdk/core 0.0.124 → 0.0.126
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/registration/index.d.ts +1 -1
- package/dist/registration/index.d.ts.map +1 -1
- package/dist/registration/schemas.gen.d.ts +50 -49
- package/dist/registration/schemas.gen.d.ts.map +1 -1
- package/dist/registration/schemas.gen.js +53 -63
- package/dist/registration/schemas.gen.js.map +1 -1
- package/dist/registration/types.gen.d.ts +17 -16
- package/dist/registration/types.gen.d.ts.map +1 -1
- package/dist/registration/zod.gen.d.ts +40 -37
- package/dist/registration/zod.gen.d.ts.map +1 -1
- package/dist/registration/zod.gen.js +88 -17
- package/dist/registration/zod.gen.js.map +1 -1
- 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 +198 -34
- package/dist/rem/schemas.gen.d.ts.map +1 -1
- package/dist/rem/schemas.gen.js +200 -41
- package/dist/rem/schemas.gen.js.map +1 -1
- package/dist/rem/sdk.gen.d.ts +4 -1
- package/dist/rem/sdk.gen.d.ts.map +1 -1
- package/dist/rem/sdk.gen.js +23 -0
- package/dist/rem/sdk.gen.js.map +1 -1
- package/dist/rem/transformers.gen.d.ts.map +1 -1
- package/dist/rem/transformers.gen.js +20 -0
- package/dist/rem/transformers.gen.js.map +1 -1
- package/dist/rem/types.gen.d.ts +121 -16
- package/dist/rem/types.gen.d.ts.map +1 -1
- package/dist/rem/zod.gen.d.ts +466 -106
- package/dist/rem/zod.gen.d.ts.map +1 -1
- package/dist/rem/zod.gen.js +205 -26
- package/dist/rem/zod.gen.js.map +1 -1
- package/package.json +1 -1
package/dist/rem/zod.gen.d.ts
CHANGED
|
@@ -25,6 +25,20 @@ export declare const zPriceRangeRequest: z.ZodObject<{
|
|
|
25
25
|
export declare const zReassignMemberRequest: z.ZodObject<{
|
|
26
26
|
memberId: z.ZodUUID;
|
|
27
27
|
}, z.core.$strip>;
|
|
28
|
+
export declare const zEmailAddress: z.ZodObject<{
|
|
29
|
+
value: z.ZodOptional<z.ZodString>;
|
|
30
|
+
}, z.core.$strip>;
|
|
31
|
+
export declare const zName: z.ZodObject<{
|
|
32
|
+
value: z.ZodOptional<z.ZodString>;
|
|
33
|
+
}, z.core.$strip>;
|
|
34
|
+
export declare const zFullName: z.ZodObject<{
|
|
35
|
+
firstName: z.ZodOptional<z.ZodObject<{
|
|
36
|
+
value: z.ZodOptional<z.ZodString>;
|
|
37
|
+
}, z.core.$strip>>;
|
|
38
|
+
lastName: z.ZodOptional<z.ZodObject<{
|
|
39
|
+
value: z.ZodOptional<z.ZodString>;
|
|
40
|
+
}, z.core.$strip>>;
|
|
41
|
+
}, z.core.$strip>;
|
|
28
42
|
export declare const zAddressRequest: z.ZodObject<{
|
|
29
43
|
country: z.ZodString;
|
|
30
44
|
city: z.ZodString;
|
|
@@ -153,7 +167,17 @@ export declare const zAssignedMember: z.ZodObject<{
|
|
|
153
167
|
phone: z.ZodString;
|
|
154
168
|
email: z.ZodString;
|
|
155
169
|
}, z.core.$strip>;
|
|
170
|
+
export declare const zColoredListingResponse: z.ZodObject<{
|
|
171
|
+
activatedAt: z.ZodISODate;
|
|
172
|
+
expiresAt: z.ZodISODate;
|
|
173
|
+
}, z.core.$strip>;
|
|
156
174
|
export declare const zPropertyDetailsResponse: z.ZodObject<{
|
|
175
|
+
title: z.ZodString;
|
|
176
|
+
coverPhoto: z.ZodOptional<z.ZodString>;
|
|
177
|
+
photoCount: z.ZodOptional<z.ZodInt>;
|
|
178
|
+
totalArea: z.ZodNumber;
|
|
179
|
+
livingArea: z.ZodOptional<z.ZodNumber>;
|
|
180
|
+
balconyArea: z.ZodOptional<z.ZodNumber>;
|
|
157
181
|
address: z.ZodObject<{
|
|
158
182
|
regionId: z.ZodCoercedBigInt<unknown>;
|
|
159
183
|
districtId: z.ZodCoercedBigInt<unknown>;
|
|
@@ -163,11 +187,6 @@ export declare const zPropertyDetailsResponse: z.ZodObject<{
|
|
|
163
187
|
lat: z.ZodNumber;
|
|
164
188
|
lng: z.ZodNumber;
|
|
165
189
|
}, z.core.$strip>;
|
|
166
|
-
title: z.ZodString;
|
|
167
|
-
coverPhoto: z.ZodOptional<z.ZodString>;
|
|
168
|
-
totalArea: z.ZodNumber;
|
|
169
|
-
livingArea: z.ZodOptional<z.ZodNumber>;
|
|
170
|
-
balconyArea: z.ZodOptional<z.ZodNumber>;
|
|
171
190
|
}, z.core.$strip>;
|
|
172
191
|
export declare const zAddressViewResponse: z.ZodObject<{
|
|
173
192
|
country: z.ZodString;
|
|
@@ -289,6 +308,42 @@ export declare const zRolesRequest: z.ZodObject<{
|
|
|
289
308
|
PROPERTY_READ_ALL: "PROPERTY_READ_ALL";
|
|
290
309
|
}>>;
|
|
291
310
|
}, z.core.$strip>;
|
|
311
|
+
export declare const zSpotAgencyPrincipal: z.ZodObject<{
|
|
312
|
+
id: z.ZodOptional<z.ZodString>;
|
|
313
|
+
email: z.ZodOptional<z.ZodObject<{
|
|
314
|
+
value: z.ZodOptional<z.ZodString>;
|
|
315
|
+
}, z.core.$strip>>;
|
|
316
|
+
fullName: z.ZodOptional<z.ZodObject<{
|
|
317
|
+
firstName: z.ZodOptional<z.ZodObject<{
|
|
318
|
+
value: z.ZodOptional<z.ZodString>;
|
|
319
|
+
}, z.core.$strip>>;
|
|
320
|
+
lastName: z.ZodOptional<z.ZodObject<{
|
|
321
|
+
value: z.ZodOptional<z.ZodString>;
|
|
322
|
+
}, z.core.$strip>>;
|
|
323
|
+
}, z.core.$strip>>;
|
|
324
|
+
memberId: z.ZodOptional<z.ZodUUID>;
|
|
325
|
+
agencyId: z.ZodOptional<z.ZodUUID>;
|
|
326
|
+
permissions: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
327
|
+
AGENCY_WRITE: "AGENCY_WRITE";
|
|
328
|
+
INVITATION_READ: "INVITATION_READ";
|
|
329
|
+
INVITATION_WRITE: "INVITATION_WRITE";
|
|
330
|
+
ROLE_READ: "ROLE_READ";
|
|
331
|
+
ROLE_WRITE: "ROLE_WRITE";
|
|
332
|
+
MEMBER_READ: "MEMBER_READ";
|
|
333
|
+
MEMBER_WRITE: "MEMBER_WRITE";
|
|
334
|
+
LEAD_READ: "LEAD_READ";
|
|
335
|
+
LEAD_WRITE: "LEAD_WRITE";
|
|
336
|
+
LEAD_READ_ALL: "LEAD_READ_ALL";
|
|
337
|
+
LEAD_WRITE_ALL: "LEAD_WRITE_ALL";
|
|
338
|
+
CLIENT_READ: "CLIENT_READ";
|
|
339
|
+
CLIENT_WRITE: "CLIENT_WRITE";
|
|
340
|
+
CLIENT_READ_ALL: "CLIENT_READ_ALL";
|
|
341
|
+
CLIENT_WRITE_ALL: "CLIENT_WRITE_ALL";
|
|
342
|
+
PROPERTY_READ_ALL: "PROPERTY_READ_ALL";
|
|
343
|
+
}>>>;
|
|
344
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
345
|
+
isOwner: z.ZodOptional<z.ZodBoolean>;
|
|
346
|
+
}, z.core.$strip>;
|
|
292
347
|
export declare const zAgencyPrincipalDto: z.ZodObject<{
|
|
293
348
|
memberId: z.ZodOptional<z.ZodUUID>;
|
|
294
349
|
permissions: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
@@ -645,6 +700,7 @@ export declare const zIntentResponse: z.ZodObject<{
|
|
|
645
700
|
numberOfRooms: z.ZodOptional<z.ZodInt>;
|
|
646
701
|
}, z.core.$strip>;
|
|
647
702
|
export declare const zClientInterestResponse: z.ZodObject<{
|
|
703
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
648
704
|
propertyTypes: z.ZodArray<z.ZodEnum<{
|
|
649
705
|
GARAGE: "GARAGE";
|
|
650
706
|
HOUSE: "HOUSE";
|
|
@@ -733,6 +789,24 @@ export declare const zContactInfoResponse: z.ZodObject<{
|
|
|
733
789
|
phoneNumber: z.ZodString;
|
|
734
790
|
email: z.ZodOptional<z.ZodString>;
|
|
735
791
|
}, z.core.$strip>;
|
|
792
|
+
export declare const zTypeEnum: z.ZodEnum<{
|
|
793
|
+
EXCLUSIVE: "EXCLUSIVE";
|
|
794
|
+
NON_EXCLUSIVE: "NON_EXCLUSIVE";
|
|
795
|
+
}>;
|
|
796
|
+
export declare const zAgreementRequest: z.ZodObject<{
|
|
797
|
+
type: z.ZodEnum<{
|
|
798
|
+
EXCLUSIVE: "EXCLUSIVE";
|
|
799
|
+
NON_EXCLUSIVE: "NON_EXCLUSIVE";
|
|
800
|
+
}>;
|
|
801
|
+
expiresAt: z.ZodOptional<z.ZodISODate>;
|
|
802
|
+
}, z.core.$strip>;
|
|
803
|
+
export declare const zAgreementResponse: z.ZodObject<{
|
|
804
|
+
agreement: z.ZodEnum<{
|
|
805
|
+
EXCLUSIVE: "EXCLUSIVE";
|
|
806
|
+
NON_EXCLUSIVE: "NON_EXCLUSIVE";
|
|
807
|
+
}>;
|
|
808
|
+
expiryDate: z.ZodOptional<z.ZodISODate>;
|
|
809
|
+
}, z.core.$strip>;
|
|
736
810
|
export declare const zPriorityEnum: z.ZodEnum<{
|
|
737
811
|
CRITICAL: "CRITICAL";
|
|
738
812
|
HIGH: "HIGH";
|
|
@@ -807,7 +881,7 @@ export declare const zCommunicationPreferenceResponse: z.ZodObject<{
|
|
|
807
881
|
PHONE_CALL: "PHONE_CALL";
|
|
808
882
|
}>>;
|
|
809
883
|
}, z.core.$strip>;
|
|
810
|
-
export declare const
|
|
884
|
+
export declare const zTypeEnum2: z.ZodEnum<{
|
|
811
885
|
FACEBOOK: "FACEBOOK";
|
|
812
886
|
YOUTUBE: "YOUTUBE";
|
|
813
887
|
INSTAGRAM: "INSTAGRAM";
|
|
@@ -849,7 +923,37 @@ export declare const zRecordOutcomeRequest: z.ZodObject<{
|
|
|
849
923
|
}>;
|
|
850
924
|
reason: z.ZodOptional<z.ZodString>;
|
|
851
925
|
}, z.core.$strip>;
|
|
852
|
-
export declare const
|
|
926
|
+
export declare const zCommissionTypeEnum: z.ZodEnum<{
|
|
927
|
+
FIXED_SALE: "FIXED_SALE";
|
|
928
|
+
FIXED_RENT: "FIXED_RENT";
|
|
929
|
+
PERCENTAGE: "PERCENTAGE";
|
|
930
|
+
MONTHS_OF_RENT: "MONTHS_OF_RENT";
|
|
931
|
+
}>;
|
|
932
|
+
export declare const zAddDealRequest: z.ZodObject<{
|
|
933
|
+
listingId: z.ZodCoercedBigInt<unknown>;
|
|
934
|
+
commissionType: z.ZodEnum<{
|
|
935
|
+
FIXED_SALE: "FIXED_SALE";
|
|
936
|
+
FIXED_RENT: "FIXED_RENT";
|
|
937
|
+
PERCENTAGE: "PERCENTAGE";
|
|
938
|
+
MONTHS_OF_RENT: "MONTHS_OF_RENT";
|
|
939
|
+
}>;
|
|
940
|
+
rate: z.ZodOptional<z.ZodNumber>;
|
|
941
|
+
amount: z.ZodOptional<z.ZodNumber>;
|
|
942
|
+
factor: z.ZodOptional<z.ZodNumber>;
|
|
943
|
+
}, z.core.$strip>;
|
|
944
|
+
export declare const zDealResponse: z.ZodObject<{
|
|
945
|
+
type: z.ZodEnum<{
|
|
946
|
+
FIXED_SALE: "FIXED_SALE";
|
|
947
|
+
FIXED_RENT: "FIXED_RENT";
|
|
948
|
+
PERCENTAGE: "PERCENTAGE";
|
|
949
|
+
MONTHS_OF_RENT: "MONTHS_OF_RENT";
|
|
950
|
+
}>;
|
|
951
|
+
rate: z.ZodOptional<z.ZodNumber>;
|
|
952
|
+
fixedAmount: z.ZodOptional<z.ZodNumber>;
|
|
953
|
+
months: z.ZodOptional<z.ZodNumber>;
|
|
954
|
+
commission: z.ZodNumber;
|
|
955
|
+
}, z.core.$strip>;
|
|
956
|
+
export declare const zTypeEnum3: z.ZodEnum<{
|
|
853
957
|
JPEG: "JPEG";
|
|
854
958
|
JPG: "JPG";
|
|
855
959
|
PNG: "PNG";
|
|
@@ -1247,16 +1351,32 @@ export declare const zPagedModelClientGridResponse: z.ZodObject<{
|
|
|
1247
1351
|
totalPages: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
1248
1352
|
}, z.core.$strip>>;
|
|
1249
1353
|
}, z.core.$strip>;
|
|
1250
|
-
export declare const
|
|
1251
|
-
|
|
1252
|
-
|
|
1354
|
+
export declare const zSourceResponse: z.ZodObject<{
|
|
1355
|
+
sourceType: z.ZodEnum<{
|
|
1356
|
+
UNKNOWN: "UNKNOWN";
|
|
1357
|
+
FACEBOOK: "FACEBOOK";
|
|
1358
|
+
YOUTUBE: "YOUTUBE";
|
|
1359
|
+
INSTAGRAM: "INSTAGRAM";
|
|
1360
|
+
TIKTOK: "TIKTOK";
|
|
1361
|
+
LINKEDIN: "LINKEDIN";
|
|
1362
|
+
MY_HOME: "MY_HOME";
|
|
1363
|
+
SS: "SS";
|
|
1364
|
+
}>;
|
|
1365
|
+
sourceLink: z.ZodOptional<z.ZodString>;
|
|
1366
|
+
}, z.core.$strip>;
|
|
1367
|
+
export declare const zTierEnum: z.ZodEnum<{
|
|
1368
|
+
VIP: "VIP";
|
|
1369
|
+
VIP_PLUS: "VIP_PLUS";
|
|
1370
|
+
SUPER_VIP: "SUPER_VIP";
|
|
1253
1371
|
}>;
|
|
1254
|
-
export declare const
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1372
|
+
export declare const zActiveBoostResponse: z.ZodObject<{
|
|
1373
|
+
tier: z.ZodEnum<{
|
|
1374
|
+
VIP: "VIP";
|
|
1375
|
+
VIP_PLUS: "VIP_PLUS";
|
|
1376
|
+
SUPER_VIP: "SUPER_VIP";
|
|
1258
1377
|
}>;
|
|
1259
|
-
|
|
1378
|
+
activatedAt: z.ZodISODate;
|
|
1379
|
+
expiresAt: z.ZodISODate;
|
|
1260
1380
|
}, z.core.$strip>;
|
|
1261
1381
|
export declare const zStateEnum: z.ZodEnum<{
|
|
1262
1382
|
IN_REGISTRATION: "IN_REGISTRATION";
|
|
@@ -1265,22 +1385,6 @@ export declare const zStateEnum: z.ZodEnum<{
|
|
|
1265
1385
|
LISTED: "LISTED";
|
|
1266
1386
|
CLOSED: "CLOSED";
|
|
1267
1387
|
}>;
|
|
1268
|
-
export declare const zTypeEnum3: z.ZodEnum<{
|
|
1269
|
-
FIXED: "FIXED";
|
|
1270
|
-
PERCENTAGE: "PERCENTAGE";
|
|
1271
|
-
MONTHS_OF_RENT: "MONTHS_OF_RENT";
|
|
1272
|
-
}>;
|
|
1273
|
-
export declare const zDealResponse: z.ZodObject<{
|
|
1274
|
-
type: z.ZodEnum<{
|
|
1275
|
-
FIXED: "FIXED";
|
|
1276
|
-
PERCENTAGE: "PERCENTAGE";
|
|
1277
|
-
MONTHS_OF_RENT: "MONTHS_OF_RENT";
|
|
1278
|
-
}>;
|
|
1279
|
-
rate: z.ZodOptional<z.ZodNumber>;
|
|
1280
|
-
fixedAmount: z.ZodOptional<z.ZodNumber>;
|
|
1281
|
-
months: z.ZodOptional<z.ZodNumber>;
|
|
1282
|
-
commission: z.ZodNumber;
|
|
1283
|
-
}, z.core.$strip>;
|
|
1284
1388
|
export declare const zPlatformTypeEnum: z.ZodEnum<{
|
|
1285
1389
|
MY_HOME: "MY_HOME";
|
|
1286
1390
|
SS: "SS";
|
|
@@ -1291,11 +1395,22 @@ export declare const zPlatformListingResponse: z.ZodObject<{
|
|
|
1291
1395
|
MY_HOME: "MY_HOME";
|
|
1292
1396
|
SS: "SS";
|
|
1293
1397
|
}>;
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1398
|
+
uploadDate: z.ZodISODate;
|
|
1399
|
+
expiryDate: z.ZodISODate;
|
|
1400
|
+
renewedDate: z.ZodOptional<z.ZodISODate>;
|
|
1401
|
+
boost: z.ZodOptional<z.ZodObject<{
|
|
1402
|
+
tier: z.ZodEnum<{
|
|
1403
|
+
VIP: "VIP";
|
|
1404
|
+
VIP_PLUS: "VIP_PLUS";
|
|
1405
|
+
SUPER_VIP: "SUPER_VIP";
|
|
1406
|
+
}>;
|
|
1407
|
+
activatedAt: z.ZodISODate;
|
|
1408
|
+
expiresAt: z.ZodISODate;
|
|
1409
|
+
}, z.core.$strip>>;
|
|
1410
|
+
coloredListing: z.ZodOptional<z.ZodObject<{
|
|
1411
|
+
activatedAt: z.ZodISODate;
|
|
1412
|
+
expiresAt: z.ZodISODate;
|
|
1413
|
+
}, z.core.$strip>>;
|
|
1299
1414
|
}, z.core.$strip>;
|
|
1300
1415
|
export declare const zClientListingsResponse: z.ZodObject<{
|
|
1301
1416
|
publicId: z.ZodCoercedBigInt<unknown>;
|
|
@@ -1309,7 +1424,8 @@ export declare const zClientListingsResponse: z.ZodObject<{
|
|
|
1309
1424
|
price: z.ZodNumber;
|
|
1310
1425
|
deal: z.ZodOptional<z.ZodObject<{
|
|
1311
1426
|
type: z.ZodEnum<{
|
|
1312
|
-
|
|
1427
|
+
FIXED_SALE: "FIXED_SALE";
|
|
1428
|
+
FIXED_RENT: "FIXED_RENT";
|
|
1313
1429
|
PERCENTAGE: "PERCENTAGE";
|
|
1314
1430
|
MONTHS_OF_RENT: "MONTHS_OF_RENT";
|
|
1315
1431
|
}>;
|
|
@@ -1324,11 +1440,22 @@ export declare const zClientListingsResponse: z.ZodObject<{
|
|
|
1324
1440
|
MY_HOME: "MY_HOME";
|
|
1325
1441
|
SS: "SS";
|
|
1326
1442
|
}>;
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1443
|
+
uploadDate: z.ZodISODate;
|
|
1444
|
+
expiryDate: z.ZodISODate;
|
|
1445
|
+
renewedDate: z.ZodOptional<z.ZodISODate>;
|
|
1446
|
+
boost: z.ZodOptional<z.ZodObject<{
|
|
1447
|
+
tier: z.ZodEnum<{
|
|
1448
|
+
VIP: "VIP";
|
|
1449
|
+
VIP_PLUS: "VIP_PLUS";
|
|
1450
|
+
SUPER_VIP: "SUPER_VIP";
|
|
1451
|
+
}>;
|
|
1452
|
+
activatedAt: z.ZodISODate;
|
|
1453
|
+
expiresAt: z.ZodISODate;
|
|
1454
|
+
}, z.core.$strip>>;
|
|
1455
|
+
coloredListing: z.ZodOptional<z.ZodObject<{
|
|
1456
|
+
activatedAt: z.ZodISODate;
|
|
1457
|
+
expiresAt: z.ZodISODate;
|
|
1458
|
+
}, z.core.$strip>>;
|
|
1332
1459
|
}, z.core.$strip>>;
|
|
1333
1460
|
}, z.core.$strip>;
|
|
1334
1461
|
export declare const zClientPropertyResponse: z.ZodObject<{
|
|
@@ -1363,14 +1490,13 @@ export declare const zClientPropertyResponse: z.ZodObject<{
|
|
|
1363
1490
|
LISTED: "LISTED";
|
|
1364
1491
|
CLOSED: "CLOSED";
|
|
1365
1492
|
}>;
|
|
1366
|
-
agreement: z.ZodObject<{
|
|
1367
|
-
agreement: z.ZodEnum<{
|
|
1368
|
-
EXCLUSIVE: "EXCLUSIVE";
|
|
1369
|
-
NON_EXCLUSIVE: "NON_EXCLUSIVE";
|
|
1370
|
-
}>;
|
|
1371
|
-
expiryDate: z.ZodOptional<z.ZodISODateTime>;
|
|
1372
|
-
}, z.core.$strip>;
|
|
1373
1493
|
details: z.ZodOptional<z.ZodObject<{
|
|
1494
|
+
title: z.ZodString;
|
|
1495
|
+
coverPhoto: z.ZodOptional<z.ZodString>;
|
|
1496
|
+
photoCount: z.ZodOptional<z.ZodInt>;
|
|
1497
|
+
totalArea: z.ZodNumber;
|
|
1498
|
+
livingArea: z.ZodOptional<z.ZodNumber>;
|
|
1499
|
+
balconyArea: z.ZodOptional<z.ZodNumber>;
|
|
1374
1500
|
address: z.ZodObject<{
|
|
1375
1501
|
regionId: z.ZodCoercedBigInt<unknown>;
|
|
1376
1502
|
districtId: z.ZodCoercedBigInt<unknown>;
|
|
@@ -1380,12 +1506,14 @@ export declare const zClientPropertyResponse: z.ZodObject<{
|
|
|
1380
1506
|
lat: z.ZodNumber;
|
|
1381
1507
|
lng: z.ZodNumber;
|
|
1382
1508
|
}, z.core.$strip>;
|
|
1383
|
-
title: z.ZodString;
|
|
1384
|
-
coverPhoto: z.ZodOptional<z.ZodString>;
|
|
1385
|
-
totalArea: z.ZodNumber;
|
|
1386
|
-
livingArea: z.ZodOptional<z.ZodNumber>;
|
|
1387
|
-
balconyArea: z.ZodOptional<z.ZodNumber>;
|
|
1388
1509
|
}, z.core.$strip>>;
|
|
1510
|
+
agreement: z.ZodObject<{
|
|
1511
|
+
agreement: z.ZodEnum<{
|
|
1512
|
+
EXCLUSIVE: "EXCLUSIVE";
|
|
1513
|
+
NON_EXCLUSIVE: "NON_EXCLUSIVE";
|
|
1514
|
+
}>;
|
|
1515
|
+
expiryDate: z.ZodOptional<z.ZodISODate>;
|
|
1516
|
+
}, z.core.$strip>;
|
|
1389
1517
|
listings: z.ZodArray<z.ZodObject<{
|
|
1390
1518
|
publicId: z.ZodCoercedBigInt<unknown>;
|
|
1391
1519
|
listingId: z.ZodUUID;
|
|
@@ -1398,7 +1526,8 @@ export declare const zClientPropertyResponse: z.ZodObject<{
|
|
|
1398
1526
|
price: z.ZodNumber;
|
|
1399
1527
|
deal: z.ZodOptional<z.ZodObject<{
|
|
1400
1528
|
type: z.ZodEnum<{
|
|
1401
|
-
|
|
1529
|
+
FIXED_SALE: "FIXED_SALE";
|
|
1530
|
+
FIXED_RENT: "FIXED_RENT";
|
|
1402
1531
|
PERCENTAGE: "PERCENTAGE";
|
|
1403
1532
|
MONTHS_OF_RENT: "MONTHS_OF_RENT";
|
|
1404
1533
|
}>;
|
|
@@ -1413,24 +1542,36 @@ export declare const zClientPropertyResponse: z.ZodObject<{
|
|
|
1413
1542
|
MY_HOME: "MY_HOME";
|
|
1414
1543
|
SS: "SS";
|
|
1415
1544
|
}>;
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1545
|
+
uploadDate: z.ZodISODate;
|
|
1546
|
+
expiryDate: z.ZodISODate;
|
|
1547
|
+
renewedDate: z.ZodOptional<z.ZodISODate>;
|
|
1548
|
+
boost: z.ZodOptional<z.ZodObject<{
|
|
1549
|
+
tier: z.ZodEnum<{
|
|
1550
|
+
VIP: "VIP";
|
|
1551
|
+
VIP_PLUS: "VIP_PLUS";
|
|
1552
|
+
SUPER_VIP: "SUPER_VIP";
|
|
1553
|
+
}>;
|
|
1554
|
+
activatedAt: z.ZodISODate;
|
|
1555
|
+
expiresAt: z.ZodISODate;
|
|
1556
|
+
}, z.core.$strip>>;
|
|
1557
|
+
coloredListing: z.ZodOptional<z.ZodObject<{
|
|
1558
|
+
activatedAt: z.ZodISODate;
|
|
1559
|
+
expiresAt: z.ZodISODate;
|
|
1560
|
+
}, z.core.$strip>>;
|
|
1421
1561
|
}, z.core.$strip>>;
|
|
1422
1562
|
}, z.core.$strip>>;
|
|
1423
1563
|
}, z.core.$strip>;
|
|
1424
1564
|
export declare const zClient360Response: z.ZodObject<{
|
|
1425
|
-
clientId: z.
|
|
1565
|
+
clientId: z.ZodCoercedBigInt<unknown>;
|
|
1426
1566
|
agencyId: z.ZodUUID;
|
|
1427
1567
|
clientUserId: z.ZodOptional<z.ZodString>;
|
|
1428
|
-
|
|
1568
|
+
createdBy: z.ZodUUID;
|
|
1569
|
+
assignedMember: z.ZodOptional<z.ZodObject<{
|
|
1429
1570
|
memberId: z.ZodUUID;
|
|
1430
1571
|
name: z.ZodString;
|
|
1431
1572
|
phone: z.ZodString;
|
|
1432
1573
|
email: z.ZodString;
|
|
1433
|
-
}, z.core.$strip
|
|
1574
|
+
}, z.core.$strip>>;
|
|
1434
1575
|
contactInfo: z.ZodObject<{
|
|
1435
1576
|
firstName: z.ZodOptional<z.ZodString>;
|
|
1436
1577
|
lastName: z.ZodOptional<z.ZodString>;
|
|
@@ -1442,6 +1583,19 @@ export declare const zClient360Response: z.ZodObject<{
|
|
|
1442
1583
|
phoneNumber: z.ZodString;
|
|
1443
1584
|
email: z.ZodOptional<z.ZodString>;
|
|
1444
1585
|
}, z.core.$strip>;
|
|
1586
|
+
source: z.ZodObject<{
|
|
1587
|
+
sourceType: z.ZodEnum<{
|
|
1588
|
+
UNKNOWN: "UNKNOWN";
|
|
1589
|
+
FACEBOOK: "FACEBOOK";
|
|
1590
|
+
YOUTUBE: "YOUTUBE";
|
|
1591
|
+
INSTAGRAM: "INSTAGRAM";
|
|
1592
|
+
TIKTOK: "TIKTOK";
|
|
1593
|
+
LINKEDIN: "LINKEDIN";
|
|
1594
|
+
MY_HOME: "MY_HOME";
|
|
1595
|
+
SS: "SS";
|
|
1596
|
+
}>;
|
|
1597
|
+
sourceLink: z.ZodOptional<z.ZodString>;
|
|
1598
|
+
}, z.core.$strip>;
|
|
1445
1599
|
communicationPreference: z.ZodOptional<z.ZodObject<{
|
|
1446
1600
|
preferredContactMethod: z.ZodOptional<z.ZodEnum<{
|
|
1447
1601
|
WHATSAPP: "WHATSAPP";
|
|
@@ -1456,14 +1610,16 @@ export declare const zClient360Response: z.ZodObject<{
|
|
|
1456
1610
|
}, z.core.$strip>>;
|
|
1457
1611
|
isSearching: z.ZodBoolean;
|
|
1458
1612
|
isListing: z.ZodBoolean;
|
|
1459
|
-
priority: z.ZodEnum<{
|
|
1613
|
+
priority: z.ZodOptional<z.ZodEnum<{
|
|
1460
1614
|
CRITICAL: "CRITICAL";
|
|
1461
1615
|
HIGH: "HIGH";
|
|
1462
1616
|
MEDIUM: "MEDIUM";
|
|
1463
1617
|
LOW: "LOW";
|
|
1464
|
-
}
|
|
1618
|
+
}>>;
|
|
1465
1619
|
createdAt: z.ZodISODateTime;
|
|
1620
|
+
updatedAt: z.ZodISODateTime;
|
|
1466
1621
|
interests: z.ZodArray<z.ZodObject<{
|
|
1622
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
1467
1623
|
propertyTypes: z.ZodArray<z.ZodEnum<{
|
|
1468
1624
|
GARAGE: "GARAGE";
|
|
1469
1625
|
HOUSE: "HOUSE";
|
|
@@ -1542,14 +1698,13 @@ export declare const zClient360Response: z.ZodObject<{
|
|
|
1542
1698
|
LISTED: "LISTED";
|
|
1543
1699
|
CLOSED: "CLOSED";
|
|
1544
1700
|
}>;
|
|
1545
|
-
agreement: z.ZodObject<{
|
|
1546
|
-
agreement: z.ZodEnum<{
|
|
1547
|
-
EXCLUSIVE: "EXCLUSIVE";
|
|
1548
|
-
NON_EXCLUSIVE: "NON_EXCLUSIVE";
|
|
1549
|
-
}>;
|
|
1550
|
-
expiryDate: z.ZodOptional<z.ZodISODateTime>;
|
|
1551
|
-
}, z.core.$strip>;
|
|
1552
1701
|
details: z.ZodOptional<z.ZodObject<{
|
|
1702
|
+
title: z.ZodString;
|
|
1703
|
+
coverPhoto: z.ZodOptional<z.ZodString>;
|
|
1704
|
+
photoCount: z.ZodOptional<z.ZodInt>;
|
|
1705
|
+
totalArea: z.ZodNumber;
|
|
1706
|
+
livingArea: z.ZodOptional<z.ZodNumber>;
|
|
1707
|
+
balconyArea: z.ZodOptional<z.ZodNumber>;
|
|
1553
1708
|
address: z.ZodObject<{
|
|
1554
1709
|
regionId: z.ZodCoercedBigInt<unknown>;
|
|
1555
1710
|
districtId: z.ZodCoercedBigInt<unknown>;
|
|
@@ -1559,12 +1714,14 @@ export declare const zClient360Response: z.ZodObject<{
|
|
|
1559
1714
|
lat: z.ZodNumber;
|
|
1560
1715
|
lng: z.ZodNumber;
|
|
1561
1716
|
}, z.core.$strip>;
|
|
1562
|
-
title: z.ZodString;
|
|
1563
|
-
coverPhoto: z.ZodOptional<z.ZodString>;
|
|
1564
|
-
totalArea: z.ZodNumber;
|
|
1565
|
-
livingArea: z.ZodOptional<z.ZodNumber>;
|
|
1566
|
-
balconyArea: z.ZodOptional<z.ZodNumber>;
|
|
1567
1717
|
}, z.core.$strip>>;
|
|
1718
|
+
agreement: z.ZodObject<{
|
|
1719
|
+
agreement: z.ZodEnum<{
|
|
1720
|
+
EXCLUSIVE: "EXCLUSIVE";
|
|
1721
|
+
NON_EXCLUSIVE: "NON_EXCLUSIVE";
|
|
1722
|
+
}>;
|
|
1723
|
+
expiryDate: z.ZodOptional<z.ZodISODate>;
|
|
1724
|
+
}, z.core.$strip>;
|
|
1568
1725
|
listings: z.ZodArray<z.ZodObject<{
|
|
1569
1726
|
publicId: z.ZodCoercedBigInt<unknown>;
|
|
1570
1727
|
listingId: z.ZodUUID;
|
|
@@ -1577,7 +1734,8 @@ export declare const zClient360Response: z.ZodObject<{
|
|
|
1577
1734
|
price: z.ZodNumber;
|
|
1578
1735
|
deal: z.ZodOptional<z.ZodObject<{
|
|
1579
1736
|
type: z.ZodEnum<{
|
|
1580
|
-
|
|
1737
|
+
FIXED_SALE: "FIXED_SALE";
|
|
1738
|
+
FIXED_RENT: "FIXED_RENT";
|
|
1581
1739
|
PERCENTAGE: "PERCENTAGE";
|
|
1582
1740
|
MONTHS_OF_RENT: "MONTHS_OF_RENT";
|
|
1583
1741
|
}>;
|
|
@@ -1592,11 +1750,22 @@ export declare const zClient360Response: z.ZodObject<{
|
|
|
1592
1750
|
MY_HOME: "MY_HOME";
|
|
1593
1751
|
SS: "SS";
|
|
1594
1752
|
}>;
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1753
|
+
uploadDate: z.ZodISODate;
|
|
1754
|
+
expiryDate: z.ZodISODate;
|
|
1755
|
+
renewedDate: z.ZodOptional<z.ZodISODate>;
|
|
1756
|
+
boost: z.ZodOptional<z.ZodObject<{
|
|
1757
|
+
tier: z.ZodEnum<{
|
|
1758
|
+
VIP: "VIP";
|
|
1759
|
+
VIP_PLUS: "VIP_PLUS";
|
|
1760
|
+
SUPER_VIP: "SUPER_VIP";
|
|
1761
|
+
}>;
|
|
1762
|
+
activatedAt: z.ZodISODate;
|
|
1763
|
+
expiresAt: z.ZodISODate;
|
|
1764
|
+
}, z.core.$strip>>;
|
|
1765
|
+
coloredListing: z.ZodOptional<z.ZodObject<{
|
|
1766
|
+
activatedAt: z.ZodISODate;
|
|
1767
|
+
expiresAt: z.ZodISODate;
|
|
1768
|
+
}, z.core.$strip>>;
|
|
1600
1769
|
}, z.core.$strip>>;
|
|
1601
1770
|
}, z.core.$strip>>;
|
|
1602
1771
|
}, z.core.$strip>>;
|
|
@@ -1811,6 +1980,57 @@ export declare const zPutClientsByClientIdSourceData: z.ZodObject<{
|
|
|
1811
1980
|
* No Content
|
|
1812
1981
|
*/
|
|
1813
1982
|
export declare const zPutClientsByClientIdSourceResponse: z.ZodVoid;
|
|
1983
|
+
export declare const zPutClientsByClientIdPropertiesByPropertyIdAgreementData: z.ZodObject<{
|
|
1984
|
+
body: z.ZodObject<{
|
|
1985
|
+
type: z.ZodEnum<{
|
|
1986
|
+
EXCLUSIVE: "EXCLUSIVE";
|
|
1987
|
+
NON_EXCLUSIVE: "NON_EXCLUSIVE";
|
|
1988
|
+
}>;
|
|
1989
|
+
expiresAt: z.ZodOptional<z.ZodISODate>;
|
|
1990
|
+
}, z.core.$strip>;
|
|
1991
|
+
path: z.ZodObject<{
|
|
1992
|
+
clientId: z.ZodCoercedBigInt<unknown>;
|
|
1993
|
+
propertyId: z.ZodCoercedBigInt<unknown>;
|
|
1994
|
+
}, z.core.$strip>;
|
|
1995
|
+
query: z.ZodObject<{
|
|
1996
|
+
principal: z.ZodObject<{
|
|
1997
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1998
|
+
email: z.ZodOptional<z.ZodObject<{
|
|
1999
|
+
value: z.ZodOptional<z.ZodString>;
|
|
2000
|
+
}, z.core.$strip>>;
|
|
2001
|
+
fullName: z.ZodOptional<z.ZodObject<{
|
|
2002
|
+
firstName: z.ZodOptional<z.ZodObject<{
|
|
2003
|
+
value: z.ZodOptional<z.ZodString>;
|
|
2004
|
+
}, z.core.$strip>>;
|
|
2005
|
+
lastName: z.ZodOptional<z.ZodObject<{
|
|
2006
|
+
value: z.ZodOptional<z.ZodString>;
|
|
2007
|
+
}, z.core.$strip>>;
|
|
2008
|
+
}, z.core.$strip>>;
|
|
2009
|
+
memberId: z.ZodOptional<z.ZodUUID>;
|
|
2010
|
+
agencyId: z.ZodOptional<z.ZodUUID>;
|
|
2011
|
+
permissions: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2012
|
+
AGENCY_WRITE: "AGENCY_WRITE";
|
|
2013
|
+
INVITATION_READ: "INVITATION_READ";
|
|
2014
|
+
INVITATION_WRITE: "INVITATION_WRITE";
|
|
2015
|
+
ROLE_READ: "ROLE_READ";
|
|
2016
|
+
ROLE_WRITE: "ROLE_WRITE";
|
|
2017
|
+
MEMBER_READ: "MEMBER_READ";
|
|
2018
|
+
MEMBER_WRITE: "MEMBER_WRITE";
|
|
2019
|
+
LEAD_READ: "LEAD_READ";
|
|
2020
|
+
LEAD_WRITE: "LEAD_WRITE";
|
|
2021
|
+
LEAD_READ_ALL: "LEAD_READ_ALL";
|
|
2022
|
+
LEAD_WRITE_ALL: "LEAD_WRITE_ALL";
|
|
2023
|
+
CLIENT_READ: "CLIENT_READ";
|
|
2024
|
+
CLIENT_WRITE: "CLIENT_WRITE";
|
|
2025
|
+
CLIENT_READ_ALL: "CLIENT_READ_ALL";
|
|
2026
|
+
CLIENT_WRITE_ALL: "CLIENT_WRITE_ALL";
|
|
2027
|
+
PROPERTY_READ_ALL: "PROPERTY_READ_ALL";
|
|
2028
|
+
}>>>;
|
|
2029
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
2030
|
+
isOwner: z.ZodOptional<z.ZodBoolean>;
|
|
2031
|
+
}, z.core.$strip>;
|
|
2032
|
+
}, z.core.$strip>;
|
|
2033
|
+
}, z.core.$strip>;
|
|
1814
2034
|
export declare const zPutClientsByClientIdPriorityData: z.ZodObject<{
|
|
1815
2035
|
body: z.ZodObject<{
|
|
1816
2036
|
priority: z.ZodOptional<z.ZodEnum<{
|
|
@@ -2341,6 +2561,117 @@ export declare const zPostClientsData: z.ZodObject<{
|
|
|
2341
2561
|
export declare const zPostClientsResponse: z.ZodObject<{
|
|
2342
2562
|
value: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2343
2563
|
}, z.core.$strip>;
|
|
2564
|
+
export declare const zDeleteClientsByClientIdPropertiesByPropertyIdListingsByListingIdDealData: z.ZodObject<{
|
|
2565
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
2566
|
+
path: z.ZodObject<{
|
|
2567
|
+
clientId: z.ZodCoercedBigInt<unknown>;
|
|
2568
|
+
propertyId: z.ZodCoercedBigInt<unknown>;
|
|
2569
|
+
listingId: z.ZodCoercedBigInt<unknown>;
|
|
2570
|
+
}, z.core.$strip>;
|
|
2571
|
+
query: z.ZodObject<{
|
|
2572
|
+
principal: z.ZodObject<{
|
|
2573
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2574
|
+
email: z.ZodOptional<z.ZodObject<{
|
|
2575
|
+
value: z.ZodOptional<z.ZodString>;
|
|
2576
|
+
}, z.core.$strip>>;
|
|
2577
|
+
fullName: z.ZodOptional<z.ZodObject<{
|
|
2578
|
+
firstName: z.ZodOptional<z.ZodObject<{
|
|
2579
|
+
value: z.ZodOptional<z.ZodString>;
|
|
2580
|
+
}, z.core.$strip>>;
|
|
2581
|
+
lastName: z.ZodOptional<z.ZodObject<{
|
|
2582
|
+
value: z.ZodOptional<z.ZodString>;
|
|
2583
|
+
}, z.core.$strip>>;
|
|
2584
|
+
}, z.core.$strip>>;
|
|
2585
|
+
memberId: z.ZodOptional<z.ZodUUID>;
|
|
2586
|
+
agencyId: z.ZodOptional<z.ZodUUID>;
|
|
2587
|
+
permissions: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2588
|
+
AGENCY_WRITE: "AGENCY_WRITE";
|
|
2589
|
+
INVITATION_READ: "INVITATION_READ";
|
|
2590
|
+
INVITATION_WRITE: "INVITATION_WRITE";
|
|
2591
|
+
ROLE_READ: "ROLE_READ";
|
|
2592
|
+
ROLE_WRITE: "ROLE_WRITE";
|
|
2593
|
+
MEMBER_READ: "MEMBER_READ";
|
|
2594
|
+
MEMBER_WRITE: "MEMBER_WRITE";
|
|
2595
|
+
LEAD_READ: "LEAD_READ";
|
|
2596
|
+
LEAD_WRITE: "LEAD_WRITE";
|
|
2597
|
+
LEAD_READ_ALL: "LEAD_READ_ALL";
|
|
2598
|
+
LEAD_WRITE_ALL: "LEAD_WRITE_ALL";
|
|
2599
|
+
CLIENT_READ: "CLIENT_READ";
|
|
2600
|
+
CLIENT_WRITE: "CLIENT_WRITE";
|
|
2601
|
+
CLIENT_READ_ALL: "CLIENT_READ_ALL";
|
|
2602
|
+
CLIENT_WRITE_ALL: "CLIENT_WRITE_ALL";
|
|
2603
|
+
PROPERTY_READ_ALL: "PROPERTY_READ_ALL";
|
|
2604
|
+
}>>>;
|
|
2605
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
2606
|
+
isOwner: z.ZodOptional<z.ZodBoolean>;
|
|
2607
|
+
}, z.core.$strip>;
|
|
2608
|
+
}, z.core.$strip>;
|
|
2609
|
+
}, z.core.$strip>;
|
|
2610
|
+
/**
|
|
2611
|
+
* No Content
|
|
2612
|
+
*/
|
|
2613
|
+
export declare const zDeleteClientsByClientIdPropertiesByPropertyIdListingsByListingIdDealResponse: z.ZodVoid;
|
|
2614
|
+
export declare const zPostClientsByClientIdPropertiesByPropertyIdListingsByListingIdDealData: z.ZodObject<{
|
|
2615
|
+
body: z.ZodObject<{
|
|
2616
|
+
listingId: z.ZodCoercedBigInt<unknown>;
|
|
2617
|
+
commissionType: z.ZodEnum<{
|
|
2618
|
+
FIXED_SALE: "FIXED_SALE";
|
|
2619
|
+
FIXED_RENT: "FIXED_RENT";
|
|
2620
|
+
PERCENTAGE: "PERCENTAGE";
|
|
2621
|
+
MONTHS_OF_RENT: "MONTHS_OF_RENT";
|
|
2622
|
+
}>;
|
|
2623
|
+
rate: z.ZodOptional<z.ZodNumber>;
|
|
2624
|
+
amount: z.ZodOptional<z.ZodNumber>;
|
|
2625
|
+
factor: z.ZodOptional<z.ZodNumber>;
|
|
2626
|
+
}, z.core.$strip>;
|
|
2627
|
+
path: z.ZodObject<{
|
|
2628
|
+
clientId: z.ZodCoercedBigInt<unknown>;
|
|
2629
|
+
propertyId: z.ZodCoercedBigInt<unknown>;
|
|
2630
|
+
listingId: z.ZodCoercedBigInt<unknown>;
|
|
2631
|
+
}, z.core.$strip>;
|
|
2632
|
+
query: z.ZodObject<{
|
|
2633
|
+
principal: z.ZodObject<{
|
|
2634
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2635
|
+
email: z.ZodOptional<z.ZodObject<{
|
|
2636
|
+
value: z.ZodOptional<z.ZodString>;
|
|
2637
|
+
}, z.core.$strip>>;
|
|
2638
|
+
fullName: z.ZodOptional<z.ZodObject<{
|
|
2639
|
+
firstName: z.ZodOptional<z.ZodObject<{
|
|
2640
|
+
value: z.ZodOptional<z.ZodString>;
|
|
2641
|
+
}, z.core.$strip>>;
|
|
2642
|
+
lastName: z.ZodOptional<z.ZodObject<{
|
|
2643
|
+
value: z.ZodOptional<z.ZodString>;
|
|
2644
|
+
}, z.core.$strip>>;
|
|
2645
|
+
}, z.core.$strip>>;
|
|
2646
|
+
memberId: z.ZodOptional<z.ZodUUID>;
|
|
2647
|
+
agencyId: z.ZodOptional<z.ZodUUID>;
|
|
2648
|
+
permissions: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2649
|
+
AGENCY_WRITE: "AGENCY_WRITE";
|
|
2650
|
+
INVITATION_READ: "INVITATION_READ";
|
|
2651
|
+
INVITATION_WRITE: "INVITATION_WRITE";
|
|
2652
|
+
ROLE_READ: "ROLE_READ";
|
|
2653
|
+
ROLE_WRITE: "ROLE_WRITE";
|
|
2654
|
+
MEMBER_READ: "MEMBER_READ";
|
|
2655
|
+
MEMBER_WRITE: "MEMBER_WRITE";
|
|
2656
|
+
LEAD_READ: "LEAD_READ";
|
|
2657
|
+
LEAD_WRITE: "LEAD_WRITE";
|
|
2658
|
+
LEAD_READ_ALL: "LEAD_READ_ALL";
|
|
2659
|
+
LEAD_WRITE_ALL: "LEAD_WRITE_ALL";
|
|
2660
|
+
CLIENT_READ: "CLIENT_READ";
|
|
2661
|
+
CLIENT_WRITE: "CLIENT_WRITE";
|
|
2662
|
+
CLIENT_READ_ALL: "CLIENT_READ_ALL";
|
|
2663
|
+
CLIENT_WRITE_ALL: "CLIENT_WRITE_ALL";
|
|
2664
|
+
PROPERTY_READ_ALL: "PROPERTY_READ_ALL";
|
|
2665
|
+
}>>>;
|
|
2666
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
2667
|
+
isOwner: z.ZodOptional<z.ZodBoolean>;
|
|
2668
|
+
}, z.core.$strip>;
|
|
2669
|
+
}, z.core.$strip>;
|
|
2670
|
+
}, z.core.$strip>;
|
|
2671
|
+
/**
|
|
2672
|
+
* No Content
|
|
2673
|
+
*/
|
|
2674
|
+
export declare const zPostClientsByClientIdPropertiesByPropertyIdListingsByListingIdDealResponse: z.ZodVoid;
|
|
2344
2675
|
export declare const zPostClientsByClientIdInterestsData: z.ZodObject<{
|
|
2345
2676
|
body: z.ZodObject<{
|
|
2346
2677
|
propertyTypes: z.ZodArray<z.ZodEnum<{
|
|
@@ -3183,15 +3514,16 @@ export declare const zGetClientByClientId360Data: z.ZodObject<{
|
|
|
3183
3514
|
* OK
|
|
3184
3515
|
*/
|
|
3185
3516
|
export declare const zGetClientByClientId360Response: z.ZodObject<{
|
|
3186
|
-
clientId: z.
|
|
3517
|
+
clientId: z.ZodCoercedBigInt<unknown>;
|
|
3187
3518
|
agencyId: z.ZodUUID;
|
|
3188
3519
|
clientUserId: z.ZodOptional<z.ZodString>;
|
|
3189
|
-
|
|
3520
|
+
createdBy: z.ZodUUID;
|
|
3521
|
+
assignedMember: z.ZodOptional<z.ZodObject<{
|
|
3190
3522
|
memberId: z.ZodUUID;
|
|
3191
3523
|
name: z.ZodString;
|
|
3192
3524
|
phone: z.ZodString;
|
|
3193
3525
|
email: z.ZodString;
|
|
3194
|
-
}, z.core.$strip
|
|
3526
|
+
}, z.core.$strip>>;
|
|
3195
3527
|
contactInfo: z.ZodObject<{
|
|
3196
3528
|
firstName: z.ZodOptional<z.ZodString>;
|
|
3197
3529
|
lastName: z.ZodOptional<z.ZodString>;
|
|
@@ -3203,6 +3535,19 @@ export declare const zGetClientByClientId360Response: z.ZodObject<{
|
|
|
3203
3535
|
phoneNumber: z.ZodString;
|
|
3204
3536
|
email: z.ZodOptional<z.ZodString>;
|
|
3205
3537
|
}, z.core.$strip>;
|
|
3538
|
+
source: z.ZodObject<{
|
|
3539
|
+
sourceType: z.ZodEnum<{
|
|
3540
|
+
UNKNOWN: "UNKNOWN";
|
|
3541
|
+
FACEBOOK: "FACEBOOK";
|
|
3542
|
+
YOUTUBE: "YOUTUBE";
|
|
3543
|
+
INSTAGRAM: "INSTAGRAM";
|
|
3544
|
+
TIKTOK: "TIKTOK";
|
|
3545
|
+
LINKEDIN: "LINKEDIN";
|
|
3546
|
+
MY_HOME: "MY_HOME";
|
|
3547
|
+
SS: "SS";
|
|
3548
|
+
}>;
|
|
3549
|
+
sourceLink: z.ZodOptional<z.ZodString>;
|
|
3550
|
+
}, z.core.$strip>;
|
|
3206
3551
|
communicationPreference: z.ZodOptional<z.ZodObject<{
|
|
3207
3552
|
preferredContactMethod: z.ZodOptional<z.ZodEnum<{
|
|
3208
3553
|
WHATSAPP: "WHATSAPP";
|
|
@@ -3217,14 +3562,16 @@ export declare const zGetClientByClientId360Response: z.ZodObject<{
|
|
|
3217
3562
|
}, z.core.$strip>>;
|
|
3218
3563
|
isSearching: z.ZodBoolean;
|
|
3219
3564
|
isListing: z.ZodBoolean;
|
|
3220
|
-
priority: z.ZodEnum<{
|
|
3565
|
+
priority: z.ZodOptional<z.ZodEnum<{
|
|
3221
3566
|
CRITICAL: "CRITICAL";
|
|
3222
3567
|
HIGH: "HIGH";
|
|
3223
3568
|
MEDIUM: "MEDIUM";
|
|
3224
3569
|
LOW: "LOW";
|
|
3225
|
-
}
|
|
3570
|
+
}>>;
|
|
3226
3571
|
createdAt: z.ZodISODateTime;
|
|
3572
|
+
updatedAt: z.ZodISODateTime;
|
|
3227
3573
|
interests: z.ZodArray<z.ZodObject<{
|
|
3574
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
3228
3575
|
propertyTypes: z.ZodArray<z.ZodEnum<{
|
|
3229
3576
|
GARAGE: "GARAGE";
|
|
3230
3577
|
HOUSE: "HOUSE";
|
|
@@ -3303,14 +3650,13 @@ export declare const zGetClientByClientId360Response: z.ZodObject<{
|
|
|
3303
3650
|
LISTED: "LISTED";
|
|
3304
3651
|
CLOSED: "CLOSED";
|
|
3305
3652
|
}>;
|
|
3306
|
-
agreement: z.ZodObject<{
|
|
3307
|
-
agreement: z.ZodEnum<{
|
|
3308
|
-
EXCLUSIVE: "EXCLUSIVE";
|
|
3309
|
-
NON_EXCLUSIVE: "NON_EXCLUSIVE";
|
|
3310
|
-
}>;
|
|
3311
|
-
expiryDate: z.ZodOptional<z.ZodISODateTime>;
|
|
3312
|
-
}, z.core.$strip>;
|
|
3313
3653
|
details: z.ZodOptional<z.ZodObject<{
|
|
3654
|
+
title: z.ZodString;
|
|
3655
|
+
coverPhoto: z.ZodOptional<z.ZodString>;
|
|
3656
|
+
photoCount: z.ZodOptional<z.ZodInt>;
|
|
3657
|
+
totalArea: z.ZodNumber;
|
|
3658
|
+
livingArea: z.ZodOptional<z.ZodNumber>;
|
|
3659
|
+
balconyArea: z.ZodOptional<z.ZodNumber>;
|
|
3314
3660
|
address: z.ZodObject<{
|
|
3315
3661
|
regionId: z.ZodCoercedBigInt<unknown>;
|
|
3316
3662
|
districtId: z.ZodCoercedBigInt<unknown>;
|
|
@@ -3320,12 +3666,14 @@ export declare const zGetClientByClientId360Response: z.ZodObject<{
|
|
|
3320
3666
|
lat: z.ZodNumber;
|
|
3321
3667
|
lng: z.ZodNumber;
|
|
3322
3668
|
}, z.core.$strip>;
|
|
3323
|
-
title: z.ZodString;
|
|
3324
|
-
coverPhoto: z.ZodOptional<z.ZodString>;
|
|
3325
|
-
totalArea: z.ZodNumber;
|
|
3326
|
-
livingArea: z.ZodOptional<z.ZodNumber>;
|
|
3327
|
-
balconyArea: z.ZodOptional<z.ZodNumber>;
|
|
3328
3669
|
}, z.core.$strip>>;
|
|
3670
|
+
agreement: z.ZodObject<{
|
|
3671
|
+
agreement: z.ZodEnum<{
|
|
3672
|
+
EXCLUSIVE: "EXCLUSIVE";
|
|
3673
|
+
NON_EXCLUSIVE: "NON_EXCLUSIVE";
|
|
3674
|
+
}>;
|
|
3675
|
+
expiryDate: z.ZodOptional<z.ZodISODate>;
|
|
3676
|
+
}, z.core.$strip>;
|
|
3329
3677
|
listings: z.ZodArray<z.ZodObject<{
|
|
3330
3678
|
publicId: z.ZodCoercedBigInt<unknown>;
|
|
3331
3679
|
listingId: z.ZodUUID;
|
|
@@ -3338,7 +3686,8 @@ export declare const zGetClientByClientId360Response: z.ZodObject<{
|
|
|
3338
3686
|
price: z.ZodNumber;
|
|
3339
3687
|
deal: z.ZodOptional<z.ZodObject<{
|
|
3340
3688
|
type: z.ZodEnum<{
|
|
3341
|
-
|
|
3689
|
+
FIXED_SALE: "FIXED_SALE";
|
|
3690
|
+
FIXED_RENT: "FIXED_RENT";
|
|
3342
3691
|
PERCENTAGE: "PERCENTAGE";
|
|
3343
3692
|
MONTHS_OF_RENT: "MONTHS_OF_RENT";
|
|
3344
3693
|
}>;
|
|
@@ -3353,11 +3702,22 @@ export declare const zGetClientByClientId360Response: z.ZodObject<{
|
|
|
3353
3702
|
MY_HOME: "MY_HOME";
|
|
3354
3703
|
SS: "SS";
|
|
3355
3704
|
}>;
|
|
3356
|
-
|
|
3357
|
-
|
|
3358
|
-
|
|
3359
|
-
|
|
3360
|
-
|
|
3705
|
+
uploadDate: z.ZodISODate;
|
|
3706
|
+
expiryDate: z.ZodISODate;
|
|
3707
|
+
renewedDate: z.ZodOptional<z.ZodISODate>;
|
|
3708
|
+
boost: z.ZodOptional<z.ZodObject<{
|
|
3709
|
+
tier: z.ZodEnum<{
|
|
3710
|
+
VIP: "VIP";
|
|
3711
|
+
VIP_PLUS: "VIP_PLUS";
|
|
3712
|
+
SUPER_VIP: "SUPER_VIP";
|
|
3713
|
+
}>;
|
|
3714
|
+
activatedAt: z.ZodISODate;
|
|
3715
|
+
expiresAt: z.ZodISODate;
|
|
3716
|
+
}, z.core.$strip>>;
|
|
3717
|
+
coloredListing: z.ZodOptional<z.ZodObject<{
|
|
3718
|
+
activatedAt: z.ZodISODate;
|
|
3719
|
+
expiresAt: z.ZodISODate;
|
|
3720
|
+
}, z.core.$strip>>;
|
|
3361
3721
|
}, z.core.$strip>>;
|
|
3362
3722
|
}, z.core.$strip>>;
|
|
3363
3723
|
}, z.core.$strip>>;
|