@timardex/cluemart-shared 1.5.639 → 1.5.700
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/{post-CnUaLo8U.d.mts → auth-Dz2MAssU.d.mts} +64 -12
- package/dist/{post-DNAoYkrb.d.ts → auth-UPb1_jVK.d.ts} +64 -12
- package/dist/{chunk-3NBZGJZM.mjs → chunk-BRJDMHB7.mjs} +4 -3
- package/dist/chunk-BRJDMHB7.mjs.map +1 -0
- package/dist/{chunk-5O7KUBUD.mjs → chunk-NS3JTI3E.mjs} +92 -5
- package/dist/chunk-NS3JTI3E.mjs.map +1 -0
- package/dist/{chunk-HQF7VI3U.mjs → chunk-QJI4BF4B.mjs} +2 -2
- package/dist/{chunk-Q6R4US6G.mjs → chunk-SHKKKI2H.mjs} +15 -9
- package/dist/chunk-SHKKKI2H.mjs.map +1 -0
- package/dist/{chunk-WVUM6765.mjs → chunk-XGX7SV5N.mjs} +1 -1
- package/dist/chunk-XGX7SV5N.mjs.map +1 -0
- package/dist/contactUs-Bj_OPrzH.d.ts +11 -0
- package/dist/contactUs-OVbcfAJw.d.mts +11 -0
- package/dist/formFields/index.cjs.map +1 -1
- package/dist/formFields/index.d.mts +1 -1
- package/dist/formFields/index.d.ts +1 -1
- package/dist/formFields/index.mjs +2 -3
- package/dist/{global-C0oWABvh.d.ts → global-BDCEwnuZ.d.ts} +12 -6
- package/dist/{global-DkXf399E.d.mts → global-Oy5CuI_n.d.mts} +12 -6
- package/dist/graphql/index.cjs +14 -8
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +30 -18
- package/dist/graphql/index.d.ts +30 -18
- package/dist/graphql/index.mjs +1 -1
- package/dist/hooks/index.cjs +47 -40
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.d.mts +4 -4
- package/dist/hooks/index.d.ts +4 -4
- package/dist/hooks/index.mjs +35 -39
- package/dist/hooks/index.mjs.map +1 -1
- package/dist/index.cjs +56 -43
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +193 -150
- package/dist/index.d.ts +193 -150
- package/dist/index.mjs +53 -43
- package/dist/index.mjs.map +1 -1
- package/dist/{resourceActivities-M-23xcpt.d.mts → resourceActivities-CheTdj4a.d.mts} +7 -7
- package/dist/{resourceActivities-CpGhukwk.d.ts → resourceActivities-Du-3z7E1.d.ts} +7 -7
- package/dist/sharing/index.cjs +184 -1
- package/dist/sharing/index.cjs.map +1 -1
- package/dist/sharing/index.d.mts +1 -1
- package/dist/sharing/index.d.ts +1 -1
- package/dist/sharing/index.mjs +4 -2
- package/dist/types/index.cjs.map +1 -1
- package/dist/types/index.d.mts +17 -8
- package/dist/types/index.d.ts +17 -8
- package/dist/types/index.mjs +1 -1
- package/dist/utils/index.cjs +9 -0
- package/dist/utils/index.cjs.map +1 -1
- package/dist/utils/index.d.mts +5 -2
- package/dist/utils/index.d.ts +5 -2
- package/dist/utils/index.mjs +17 -13
- package/package.json +1 -1
- package/dist/auth-BHqJ27id.d.ts +0 -51
- package/dist/auth-BJpF_-cS.d.mts +0 -51
- package/dist/chunk-3NBZGJZM.mjs.map +0 -1
- package/dist/chunk-5O7KUBUD.mjs.map +0 -1
- package/dist/chunk-Q6R4US6G.mjs.map +0 -1
- package/dist/chunk-WVUM6765.mjs.map +0 -1
- package/dist/chunk-X4VPNOHX.mjs +0 -88
- package/dist/chunk-X4VPNOHX.mjs.map +0 -1
- /package/dist/{chunk-HQF7VI3U.mjs.map → chunk-QJI4BF4B.mjs.map} +0 -0
package/dist/index.d.mts
CHANGED
|
@@ -231,17 +231,21 @@ type RelationDate = {
|
|
|
231
231
|
interface RelationType {
|
|
232
232
|
_id?: string;
|
|
233
233
|
active: boolean;
|
|
234
|
-
apiMessage?: string;
|
|
235
|
-
chatId: string
|
|
236
|
-
createdAt?:
|
|
237
|
-
deletedAt?:
|
|
234
|
+
apiMessage?: string | null;
|
|
235
|
+
chatId: string;
|
|
236
|
+
createdAt?: Date;
|
|
237
|
+
deletedAt?: Date | null;
|
|
238
238
|
eventId: string;
|
|
239
239
|
lastUpdateBy: EnumResourceType;
|
|
240
240
|
relationDates: RelationDate[];
|
|
241
241
|
relationType: EnumRelationResource;
|
|
242
|
-
updatedAt?:
|
|
242
|
+
updatedAt?: Date;
|
|
243
243
|
vendorId: string;
|
|
244
244
|
}
|
|
245
|
+
/** GraphQL RelationInputType — chatId is optional; server assigns it on create. */
|
|
246
|
+
type RelationInputType = Omit<RelationType, "_id" | "apiMessage" | "chatId" | "createdAt" | "updatedAt" | "deletedAt"> & {
|
|
247
|
+
chatId?: string;
|
|
248
|
+
};
|
|
245
249
|
|
|
246
250
|
type StallType = {
|
|
247
251
|
label: string;
|
|
@@ -310,6 +314,7 @@ interface EventType extends BaseResourceType {
|
|
|
310
314
|
type EventListItemType = Pick<EventType, "_id" | "active" | "claimed" | "cover" | "createdAt" | "dateTime" | "deletedAt" | "description" | "eventType" | "googlePlaceId" | "images" | "location" | "logo" | "name" | "rainOrShine" | "rating" | "region" | "relations" | "reviewCount" | "updatedAt">;
|
|
311
315
|
type EventInfoType = Omit<EventInfoFormData, "_id"> & {
|
|
312
316
|
_id: string;
|
|
317
|
+
active?: boolean;
|
|
313
318
|
};
|
|
314
319
|
|
|
315
320
|
type VendorCalendarData = Omit<ResourceDetails, "dateTime" | "eventStatus"> & {
|
|
@@ -399,6 +404,7 @@ interface VendorType extends BaseResourceType {
|
|
|
399
404
|
}
|
|
400
405
|
type VendorInfoType = Omit<VendorInfoFormData, "_id" | "documentsUpload"> & {
|
|
401
406
|
_id: string;
|
|
407
|
+
active?: boolean;
|
|
402
408
|
};
|
|
403
409
|
interface UnregisteredVendorFormData {
|
|
404
410
|
categoryIds: string[];
|
|
@@ -633,6 +639,120 @@ interface AdminUpdateResourceType {
|
|
|
633
639
|
resourceType: EnumResourceType;
|
|
634
640
|
}
|
|
635
641
|
|
|
642
|
+
type UserFormData = {
|
|
643
|
+
_id?: string;
|
|
644
|
+
active: boolean;
|
|
645
|
+
avatar?: ResourceImageType | null;
|
|
646
|
+
avatarUpload?: ResourceImageType | null;
|
|
647
|
+
confirmPassword?: string | null;
|
|
648
|
+
email: string;
|
|
649
|
+
firstName: string;
|
|
650
|
+
isTester: boolean;
|
|
651
|
+
lastName: string;
|
|
652
|
+
password?: string | null;
|
|
653
|
+
platform?: EnumOSPlatform;
|
|
654
|
+
preferredRegion: string;
|
|
655
|
+
role: EnumUserRole;
|
|
656
|
+
termsAgreement?: TermsAgreement | null;
|
|
657
|
+
};
|
|
658
|
+
type CreateUserFormData = CreateFormData<UserFormData>;
|
|
659
|
+
type UserActivityEvent = {
|
|
660
|
+
resourceId: string;
|
|
661
|
+
dateTime: DateTimeType;
|
|
662
|
+
};
|
|
663
|
+
type StripeSubscription = {
|
|
664
|
+
customerId?: string;
|
|
665
|
+
subscriptionId?: string;
|
|
666
|
+
status?: EnumSubscriptionStatus;
|
|
667
|
+
currentPlan?: EnumUserLicence;
|
|
668
|
+
startDate?: string;
|
|
669
|
+
endDate?: string;
|
|
670
|
+
};
|
|
671
|
+
type SubscriptionStatusData = {
|
|
672
|
+
subscriptionId: string | null;
|
|
673
|
+
status: EnumSubscriptionStatus;
|
|
674
|
+
priceId: string | null;
|
|
675
|
+
currentPlan: EnumUserLicence | null;
|
|
676
|
+
};
|
|
677
|
+
type SubscriptionPricingData = {
|
|
678
|
+
basePrice: number;
|
|
679
|
+
discountedPrice: number | null;
|
|
680
|
+
hasDiscount: boolean;
|
|
681
|
+
discountPercent: number | null;
|
|
682
|
+
discountAmount: number | null;
|
|
683
|
+
currency: string;
|
|
684
|
+
formattedBasePrice: string;
|
|
685
|
+
formattedDiscountedPrice: string | null;
|
|
686
|
+
};
|
|
687
|
+
type SubscriptionPlanData = {
|
|
688
|
+
name: string;
|
|
689
|
+
description: string | null;
|
|
690
|
+
licenceType: EnumUserLicence;
|
|
691
|
+
billingPeriod: string;
|
|
692
|
+
stripeProductId: string;
|
|
693
|
+
stripePriceId: string;
|
|
694
|
+
isEligibleForDiscount: boolean;
|
|
695
|
+
pricing: SubscriptionPricingData;
|
|
696
|
+
};
|
|
697
|
+
type SubscriptionPlansResponse = {
|
|
698
|
+
plans: SubscriptionPlanData[];
|
|
699
|
+
isNewUser: boolean;
|
|
700
|
+
isTester: boolean;
|
|
701
|
+
appliedDiscountType: string;
|
|
702
|
+
};
|
|
703
|
+
type UserActivity = {
|
|
704
|
+
favourites: {
|
|
705
|
+
events: string[];
|
|
706
|
+
vendors: string[];
|
|
707
|
+
partners: string[];
|
|
708
|
+
};
|
|
709
|
+
going: {
|
|
710
|
+
events: UserActivityEvent[];
|
|
711
|
+
};
|
|
712
|
+
interested: {
|
|
713
|
+
events: UserActivityEvent[];
|
|
714
|
+
};
|
|
715
|
+
present: {
|
|
716
|
+
events: UserActivityEvent[];
|
|
717
|
+
};
|
|
718
|
+
};
|
|
719
|
+
interface UserType {
|
|
720
|
+
_id: string;
|
|
721
|
+
active: boolean;
|
|
722
|
+
associates?: AssociateType[] | null;
|
|
723
|
+
avatar: ResourceImageType | null;
|
|
724
|
+
createdAt: Date;
|
|
725
|
+
deletedAt: Date | null;
|
|
726
|
+
email: string;
|
|
727
|
+
events: string[] | null;
|
|
728
|
+
firstName: string;
|
|
729
|
+
game: string | null;
|
|
730
|
+
isTester: boolean;
|
|
731
|
+
lastName: string;
|
|
732
|
+
licences: UserLicenceType[] | null;
|
|
733
|
+
overallPoints: number | null;
|
|
734
|
+
partner: string | null;
|
|
735
|
+
password: string;
|
|
736
|
+
platform: EnumOSPlatform | null;
|
|
737
|
+
preferredRegion: string;
|
|
738
|
+
promoCodes?: PromoCodeType[] | null;
|
|
739
|
+
refreshToken: string | null;
|
|
740
|
+
role: EnumUserRole;
|
|
741
|
+
school: string | null;
|
|
742
|
+
stripe?: StripeSubscription;
|
|
743
|
+
termsAgreement?: TermsAgreement | null;
|
|
744
|
+
updatedAt: Date | null;
|
|
745
|
+
userActivity: UserActivity | null;
|
|
746
|
+
vendor: string | null;
|
|
747
|
+
}
|
|
748
|
+
type SafeUserType = Omit<UserType, "password" | "refreshToken">;
|
|
749
|
+
type ResourceByUser = {
|
|
750
|
+
_id: string;
|
|
751
|
+
logo: string;
|
|
752
|
+
name: string;
|
|
753
|
+
resourceType: EnumResourceType;
|
|
754
|
+
};
|
|
755
|
+
|
|
636
756
|
declare enum EnumVerificationType {
|
|
637
757
|
REGISTER = "register",
|
|
638
758
|
RESET_PASSWORD = "resetPassword"
|
|
@@ -671,6 +791,16 @@ type ValidateVerificationTokenFormData = {
|
|
|
671
791
|
verificationType?: EnumVerificationType;
|
|
672
792
|
};
|
|
673
793
|
type CreateValidateVerificationTokenFormData = CreateFormData<ValidateVerificationTokenFormData>;
|
|
794
|
+
type AuthPayloadType = {
|
|
795
|
+
message: string;
|
|
796
|
+
token: string;
|
|
797
|
+
refreshToken: string | null;
|
|
798
|
+
user: SafeUserType;
|
|
799
|
+
};
|
|
800
|
+
type RefreshTokenPayloadType = {
|
|
801
|
+
refreshToken: string;
|
|
802
|
+
token: string;
|
|
803
|
+
};
|
|
674
804
|
|
|
675
805
|
type ParticipantType = {
|
|
676
806
|
active: boolean;
|
|
@@ -692,22 +822,22 @@ type ChatMessageReplyPreview = {
|
|
|
692
822
|
};
|
|
693
823
|
type ChatMessageReaction = {
|
|
694
824
|
userId: string;
|
|
695
|
-
createdAt:
|
|
825
|
+
createdAt: Date;
|
|
696
826
|
};
|
|
697
827
|
type ChatMessageSeen = {
|
|
698
828
|
userId: string;
|
|
699
|
-
seenAt:
|
|
829
|
+
seenAt: Date;
|
|
700
830
|
};
|
|
701
831
|
interface ChatMessageType {
|
|
702
832
|
_id?: string;
|
|
703
833
|
content: string;
|
|
704
|
-
createdAt?:
|
|
834
|
+
createdAt?: Date;
|
|
705
835
|
replyToMessageId?: string | null;
|
|
706
836
|
replyPreview?: ChatMessageReplyPreview | null;
|
|
707
837
|
likedBy?: ChatMessageReaction[];
|
|
708
838
|
senderId: string;
|
|
709
839
|
seenBy?: ChatMessageSeen[];
|
|
710
|
-
updatedAt?:
|
|
840
|
+
updatedAt?: Date;
|
|
711
841
|
}
|
|
712
842
|
interface ChatType {
|
|
713
843
|
_id: string;
|
|
@@ -757,8 +887,8 @@ type NotificationType = {
|
|
|
757
887
|
isRead: boolean;
|
|
758
888
|
type: EnumNotificationType;
|
|
759
889
|
data: NotificationDataType | null;
|
|
760
|
-
createdAt:
|
|
761
|
-
updatedAt:
|
|
890
|
+
createdAt: Date;
|
|
891
|
+
updatedAt: Date;
|
|
762
892
|
};
|
|
763
893
|
type NotificationCount = {
|
|
764
894
|
total: number;
|
|
@@ -835,119 +965,6 @@ interface PosterInputType {
|
|
|
835
965
|
resourceType: EnumResourceType;
|
|
836
966
|
}
|
|
837
967
|
|
|
838
|
-
type UserFormData = {
|
|
839
|
-
_id?: string;
|
|
840
|
-
active: boolean;
|
|
841
|
-
avatar?: ResourceImageType | null;
|
|
842
|
-
avatarUpload?: ResourceImageType | null;
|
|
843
|
-
confirmPassword?: string | null;
|
|
844
|
-
email: string;
|
|
845
|
-
firstName: string;
|
|
846
|
-
isTester: boolean;
|
|
847
|
-
lastName: string;
|
|
848
|
-
password?: string | null;
|
|
849
|
-
platform?: EnumOSPlatform;
|
|
850
|
-
preferredRegion: string;
|
|
851
|
-
role: EnumUserRole;
|
|
852
|
-
termsAgreement?: TermsAgreement | null;
|
|
853
|
-
};
|
|
854
|
-
type CreateUserFormData = CreateFormData<UserFormData>;
|
|
855
|
-
type UserActivityEvent = {
|
|
856
|
-
resourceId: string;
|
|
857
|
-
dateTime: DateTimeType;
|
|
858
|
-
};
|
|
859
|
-
type StripeSubscription = {
|
|
860
|
-
customerId?: string;
|
|
861
|
-
subscriptionId?: string;
|
|
862
|
-
status?: EnumSubscriptionStatus;
|
|
863
|
-
currentPlan?: EnumUserLicence;
|
|
864
|
-
startDate?: string;
|
|
865
|
-
endDate?: string;
|
|
866
|
-
};
|
|
867
|
-
type SubscriptionStatusData = {
|
|
868
|
-
subscriptionId: string | null;
|
|
869
|
-
status: EnumSubscriptionStatus;
|
|
870
|
-
priceId: string | null;
|
|
871
|
-
currentPlan: EnumUserLicence | null;
|
|
872
|
-
};
|
|
873
|
-
type SubscriptionPricingData = {
|
|
874
|
-
basePrice: number;
|
|
875
|
-
discountedPrice: number | null;
|
|
876
|
-
hasDiscount: boolean;
|
|
877
|
-
discountPercent: number | null;
|
|
878
|
-
discountAmount: number | null;
|
|
879
|
-
currency: string;
|
|
880
|
-
formattedBasePrice: string;
|
|
881
|
-
formattedDiscountedPrice: string | null;
|
|
882
|
-
};
|
|
883
|
-
type SubscriptionPlanData = {
|
|
884
|
-
name: string;
|
|
885
|
-
description: string | null;
|
|
886
|
-
licenceType: EnumUserLicence;
|
|
887
|
-
billingPeriod: string;
|
|
888
|
-
stripeProductId: string;
|
|
889
|
-
stripePriceId: string;
|
|
890
|
-
isEligibleForDiscount: boolean;
|
|
891
|
-
pricing: SubscriptionPricingData;
|
|
892
|
-
};
|
|
893
|
-
type SubscriptionPlansResponse = {
|
|
894
|
-
plans: SubscriptionPlanData[];
|
|
895
|
-
isNewUser: boolean;
|
|
896
|
-
isTester: boolean;
|
|
897
|
-
appliedDiscountType: string;
|
|
898
|
-
};
|
|
899
|
-
type UserActivity = {
|
|
900
|
-
favourites: {
|
|
901
|
-
events: string[];
|
|
902
|
-
vendors: string[];
|
|
903
|
-
partners: string[];
|
|
904
|
-
};
|
|
905
|
-
going: {
|
|
906
|
-
events: UserActivityEvent[];
|
|
907
|
-
};
|
|
908
|
-
interested: {
|
|
909
|
-
events: UserActivityEvent[];
|
|
910
|
-
};
|
|
911
|
-
present: {
|
|
912
|
-
events: UserActivityEvent[];
|
|
913
|
-
};
|
|
914
|
-
};
|
|
915
|
-
interface UserType {
|
|
916
|
-
_id: string;
|
|
917
|
-
active: boolean;
|
|
918
|
-
associates?: AssociateType[] | null;
|
|
919
|
-
avatar: ResourceImageType | null;
|
|
920
|
-
createdAt: Date;
|
|
921
|
-
deletedAt: Date | null;
|
|
922
|
-
email: string;
|
|
923
|
-
events: string[] | null;
|
|
924
|
-
firstName: string;
|
|
925
|
-
game: string | null;
|
|
926
|
-
isTester: boolean;
|
|
927
|
-
lastName: string;
|
|
928
|
-
licences: UserLicenceType[] | null;
|
|
929
|
-
overallPoints: number | null;
|
|
930
|
-
partner: string | null;
|
|
931
|
-
password: string;
|
|
932
|
-
platform: EnumOSPlatform | null;
|
|
933
|
-
preferredRegion: string;
|
|
934
|
-
promoCodes?: PromoCodeType[] | null;
|
|
935
|
-
refreshToken: string | null;
|
|
936
|
-
role: EnumUserRole;
|
|
937
|
-
school: string | null;
|
|
938
|
-
stripe?: StripeSubscription;
|
|
939
|
-
termsAgreement?: TermsAgreement | null;
|
|
940
|
-
updatedAt: Date | null;
|
|
941
|
-
userActivity: UserActivity | null;
|
|
942
|
-
vendor: string | null;
|
|
943
|
-
}
|
|
944
|
-
type ResourceByUser = {
|
|
945
|
-
_id: string;
|
|
946
|
-
logo: string;
|
|
947
|
-
name: string;
|
|
948
|
-
resourceType: EnumResourceType;
|
|
949
|
-
};
|
|
950
|
-
|
|
951
968
|
declare enum EnumAdShowOn {
|
|
952
969
|
EVENTS_PAGE = "Events_page",
|
|
953
970
|
FRONT_PAGE = "Front_page",
|
|
@@ -968,15 +985,15 @@ declare enum EnumAdStyle {
|
|
|
968
985
|
RISE = "Rise"
|
|
969
986
|
}
|
|
970
987
|
type AdResource = {
|
|
971
|
-
adDescription: string
|
|
972
|
-
adImage: string
|
|
973
|
-
adStyle: EnumAdStyle
|
|
974
|
-
adTitle: string
|
|
975
|
-
adType: EnumAdType
|
|
976
|
-
resourceId: string
|
|
977
|
-
resourceName: string
|
|
978
|
-
resourceRegion: string
|
|
979
|
-
resourceType: EnumResourceType
|
|
988
|
+
adDescription: string;
|
|
989
|
+
adImage: string;
|
|
990
|
+
adStyle: EnumAdStyle;
|
|
991
|
+
adTitle: string;
|
|
992
|
+
adType: EnumAdType;
|
|
993
|
+
resourceId: string;
|
|
994
|
+
resourceName: string;
|
|
995
|
+
resourceRegion: string;
|
|
996
|
+
resourceType: EnumResourceType;
|
|
980
997
|
};
|
|
981
998
|
interface AdFormData {
|
|
982
999
|
active: boolean;
|
|
@@ -987,7 +1004,9 @@ interface AdFormData {
|
|
|
987
1004
|
status: EnumAdStatus;
|
|
988
1005
|
targetRegion: string[];
|
|
989
1006
|
}
|
|
1007
|
+
type AdFormState = AdFormData;
|
|
990
1008
|
type CreateAdFormData = CreateFormData<AdFormData>;
|
|
1009
|
+
type CreateAdFormState = CreateFormData<AdFormState>;
|
|
991
1010
|
interface AdType extends AdFormData {
|
|
992
1011
|
_id: string;
|
|
993
1012
|
clicks?: number;
|
|
@@ -1309,6 +1328,15 @@ type PostType = Omit<PostFormData, "content" | "coverUpload"> & {
|
|
|
1309
1328
|
updatedAt: Date | null;
|
|
1310
1329
|
};
|
|
1311
1330
|
|
|
1331
|
+
type PushTokenType = {
|
|
1332
|
+
_id: string;
|
|
1333
|
+
createdAt: Date;
|
|
1334
|
+
platform: EnumOSPlatform;
|
|
1335
|
+
token: string;
|
|
1336
|
+
updatedAt: Date;
|
|
1337
|
+
userId: string;
|
|
1338
|
+
};
|
|
1339
|
+
|
|
1312
1340
|
interface AppSettingsFormData {
|
|
1313
1341
|
appVersion: string;
|
|
1314
1342
|
isOfflineMode: boolean;
|
|
@@ -1372,7 +1400,7 @@ type SchoolType = Omit<SchoolFormData, "logoUpload"> & {
|
|
|
1372
1400
|
schoolCode: PromoCodeType;
|
|
1373
1401
|
updatedAt: Date | null;
|
|
1374
1402
|
};
|
|
1375
|
-
type SchoolRegisteredUserType = Pick<
|
|
1403
|
+
type SchoolRegisteredUserType = Pick<SafeUserType, "_id" | "firstName" | "lastName" | "avatar" | "email">;
|
|
1376
1404
|
type SchoolReturnType = {
|
|
1377
1405
|
school: SchoolType;
|
|
1378
1406
|
users: SchoolRegisteredUserType[];
|
|
@@ -1471,12 +1499,20 @@ declare const useAdminPermanentlyDeleteResource: () => {
|
|
|
1471
1499
|
declare const useRegister: () => {
|
|
1472
1500
|
error: _apollo_client.ApolloError | undefined;
|
|
1473
1501
|
loading: boolean;
|
|
1474
|
-
register: (options?: _apollo_client.MutationFunctionOptions<
|
|
1502
|
+
register: (options?: _apollo_client.MutationFunctionOptions<{
|
|
1503
|
+
register: AuthPayloadType;
|
|
1504
|
+
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
1505
|
+
register: AuthPayloadType;
|
|
1506
|
+
}>>;
|
|
1475
1507
|
};
|
|
1476
1508
|
declare const useLogin: () => {
|
|
1477
1509
|
error: _apollo_client.ApolloError | undefined;
|
|
1478
1510
|
loading: boolean;
|
|
1479
|
-
login: (options?: _apollo_client.MutationFunctionOptions<
|
|
1511
|
+
login: (options?: _apollo_client.MutationFunctionOptions<{
|
|
1512
|
+
login: AuthPayloadType;
|
|
1513
|
+
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
1514
|
+
login: AuthPayloadType;
|
|
1515
|
+
}>>;
|
|
1480
1516
|
};
|
|
1481
1517
|
declare const useLogout: () => {
|
|
1482
1518
|
error: _apollo_client.ApolloError | undefined;
|
|
@@ -1486,7 +1522,11 @@ declare const useLogout: () => {
|
|
|
1486
1522
|
declare const useRefreshToken: () => {
|
|
1487
1523
|
error: _apollo_client.ApolloError | undefined;
|
|
1488
1524
|
loading: boolean;
|
|
1489
|
-
refreshToken: (options?: _apollo_client.MutationFunctionOptions<
|
|
1525
|
+
refreshToken: (options?: _apollo_client.MutationFunctionOptions<{
|
|
1526
|
+
refreshToken: RefreshTokenPayloadType;
|
|
1527
|
+
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
1528
|
+
refreshToken: RefreshTokenPayloadType;
|
|
1529
|
+
}>>;
|
|
1490
1530
|
};
|
|
1491
1531
|
declare const useRequestPasswordReset: () => {
|
|
1492
1532
|
error: _apollo_client.ApolloError | undefined;
|
|
@@ -2037,7 +2077,11 @@ declare const useGetUnregisteredVendor: (_id: string) => {
|
|
|
2037
2077
|
};
|
|
2038
2078
|
|
|
2039
2079
|
declare const useCreateUser: () => {
|
|
2040
|
-
createUser: (options?: _apollo_client.MutationFunctionOptions<
|
|
2080
|
+
createUser: (options?: _apollo_client.MutationFunctionOptions<{
|
|
2081
|
+
createUser: SafeUserType;
|
|
2082
|
+
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
2083
|
+
createUser: SafeUserType;
|
|
2084
|
+
}>>;
|
|
2041
2085
|
error: _apollo_client.ApolloError | undefined;
|
|
2042
2086
|
loading: boolean;
|
|
2043
2087
|
};
|
|
@@ -2045,13 +2089,9 @@ declare const useUpdateUser: () => {
|
|
|
2045
2089
|
error: _apollo_client.ApolloError | undefined;
|
|
2046
2090
|
loading: boolean;
|
|
2047
2091
|
updateUser: (options?: _apollo_client.MutationFunctionOptions<{
|
|
2048
|
-
updateUser:
|
|
2049
|
-
_id: string;
|
|
2050
|
-
};
|
|
2092
|
+
updateUser: SafeUserType;
|
|
2051
2093
|
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
2052
|
-
updateUser:
|
|
2053
|
-
_id: string;
|
|
2054
|
-
};
|
|
2094
|
+
updateUser: SafeUserType;
|
|
2055
2095
|
}>>;
|
|
2056
2096
|
};
|
|
2057
2097
|
declare const useDeleteUser: () => {
|
|
@@ -2121,17 +2161,17 @@ declare const useGetUsers: () => {
|
|
|
2121
2161
|
error: _apollo_client.ApolloError | undefined;
|
|
2122
2162
|
loading: boolean;
|
|
2123
2163
|
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloQueryResult<{
|
|
2124
|
-
users:
|
|
2164
|
+
users: SafeUserType[];
|
|
2125
2165
|
}>>;
|
|
2126
|
-
users:
|
|
2166
|
+
users: SafeUserType[];
|
|
2127
2167
|
};
|
|
2128
2168
|
declare const useGetUser: (_id: string) => {
|
|
2129
2169
|
error: _apollo_client.ApolloError | undefined;
|
|
2130
2170
|
loading: boolean;
|
|
2131
2171
|
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloQueryResult<{
|
|
2132
|
-
user:
|
|
2172
|
+
user: SafeUserType;
|
|
2133
2173
|
}>>;
|
|
2134
|
-
user:
|
|
2174
|
+
user: SafeUserType | undefined;
|
|
2135
2175
|
};
|
|
2136
2176
|
declare const useGetUserEvents: () => {
|
|
2137
2177
|
error: _apollo_client.ApolloError | undefined;
|
|
@@ -2647,7 +2687,7 @@ declare function mapBaseResourceTypeToFormData(data: BaseResourceTypeFormData):
|
|
|
2647
2687
|
|
|
2648
2688
|
declare function useContactUsForm(data?: ContactUsFormData): CreateContactUsFormData;
|
|
2649
2689
|
|
|
2650
|
-
declare function useAdForm(data?: AdFormData):
|
|
2690
|
+
declare function useAdForm(data?: AdFormData): CreateAdFormState;
|
|
2651
2691
|
|
|
2652
2692
|
/**
|
|
2653
2693
|
* Custom hook to manage the partner form state and validation.
|
|
@@ -2939,8 +2979,11 @@ declare const licenseNiceNames: Record<EnumUserLicence, string>;
|
|
|
2939
2979
|
declare const cluemartSocialMedia: SocialMediaType[];
|
|
2940
2980
|
declare const IOS_URL = "https://apps.apple.com/nz/app/cluemart/id6747251008";
|
|
2941
2981
|
declare const ANDROID_URL = "https://play.google.com/store/apps/details?id=com.timardex.cluemart";
|
|
2982
|
+
declare const DEFAULT_RESOURCES_RETURN_LIMIT = 1000;
|
|
2983
|
+
declare const DEFAULT_RESOURCES_RETURN_OFFSET = 0;
|
|
2984
|
+
declare const CLUEMART_MAIN_DOMAIN_URL = "https://cluemart.co.nz";
|
|
2942
2985
|
|
|
2943
2986
|
declare const SCHOOL_MIN_STUDENT_COUNT = 300;
|
|
2944
2987
|
declare const SCHOOL_MAX_STUDENT_COUNT = 0;
|
|
2945
2988
|
|
|
2946
|
-
export { ANDROID_URL, type AdFormData, type AdResource, type AdType, type AdminUpdateResourceType, type AppSettingsFormData, type AppSettingsType, type AssociateType, type BadgeBasename, type BadgeId, type BaseGameMap, type BaseGameType, type BaseResourceType, type BaseResourceTypeFormData, type Category, type ChatMessageInput, type ChatMessageReaction, type ChatMessageReplyPreview, type ChatMessageSeen, type ChatMessageType, type ChatType, type CluiImageBasename, type CluiImageId, type ContactUsFormData, type CreateAdFormData, type CreateAppSettingsFormData, type CreateBulkNotificationInput, type CreateContactUsFormData, type CreateEventFormData, type CreateEventInfoFormData, type CreateFormData, type CreateLoginFormData, type CreatePartnerFormData, type CreatePostFormData, type CreateRegisterFormData, type CreateRequestPasswordResetFormData, type CreateResetPasswordFormData, type CreateSchoolFormData, type CreateUnregisteredVendorFormData, type CreateUserFormData, type CreateValidateVerificationTokenFormData, type CreateVendorFormData, type CreateVendorInfoFormData, DEFAULT_SHARE_OG_IMAGE, type DailyClueBaseGame, type DailyClueGameData, type DateTimeType, type DateTimeWithPriceType, type DeviceInfo, EnumActivity, EnumAdShowOn, EnumAdStatus, EnumAdStyle, EnumAdType, EnumBillingPeriod, EnumChatReportReason, EnumChatType, EnumEventDateStatus, EnumEventType, EnumFoodFlavor, EnumFoodType, EnumGameStatus, EnumGameType, EnumInviteStatus, EnumNotificationResourceType, EnumNotificationType, EnumOSPlatform, EnumPartnerType, EnumPaymentMethod, EnumPostContentType, EnumPostType, EnumRegions, EnumRelationResource, EnumResourceType, EnumSocialMedia, EnumSubscriptionStatus, EnumUserLicence, EnumUserRole, EnumVendorType, EnumVerificationType, type EventFormData, type EventInfoFormData, type EventInfoType, type EventListItemType, type EventStatusType, type EventType, type FormDateField, type FormField, type GameDate, type GameDocType, type GameHistory, type GameLeaderboard, type GamePlacement, type GamePlacementClue, type GameType, type GeocodeLocation, type GlobalGameData, type GoogleAddressComponent, type GoogleImportedMarket, IMAGE_EXTENSION, IOS_URL, type IconBasename, type IconId, type ImageObjectType, ImageTypeEnum, type LocationGeoType, type LocationType, type LoginFormData, type LogoBasename, type LogoId, type MarketingMaterialRequestInputType, type MiniQuizAnswer, type MiniQuizAnsweredQuestion, type MiniQuizBaseGame, type MiniQuizGameData, type MiniQuizQuestion, type NotificationCount, type NotificationDataType, type NotificationType, type Nullable, OG_DESCRIPTION_LINE_BREAK, type OptionItem, type OtherImagesBasename, type OtherImagesId, type OwnerType, POST_SHARE_RESOURCE_TYPES, PROMO_CODE_PREFIX, PUBLIC_SHARE_PATH_TYPES, type ParticipantType, type PartnerFormData, type PartnerType, type PaymentInfoType, type PlacePrediction, type PostContentData, type PostContentFormData, type PostContentGame, type PostContentImage, type PostContentList, type PostContentTextarea, type PostContentType, type PostContentVideo, type PostFileInput, type PostFormData, type PostShareResourceType, type PostType, type PosterAssetId, type PosterImageBasename, type PosterInputType, type PosterUsageType, type PromoCodeType, type PublicSharePathType, RELATION_SHARE_APPLICATION, RELATION_SHARE_INVITATION, RELATION_SHARE_RESOURCE_TYPES, RESOURCE_SHARE_TYPES, type RefundPolicy, type Region, type RegisterFormData, type RelationDate, type RelationSharePathType, type RelationShareResourceType, type RelationType, type ReportChatUser, type RequestPasswordResetFormData, type Requirement, type ResetPasswordFormData, type ResourceActivityEntry, type ResourceActivityInputType, type ResourceActivityType, type ResourceByUser, type ResourceConnectionsType, type ResourceContactDetailsType, type ResourceDetails, type ResourceImageType, type ResourceShareType, SAVED_EMAIL_KEY, SAVED_PASSWORD_KEY, SAVED_REFRESH_TOKEN_KEY, SAVED_TOKEN_KEY, SCHOOL_MAX_STUDENT_COUNT, SCHOOL_MIN_STUDENT_COUNT, SHARE_APPLICATION_DEADLINE_PREFIX, SHARE_CALENDAR_ICON, SHARE_CATEGORIES_SECTION_HEADING, SHARE_CATEGORY_ICON, SHARE_CHECKMARK_ICON, SHARE_CLOCK_ICON, SHARE_COMPLIANCE_PREFIX, SHARE_DESCRIPTION_SECTION_BREAK, SHARE_DOLLAR_ICON, SHARE_FOOD_TRUCK_LINE, SHARE_INFO_ICON, SHARE_MARKET_DATES_SECTION_HEADING, SHARE_MORE_INFO_LINE, SHARE_PRICE_RANGE_PREFIX, SHARE_RAIN_OR_SHINE_LINE, SHARE_REQUIREMENTS_SECTION_HEADING, SHARE_RESOURCE_LABEL, SHARE_RULER_ICON, SHARE_SITE_URL, SHARE_STALL_SIZE_PREFIX, SHARE_TAGS_SECTION_HEADING, SHARE_TYPE_PATH_REGEX, type SchoolCampaignType, type SchoolFormData, type SchoolRegisteredUserType, type SchoolReturnType, type SchoolType, type ShareEventForInvitation, type ShareEventForPublic, type ShareEventInfoForInvitation, type ShareMessageFooterPlacement, type ShareResourceType, type ShareType, type ShareVendorForApplication, type ShareVendorForPublic, type ShareVendorInfoForApplication, type SocialMediaType, type StallType, type StripeSubscription, type Subcategory, type SubcategoryItems, type SubscriptionPlanData, type SubscriptionPlansResponse, type SubscriptionPricingData, type SubscriptionStatusData, type TermsAgreement, USER_STORAGE_KEY, type UnregisteredVendorFormData, type UnregisteredVendorInvitationType, type UnregisteredVendorType, type UseGetResourcesByRegionOptions, type UserActivity, type UserActivityEvent, type UserFormData, type UserLicenceType, type UserType, type ValidateVerificationTokenFormData, type VendorAttributes, type VendorCalendarData, type VendorFormData, type VendorInfoFormData, type VendorInfoType, type VendorProductList, type VendorType, appendShareMoreInfoLine, availableCategories, availableRegionOptions, availableRegionTypes, availableTagTypes, badgeFiles, badgeIds, badges, buildApplicationShareDescription, buildFacebookShareQuote, buildInvitationShareDescription, buildPublicEventShareDescription, buildPublicVendorShareDescription, buildShareMessageSections, buildShareOgDescription, buildShareOgDescriptionFromSections, buildSharePagePath, buildShareUrl, capitalizeFirstLetter, categoryColors, cluemartSocialMedia, cluiFiles, cluiIds, cluiImages, companyContactFields, computeDailyClueState, contactUsFields, darkColors, dateFormat, defaultEventFormValues, defaultEventInfoFormValues, defaultLocation, defaultPartnerFormValues, defaultUnregisteredVendorFormValues, defaultVendorFormValues, defaultVendorInfoFormValues, emailField, eventBasicInfoFields, eventEndDateFields, eventInfo, eventInfoPaymentInfo, eventStartDateFields, fonts, foodFlavourOptions, formatCategoryLabel, formatDate, formatShareApplicationCategoriesSection, formatShareApplicationComplianceSection, formatShareApplicationPriceRangeLine, formatShareApplicationStallSizeLine, formatShareInvitationApplicationDeadlineLine, formatShareInvitationMarketDatesSection, formatShareInvitationRequirementsSection, formatShareIsFoodTrueLine, formatShareMarketDate, formatShareRainOrShineLine, formatShareStallLine, formatShareTagsSection, formatStallCapacityLabel, formatTimestamp, gameScreenIdentifierList, gameTypeToDisplayName, getCurrentAndFutureDates, globalDefaultValues, iconFiles, iconIds, icons, isFutureDatesBeforeThreshold, isIsoDateString, isPostShareResourceType, isRelationShareResourceType, joinShareDescriptionSections, joinShareOgDescriptionSections, licenseNiceNames, lightColors, loginFields, logoFiles, logoIds, logos, mapArrayToOptions, mapBaseResourceTypeToFormData, normalizeShareOgDescription, normalizeShareRouteId, normalizeShareText, normalizeUrl, nzStartOfDay, otherImages, otherImagesFiles, otherImagesIds, packagingOptions, partnerBasicInfoFields, paymentMethodOptions, posterFiles, posterIds, posters, priceUnits, producedIngOptions, productLabelGroups, profileFields, refundPolicyOptions, registerFields, removeTypename, requestPasswordResetFields, requirementsOptions, resetPasswordFields, seededShuffle, shareMessageFooterPlacementForType, socialMediaFields, sortDatesChronologically, splitShareDescriptionSections, stallTypeOptions, statusOptions, tagOptions, timeFormat, toNZTime, truncateText, useAdForm, useAddParticipantToChat, useAddUserFavouriteResource, useAddUserGoingResource, useAddUserInterestResource, useAddUserPresentResource, useAdminPermanentlyDeleteResource, useAdminResendUserVerificationEmail, useAdminUpdateResourceType, useAppSettingsForm, useCancelSubscription, useContactUs, useContactUsForm, useCrawlGoogleMarkets, useCreateAd, useCreateBulkNotifications, useCreateCheckoutSession, useCreateCustomerPortal, useCreateEvent, useCreateEventInfo, useCreatePartner, useCreatePost, useCreatePoster, useCreatePrivateChat, useCreatePushToken, useCreateRelation, useCreateResourceActivity, useCreateSchool, useCreateUnregisteredVendor, useCreateUser, useCreateVendor, useCreateVendorInfo, useDeleteAd, useDeleteAllNotifications, useDeleteChat, useDeleteEvent, useDeleteNotification, useDeletePartner, useDeletePost, useDeleteRelation, useDeleteSchool, useDeleteUnregisteredVendor, useDeleteUser, useDeleteVendor, useEventForm, useEventInfoForm, useGetAd, useGetAds, useGetAdsByRegion, useGetAppSettings, useGetChat, useGetChatSubscription, useGetChatsByRegion, useGetEvent, useGetEventByPlaceId, useGetEventInfo, useGetEventRelations, useGetEvents, useGetEventsByRegion, useGetEventsNearMe, useGetGame, useGetGameLeaderboard, useGetGames, useGetNotificationCount, useGetNotificationCountSubscription, useGetPartner, useGetPartners, useGetPartnersByRegion, useGetPost, useGetPosts, useGetPostsByType, useGetRelation, useGetRelationByEventAndVendor, useGetReportedChatUsers, useGetResourceActivity, useGetResourceConnections, useGetSchool, useGetSchools, useGetSubscriptionPlans, useGetSubscriptionStatus, useGetUnregisteredVendor, useGetUnregisteredVendors, useGetUnregisteredVendorsByInviterId, useGetUser, useGetUserActivities, useGetUserChats, useGetUserEvents, useGetUserNotifications, useGetUserNotificationsSubscription, useGetUserPartners, useGetUserResources, useGetUserVendors, useGetUsers, useGetVendor, useGetVendorInfo, useGetVendorRelations, useGetVendors, useGetVendorsByRegion, useLeaveGame, useLocationSearch, useLogin, useLoginForm, useLogout, useMarkAllNotificationsRead, useMarkChatMessagesSeen, useMarkNotificationRead, usePartnerForm, usePostForm, useRefreshToken, useRegister, useRegisterForm, useRemoveParticipantFromChat, useRemoveUserFavouriteResource, useRemoveUserGoingResource, useRemoveUserInterestResource, useRemoveUserPresentResource, useReportChatUser, useRequestMarketingMaterial, useRequestPasswordReset, useRequestPasswordResetForm, useResetPassword, useResetPasswordForm, useSchoolForm, useSearchEvents, useSearchPartners, useSearchVendors, useSelectPackage, useSelectStandardPackage, useSendChatMessage, useStartGame, useToggleChatMessageLike, useUnlinkUnregisteredVendorByInviterId, useUnregisteredVendorForm, useUpdateAd, useUpdateAppSettings, useUpdateDailyClueGame, useUpdateEvent, useUpdateEventInfo, useUpdateGoogleImportedMarkets, useUpdateMiniQuizGame, useUpdatePartner, useUpdatePost, useUpdateRelation, useUpdateSchool, useUpdateSubscriptionPlan, useUpdateUnregisteredVendor, useUpdateUser, useUpdateVendor, useUpdateVendorInfo, useUserForm, useValidateVerificationToken, useValidateVerificationTokenForm, useVendorForm, useVendorInfoForm, validateVerificationTokenFields, vendorAvailability, vendorBasicInfoFields, vendorCompliance, vendorElectricity, vendorEndDateFields, vendorFoodFlavour, vendorFullAddress, vendorGazebo, vendorLocationDescription, vendorMenuFields, vendorPackaging, vendorPriceRange, vendorProducedIn, vendorStallSize, vendorStartDateFields, vendorTable };
|
|
2989
|
+
export { ANDROID_URL, type AdFormData, type AdFormState, type AdResource, type AdType, type AdminUpdateResourceType, type AppSettingsFormData, type AppSettingsType, type AssociateType, type AuthPayloadType, type BadgeBasename, type BadgeId, type BaseGameMap, type BaseGameType, type BaseResourceType, type BaseResourceTypeFormData, CLUEMART_MAIN_DOMAIN_URL, type Category, type ChatMessageInput, type ChatMessageReaction, type ChatMessageReplyPreview, type ChatMessageSeen, type ChatMessageType, type ChatType, type CluiImageBasename, type CluiImageId, type ContactUsFormData, type CreateAdFormData, type CreateAdFormState, type CreateAppSettingsFormData, type CreateBulkNotificationInput, type CreateContactUsFormData, type CreateEventFormData, type CreateEventInfoFormData, type CreateFormData, type CreateLoginFormData, type CreatePartnerFormData, type CreatePostFormData, type CreateRegisterFormData, type CreateRequestPasswordResetFormData, type CreateResetPasswordFormData, type CreateSchoolFormData, type CreateUnregisteredVendorFormData, type CreateUserFormData, type CreateValidateVerificationTokenFormData, type CreateVendorFormData, type CreateVendorInfoFormData, DEFAULT_RESOURCES_RETURN_LIMIT, DEFAULT_RESOURCES_RETURN_OFFSET, DEFAULT_SHARE_OG_IMAGE, type DailyClueBaseGame, type DailyClueGameData, type DateTimeType, type DateTimeWithPriceType, type DeviceInfo, EnumActivity, EnumAdShowOn, EnumAdStatus, EnumAdStyle, EnumAdType, EnumBillingPeriod, EnumChatReportReason, EnumChatType, EnumEventDateStatus, EnumEventType, EnumFoodFlavor, EnumFoodType, EnumGameStatus, EnumGameType, EnumInviteStatus, EnumNotificationResourceType, EnumNotificationType, EnumOSPlatform, EnumPartnerType, EnumPaymentMethod, EnumPostContentType, EnumPostType, EnumRegions, EnumRelationResource, EnumResourceType, EnumSocialMedia, EnumSubscriptionStatus, EnumUserLicence, EnumUserRole, EnumVendorType, EnumVerificationType, type EventFormData, type EventInfoFormData, type EventInfoType, type EventListItemType, type EventStatusType, type EventType, type FormDateField, type FormField, type GameDate, type GameDocType, type GameHistory, type GameLeaderboard, type GamePlacement, type GamePlacementClue, type GameType, type GeocodeLocation, type GlobalGameData, type GoogleAddressComponent, type GoogleImportedMarket, IMAGE_EXTENSION, IOS_URL, type IconBasename, type IconId, type ImageObjectType, ImageTypeEnum, type LocationGeoType, type LocationType, type LoginFormData, type LogoBasename, type LogoId, type MarketingMaterialRequestInputType, type MiniQuizAnswer, type MiniQuizAnsweredQuestion, type MiniQuizBaseGame, type MiniQuizGameData, type MiniQuizQuestion, type NotificationCount, type NotificationDataType, type NotificationType, type Nullable, OG_DESCRIPTION_LINE_BREAK, type OptionItem, type OtherImagesBasename, type OtherImagesId, type OwnerType, POST_SHARE_RESOURCE_TYPES, PROMO_CODE_PREFIX, PUBLIC_SHARE_PATH_TYPES, type ParticipantType, type PartnerFormData, type PartnerType, type PaymentInfoType, type PlacePrediction, type PostContentData, type PostContentFormData, type PostContentGame, type PostContentImage, type PostContentList, type PostContentTextarea, type PostContentType, type PostContentVideo, type PostFileInput, type PostFormData, type PostShareResourceType, type PostType, type PosterAssetId, type PosterImageBasename, type PosterInputType, type PosterUsageType, type PromoCodeType, type PublicSharePathType, type PushTokenType, RELATION_SHARE_APPLICATION, RELATION_SHARE_INVITATION, RELATION_SHARE_RESOURCE_TYPES, RESOURCE_SHARE_TYPES, type RefreshTokenPayloadType, type RefundPolicy, type Region, type RegisterFormData, type RelationDate, type RelationInputType, type RelationSharePathType, type RelationShareResourceType, type RelationType, type ReportChatUser, type RequestPasswordResetFormData, type Requirement, type ResetPasswordFormData, type ResourceActivityEntry, type ResourceActivityInputType, type ResourceActivityType, type ResourceByUser, type ResourceConnectionsType, type ResourceContactDetailsType, type ResourceDetails, type ResourceImageType, type ResourceShareType, SAVED_EMAIL_KEY, SAVED_PASSWORD_KEY, SAVED_REFRESH_TOKEN_KEY, SAVED_TOKEN_KEY, SCHOOL_MAX_STUDENT_COUNT, SCHOOL_MIN_STUDENT_COUNT, SHARE_APPLICATION_DEADLINE_PREFIX, SHARE_CALENDAR_ICON, SHARE_CATEGORIES_SECTION_HEADING, SHARE_CATEGORY_ICON, SHARE_CHECKMARK_ICON, SHARE_CLOCK_ICON, SHARE_COMPLIANCE_PREFIX, SHARE_DESCRIPTION_SECTION_BREAK, SHARE_DOLLAR_ICON, SHARE_FOOD_TRUCK_LINE, SHARE_INFO_ICON, SHARE_MARKET_DATES_SECTION_HEADING, SHARE_MORE_INFO_LINE, SHARE_PRICE_RANGE_PREFIX, SHARE_RAIN_OR_SHINE_LINE, SHARE_REQUIREMENTS_SECTION_HEADING, SHARE_RESOURCE_LABEL, SHARE_RULER_ICON, SHARE_SITE_URL, SHARE_STALL_SIZE_PREFIX, SHARE_TAGS_SECTION_HEADING, SHARE_TYPE_PATH_REGEX, type SafeUserType, type SchoolCampaignType, type SchoolFormData, type SchoolRegisteredUserType, type SchoolReturnType, type SchoolType, type ShareEventForInvitation, type ShareEventForPublic, type ShareEventInfoForInvitation, type ShareMessageFooterPlacement, type ShareResourceType, type ShareType, type ShareVendorForApplication, type ShareVendorForPublic, type ShareVendorInfoForApplication, type SocialMediaType, type StallType, type StripeSubscription, type Subcategory, type SubcategoryItems, type SubscriptionPlanData, type SubscriptionPlansResponse, type SubscriptionPricingData, type SubscriptionStatusData, type TermsAgreement, USER_STORAGE_KEY, type UnregisteredVendorFormData, type UnregisteredVendorInvitationType, type UnregisteredVendorType, type UseGetResourcesByRegionOptions, type UserActivity, type UserActivityEvent, type UserFormData, type UserLicenceType, type UserType, type ValidateVerificationTokenFormData, type VendorAttributes, type VendorCalendarData, type VendorFormData, type VendorInfoFormData, type VendorInfoType, type VendorProductList, type VendorType, appendShareMoreInfoLine, availableCategories, availableRegionOptions, availableRegionTypes, availableTagTypes, badgeFiles, badgeIds, badges, buildApplicationShareDescription, buildFacebookShareQuote, buildInvitationShareDescription, buildPublicEventShareDescription, buildPublicVendorShareDescription, buildShareMessageSections, buildShareOgDescription, buildShareOgDescriptionFromSections, buildSharePagePath, buildShareUrl, capitalizeFirstLetter, categoryColors, cluemartSocialMedia, cluiFiles, cluiIds, cluiImages, companyContactFields, computeDailyClueState, contactUsFields, darkColors, dateFormat, defaultEventFormValues, defaultEventInfoFormValues, defaultLocation, defaultPartnerFormValues, defaultUnregisteredVendorFormValues, defaultVendorFormValues, defaultVendorInfoFormValues, emailField, eventBasicInfoFields, eventEndDateFields, eventInfo, eventInfoPaymentInfo, eventStartDateFields, fonts, foodFlavourOptions, formatCategoryLabel, formatDate, formatShareApplicationCategoriesSection, formatShareApplicationComplianceSection, formatShareApplicationPriceRangeLine, formatShareApplicationStallSizeLine, formatShareInvitationApplicationDeadlineLine, formatShareInvitationMarketDatesSection, formatShareInvitationRequirementsSection, formatShareIsFoodTrueLine, formatShareMarketDate, formatShareRainOrShineLine, formatShareStallLine, formatShareTagsSection, formatStallCapacityLabel, formatTimestamp, gameScreenIdentifierList, gameTypeToDisplayName, getCurrentAndFutureDates, globalDefaultValues, iconFiles, iconIds, icons, isFutureDatesBeforeThreshold, isIsoDateString, isPostShareResourceType, isRelationShareResourceType, joinShareDescriptionSections, joinShareOgDescriptionSections, licenseNiceNames, lightColors, loginFields, logoFiles, logoIds, logos, mapArrayToOptions, mapBaseResourceTypeToFormData, normalizeShareOgDescription, normalizeShareRouteId, normalizeShareText, normalizeUrl, nzStartOfDay, otherImages, otherImagesFiles, otherImagesIds, packagingOptions, partnerBasicInfoFields, paymentMethodOptions, posterFiles, posterIds, posters, priceUnits, producedIngOptions, productLabelGroups, profileFields, refundPolicyOptions, registerFields, removeTypename, requestPasswordResetFields, requirementsOptions, resetPasswordFields, seededShuffle, shareMessageFooterPlacementForType, socialMediaFields, sortDatesChronologically, splitShareDescriptionSections, stallTypeOptions, statusOptions, tagOptions, timeFormat, toNZTime, truncateText, useAdForm, useAddParticipantToChat, useAddUserFavouriteResource, useAddUserGoingResource, useAddUserInterestResource, useAddUserPresentResource, useAdminPermanentlyDeleteResource, useAdminResendUserVerificationEmail, useAdminUpdateResourceType, useAppSettingsForm, useCancelSubscription, useContactUs, useContactUsForm, useCrawlGoogleMarkets, useCreateAd, useCreateBulkNotifications, useCreateCheckoutSession, useCreateCustomerPortal, useCreateEvent, useCreateEventInfo, useCreatePartner, useCreatePost, useCreatePoster, useCreatePrivateChat, useCreatePushToken, useCreateRelation, useCreateResourceActivity, useCreateSchool, useCreateUnregisteredVendor, useCreateUser, useCreateVendor, useCreateVendorInfo, useDeleteAd, useDeleteAllNotifications, useDeleteChat, useDeleteEvent, useDeleteNotification, useDeletePartner, useDeletePost, useDeleteRelation, useDeleteSchool, useDeleteUnregisteredVendor, useDeleteUser, useDeleteVendor, useEventForm, useEventInfoForm, useGetAd, useGetAds, useGetAdsByRegion, useGetAppSettings, useGetChat, useGetChatSubscription, useGetChatsByRegion, useGetEvent, useGetEventByPlaceId, useGetEventInfo, useGetEventRelations, useGetEvents, useGetEventsByRegion, useGetEventsNearMe, useGetGame, useGetGameLeaderboard, useGetGames, useGetNotificationCount, useGetNotificationCountSubscription, useGetPartner, useGetPartners, useGetPartnersByRegion, useGetPost, useGetPosts, useGetPostsByType, useGetRelation, useGetRelationByEventAndVendor, useGetReportedChatUsers, useGetResourceActivity, useGetResourceConnections, useGetSchool, useGetSchools, useGetSubscriptionPlans, useGetSubscriptionStatus, useGetUnregisteredVendor, useGetUnregisteredVendors, useGetUnregisteredVendorsByInviterId, useGetUser, useGetUserActivities, useGetUserChats, useGetUserEvents, useGetUserNotifications, useGetUserNotificationsSubscription, useGetUserPartners, useGetUserResources, useGetUserVendors, useGetUsers, useGetVendor, useGetVendorInfo, useGetVendorRelations, useGetVendors, useGetVendorsByRegion, useLeaveGame, useLocationSearch, useLogin, useLoginForm, useLogout, useMarkAllNotificationsRead, useMarkChatMessagesSeen, useMarkNotificationRead, usePartnerForm, usePostForm, useRefreshToken, useRegister, useRegisterForm, useRemoveParticipantFromChat, useRemoveUserFavouriteResource, useRemoveUserGoingResource, useRemoveUserInterestResource, useRemoveUserPresentResource, useReportChatUser, useRequestMarketingMaterial, useRequestPasswordReset, useRequestPasswordResetForm, useResetPassword, useResetPasswordForm, useSchoolForm, useSearchEvents, useSearchPartners, useSearchVendors, useSelectPackage, useSelectStandardPackage, useSendChatMessage, useStartGame, useToggleChatMessageLike, useUnlinkUnregisteredVendorByInviterId, useUnregisteredVendorForm, useUpdateAd, useUpdateAppSettings, useUpdateDailyClueGame, useUpdateEvent, useUpdateEventInfo, useUpdateGoogleImportedMarkets, useUpdateMiniQuizGame, useUpdatePartner, useUpdatePost, useUpdateRelation, useUpdateSchool, useUpdateSubscriptionPlan, useUpdateUnregisteredVendor, useUpdateUser, useUpdateVendor, useUpdateVendorInfo, useUserForm, useValidateVerificationToken, useValidateVerificationTokenForm, useVendorForm, useVendorInfoForm, validateVerificationTokenFields, vendorAvailability, vendorBasicInfoFields, vendorCompliance, vendorElectricity, vendorEndDateFields, vendorFoodFlavour, vendorFullAddress, vendorGazebo, vendorLocationDescription, vendorMenuFields, vendorPackaging, vendorPriceRange, vendorProducedIn, vendorStallSize, vendorStartDateFields, vendorTable };
|