@homespot-sdk/core 0.0.319 → 0.0.321
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/property/client.gen.d.ts.map +1 -1
- package/dist/property/client.gen.js +3 -1
- package/dist/property/client.gen.js.map +1 -1
- package/dist/property/types.gen.d.ts +1 -1
- package/dist/property/types.gen.d.ts.map +1 -1
- package/dist/registration/client.gen.d.ts.map +1 -1
- package/dist/registration/client.gen.js +3 -1
- package/dist/registration/client.gen.js.map +1 -1
- package/dist/registration/types.gen.d.ts +1 -1
- package/dist/registration/types.gen.d.ts.map +1 -1
- package/dist/rem/client.gen.d.ts.map +1 -1
- package/dist/rem/client.gen.js +3 -1
- package/dist/rem/client.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 +49 -2
- package/dist/rem/schemas.gen.d.ts.map +1 -1
- package/dist/rem/schemas.gen.js +93 -2
- package/dist/rem/schemas.gen.js.map +1 -1
- package/dist/rem/sdk.gen.d.ts +5 -5
- package/dist/rem/sdk.gen.d.ts.map +1 -1
- package/dist/rem/sdk.gen.js +5 -5
- 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 +13 -39
- package/dist/rem/transformers.gen.js.map +1 -1
- package/dist/rem/types.gen.d.ts +67 -58
- package/dist/rem/types.gen.d.ts.map +1 -1
- package/dist/rem/zod.gen.d.ts +363 -261
- package/dist/rem/zod.gen.d.ts.map +1 -1
- package/dist/rem/zod.gen.js +96 -73
- package/dist/rem/zod.gen.js.map +1 -1
- package/dist/utils/client.gen.d.ts.map +1 -1
- package/dist/utils/client.gen.js +3 -1
- package/dist/utils/client.gen.js.map +1 -1
- package/dist/utils/types.gen.d.ts +1 -1
- package/dist/utils/types.gen.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/rem/zod.gen.d.ts
CHANGED
|
@@ -701,220 +701,281 @@ export declare const zExpiringAgreement: z.ZodObject<{
|
|
|
701
701
|
expiresAt: z.ZodOptional<z.ZodISODate>;
|
|
702
702
|
}, z.core.$strip>;
|
|
703
703
|
export declare const zExpiringPlatformListing: z.ZodObject<{
|
|
704
|
-
platform: z.ZodOptional<z.
|
|
704
|
+
platform: z.ZodOptional<z.ZodEnum<{
|
|
705
|
+
SS: "SS";
|
|
706
|
+
MY_HOME: "MY_HOME";
|
|
707
|
+
}>>;
|
|
705
708
|
platformId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
706
709
|
propertyTitle: z.ZodOptional<z.ZodString>;
|
|
707
710
|
expiresAt: z.ZodOptional<z.ZodISODate>;
|
|
708
711
|
}, z.core.$strip>;
|
|
709
712
|
export declare const zListingTypeAgg: z.ZodObject<{
|
|
710
|
-
listingType: z.ZodOptional<z.
|
|
713
|
+
listingType: z.ZodOptional<z.ZodEnum<{
|
|
714
|
+
SALE: "SALE";
|
|
715
|
+
RENT: "RENT";
|
|
716
|
+
DAILY_RENT: "DAILY_RENT";
|
|
717
|
+
PLEDGE: "PLEDGE";
|
|
718
|
+
}>>;
|
|
711
719
|
count: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
712
720
|
pipelineValue: z.ZodOptional<z.ZodNumber>;
|
|
713
721
|
estimatedCommission: z.ZodOptional<z.ZodNumber>;
|
|
714
722
|
}, z.core.$strip>;
|
|
715
723
|
export declare const zSlice: z.ZodObject<{
|
|
716
|
-
key: z.
|
|
717
|
-
count: z.
|
|
724
|
+
key: z.ZodString;
|
|
725
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
718
726
|
}, z.core.$strip>;
|
|
719
727
|
export declare const zPortfolioStats: z.ZodObject<{
|
|
720
|
-
propertiesByState: z.
|
|
721
|
-
key: z.
|
|
722
|
-
count: z.
|
|
723
|
-
}, z.core.$strip
|
|
724
|
-
listings: z.
|
|
725
|
-
listingType: z.ZodOptional<z.
|
|
728
|
+
propertiesByState: z.ZodArray<z.ZodObject<{
|
|
729
|
+
key: z.ZodString;
|
|
730
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
731
|
+
}, z.core.$strip>>;
|
|
732
|
+
listings: z.ZodArray<z.ZodObject<{
|
|
733
|
+
listingType: z.ZodOptional<z.ZodEnum<{
|
|
734
|
+
SALE: "SALE";
|
|
735
|
+
RENT: "RENT";
|
|
736
|
+
DAILY_RENT: "DAILY_RENT";
|
|
737
|
+
PLEDGE: "PLEDGE";
|
|
738
|
+
}>>;
|
|
726
739
|
count: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
727
740
|
pipelineValue: z.ZodOptional<z.ZodNumber>;
|
|
728
741
|
estimatedCommission: z.ZodOptional<z.ZodNumber>;
|
|
729
|
-
}, z.core.$strip
|
|
730
|
-
expiringAgreementsCount: z.
|
|
731
|
-
expiringAgreements: z.
|
|
742
|
+
}, z.core.$strip>>;
|
|
743
|
+
expiringAgreementsCount: z.ZodCoercedBigInt<unknown>;
|
|
744
|
+
expiringAgreements: z.ZodArray<z.ZodObject<{
|
|
732
745
|
propertyId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
733
746
|
externalId: z.ZodOptional<z.ZodUUID>;
|
|
734
747
|
title: z.ZodOptional<z.ZodString>;
|
|
735
748
|
expiresAt: z.ZodOptional<z.ZodISODate>;
|
|
736
|
-
}, z.core.$strip
|
|
737
|
-
expiringPlatformCount: z.
|
|
738
|
-
expiringPlatformListings: z.
|
|
739
|
-
platform: z.ZodOptional<z.
|
|
749
|
+
}, z.core.$strip>>;
|
|
750
|
+
expiringPlatformCount: z.ZodCoercedBigInt<unknown>;
|
|
751
|
+
expiringPlatformListings: z.ZodArray<z.ZodObject<{
|
|
752
|
+
platform: z.ZodOptional<z.ZodEnum<{
|
|
753
|
+
SS: "SS";
|
|
754
|
+
MY_HOME: "MY_HOME";
|
|
755
|
+
}>>;
|
|
740
756
|
platformId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
741
757
|
propertyTitle: z.ZodOptional<z.ZodString>;
|
|
742
758
|
expiresAt: z.ZodOptional<z.ZodISODate>;
|
|
743
|
-
}, z.core.$strip
|
|
759
|
+
}, z.core.$strip>>;
|
|
744
760
|
}, z.core.$strip>;
|
|
745
761
|
export declare const zStatsEnvelopePortfolioStats: z.ZodObject<{
|
|
746
|
-
period: z.
|
|
747
|
-
computedAt: z.
|
|
748
|
-
data: z.
|
|
749
|
-
propertiesByState: z.
|
|
750
|
-
key: z.
|
|
751
|
-
count: z.
|
|
752
|
-
}, z.core.$strip
|
|
753
|
-
listings: z.
|
|
754
|
-
listingType: z.ZodOptional<z.
|
|
762
|
+
period: z.ZodString;
|
|
763
|
+
computedAt: z.ZodISODateTime;
|
|
764
|
+
data: z.ZodObject<{
|
|
765
|
+
propertiesByState: z.ZodArray<z.ZodObject<{
|
|
766
|
+
key: z.ZodString;
|
|
767
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
768
|
+
}, z.core.$strip>>;
|
|
769
|
+
listings: z.ZodArray<z.ZodObject<{
|
|
770
|
+
listingType: z.ZodOptional<z.ZodEnum<{
|
|
771
|
+
SALE: "SALE";
|
|
772
|
+
RENT: "RENT";
|
|
773
|
+
DAILY_RENT: "DAILY_RENT";
|
|
774
|
+
PLEDGE: "PLEDGE";
|
|
775
|
+
}>>;
|
|
755
776
|
count: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
756
777
|
pipelineValue: z.ZodOptional<z.ZodNumber>;
|
|
757
778
|
estimatedCommission: z.ZodOptional<z.ZodNumber>;
|
|
758
|
-
}, z.core.$strip
|
|
759
|
-
expiringAgreementsCount: z.
|
|
760
|
-
expiringAgreements: z.
|
|
779
|
+
}, z.core.$strip>>;
|
|
780
|
+
expiringAgreementsCount: z.ZodCoercedBigInt<unknown>;
|
|
781
|
+
expiringAgreements: z.ZodArray<z.ZodObject<{
|
|
761
782
|
propertyId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
762
783
|
externalId: z.ZodOptional<z.ZodUUID>;
|
|
763
784
|
title: z.ZodOptional<z.ZodString>;
|
|
764
785
|
expiresAt: z.ZodOptional<z.ZodISODate>;
|
|
765
|
-
}, z.core.$strip
|
|
766
|
-
expiringPlatformCount: z.
|
|
767
|
-
expiringPlatformListings: z.
|
|
768
|
-
platform: z.ZodOptional<z.
|
|
786
|
+
}, z.core.$strip>>;
|
|
787
|
+
expiringPlatformCount: z.ZodCoercedBigInt<unknown>;
|
|
788
|
+
expiringPlatformListings: z.ZodArray<z.ZodObject<{
|
|
789
|
+
platform: z.ZodOptional<z.ZodEnum<{
|
|
790
|
+
SS: "SS";
|
|
791
|
+
MY_HOME: "MY_HOME";
|
|
792
|
+
}>>;
|
|
769
793
|
platformId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
770
794
|
propertyTitle: z.ZodOptional<z.ZodString>;
|
|
771
795
|
expiresAt: z.ZodOptional<z.ZodISODate>;
|
|
772
|
-
}, z.core.$strip
|
|
773
|
-
}, z.core.$strip
|
|
796
|
+
}, z.core.$strip>>;
|
|
797
|
+
}, z.core.$strip>;
|
|
774
798
|
}, z.core.$strip>;
|
|
775
799
|
export declare const zTrendPoint: z.ZodObject<{
|
|
776
800
|
date: z.ZodOptional<z.ZodISODate>;
|
|
777
801
|
count: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
778
802
|
}, z.core.$strip>;
|
|
779
803
|
export declare const zPipelineStats: z.ZodObject<{
|
|
780
|
-
total: z.
|
|
781
|
-
won: z.
|
|
782
|
-
conversionRatePercent: z.
|
|
783
|
-
unassigned: z.
|
|
784
|
-
newContactsTrend: z.
|
|
804
|
+
total: z.ZodCoercedBigInt<unknown>;
|
|
805
|
+
won: z.ZodCoercedBigInt<unknown>;
|
|
806
|
+
conversionRatePercent: z.ZodNumber;
|
|
807
|
+
unassigned: z.ZodCoercedBigInt<unknown>;
|
|
808
|
+
newContactsTrend: z.ZodArray<z.ZodObject<{
|
|
785
809
|
date: z.ZodOptional<z.ZodISODate>;
|
|
786
810
|
count: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
787
|
-
}, z.core.$strip
|
|
788
|
-
status: z.
|
|
789
|
-
key: z.
|
|
790
|
-
count: z.
|
|
791
|
-
}, z.core.$strip
|
|
792
|
-
sourceAttribution: z.
|
|
793
|
-
key: z.
|
|
794
|
-
count: z.
|
|
795
|
-
}, z.core.$strip
|
|
796
|
-
lostReasons: z.
|
|
797
|
-
key: z.
|
|
798
|
-
count: z.
|
|
799
|
-
}, z.core.$strip
|
|
811
|
+
}, z.core.$strip>>;
|
|
812
|
+
status: z.ZodArray<z.ZodObject<{
|
|
813
|
+
key: z.ZodString;
|
|
814
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
815
|
+
}, z.core.$strip>>;
|
|
816
|
+
sourceAttribution: z.ZodArray<z.ZodObject<{
|
|
817
|
+
key: z.ZodString;
|
|
818
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
819
|
+
}, z.core.$strip>>;
|
|
820
|
+
lostReasons: z.ZodArray<z.ZodObject<{
|
|
821
|
+
key: z.ZodString;
|
|
822
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
823
|
+
}, z.core.$strip>>;
|
|
800
824
|
}, z.core.$strip>;
|
|
801
825
|
export declare const zStatsEnvelopePipelineStats: z.ZodObject<{
|
|
802
|
-
period: z.
|
|
803
|
-
computedAt: z.
|
|
804
|
-
data: z.
|
|
805
|
-
total: z.
|
|
806
|
-
won: z.
|
|
807
|
-
conversionRatePercent: z.
|
|
808
|
-
unassigned: z.
|
|
809
|
-
newContactsTrend: z.
|
|
826
|
+
period: z.ZodString;
|
|
827
|
+
computedAt: z.ZodISODateTime;
|
|
828
|
+
data: z.ZodObject<{
|
|
829
|
+
total: z.ZodCoercedBigInt<unknown>;
|
|
830
|
+
won: z.ZodCoercedBigInt<unknown>;
|
|
831
|
+
conversionRatePercent: z.ZodNumber;
|
|
832
|
+
unassigned: z.ZodCoercedBigInt<unknown>;
|
|
833
|
+
newContactsTrend: z.ZodArray<z.ZodObject<{
|
|
810
834
|
date: z.ZodOptional<z.ZodISODate>;
|
|
811
835
|
count: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
812
|
-
}, z.core.$strip
|
|
813
|
-
status: z.
|
|
814
|
-
key: z.
|
|
815
|
-
count: z.
|
|
816
|
-
}, z.core.$strip
|
|
817
|
-
sourceAttribution: z.
|
|
818
|
-
key: z.
|
|
819
|
-
count: z.
|
|
820
|
-
}, z.core.$strip
|
|
821
|
-
lostReasons: z.
|
|
822
|
-
key: z.
|
|
823
|
-
count: z.
|
|
824
|
-
}, z.core.$strip
|
|
825
|
-
}, z.core.$strip
|
|
836
|
+
}, z.core.$strip>>;
|
|
837
|
+
status: z.ZodArray<z.ZodObject<{
|
|
838
|
+
key: z.ZodString;
|
|
839
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
840
|
+
}, z.core.$strip>>;
|
|
841
|
+
sourceAttribution: z.ZodArray<z.ZodObject<{
|
|
842
|
+
key: z.ZodString;
|
|
843
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
844
|
+
}, z.core.$strip>>;
|
|
845
|
+
lostReasons: z.ZodArray<z.ZodObject<{
|
|
846
|
+
key: z.ZodString;
|
|
847
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
848
|
+
}, z.core.$strip>>;
|
|
849
|
+
}, z.core.$strip>;
|
|
826
850
|
}, z.core.$strip>;
|
|
827
851
|
export declare const zRow: z.ZodObject<{
|
|
828
|
-
memberId: z.
|
|
829
|
-
firstName: z.
|
|
830
|
-
lastName: z.
|
|
831
|
-
photo: z.
|
|
832
|
-
contactsAssigned: z.
|
|
833
|
-
converted: z.
|
|
834
|
-
conversionRatePct: z.
|
|
835
|
-
recommendationsSent: z.
|
|
836
|
-
recommendationsRated: z.
|
|
837
|
-
likeRatePct: z.
|
|
852
|
+
memberId: z.ZodUUID;
|
|
853
|
+
firstName: z.ZodString;
|
|
854
|
+
lastName: z.ZodString;
|
|
855
|
+
photo: z.ZodString;
|
|
856
|
+
contactsAssigned: z.ZodCoercedBigInt<unknown>;
|
|
857
|
+
converted: z.ZodCoercedBigInt<unknown>;
|
|
858
|
+
conversionRatePct: z.ZodNumber;
|
|
859
|
+
recommendationsSent: z.ZodCoercedBigInt<unknown>;
|
|
860
|
+
recommendationsRated: z.ZodCoercedBigInt<unknown>;
|
|
861
|
+
likeRatePct: z.ZodNumber;
|
|
838
862
|
}, z.core.$strip>;
|
|
839
863
|
export declare const zLeaderboardStats: z.ZodObject<{
|
|
840
|
-
rows: z.
|
|
841
|
-
memberId: z.
|
|
842
|
-
firstName: z.
|
|
843
|
-
lastName: z.
|
|
844
|
-
photo: z.
|
|
845
|
-
contactsAssigned: z.
|
|
846
|
-
converted: z.
|
|
847
|
-
conversionRatePct: z.
|
|
848
|
-
recommendationsSent: z.
|
|
849
|
-
recommendationsRated: z.
|
|
850
|
-
likeRatePct: z.
|
|
851
|
-
}, z.core.$strip
|
|
864
|
+
rows: z.ZodArray<z.ZodObject<{
|
|
865
|
+
memberId: z.ZodUUID;
|
|
866
|
+
firstName: z.ZodString;
|
|
867
|
+
lastName: z.ZodString;
|
|
868
|
+
photo: z.ZodString;
|
|
869
|
+
contactsAssigned: z.ZodCoercedBigInt<unknown>;
|
|
870
|
+
converted: z.ZodCoercedBigInt<unknown>;
|
|
871
|
+
conversionRatePct: z.ZodNumber;
|
|
872
|
+
recommendationsSent: z.ZodCoercedBigInt<unknown>;
|
|
873
|
+
recommendationsRated: z.ZodCoercedBigInt<unknown>;
|
|
874
|
+
likeRatePct: z.ZodNumber;
|
|
875
|
+
}, z.core.$strip>>;
|
|
852
876
|
}, z.core.$strip>;
|
|
853
877
|
export declare const zStatsEnvelopeLeaderboardStats: z.ZodObject<{
|
|
854
|
-
period: z.
|
|
855
|
-
computedAt: z.
|
|
856
|
-
data: z.
|
|
857
|
-
rows: z.
|
|
858
|
-
memberId: z.
|
|
859
|
-
firstName: z.
|
|
860
|
-
lastName: z.
|
|
861
|
-
photo: z.
|
|
862
|
-
contactsAssigned: z.
|
|
863
|
-
converted: z.
|
|
864
|
-
conversionRatePct: z.
|
|
865
|
-
recommendationsSent: z.
|
|
866
|
-
recommendationsRated: z.
|
|
867
|
-
likeRatePct: z.
|
|
868
|
-
}, z.core.$strip
|
|
869
|
-
}, z.core.$strip
|
|
878
|
+
period: z.ZodString;
|
|
879
|
+
computedAt: z.ZodISODateTime;
|
|
880
|
+
data: z.ZodObject<{
|
|
881
|
+
rows: z.ZodArray<z.ZodObject<{
|
|
882
|
+
memberId: z.ZodUUID;
|
|
883
|
+
firstName: z.ZodString;
|
|
884
|
+
lastName: z.ZodString;
|
|
885
|
+
photo: z.ZodString;
|
|
886
|
+
contactsAssigned: z.ZodCoercedBigInt<unknown>;
|
|
887
|
+
converted: z.ZodCoercedBigInt<unknown>;
|
|
888
|
+
conversionRatePct: z.ZodNumber;
|
|
889
|
+
recommendationsSent: z.ZodCoercedBigInt<unknown>;
|
|
890
|
+
recommendationsRated: z.ZodCoercedBigInt<unknown>;
|
|
891
|
+
likeRatePct: z.ZodNumber;
|
|
892
|
+
}, z.core.$strip>>;
|
|
893
|
+
}, z.core.$strip>;
|
|
870
894
|
}, z.core.$strip>;
|
|
871
895
|
export declare const zAwaitingConversation: z.ZodObject<{
|
|
872
|
-
conversationId: z.
|
|
873
|
-
contactId: z.
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
896
|
+
conversationId: z.ZodUUID;
|
|
897
|
+
contactId: z.ZodCoercedBigInt<unknown>;
|
|
898
|
+
firstName: z.ZodOptional<z.ZodString>;
|
|
899
|
+
lastName: z.ZodOptional<z.ZodString>;
|
|
900
|
+
channelType: z.ZodEnum<{
|
|
901
|
+
FACEBOOK: "FACEBOOK";
|
|
902
|
+
INSTAGRAM: "INSTAGRAM";
|
|
903
|
+
WHATSAPP: "WHATSAPP";
|
|
904
|
+
}>;
|
|
905
|
+
lastMessagePreview: z.ZodString;
|
|
906
|
+
lastInboundAt: z.ZodISODateTime;
|
|
907
|
+
unreadCount: z.ZodInt;
|
|
908
|
+
reachable: z.ZodBoolean;
|
|
878
909
|
}, z.core.$strip>;
|
|
879
910
|
export declare const zInboxStats: z.ZodObject<{
|
|
880
|
-
openConversations: z.
|
|
881
|
-
unreadMessages: z.
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
911
|
+
openConversations: z.ZodCoercedBigInt<unknown>;
|
|
912
|
+
unreadMessages: z.ZodCoercedBigInt<unknown>;
|
|
913
|
+
newConversations: z.ZodCoercedBigInt<unknown>;
|
|
914
|
+
awaitingReplyCount: z.ZodCoercedBigInt<unknown>;
|
|
915
|
+
awaitingUnreachableCount: z.ZodCoercedBigInt<unknown>;
|
|
916
|
+
awaitingReply: z.ZodArray<z.ZodObject<{
|
|
917
|
+
conversationId: z.ZodUUID;
|
|
918
|
+
contactId: z.ZodCoercedBigInt<unknown>;
|
|
919
|
+
firstName: z.ZodOptional<z.ZodString>;
|
|
920
|
+
lastName: z.ZodOptional<z.ZodString>;
|
|
921
|
+
channelType: z.ZodEnum<{
|
|
922
|
+
FACEBOOK: "FACEBOOK";
|
|
923
|
+
INSTAGRAM: "INSTAGRAM";
|
|
924
|
+
WHATSAPP: "WHATSAPP";
|
|
925
|
+
}>;
|
|
926
|
+
lastMessagePreview: z.ZodString;
|
|
927
|
+
lastInboundAt: z.ZodISODateTime;
|
|
928
|
+
unreadCount: z.ZodInt;
|
|
929
|
+
reachable: z.ZodBoolean;
|
|
930
|
+
}, z.core.$strip>>;
|
|
931
|
+
medianResponseSeconds: z.ZodCoercedBigInt<unknown>;
|
|
932
|
+
inboundByChannel: z.ZodArray<z.ZodObject<{
|
|
933
|
+
key: z.ZodString;
|
|
934
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
935
|
+
}, z.core.$strip>>;
|
|
896
936
|
}, z.core.$strip>;
|
|
897
937
|
export declare const zStatsEnvelopeInboxStats: z.ZodObject<{
|
|
898
|
-
period: z.
|
|
899
|
-
computedAt: z.
|
|
900
|
-
data: z.
|
|
901
|
-
openConversations: z.
|
|
902
|
-
unreadMessages: z.
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
938
|
+
period: z.ZodString;
|
|
939
|
+
computedAt: z.ZodISODateTime;
|
|
940
|
+
data: z.ZodObject<{
|
|
941
|
+
openConversations: z.ZodCoercedBigInt<unknown>;
|
|
942
|
+
unreadMessages: z.ZodCoercedBigInt<unknown>;
|
|
943
|
+
newConversations: z.ZodCoercedBigInt<unknown>;
|
|
944
|
+
awaitingReplyCount: z.ZodCoercedBigInt<unknown>;
|
|
945
|
+
awaitingUnreachableCount: z.ZodCoercedBigInt<unknown>;
|
|
946
|
+
awaitingReply: z.ZodArray<z.ZodObject<{
|
|
947
|
+
conversationId: z.ZodUUID;
|
|
948
|
+
contactId: z.ZodCoercedBigInt<unknown>;
|
|
949
|
+
firstName: z.ZodOptional<z.ZodString>;
|
|
950
|
+
lastName: z.ZodOptional<z.ZodString>;
|
|
951
|
+
channelType: z.ZodEnum<{
|
|
952
|
+
FACEBOOK: "FACEBOOK";
|
|
953
|
+
INSTAGRAM: "INSTAGRAM";
|
|
954
|
+
WHATSAPP: "WHATSAPP";
|
|
955
|
+
}>;
|
|
956
|
+
lastMessagePreview: z.ZodString;
|
|
957
|
+
lastInboundAt: z.ZodISODateTime;
|
|
958
|
+
unreadCount: z.ZodInt;
|
|
959
|
+
reachable: z.ZodBoolean;
|
|
960
|
+
}, z.core.$strip>>;
|
|
961
|
+
medianResponseSeconds: z.ZodCoercedBigInt<unknown>;
|
|
962
|
+
inboundByChannel: z.ZodArray<z.ZodObject<{
|
|
963
|
+
key: z.ZodString;
|
|
964
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
965
|
+
}, z.core.$strip>>;
|
|
966
|
+
}, z.core.$strip>;
|
|
967
|
+
}, z.core.$strip>;
|
|
968
|
+
export declare const zDealTypeBudget: z.ZodObject<{
|
|
969
|
+
listingType: z.ZodOptional<z.ZodEnum<{
|
|
970
|
+
SALE: "SALE";
|
|
971
|
+
RENT: "RENT";
|
|
972
|
+
DAILY_RENT: "DAILY_RENT";
|
|
973
|
+
PLEDGE: "PLEDGE";
|
|
974
|
+
}>>;
|
|
975
|
+
buckets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
976
|
+
key: z.ZodString;
|
|
977
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
978
|
+
}, z.core.$strip>>>;
|
|
918
979
|
}, z.core.$strip>;
|
|
919
980
|
export declare const zDistrictDemand: z.ZodObject<{
|
|
920
981
|
districtId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
@@ -924,16 +985,24 @@ export declare const zDistrictDemand: z.ZodObject<{
|
|
|
924
985
|
export declare const zDemandStats: z.ZodObject<{
|
|
925
986
|
activeInterests: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
926
987
|
byListingType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
927
|
-
key: z.
|
|
928
|
-
count: z.
|
|
988
|
+
key: z.ZodString;
|
|
989
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
929
990
|
}, z.core.$strip>>>;
|
|
930
991
|
byPropertyType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
931
|
-
key: z.
|
|
932
|
-
count: z.
|
|
992
|
+
key: z.ZodString;
|
|
993
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
933
994
|
}, z.core.$strip>>>;
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
995
|
+
budgetByDealType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
996
|
+
listingType: z.ZodOptional<z.ZodEnum<{
|
|
997
|
+
SALE: "SALE";
|
|
998
|
+
RENT: "RENT";
|
|
999
|
+
DAILY_RENT: "DAILY_RENT";
|
|
1000
|
+
PLEDGE: "PLEDGE";
|
|
1001
|
+
}>>;
|
|
1002
|
+
buckets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1003
|
+
key: z.ZodString;
|
|
1004
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
1005
|
+
}, z.core.$strip>>>;
|
|
937
1006
|
}, z.core.$strip>>>;
|
|
938
1007
|
topDistricts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
939
1008
|
districtId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
@@ -942,28 +1011,36 @@ export declare const zDemandStats: z.ZodObject<{
|
|
|
942
1011
|
}, z.core.$strip>>>;
|
|
943
1012
|
}, z.core.$strip>;
|
|
944
1013
|
export declare const zStatsEnvelopeDemandStats: z.ZodObject<{
|
|
945
|
-
period: z.
|
|
946
|
-
computedAt: z.
|
|
947
|
-
data: z.
|
|
1014
|
+
period: z.ZodString;
|
|
1015
|
+
computedAt: z.ZodISODateTime;
|
|
1016
|
+
data: z.ZodObject<{
|
|
948
1017
|
activeInterests: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
949
1018
|
byListingType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
950
|
-
key: z.
|
|
951
|
-
count: z.
|
|
1019
|
+
key: z.ZodString;
|
|
1020
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
952
1021
|
}, z.core.$strip>>>;
|
|
953
1022
|
byPropertyType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
954
|
-
key: z.
|
|
955
|
-
count: z.
|
|
1023
|
+
key: z.ZodString;
|
|
1024
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
956
1025
|
}, z.core.$strip>>>;
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
1026
|
+
budgetByDealType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1027
|
+
listingType: z.ZodOptional<z.ZodEnum<{
|
|
1028
|
+
SALE: "SALE";
|
|
1029
|
+
RENT: "RENT";
|
|
1030
|
+
DAILY_RENT: "DAILY_RENT";
|
|
1031
|
+
PLEDGE: "PLEDGE";
|
|
1032
|
+
}>>;
|
|
1033
|
+
buckets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1034
|
+
key: z.ZodString;
|
|
1035
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
1036
|
+
}, z.core.$strip>>>;
|
|
960
1037
|
}, z.core.$strip>>>;
|
|
961
1038
|
topDistricts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
962
1039
|
districtId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
963
1040
|
name: z.ZodOptional<z.ZodString>;
|
|
964
1041
|
count: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
965
1042
|
}, z.core.$strip>>>;
|
|
966
|
-
}, z.core.$strip
|
|
1043
|
+
}, z.core.$strip>;
|
|
967
1044
|
}, z.core.$strip>;
|
|
968
1045
|
export declare const zPageMetadata: z.ZodObject<{
|
|
969
1046
|
size: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
@@ -5635,34 +5712,42 @@ export declare const zGetStatisticsPortfolioData: z.ZodObject<{
|
|
|
5635
5712
|
* OK
|
|
5636
5713
|
*/
|
|
5637
5714
|
export declare const zGetStatisticsPortfolioResponse: z.ZodObject<{
|
|
5638
|
-
period: z.
|
|
5639
|
-
computedAt: z.
|
|
5640
|
-
data: z.
|
|
5641
|
-
propertiesByState: z.
|
|
5642
|
-
key: z.
|
|
5643
|
-
count: z.
|
|
5644
|
-
}, z.core.$strip
|
|
5645
|
-
listings: z.
|
|
5646
|
-
listingType: z.ZodOptional<z.
|
|
5715
|
+
period: z.ZodString;
|
|
5716
|
+
computedAt: z.ZodISODateTime;
|
|
5717
|
+
data: z.ZodObject<{
|
|
5718
|
+
propertiesByState: z.ZodArray<z.ZodObject<{
|
|
5719
|
+
key: z.ZodString;
|
|
5720
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
5721
|
+
}, z.core.$strip>>;
|
|
5722
|
+
listings: z.ZodArray<z.ZodObject<{
|
|
5723
|
+
listingType: z.ZodOptional<z.ZodEnum<{
|
|
5724
|
+
SALE: "SALE";
|
|
5725
|
+
RENT: "RENT";
|
|
5726
|
+
DAILY_RENT: "DAILY_RENT";
|
|
5727
|
+
PLEDGE: "PLEDGE";
|
|
5728
|
+
}>>;
|
|
5647
5729
|
count: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
5648
5730
|
pipelineValue: z.ZodOptional<z.ZodNumber>;
|
|
5649
5731
|
estimatedCommission: z.ZodOptional<z.ZodNumber>;
|
|
5650
|
-
}, z.core.$strip
|
|
5651
|
-
expiringAgreementsCount: z.
|
|
5652
|
-
expiringAgreements: z.
|
|
5732
|
+
}, z.core.$strip>>;
|
|
5733
|
+
expiringAgreementsCount: z.ZodCoercedBigInt<unknown>;
|
|
5734
|
+
expiringAgreements: z.ZodArray<z.ZodObject<{
|
|
5653
5735
|
propertyId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
5654
5736
|
externalId: z.ZodOptional<z.ZodUUID>;
|
|
5655
5737
|
title: z.ZodOptional<z.ZodString>;
|
|
5656
5738
|
expiresAt: z.ZodOptional<z.ZodISODate>;
|
|
5657
|
-
}, z.core.$strip
|
|
5658
|
-
expiringPlatformCount: z.
|
|
5659
|
-
expiringPlatformListings: z.
|
|
5660
|
-
platform: z.ZodOptional<z.
|
|
5739
|
+
}, z.core.$strip>>;
|
|
5740
|
+
expiringPlatformCount: z.ZodCoercedBigInt<unknown>;
|
|
5741
|
+
expiringPlatformListings: z.ZodArray<z.ZodObject<{
|
|
5742
|
+
platform: z.ZodOptional<z.ZodEnum<{
|
|
5743
|
+
SS: "SS";
|
|
5744
|
+
MY_HOME: "MY_HOME";
|
|
5745
|
+
}>>;
|
|
5661
5746
|
platformId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
5662
5747
|
propertyTitle: z.ZodOptional<z.ZodString>;
|
|
5663
5748
|
expiresAt: z.ZodOptional<z.ZodISODate>;
|
|
5664
|
-
}, z.core.$strip
|
|
5665
|
-
}, z.core.$strip
|
|
5749
|
+
}, z.core.$strip>>;
|
|
5750
|
+
}, z.core.$strip>;
|
|
5666
5751
|
}, z.core.$strip>;
|
|
5667
5752
|
export declare const zGetStatisticsPipelineData: z.ZodObject<{
|
|
5668
5753
|
body: z.ZodOptional<z.ZodNever>;
|
|
@@ -5675,30 +5760,30 @@ export declare const zGetStatisticsPipelineData: z.ZodObject<{
|
|
|
5675
5760
|
* OK
|
|
5676
5761
|
*/
|
|
5677
5762
|
export declare const zGetStatisticsPipelineResponse: z.ZodObject<{
|
|
5678
|
-
period: z.
|
|
5679
|
-
computedAt: z.
|
|
5680
|
-
data: z.
|
|
5681
|
-
total: z.
|
|
5682
|
-
won: z.
|
|
5683
|
-
conversionRatePercent: z.
|
|
5684
|
-
unassigned: z.
|
|
5685
|
-
newContactsTrend: z.
|
|
5763
|
+
period: z.ZodString;
|
|
5764
|
+
computedAt: z.ZodISODateTime;
|
|
5765
|
+
data: z.ZodObject<{
|
|
5766
|
+
total: z.ZodCoercedBigInt<unknown>;
|
|
5767
|
+
won: z.ZodCoercedBigInt<unknown>;
|
|
5768
|
+
conversionRatePercent: z.ZodNumber;
|
|
5769
|
+
unassigned: z.ZodCoercedBigInt<unknown>;
|
|
5770
|
+
newContactsTrend: z.ZodArray<z.ZodObject<{
|
|
5686
5771
|
date: z.ZodOptional<z.ZodISODate>;
|
|
5687
5772
|
count: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
5688
|
-
}, z.core.$strip
|
|
5689
|
-
status: z.
|
|
5690
|
-
key: z.
|
|
5691
|
-
count: z.
|
|
5692
|
-
}, z.core.$strip
|
|
5693
|
-
sourceAttribution: z.
|
|
5694
|
-
key: z.
|
|
5695
|
-
count: z.
|
|
5696
|
-
}, z.core.$strip
|
|
5697
|
-
lostReasons: z.
|
|
5698
|
-
key: z.
|
|
5699
|
-
count: z.
|
|
5700
|
-
}, z.core.$strip
|
|
5701
|
-
}, z.core.$strip
|
|
5773
|
+
}, z.core.$strip>>;
|
|
5774
|
+
status: z.ZodArray<z.ZodObject<{
|
|
5775
|
+
key: z.ZodString;
|
|
5776
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
5777
|
+
}, z.core.$strip>>;
|
|
5778
|
+
sourceAttribution: z.ZodArray<z.ZodObject<{
|
|
5779
|
+
key: z.ZodString;
|
|
5780
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
5781
|
+
}, z.core.$strip>>;
|
|
5782
|
+
lostReasons: z.ZodArray<z.ZodObject<{
|
|
5783
|
+
key: z.ZodString;
|
|
5784
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
5785
|
+
}, z.core.$strip>>;
|
|
5786
|
+
}, z.core.$strip>;
|
|
5702
5787
|
}, z.core.$strip>;
|
|
5703
5788
|
export declare const zGetStatisticsLeaderboardData: z.ZodObject<{
|
|
5704
5789
|
body: z.ZodOptional<z.ZodNever>;
|
|
@@ -5711,22 +5796,22 @@ export declare const zGetStatisticsLeaderboardData: z.ZodObject<{
|
|
|
5711
5796
|
* OK
|
|
5712
5797
|
*/
|
|
5713
5798
|
export declare const zGetStatisticsLeaderboardResponse: z.ZodObject<{
|
|
5714
|
-
period: z.
|
|
5715
|
-
computedAt: z.
|
|
5716
|
-
data: z.
|
|
5717
|
-
rows: z.
|
|
5718
|
-
memberId: z.
|
|
5719
|
-
firstName: z.
|
|
5720
|
-
lastName: z.
|
|
5721
|
-
photo: z.
|
|
5722
|
-
contactsAssigned: z.
|
|
5723
|
-
converted: z.
|
|
5724
|
-
conversionRatePct: z.
|
|
5725
|
-
recommendationsSent: z.
|
|
5726
|
-
recommendationsRated: z.
|
|
5727
|
-
likeRatePct: z.
|
|
5728
|
-
}, z.core.$strip
|
|
5729
|
-
}, z.core.$strip
|
|
5799
|
+
period: z.ZodString;
|
|
5800
|
+
computedAt: z.ZodISODateTime;
|
|
5801
|
+
data: z.ZodObject<{
|
|
5802
|
+
rows: z.ZodArray<z.ZodObject<{
|
|
5803
|
+
memberId: z.ZodUUID;
|
|
5804
|
+
firstName: z.ZodString;
|
|
5805
|
+
lastName: z.ZodString;
|
|
5806
|
+
photo: z.ZodString;
|
|
5807
|
+
contactsAssigned: z.ZodCoercedBigInt<unknown>;
|
|
5808
|
+
converted: z.ZodCoercedBigInt<unknown>;
|
|
5809
|
+
conversionRatePct: z.ZodNumber;
|
|
5810
|
+
recommendationsSent: z.ZodCoercedBigInt<unknown>;
|
|
5811
|
+
recommendationsRated: z.ZodCoercedBigInt<unknown>;
|
|
5812
|
+
likeRatePct: z.ZodNumber;
|
|
5813
|
+
}, z.core.$strip>>;
|
|
5814
|
+
}, z.core.$strip>;
|
|
5730
5815
|
}, z.core.$strip>;
|
|
5731
5816
|
export declare const zGetStatisticsInboxData: z.ZodObject<{
|
|
5732
5817
|
body: z.ZodOptional<z.ZodNever>;
|
|
@@ -5739,26 +5824,35 @@ export declare const zGetStatisticsInboxData: z.ZodObject<{
|
|
|
5739
5824
|
* OK
|
|
5740
5825
|
*/
|
|
5741
5826
|
export declare const zGetStatisticsInboxResponse: z.ZodObject<{
|
|
5742
|
-
period: z.
|
|
5743
|
-
computedAt: z.
|
|
5744
|
-
data: z.
|
|
5745
|
-
openConversations: z.
|
|
5746
|
-
unreadMessages: z.
|
|
5747
|
-
|
|
5748
|
-
|
|
5749
|
-
|
|
5750
|
-
|
|
5751
|
-
|
|
5752
|
-
|
|
5753
|
-
|
|
5754
|
-
|
|
5755
|
-
|
|
5756
|
-
|
|
5757
|
-
|
|
5758
|
-
|
|
5759
|
-
|
|
5760
|
-
|
|
5761
|
-
|
|
5827
|
+
period: z.ZodString;
|
|
5828
|
+
computedAt: z.ZodISODateTime;
|
|
5829
|
+
data: z.ZodObject<{
|
|
5830
|
+
openConversations: z.ZodCoercedBigInt<unknown>;
|
|
5831
|
+
unreadMessages: z.ZodCoercedBigInt<unknown>;
|
|
5832
|
+
newConversations: z.ZodCoercedBigInt<unknown>;
|
|
5833
|
+
awaitingReplyCount: z.ZodCoercedBigInt<unknown>;
|
|
5834
|
+
awaitingUnreachableCount: z.ZodCoercedBigInt<unknown>;
|
|
5835
|
+
awaitingReply: z.ZodArray<z.ZodObject<{
|
|
5836
|
+
conversationId: z.ZodUUID;
|
|
5837
|
+
contactId: z.ZodCoercedBigInt<unknown>;
|
|
5838
|
+
firstName: z.ZodOptional<z.ZodString>;
|
|
5839
|
+
lastName: z.ZodOptional<z.ZodString>;
|
|
5840
|
+
channelType: z.ZodEnum<{
|
|
5841
|
+
FACEBOOK: "FACEBOOK";
|
|
5842
|
+
INSTAGRAM: "INSTAGRAM";
|
|
5843
|
+
WHATSAPP: "WHATSAPP";
|
|
5844
|
+
}>;
|
|
5845
|
+
lastMessagePreview: z.ZodString;
|
|
5846
|
+
lastInboundAt: z.ZodISODateTime;
|
|
5847
|
+
unreadCount: z.ZodInt;
|
|
5848
|
+
reachable: z.ZodBoolean;
|
|
5849
|
+
}, z.core.$strip>>;
|
|
5850
|
+
medianResponseSeconds: z.ZodCoercedBigInt<unknown>;
|
|
5851
|
+
inboundByChannel: z.ZodArray<z.ZodObject<{
|
|
5852
|
+
key: z.ZodString;
|
|
5853
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
5854
|
+
}, z.core.$strip>>;
|
|
5855
|
+
}, z.core.$strip>;
|
|
5762
5856
|
}, z.core.$strip>;
|
|
5763
5857
|
export declare const zGetStatisticsDemandData: z.ZodObject<{
|
|
5764
5858
|
body: z.ZodOptional<z.ZodNever>;
|
|
@@ -5769,28 +5863,36 @@ export declare const zGetStatisticsDemandData: z.ZodObject<{
|
|
|
5769
5863
|
* OK
|
|
5770
5864
|
*/
|
|
5771
5865
|
export declare const zGetStatisticsDemandResponse: z.ZodObject<{
|
|
5772
|
-
period: z.
|
|
5773
|
-
computedAt: z.
|
|
5774
|
-
data: z.
|
|
5866
|
+
period: z.ZodString;
|
|
5867
|
+
computedAt: z.ZodISODateTime;
|
|
5868
|
+
data: z.ZodObject<{
|
|
5775
5869
|
activeInterests: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
5776
5870
|
byListingType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5777
|
-
key: z.
|
|
5778
|
-
count: z.
|
|
5871
|
+
key: z.ZodString;
|
|
5872
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
5779
5873
|
}, z.core.$strip>>>;
|
|
5780
5874
|
byPropertyType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5781
|
-
key: z.
|
|
5782
|
-
count: z.
|
|
5875
|
+
key: z.ZodString;
|
|
5876
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
5783
5877
|
}, z.core.$strip>>>;
|
|
5784
|
-
|
|
5785
|
-
|
|
5786
|
-
|
|
5878
|
+
budgetByDealType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5879
|
+
listingType: z.ZodOptional<z.ZodEnum<{
|
|
5880
|
+
SALE: "SALE";
|
|
5881
|
+
RENT: "RENT";
|
|
5882
|
+
DAILY_RENT: "DAILY_RENT";
|
|
5883
|
+
PLEDGE: "PLEDGE";
|
|
5884
|
+
}>>;
|
|
5885
|
+
buckets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5886
|
+
key: z.ZodString;
|
|
5887
|
+
count: z.ZodCoercedBigInt<unknown>;
|
|
5888
|
+
}, z.core.$strip>>>;
|
|
5787
5889
|
}, z.core.$strip>>>;
|
|
5788
5890
|
topDistricts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5789
5891
|
districtId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
5790
5892
|
name: z.ZodOptional<z.ZodString>;
|
|
5791
5893
|
count: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
5792
5894
|
}, z.core.$strip>>>;
|
|
5793
|
-
}, z.core.$strip
|
|
5895
|
+
}, z.core.$strip>;
|
|
5794
5896
|
}, z.core.$strip>;
|
|
5795
5897
|
export declare const zGetPublicRecomendationsByTokenItemsData: z.ZodObject<{
|
|
5796
5898
|
body: z.ZodOptional<z.ZodNever>;
|