@homespot-sdk/core 0.0.321 → 0.0.323
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 +150 -87
- package/dist/rem/schemas.gen.d.ts.map +1 -1
- package/dist/rem/schemas.gen.js +150 -86
- package/dist/rem/schemas.gen.js.map +1 -1
- package/dist/rem/sdk.gen.d.ts +12 -8
- package/dist/rem/sdk.gen.d.ts.map +1 -1
- package/dist/rem/sdk.gen.js +57 -36
- package/dist/rem/sdk.gen.js.map +1 -1
- package/dist/rem/transformers.gen.d.ts +2 -1
- package/dist/rem/transformers.gen.d.ts.map +1 -1
- package/dist/rem/transformers.gen.js +8 -0
- package/dist/rem/transformers.gen.js.map +1 -1
- package/dist/rem/types.gen.d.ts +182 -106
- package/dist/rem/types.gen.d.ts.map +1 -1
- package/dist/rem/zod.gen.d.ts +329 -116
- package/dist/rem/zod.gen.d.ts.map +1 -1
- package/dist/rem/zod.gen.js +269 -181
- package/dist/rem/zod.gen.js.map +1 -1
- package/package.json +1 -1
package/dist/rem/zod.gen.d.ts
CHANGED
|
@@ -232,6 +232,13 @@ export declare const zCaptureInterestRequest: z.ZodObject<{
|
|
|
232
232
|
}>;
|
|
233
233
|
}, z.core.$strip>>;
|
|
234
234
|
}, z.core.$strip>;
|
|
235
|
+
export declare const zTitleRequest: z.ZodObject<{
|
|
236
|
+
title: z.ZodString;
|
|
237
|
+
}, z.core.$strip>;
|
|
238
|
+
export declare const zRecommendListingRequest: z.ZodObject<{
|
|
239
|
+
externalPropertyId: z.ZodUUID;
|
|
240
|
+
externalListingId: z.ZodUUID;
|
|
241
|
+
}, z.core.$strip>;
|
|
235
242
|
export declare const zCommentBodyRequest: z.ZodObject<{
|
|
236
243
|
body: z.ZodString;
|
|
237
244
|
}, z.core.$strip>;
|
|
@@ -554,13 +561,6 @@ export declare const zAddDealRequest: z.ZodObject<{
|
|
|
554
561
|
export declare const zInterestId: z.ZodObject<{
|
|
555
562
|
value: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
556
563
|
}, z.core.$strip>;
|
|
557
|
-
export declare const zTitleRequest: z.ZodObject<{
|
|
558
|
-
title: z.ZodString;
|
|
559
|
-
}, z.core.$strip>;
|
|
560
|
-
export declare const zRecommendListingRequest: z.ZodObject<{
|
|
561
|
-
externalPropertyId: z.ZodUUID;
|
|
562
|
-
externalListingId: z.ZodUUID;
|
|
563
|
-
}, z.core.$strip>;
|
|
564
564
|
export declare const zOnboardClientRequest: z.ZodObject<{
|
|
565
565
|
title: z.ZodOptional<z.ZodString>;
|
|
566
566
|
contactInfo: z.ZodObject<{
|
|
@@ -648,6 +648,7 @@ export declare const zOrganizationSummaryViewResponse: z.ZodObject<{
|
|
|
648
648
|
PAYMENT_FAILED: "PAYMENT_FAILED";
|
|
649
649
|
INACTIVE: "INACTIVE";
|
|
650
650
|
}>;
|
|
651
|
+
phone: z.ZodString;
|
|
651
652
|
isPhoneVerified: z.ZodBoolean;
|
|
652
653
|
}, z.core.$strip>;
|
|
653
654
|
export declare const zUserSummaryViewResponse: z.ZodObject<{
|
|
@@ -691,9 +692,137 @@ export declare const zUserContextViewResponse: z.ZodObject<{
|
|
|
691
692
|
PAYMENT_FAILED: "PAYMENT_FAILED";
|
|
692
693
|
INACTIVE: "INACTIVE";
|
|
693
694
|
}>;
|
|
695
|
+
phone: z.ZodString;
|
|
694
696
|
isPhoneVerified: z.ZodBoolean;
|
|
695
697
|
}, z.core.$strip>>;
|
|
696
698
|
}, z.core.$strip>;
|
|
699
|
+
export declare const zLangTextResponse: z.ZodObject<{
|
|
700
|
+
language: z.ZodEnum<{
|
|
701
|
+
ka: "ka";
|
|
702
|
+
en: "en";
|
|
703
|
+
ru: "ru";
|
|
704
|
+
}>;
|
|
705
|
+
text: z.ZodString;
|
|
706
|
+
}, z.core.$strip>;
|
|
707
|
+
export declare const zLocationResponse: z.ZodObject<{
|
|
708
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
709
|
+
names: z.ZodArray<z.ZodObject<{
|
|
710
|
+
language: z.ZodEnum<{
|
|
711
|
+
ka: "ka";
|
|
712
|
+
en: "en";
|
|
713
|
+
ru: "ru";
|
|
714
|
+
}>;
|
|
715
|
+
text: z.ZodString;
|
|
716
|
+
}, z.core.$strip>>;
|
|
717
|
+
}, z.core.$strip>;
|
|
718
|
+
export declare const zLocationCount: z.ZodObject<{
|
|
719
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
720
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
721
|
+
names: z.ZodArray<z.ZodObject<{
|
|
722
|
+
language: z.ZodEnum<{
|
|
723
|
+
ka: "ka";
|
|
724
|
+
en: "en";
|
|
725
|
+
ru: "ru";
|
|
726
|
+
}>;
|
|
727
|
+
text: z.ZodString;
|
|
728
|
+
}, z.core.$strip>>;
|
|
729
|
+
}, z.core.$strip>>;
|
|
730
|
+
count: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
731
|
+
}, z.core.$strip>;
|
|
732
|
+
export declare const zSlice: z.ZodObject<{
|
|
733
|
+
key: z.ZodString;
|
|
734
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
735
|
+
}, z.core.$strip>;
|
|
736
|
+
export declare const zDealTypePrice: z.ZodObject<{
|
|
737
|
+
listingType: z.ZodOptional<z.ZodEnum<{
|
|
738
|
+
SALE: "SALE";
|
|
739
|
+
RENT: "RENT";
|
|
740
|
+
DAILY_RENT: "DAILY_RENT";
|
|
741
|
+
PLEDGE: "PLEDGE";
|
|
742
|
+
}>>;
|
|
743
|
+
buckets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
744
|
+
key: z.ZodString;
|
|
745
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
746
|
+
}, z.core.$strip>>>;
|
|
747
|
+
}, z.core.$strip>;
|
|
748
|
+
export declare const zSupplyStats: z.ZodObject<{
|
|
749
|
+
activeListings: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
750
|
+
byListingType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
751
|
+
key: z.ZodString;
|
|
752
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
753
|
+
}, z.core.$strip>>>;
|
|
754
|
+
byPropertyType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
755
|
+
key: z.ZodString;
|
|
756
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
757
|
+
}, z.core.$strip>>>;
|
|
758
|
+
priceByDealType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
759
|
+
listingType: z.ZodOptional<z.ZodEnum<{
|
|
760
|
+
SALE: "SALE";
|
|
761
|
+
RENT: "RENT";
|
|
762
|
+
DAILY_RENT: "DAILY_RENT";
|
|
763
|
+
PLEDGE: "PLEDGE";
|
|
764
|
+
}>>;
|
|
765
|
+
buckets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
766
|
+
key: z.ZodString;
|
|
767
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
768
|
+
}, z.core.$strip>>>;
|
|
769
|
+
}, z.core.$strip>>>;
|
|
770
|
+
topDistricts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
771
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
772
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
773
|
+
names: z.ZodArray<z.ZodObject<{
|
|
774
|
+
language: z.ZodEnum<{
|
|
775
|
+
ka: "ka";
|
|
776
|
+
en: "en";
|
|
777
|
+
ru: "ru";
|
|
778
|
+
}>;
|
|
779
|
+
text: z.ZodString;
|
|
780
|
+
}, z.core.$strip>>;
|
|
781
|
+
}, z.core.$strip>>;
|
|
782
|
+
count: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
783
|
+
}, z.core.$strip>>>;
|
|
784
|
+
}, z.core.$strip>;
|
|
785
|
+
export declare const zStatsEnvelopeSupplyStats: z.ZodObject<{
|
|
786
|
+
period: z.ZodString;
|
|
787
|
+
computedAt: z.ZodISODateTime;
|
|
788
|
+
data: z.ZodObject<{
|
|
789
|
+
activeListings: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
790
|
+
byListingType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
791
|
+
key: z.ZodString;
|
|
792
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
793
|
+
}, z.core.$strip>>>;
|
|
794
|
+
byPropertyType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
795
|
+
key: z.ZodString;
|
|
796
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
797
|
+
}, z.core.$strip>>>;
|
|
798
|
+
priceByDealType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
799
|
+
listingType: z.ZodOptional<z.ZodEnum<{
|
|
800
|
+
SALE: "SALE";
|
|
801
|
+
RENT: "RENT";
|
|
802
|
+
DAILY_RENT: "DAILY_RENT";
|
|
803
|
+
PLEDGE: "PLEDGE";
|
|
804
|
+
}>>;
|
|
805
|
+
buckets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
806
|
+
key: z.ZodString;
|
|
807
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
808
|
+
}, z.core.$strip>>>;
|
|
809
|
+
}, z.core.$strip>>>;
|
|
810
|
+
topDistricts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
811
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
812
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
813
|
+
names: z.ZodArray<z.ZodObject<{
|
|
814
|
+
language: z.ZodEnum<{
|
|
815
|
+
ka: "ka";
|
|
816
|
+
en: "en";
|
|
817
|
+
ru: "ru";
|
|
818
|
+
}>;
|
|
819
|
+
text: z.ZodString;
|
|
820
|
+
}, z.core.$strip>>;
|
|
821
|
+
}, z.core.$strip>>;
|
|
822
|
+
count: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
823
|
+
}, z.core.$strip>>>;
|
|
824
|
+
}, z.core.$strip>;
|
|
825
|
+
}, z.core.$strip>;
|
|
697
826
|
export declare const zExpiringAgreement: z.ZodObject<{
|
|
698
827
|
propertyId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
699
828
|
externalId: z.ZodOptional<z.ZodUUID>;
|
|
@@ -720,10 +849,6 @@ export declare const zListingTypeAgg: z.ZodObject<{
|
|
|
720
849
|
pipelineValue: z.ZodOptional<z.ZodNumber>;
|
|
721
850
|
estimatedCommission: z.ZodOptional<z.ZodNumber>;
|
|
722
851
|
}, z.core.$strip>;
|
|
723
|
-
export declare const zSlice: z.ZodObject<{
|
|
724
|
-
key: z.ZodString;
|
|
725
|
-
count: z.ZodCoercedBigInt<unknown>;
|
|
726
|
-
}, z.core.$strip>;
|
|
727
852
|
export declare const zPortfolioStats: z.ZodObject<{
|
|
728
853
|
propertiesByState: z.ZodArray<z.ZodObject<{
|
|
729
854
|
key: z.ZodString;
|
|
@@ -977,11 +1102,6 @@ export declare const zDealTypeBudget: z.ZodObject<{
|
|
|
977
1102
|
count: z.ZodCoercedBigInt<unknown>;
|
|
978
1103
|
}, z.core.$strip>>>;
|
|
979
1104
|
}, z.core.$strip>;
|
|
980
|
-
export declare const zDistrictDemand: z.ZodObject<{
|
|
981
|
-
districtId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
982
|
-
name: z.ZodOptional<z.ZodString>;
|
|
983
|
-
count: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
984
|
-
}, z.core.$strip>;
|
|
985
1105
|
export declare const zDemandStats: z.ZodObject<{
|
|
986
1106
|
activeInterests: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
987
1107
|
byListingType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -1005,8 +1125,17 @@ export declare const zDemandStats: z.ZodObject<{
|
|
|
1005
1125
|
}, z.core.$strip>>>;
|
|
1006
1126
|
}, z.core.$strip>>>;
|
|
1007
1127
|
topDistricts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1008
|
-
|
|
1009
|
-
|
|
1128
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
1129
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
1130
|
+
names: z.ZodArray<z.ZodObject<{
|
|
1131
|
+
language: z.ZodEnum<{
|
|
1132
|
+
ka: "ka";
|
|
1133
|
+
en: "en";
|
|
1134
|
+
ru: "ru";
|
|
1135
|
+
}>;
|
|
1136
|
+
text: z.ZodString;
|
|
1137
|
+
}, z.core.$strip>>;
|
|
1138
|
+
}, z.core.$strip>>;
|
|
1010
1139
|
count: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
1011
1140
|
}, z.core.$strip>>>;
|
|
1012
1141
|
}, z.core.$strip>;
|
|
@@ -1036,8 +1165,17 @@ export declare const zStatsEnvelopeDemandStats: z.ZodObject<{
|
|
|
1036
1165
|
}, z.core.$strip>>>;
|
|
1037
1166
|
}, z.core.$strip>>>;
|
|
1038
1167
|
topDistricts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1039
|
-
|
|
1040
|
-
|
|
1168
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
1169
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
1170
|
+
names: z.ZodArray<z.ZodObject<{
|
|
1171
|
+
language: z.ZodEnum<{
|
|
1172
|
+
ka: "ka";
|
|
1173
|
+
en: "en";
|
|
1174
|
+
ru: "ru";
|
|
1175
|
+
}>;
|
|
1176
|
+
text: z.ZodString;
|
|
1177
|
+
}, z.core.$strip>>;
|
|
1178
|
+
}, z.core.$strip>>;
|
|
1041
1179
|
count: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
1042
1180
|
}, z.core.$strip>>>;
|
|
1043
1181
|
}, z.core.$strip>;
|
|
@@ -1100,25 +1238,6 @@ export declare const zPagedModelRoleResponse: z.ZodObject<{
|
|
|
1100
1238
|
totalPages: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
1101
1239
|
}, z.core.$strip>>;
|
|
1102
1240
|
}, z.core.$strip>;
|
|
1103
|
-
export declare const zLangTextResponse: z.ZodObject<{
|
|
1104
|
-
language: z.ZodEnum<{
|
|
1105
|
-
ka: "ka";
|
|
1106
|
-
en: "en";
|
|
1107
|
-
ru: "ru";
|
|
1108
|
-
}>;
|
|
1109
|
-
text: z.ZodString;
|
|
1110
|
-
}, z.core.$strip>;
|
|
1111
|
-
export declare const zLocationResponse: z.ZodObject<{
|
|
1112
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
1113
|
-
names: z.ZodArray<z.ZodObject<{
|
|
1114
|
-
language: z.ZodEnum<{
|
|
1115
|
-
ka: "ka";
|
|
1116
|
-
en: "en";
|
|
1117
|
-
ru: "ru";
|
|
1118
|
-
}>;
|
|
1119
|
-
text: z.ZodString;
|
|
1120
|
-
}, z.core.$strip>>;
|
|
1121
|
-
}, z.core.$strip>;
|
|
1122
1241
|
export declare const zAddressResponse: z.ZodObject<{
|
|
1123
1242
|
region: z.ZodObject<{
|
|
1124
1243
|
id: z.ZodCoercedBigInt<unknown>;
|
|
@@ -1373,8 +1492,8 @@ export declare const zRecommendationResponse: z.ZodObject<{
|
|
|
1373
1492
|
title: z.ZodString;
|
|
1374
1493
|
createdAt: z.ZodISODateTime;
|
|
1375
1494
|
status: z.ZodEnum<{
|
|
1376
|
-
|
|
1377
|
-
|
|
1495
|
+
UNPUBLISHED: "UNPUBLISHED";
|
|
1496
|
+
PUBLISHED: "PUBLISHED";
|
|
1378
1497
|
CLOSED: "CLOSED";
|
|
1379
1498
|
}>;
|
|
1380
1499
|
recommendations: z.ZodObject<{
|
|
@@ -2837,8 +2956,8 @@ export declare const zInterestResponse: z.ZodObject<{
|
|
|
2837
2956
|
id: z.ZodCoercedBigInt<unknown>;
|
|
2838
2957
|
title: z.ZodString;
|
|
2839
2958
|
status: z.ZodEnum<{
|
|
2840
|
-
|
|
2841
|
-
|
|
2959
|
+
UNPUBLISHED: "UNPUBLISHED";
|
|
2960
|
+
PUBLISHED: "PUBLISHED";
|
|
2842
2961
|
CLOSED: "CLOSED";
|
|
2843
2962
|
}>;
|
|
2844
2963
|
shareToken: z.ZodUUID;
|
|
@@ -3365,8 +3484,8 @@ export declare const zClient360Response: z.ZodObject<{
|
|
|
3365
3484
|
id: z.ZodCoercedBigInt<unknown>;
|
|
3366
3485
|
title: z.ZodString;
|
|
3367
3486
|
status: z.ZodEnum<{
|
|
3368
|
-
|
|
3369
|
-
|
|
3487
|
+
UNPUBLISHED: "UNPUBLISHED";
|
|
3488
|
+
PUBLISHED: "PUBLISHED";
|
|
3370
3489
|
CLOSED: "CLOSED";
|
|
3371
3490
|
}>;
|
|
3372
3491
|
shareToken: z.ZodUUID;
|
|
@@ -4087,6 +4206,18 @@ export declare const zPutContactsByContactIdPropertiesByPropertyIdAgreementData:
|
|
|
4087
4206
|
}, z.core.$strip>;
|
|
4088
4207
|
query: z.ZodOptional<z.ZodNever>;
|
|
4089
4208
|
}, z.core.$strip>;
|
|
4209
|
+
export declare const zDeleteContactsByContactIdInterestsByInterestIdData: z.ZodObject<{
|
|
4210
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
4211
|
+
path: z.ZodObject<{
|
|
4212
|
+
contactId: z.ZodCoercedBigInt<unknown>;
|
|
4213
|
+
interestId: z.ZodCoercedBigInt<unknown>;
|
|
4214
|
+
}, z.core.$strip>;
|
|
4215
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
4216
|
+
}, z.core.$strip>;
|
|
4217
|
+
/**
|
|
4218
|
+
* No Content
|
|
4219
|
+
*/
|
|
4220
|
+
export declare const zDeleteContactsByContactIdInterestsByInterestIdResponse: z.ZodVoid;
|
|
4090
4221
|
export declare const zGetContactsByContactIdInterestsByInterestIdData: z.ZodObject<{
|
|
4091
4222
|
body: z.ZodOptional<z.ZodNever>;
|
|
4092
4223
|
path: z.ZodObject<{
|
|
@@ -4102,8 +4233,8 @@ export declare const zGetContactsByContactIdInterestsByInterestIdResponse: z.Zod
|
|
|
4102
4233
|
id: z.ZodCoercedBigInt<unknown>;
|
|
4103
4234
|
title: z.ZodString;
|
|
4104
4235
|
status: z.ZodEnum<{
|
|
4105
|
-
|
|
4106
|
-
|
|
4236
|
+
UNPUBLISHED: "UNPUBLISHED";
|
|
4237
|
+
PUBLISHED: "PUBLISHED";
|
|
4107
4238
|
CLOSED: "CLOSED";
|
|
4108
4239
|
}>;
|
|
4109
4240
|
shareToken: z.ZodUUID;
|
|
@@ -4269,6 +4400,79 @@ export declare const zPutContactsByContactIdInterestsByInterestIdData: z.ZodObje
|
|
|
4269
4400
|
* No Content
|
|
4270
4401
|
*/
|
|
4271
4402
|
export declare const zPutContactsByContactIdInterestsByInterestIdResponse: z.ZodVoid;
|
|
4403
|
+
export declare const zPutContactsByContactIdInterestsByInterestIdUnpublishData: z.ZodObject<{
|
|
4404
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
4405
|
+
path: z.ZodObject<{
|
|
4406
|
+
contactId: z.ZodCoercedBigInt<unknown>;
|
|
4407
|
+
interestId: z.ZodCoercedBigInt<unknown>;
|
|
4408
|
+
}, z.core.$strip>;
|
|
4409
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
4410
|
+
}, z.core.$strip>;
|
|
4411
|
+
/**
|
|
4412
|
+
* No Content
|
|
4413
|
+
*/
|
|
4414
|
+
export declare const zPutContactsByContactIdInterestsByInterestIdUnpublishResponse: z.ZodVoid;
|
|
4415
|
+
export declare const zPutContactsByContactIdInterestsByInterestIdReopenData: z.ZodObject<{
|
|
4416
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
4417
|
+
path: z.ZodObject<{
|
|
4418
|
+
contactId: z.ZodCoercedBigInt<unknown>;
|
|
4419
|
+
interestId: z.ZodCoercedBigInt<unknown>;
|
|
4420
|
+
}, z.core.$strip>;
|
|
4421
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
4422
|
+
}, z.core.$strip>;
|
|
4423
|
+
/**
|
|
4424
|
+
* No Content
|
|
4425
|
+
*/
|
|
4426
|
+
export declare const zPutContactsByContactIdInterestsByInterestIdReopenResponse: z.ZodVoid;
|
|
4427
|
+
export declare const zPutContactsByContactIdInterestsByInterestIdRenameData: z.ZodObject<{
|
|
4428
|
+
body: z.ZodObject<{
|
|
4429
|
+
title: z.ZodString;
|
|
4430
|
+
}, z.core.$strip>;
|
|
4431
|
+
path: z.ZodObject<{
|
|
4432
|
+
contactId: z.ZodCoercedBigInt<unknown>;
|
|
4433
|
+
interestId: z.ZodCoercedBigInt<unknown>;
|
|
4434
|
+
}, z.core.$strip>;
|
|
4435
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
4436
|
+
}, z.core.$strip>;
|
|
4437
|
+
/**
|
|
4438
|
+
* No Content
|
|
4439
|
+
*/
|
|
4440
|
+
export declare const zPutContactsByContactIdInterestsByInterestIdRenameResponse: z.ZodVoid;
|
|
4441
|
+
export declare const zPutContactsByContactIdInterestsByInterestIdPublishData: z.ZodObject<{
|
|
4442
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
4443
|
+
path: z.ZodObject<{
|
|
4444
|
+
contactId: z.ZodCoercedBigInt<unknown>;
|
|
4445
|
+
interestId: z.ZodCoercedBigInt<unknown>;
|
|
4446
|
+
}, z.core.$strip>;
|
|
4447
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
4448
|
+
}, z.core.$strip>;
|
|
4449
|
+
/**
|
|
4450
|
+
* No Content
|
|
4451
|
+
*/
|
|
4452
|
+
export declare const zPutContactsByContactIdInterestsByInterestIdPublishResponse: z.ZodVoid;
|
|
4453
|
+
export declare const zPutContactsByContactIdInterestsByInterestIdItemsData: z.ZodObject<{
|
|
4454
|
+
body: z.ZodObject<{
|
|
4455
|
+
externalPropertyId: z.ZodUUID;
|
|
4456
|
+
externalListingId: z.ZodUUID;
|
|
4457
|
+
}, z.core.$strip>;
|
|
4458
|
+
path: z.ZodObject<{
|
|
4459
|
+
contactId: z.ZodCoercedBigInt<unknown>;
|
|
4460
|
+
interestId: z.ZodCoercedBigInt<unknown>;
|
|
4461
|
+
}, z.core.$strip>;
|
|
4462
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
4463
|
+
}, z.core.$strip>;
|
|
4464
|
+
export declare const zPutContactsByContactIdInterestsByInterestIdCloseData: z.ZodObject<{
|
|
4465
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
4466
|
+
path: z.ZodObject<{
|
|
4467
|
+
contactId: z.ZodCoercedBigInt<unknown>;
|
|
4468
|
+
interestId: z.ZodCoercedBigInt<unknown>;
|
|
4469
|
+
}, z.core.$strip>;
|
|
4470
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
4471
|
+
}, z.core.$strip>;
|
|
4472
|
+
/**
|
|
4473
|
+
* No Content
|
|
4474
|
+
*/
|
|
4475
|
+
export declare const zPutContactsByContactIdInterestsByInterestIdCloseResponse: z.ZodVoid;
|
|
4272
4476
|
export declare const zDeleteContactsByContactIdCommentsByCommentIdData: z.ZodObject<{
|
|
4273
4477
|
body: z.ZodOptional<z.ZodNever>;
|
|
4274
4478
|
path: z.ZodObject<{
|
|
@@ -5025,6 +5229,17 @@ export declare const zPostInvitationData: z.ZodObject<{
|
|
|
5025
5229
|
path: z.ZodOptional<z.ZodNever>;
|
|
5026
5230
|
query: z.ZodOptional<z.ZodNever>;
|
|
5027
5231
|
}, z.core.$strip>;
|
|
5232
|
+
export declare const zDeleteInvitationByInvitationIdData: z.ZodObject<{
|
|
5233
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
5234
|
+
path: z.ZodObject<{
|
|
5235
|
+
invitationId: z.ZodUUID;
|
|
5236
|
+
}, z.core.$strip>;
|
|
5237
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
5238
|
+
}, z.core.$strip>;
|
|
5239
|
+
/**
|
|
5240
|
+
* No Content
|
|
5241
|
+
*/
|
|
5242
|
+
export declare const zDeleteInvitationByInvitationIdResponse: z.ZodVoid;
|
|
5028
5243
|
export declare const zPostInvitationByInvitationIdData: z.ZodObject<{
|
|
5029
5244
|
body: z.ZodOptional<z.ZodNever>;
|
|
5030
5245
|
path: z.ZodObject<{
|
|
@@ -5243,67 +5458,6 @@ export declare const zPostContactsByContactIdInterestsData: z.ZodObject<{
|
|
|
5243
5458
|
export declare const zPostContactsByContactIdInterestsResponse: z.ZodObject<{
|
|
5244
5459
|
value: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
5245
5460
|
}, z.core.$strip>;
|
|
5246
|
-
export declare const zPostContactsByContactIdInterestsByInterestIdShareData: z.ZodObject<{
|
|
5247
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
5248
|
-
path: z.ZodObject<{
|
|
5249
|
-
contactId: z.ZodCoercedBigInt<unknown>;
|
|
5250
|
-
interestId: z.ZodCoercedBigInt<unknown>;
|
|
5251
|
-
}, z.core.$strip>;
|
|
5252
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
5253
|
-
}, z.core.$strip>;
|
|
5254
|
-
/**
|
|
5255
|
-
* No Content
|
|
5256
|
-
*/
|
|
5257
|
-
export declare const zPostContactsByContactIdInterestsByInterestIdShareResponse: z.ZodVoid;
|
|
5258
|
-
export declare const zPostContactsByContactIdInterestsByInterestIdReviseData: z.ZodObject<{
|
|
5259
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
5260
|
-
path: z.ZodObject<{
|
|
5261
|
-
contactId: z.ZodCoercedBigInt<unknown>;
|
|
5262
|
-
interestId: z.ZodCoercedBigInt<unknown>;
|
|
5263
|
-
}, z.core.$strip>;
|
|
5264
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
5265
|
-
}, z.core.$strip>;
|
|
5266
|
-
/**
|
|
5267
|
-
* No Content
|
|
5268
|
-
*/
|
|
5269
|
-
export declare const zPostContactsByContactIdInterestsByInterestIdReviseResponse: z.ZodVoid;
|
|
5270
|
-
export declare const zPostContactsByContactIdInterestsByInterestIdRenameData: z.ZodObject<{
|
|
5271
|
-
body: z.ZodObject<{
|
|
5272
|
-
title: z.ZodString;
|
|
5273
|
-
}, z.core.$strip>;
|
|
5274
|
-
path: z.ZodObject<{
|
|
5275
|
-
contactId: z.ZodCoercedBigInt<unknown>;
|
|
5276
|
-
interestId: z.ZodCoercedBigInt<unknown>;
|
|
5277
|
-
}, z.core.$strip>;
|
|
5278
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
5279
|
-
}, z.core.$strip>;
|
|
5280
|
-
/**
|
|
5281
|
-
* No Content
|
|
5282
|
-
*/
|
|
5283
|
-
export declare const zPostContactsByContactIdInterestsByInterestIdRenameResponse: z.ZodVoid;
|
|
5284
|
-
export declare const zPostContactsByContactIdInterestsByInterestIdItemsData: z.ZodObject<{
|
|
5285
|
-
body: z.ZodObject<{
|
|
5286
|
-
externalPropertyId: z.ZodUUID;
|
|
5287
|
-
externalListingId: z.ZodUUID;
|
|
5288
|
-
}, z.core.$strip>;
|
|
5289
|
-
path: z.ZodObject<{
|
|
5290
|
-
contactId: z.ZodCoercedBigInt<unknown>;
|
|
5291
|
-
interestId: z.ZodCoercedBigInt<unknown>;
|
|
5292
|
-
}, z.core.$strip>;
|
|
5293
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
5294
|
-
}, z.core.$strip>;
|
|
5295
|
-
export declare const zPostContactsByContactIdInterestsByInterestIdCloseData: z.ZodObject<{
|
|
5296
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
5297
|
-
path: z.ZodObject<{
|
|
5298
|
-
contactId: z.ZodCoercedBigInt<unknown>;
|
|
5299
|
-
interestId: z.ZodCoercedBigInt<unknown>;
|
|
5300
|
-
}, z.core.$strip>;
|
|
5301
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
5302
|
-
}, z.core.$strip>;
|
|
5303
|
-
/**
|
|
5304
|
-
* No Content
|
|
5305
|
-
*/
|
|
5306
|
-
export declare const zPostContactsByContactIdInterestsByInterestIdCloseResponse: z.ZodVoid;
|
|
5307
5461
|
export declare const zDeleteContactsByContactIdCommentsData: z.ZodObject<{
|
|
5308
5462
|
body: z.ZodOptional<z.ZodNever>;
|
|
5309
5463
|
path: z.ZodObject<{
|
|
@@ -5697,9 +5851,59 @@ export declare const zGetUserMeResponse: z.ZodObject<{
|
|
|
5697
5851
|
PAYMENT_FAILED: "PAYMENT_FAILED";
|
|
5698
5852
|
INACTIVE: "INACTIVE";
|
|
5699
5853
|
}>;
|
|
5854
|
+
phone: z.ZodString;
|
|
5700
5855
|
isPhoneVerified: z.ZodBoolean;
|
|
5701
5856
|
}, z.core.$strip>>;
|
|
5702
5857
|
}, z.core.$strip>;
|
|
5858
|
+
export declare const zGetStatisticsSupplyData: z.ZodObject<{
|
|
5859
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
5860
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
5861
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
5862
|
+
}, z.core.$strip>;
|
|
5863
|
+
/**
|
|
5864
|
+
* OK
|
|
5865
|
+
*/
|
|
5866
|
+
export declare const zGetStatisticsSupplyResponse: z.ZodObject<{
|
|
5867
|
+
period: z.ZodString;
|
|
5868
|
+
computedAt: z.ZodISODateTime;
|
|
5869
|
+
data: z.ZodObject<{
|
|
5870
|
+
activeListings: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
5871
|
+
byListingType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5872
|
+
key: z.ZodString;
|
|
5873
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
5874
|
+
}, z.core.$strip>>>;
|
|
5875
|
+
byPropertyType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5876
|
+
key: z.ZodString;
|
|
5877
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
5878
|
+
}, z.core.$strip>>>;
|
|
5879
|
+
priceByDealType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5880
|
+
listingType: z.ZodOptional<z.ZodEnum<{
|
|
5881
|
+
SALE: "SALE";
|
|
5882
|
+
RENT: "RENT";
|
|
5883
|
+
DAILY_RENT: "DAILY_RENT";
|
|
5884
|
+
PLEDGE: "PLEDGE";
|
|
5885
|
+
}>>;
|
|
5886
|
+
buckets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5887
|
+
key: z.ZodString;
|
|
5888
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
5889
|
+
}, z.core.$strip>>>;
|
|
5890
|
+
}, z.core.$strip>>>;
|
|
5891
|
+
topDistricts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5892
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
5893
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
5894
|
+
names: z.ZodArray<z.ZodObject<{
|
|
5895
|
+
language: z.ZodEnum<{
|
|
5896
|
+
ka: "ka";
|
|
5897
|
+
en: "en";
|
|
5898
|
+
ru: "ru";
|
|
5899
|
+
}>;
|
|
5900
|
+
text: z.ZodString;
|
|
5901
|
+
}, z.core.$strip>>;
|
|
5902
|
+
}, z.core.$strip>>;
|
|
5903
|
+
count: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
5904
|
+
}, z.core.$strip>>>;
|
|
5905
|
+
}, z.core.$strip>;
|
|
5906
|
+
}, z.core.$strip>;
|
|
5703
5907
|
export declare const zGetStatisticsPortfolioData: z.ZodObject<{
|
|
5704
5908
|
body: z.ZodOptional<z.ZodNever>;
|
|
5705
5909
|
path: z.ZodOptional<z.ZodNever>;
|
|
@@ -5888,8 +6092,17 @@ export declare const zGetStatisticsDemandResponse: z.ZodObject<{
|
|
|
5888
6092
|
}, z.core.$strip>>>;
|
|
5889
6093
|
}, z.core.$strip>>>;
|
|
5890
6094
|
topDistricts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5891
|
-
|
|
5892
|
-
|
|
6095
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
6096
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
6097
|
+
names: z.ZodArray<z.ZodObject<{
|
|
6098
|
+
language: z.ZodEnum<{
|
|
6099
|
+
ka: "ka";
|
|
6100
|
+
en: "en";
|
|
6101
|
+
ru: "ru";
|
|
6102
|
+
}>;
|
|
6103
|
+
text: z.ZodString;
|
|
6104
|
+
}, z.core.$strip>>;
|
|
6105
|
+
}, z.core.$strip>>;
|
|
5893
6106
|
count: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
5894
6107
|
}, z.core.$strip>>>;
|
|
5895
6108
|
}, z.core.$strip>;
|
|
@@ -5918,8 +6131,8 @@ export declare const zGetPublicRecomendationsByTokenItemsResponse: z.ZodObject<{
|
|
|
5918
6131
|
title: z.ZodString;
|
|
5919
6132
|
createdAt: z.ZodISODateTime;
|
|
5920
6133
|
status: z.ZodEnum<{
|
|
5921
|
-
|
|
5922
|
-
|
|
6134
|
+
UNPUBLISHED: "UNPUBLISHED";
|
|
6135
|
+
PUBLISHED: "PUBLISHED";
|
|
5923
6136
|
CLOSED: "CLOSED";
|
|
5924
6137
|
}>;
|
|
5925
6138
|
recommendations: z.ZodObject<{
|
|
@@ -7329,8 +7542,8 @@ export declare const zGetContactsByContactIdInterestsByInterestIdRecommendations
|
|
|
7329
7542
|
title: z.ZodString;
|
|
7330
7543
|
createdAt: z.ZodISODateTime;
|
|
7331
7544
|
status: z.ZodEnum<{
|
|
7332
|
-
|
|
7333
|
-
|
|
7545
|
+
UNPUBLISHED: "UNPUBLISHED";
|
|
7546
|
+
PUBLISHED: "PUBLISHED";
|
|
7334
7547
|
CLOSED: "CLOSED";
|
|
7335
7548
|
}>;
|
|
7336
7549
|
recommendations: z.ZodObject<{
|
|
@@ -7581,8 +7794,8 @@ export declare const zGetContactByContactId360Response: z.ZodObject<{
|
|
|
7581
7794
|
id: z.ZodCoercedBigInt<unknown>;
|
|
7582
7795
|
title: z.ZodString;
|
|
7583
7796
|
status: z.ZodEnum<{
|
|
7584
|
-
|
|
7585
|
-
|
|
7797
|
+
UNPUBLISHED: "UNPUBLISHED";
|
|
7798
|
+
PUBLISHED: "PUBLISHED";
|
|
7586
7799
|
CLOSED: "CLOSED";
|
|
7587
7800
|
}>;
|
|
7588
7801
|
shareToken: z.ZodUUID;
|