@timardex/cluemart-shared 1.5.640 → 1.5.701
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-DNAoYkrb.d.ts → auth-Cp3BRIVM.d.ts} +64 -12
- package/dist/{post-CnUaLo8U.d.mts → auth-Dvp1IEH_.d.mts} +64 -12
- package/dist/{chunk-3NBZGJZM.mjs → chunk-BRJDMHB7.mjs} +4 -3
- package/dist/chunk-BRJDMHB7.mjs.map +1 -0
- package/dist/{chunk-Q6R4US6G.mjs → chunk-JBHXZ3PH.mjs} +15 -10
- package/dist/chunk-JBHXZ3PH.mjs.map +1 -0
- package/dist/{chunk-FGRAXDMS.mjs → chunk-NS3JTI3E.mjs} +90 -5
- package/dist/chunk-NS3JTI3E.mjs.map +1 -0
- package/dist/{chunk-UVOBCEHA.mjs → chunk-QJI4BF4B.mjs} +2 -2
- package/dist/{chunk-WVUM6765.mjs → chunk-XGX7SV5N.mjs} +1 -1
- package/dist/chunk-XGX7SV5N.mjs.map +1 -0
- package/dist/contactUs-B6lQQq-x.d.mts +11 -0
- package/dist/contactUs-DA3p41Uq.d.ts +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-585slmSH.d.ts} +11 -6
- package/dist/{global-DkXf399E.d.mts → global-BEUzBSyY.d.mts} +11 -6
- package/dist/graphql/index.cjs +14 -9
- 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 -41
- 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 +53 -44
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +191 -150
- package/dist/index.d.ts +191 -150
- package/dist/index.mjs +51 -44
- package/dist/index.mjs.map +1 -1
- package/dist/{resourceActivities-M-23xcpt.d.mts → resourceActivities-CZqXBve8.d.mts} +7 -7
- package/dist/{resourceActivities-CpGhukwk.d.ts → resourceActivities-CjJdhVR7.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 +6 -0
- package/dist/utils/index.cjs.map +1 -1
- package/dist/utils/index.d.mts +4 -2
- package/dist/utils/index.d.ts +4 -2
- package/dist/utils/index.mjs +15 -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-FGRAXDMS.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-UVOBCEHA.mjs.map → chunk-QJI4BF4B.mjs.map} +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -231,17 +231,20 @@ type RelationDate = {
|
|
|
231
231
|
interface RelationType {
|
|
232
232
|
_id?: string;
|
|
233
233
|
active: boolean;
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
deletedAt?: string | null;
|
|
234
|
+
chatId: string;
|
|
235
|
+
createdAt?: Date;
|
|
236
|
+
deletedAt?: Date | null;
|
|
238
237
|
eventId: string;
|
|
239
238
|
lastUpdateBy: EnumResourceType;
|
|
240
239
|
relationDates: RelationDate[];
|
|
241
240
|
relationType: EnumRelationResource;
|
|
242
|
-
updatedAt?:
|
|
241
|
+
updatedAt?: Date;
|
|
243
242
|
vendorId: string;
|
|
244
243
|
}
|
|
244
|
+
/** GraphQL RelationInputType — chatId is optional; server assigns it on create. */
|
|
245
|
+
type RelationInputType = Omit<RelationType, "_id" | "chatId" | "createdAt" | "updatedAt" | "deletedAt"> & {
|
|
246
|
+
chatId?: string;
|
|
247
|
+
};
|
|
245
248
|
|
|
246
249
|
type StallType = {
|
|
247
250
|
label: string;
|
|
@@ -310,6 +313,7 @@ interface EventType extends BaseResourceType {
|
|
|
310
313
|
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
314
|
type EventInfoType = Omit<EventInfoFormData, "_id"> & {
|
|
312
315
|
_id: string;
|
|
316
|
+
active?: boolean;
|
|
313
317
|
};
|
|
314
318
|
|
|
315
319
|
type VendorCalendarData = Omit<ResourceDetails, "dateTime" | "eventStatus"> & {
|
|
@@ -399,6 +403,7 @@ interface VendorType extends BaseResourceType {
|
|
|
399
403
|
}
|
|
400
404
|
type VendorInfoType = Omit<VendorInfoFormData, "_id" | "documentsUpload"> & {
|
|
401
405
|
_id: string;
|
|
406
|
+
active?: boolean;
|
|
402
407
|
};
|
|
403
408
|
interface UnregisteredVendorFormData {
|
|
404
409
|
categoryIds: string[];
|
|
@@ -633,6 +638,120 @@ interface AdminUpdateResourceType {
|
|
|
633
638
|
resourceType: EnumResourceType;
|
|
634
639
|
}
|
|
635
640
|
|
|
641
|
+
type UserFormData = {
|
|
642
|
+
_id?: string;
|
|
643
|
+
active: boolean;
|
|
644
|
+
avatar?: ResourceImageType | null;
|
|
645
|
+
avatarUpload?: ResourceImageType | null;
|
|
646
|
+
confirmPassword?: string | null;
|
|
647
|
+
email: string;
|
|
648
|
+
firstName: string;
|
|
649
|
+
isTester: boolean;
|
|
650
|
+
lastName: string;
|
|
651
|
+
password?: string | null;
|
|
652
|
+
platform?: EnumOSPlatform;
|
|
653
|
+
preferredRegion: string;
|
|
654
|
+
role: EnumUserRole;
|
|
655
|
+
termsAgreement?: TermsAgreement | null;
|
|
656
|
+
};
|
|
657
|
+
type CreateUserFormData = CreateFormData<UserFormData>;
|
|
658
|
+
type UserActivityEvent = {
|
|
659
|
+
resourceId: string;
|
|
660
|
+
dateTime: DateTimeType;
|
|
661
|
+
};
|
|
662
|
+
type StripeSubscription = {
|
|
663
|
+
customerId?: string;
|
|
664
|
+
subscriptionId?: string;
|
|
665
|
+
status?: EnumSubscriptionStatus;
|
|
666
|
+
currentPlan?: EnumUserLicence;
|
|
667
|
+
startDate?: string;
|
|
668
|
+
endDate?: string;
|
|
669
|
+
};
|
|
670
|
+
type SubscriptionStatusData = {
|
|
671
|
+
subscriptionId: string | null;
|
|
672
|
+
status: EnumSubscriptionStatus;
|
|
673
|
+
priceId: string | null;
|
|
674
|
+
currentPlan: EnumUserLicence | null;
|
|
675
|
+
};
|
|
676
|
+
type SubscriptionPricingData = {
|
|
677
|
+
basePrice: number;
|
|
678
|
+
discountedPrice: number | null;
|
|
679
|
+
hasDiscount: boolean;
|
|
680
|
+
discountPercent: number | null;
|
|
681
|
+
discountAmount: number | null;
|
|
682
|
+
currency: string;
|
|
683
|
+
formattedBasePrice: string;
|
|
684
|
+
formattedDiscountedPrice: string | null;
|
|
685
|
+
};
|
|
686
|
+
type SubscriptionPlanData = {
|
|
687
|
+
name: string;
|
|
688
|
+
description: string | null;
|
|
689
|
+
licenceType: EnumUserLicence;
|
|
690
|
+
billingPeriod: string;
|
|
691
|
+
stripeProductId: string;
|
|
692
|
+
stripePriceId: string;
|
|
693
|
+
isEligibleForDiscount: boolean;
|
|
694
|
+
pricing: SubscriptionPricingData;
|
|
695
|
+
};
|
|
696
|
+
type SubscriptionPlansResponse = {
|
|
697
|
+
plans: SubscriptionPlanData[];
|
|
698
|
+
isNewUser: boolean;
|
|
699
|
+
isTester: boolean;
|
|
700
|
+
appliedDiscountType: string;
|
|
701
|
+
};
|
|
702
|
+
type UserActivity = {
|
|
703
|
+
favourites: {
|
|
704
|
+
events: string[];
|
|
705
|
+
vendors: string[];
|
|
706
|
+
partners: string[];
|
|
707
|
+
};
|
|
708
|
+
going: {
|
|
709
|
+
events: UserActivityEvent[];
|
|
710
|
+
};
|
|
711
|
+
interested: {
|
|
712
|
+
events: UserActivityEvent[];
|
|
713
|
+
};
|
|
714
|
+
present: {
|
|
715
|
+
events: UserActivityEvent[];
|
|
716
|
+
};
|
|
717
|
+
};
|
|
718
|
+
interface UserType {
|
|
719
|
+
_id: string;
|
|
720
|
+
active: boolean;
|
|
721
|
+
associates?: AssociateType[] | null;
|
|
722
|
+
avatar: ResourceImageType | null;
|
|
723
|
+
createdAt: Date;
|
|
724
|
+
deletedAt: Date | null;
|
|
725
|
+
email: string;
|
|
726
|
+
events: string[] | null;
|
|
727
|
+
firstName: string;
|
|
728
|
+
game: string | null;
|
|
729
|
+
isTester: boolean;
|
|
730
|
+
lastName: string;
|
|
731
|
+
licences: UserLicenceType[] | null;
|
|
732
|
+
overallPoints: number | null;
|
|
733
|
+
partner: string | null;
|
|
734
|
+
password: string;
|
|
735
|
+
platform: EnumOSPlatform | null;
|
|
736
|
+
preferredRegion: string;
|
|
737
|
+
promoCodes?: PromoCodeType[] | null;
|
|
738
|
+
refreshToken: string | null;
|
|
739
|
+
role: EnumUserRole;
|
|
740
|
+
school: string | null;
|
|
741
|
+
stripe?: StripeSubscription;
|
|
742
|
+
termsAgreement?: TermsAgreement | null;
|
|
743
|
+
updatedAt: Date | null;
|
|
744
|
+
userActivity: UserActivity | null;
|
|
745
|
+
vendor: string | null;
|
|
746
|
+
}
|
|
747
|
+
type SafeUserType = Omit<UserType, "password" | "refreshToken">;
|
|
748
|
+
type ResourceByUser = {
|
|
749
|
+
_id: string;
|
|
750
|
+
logo: string;
|
|
751
|
+
name: string;
|
|
752
|
+
resourceType: EnumResourceType;
|
|
753
|
+
};
|
|
754
|
+
|
|
636
755
|
declare enum EnumVerificationType {
|
|
637
756
|
REGISTER = "register",
|
|
638
757
|
RESET_PASSWORD = "resetPassword"
|
|
@@ -671,6 +790,16 @@ type ValidateVerificationTokenFormData = {
|
|
|
671
790
|
verificationType?: EnumVerificationType;
|
|
672
791
|
};
|
|
673
792
|
type CreateValidateVerificationTokenFormData = CreateFormData<ValidateVerificationTokenFormData>;
|
|
793
|
+
type AuthPayloadType = {
|
|
794
|
+
message: string;
|
|
795
|
+
token: string;
|
|
796
|
+
refreshToken: string | null;
|
|
797
|
+
user: SafeUserType;
|
|
798
|
+
};
|
|
799
|
+
type RefreshTokenPayloadType = {
|
|
800
|
+
refreshToken: string;
|
|
801
|
+
token: string;
|
|
802
|
+
};
|
|
674
803
|
|
|
675
804
|
type ParticipantType = {
|
|
676
805
|
active: boolean;
|
|
@@ -692,22 +821,22 @@ type ChatMessageReplyPreview = {
|
|
|
692
821
|
};
|
|
693
822
|
type ChatMessageReaction = {
|
|
694
823
|
userId: string;
|
|
695
|
-
createdAt:
|
|
824
|
+
createdAt: Date;
|
|
696
825
|
};
|
|
697
826
|
type ChatMessageSeen = {
|
|
698
827
|
userId: string;
|
|
699
|
-
seenAt:
|
|
828
|
+
seenAt: Date;
|
|
700
829
|
};
|
|
701
830
|
interface ChatMessageType {
|
|
702
831
|
_id?: string;
|
|
703
832
|
content: string;
|
|
704
|
-
createdAt?:
|
|
833
|
+
createdAt?: Date;
|
|
705
834
|
replyToMessageId?: string | null;
|
|
706
835
|
replyPreview?: ChatMessageReplyPreview | null;
|
|
707
836
|
likedBy?: ChatMessageReaction[];
|
|
708
837
|
senderId: string;
|
|
709
838
|
seenBy?: ChatMessageSeen[];
|
|
710
|
-
updatedAt?:
|
|
839
|
+
updatedAt?: Date;
|
|
711
840
|
}
|
|
712
841
|
interface ChatType {
|
|
713
842
|
_id: string;
|
|
@@ -757,8 +886,8 @@ type NotificationType = {
|
|
|
757
886
|
isRead: boolean;
|
|
758
887
|
type: EnumNotificationType;
|
|
759
888
|
data: NotificationDataType | null;
|
|
760
|
-
createdAt:
|
|
761
|
-
updatedAt:
|
|
889
|
+
createdAt: Date;
|
|
890
|
+
updatedAt: Date;
|
|
762
891
|
};
|
|
763
892
|
type NotificationCount = {
|
|
764
893
|
total: number;
|
|
@@ -835,119 +964,6 @@ interface PosterInputType {
|
|
|
835
964
|
resourceType: EnumResourceType;
|
|
836
965
|
}
|
|
837
966
|
|
|
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
967
|
declare enum EnumAdShowOn {
|
|
952
968
|
EVENTS_PAGE = "Events_page",
|
|
953
969
|
FRONT_PAGE = "Front_page",
|
|
@@ -968,15 +984,15 @@ declare enum EnumAdStyle {
|
|
|
968
984
|
RISE = "Rise"
|
|
969
985
|
}
|
|
970
986
|
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
|
|
987
|
+
adDescription: string;
|
|
988
|
+
adImage: string;
|
|
989
|
+
adStyle: EnumAdStyle;
|
|
990
|
+
adTitle: string;
|
|
991
|
+
adType: EnumAdType;
|
|
992
|
+
resourceId: string;
|
|
993
|
+
resourceName: string;
|
|
994
|
+
resourceRegion: string;
|
|
995
|
+
resourceType: EnumResourceType;
|
|
980
996
|
};
|
|
981
997
|
interface AdFormData {
|
|
982
998
|
active: boolean;
|
|
@@ -987,7 +1003,9 @@ interface AdFormData {
|
|
|
987
1003
|
status: EnumAdStatus;
|
|
988
1004
|
targetRegion: string[];
|
|
989
1005
|
}
|
|
1006
|
+
type AdFormState = AdFormData;
|
|
990
1007
|
type CreateAdFormData = CreateFormData<AdFormData>;
|
|
1008
|
+
type CreateAdFormState = CreateFormData<AdFormState>;
|
|
991
1009
|
interface AdType extends AdFormData {
|
|
992
1010
|
_id: string;
|
|
993
1011
|
clicks?: number;
|
|
@@ -1309,6 +1327,15 @@ type PostType = Omit<PostFormData, "content" | "coverUpload"> & {
|
|
|
1309
1327
|
updatedAt: Date | null;
|
|
1310
1328
|
};
|
|
1311
1329
|
|
|
1330
|
+
type PushTokenType = {
|
|
1331
|
+
_id: string;
|
|
1332
|
+
createdAt: Date;
|
|
1333
|
+
platform: EnumOSPlatform;
|
|
1334
|
+
token: string;
|
|
1335
|
+
updatedAt: Date;
|
|
1336
|
+
userId: string;
|
|
1337
|
+
};
|
|
1338
|
+
|
|
1312
1339
|
interface AppSettingsFormData {
|
|
1313
1340
|
appVersion: string;
|
|
1314
1341
|
isOfflineMode: boolean;
|
|
@@ -1372,7 +1399,7 @@ type SchoolType = Omit<SchoolFormData, "logoUpload"> & {
|
|
|
1372
1399
|
schoolCode: PromoCodeType;
|
|
1373
1400
|
updatedAt: Date | null;
|
|
1374
1401
|
};
|
|
1375
|
-
type SchoolRegisteredUserType = Pick<
|
|
1402
|
+
type SchoolRegisteredUserType = Pick<SafeUserType, "_id" | "firstName" | "lastName" | "avatar" | "email">;
|
|
1376
1403
|
type SchoolReturnType = {
|
|
1377
1404
|
school: SchoolType;
|
|
1378
1405
|
users: SchoolRegisteredUserType[];
|
|
@@ -1471,12 +1498,20 @@ declare const useAdminPermanentlyDeleteResource: () => {
|
|
|
1471
1498
|
declare const useRegister: () => {
|
|
1472
1499
|
error: _apollo_client.ApolloError | undefined;
|
|
1473
1500
|
loading: boolean;
|
|
1474
|
-
register: (options?: _apollo_client.MutationFunctionOptions<
|
|
1501
|
+
register: (options?: _apollo_client.MutationFunctionOptions<{
|
|
1502
|
+
register: AuthPayloadType;
|
|
1503
|
+
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
1504
|
+
register: AuthPayloadType;
|
|
1505
|
+
}>>;
|
|
1475
1506
|
};
|
|
1476
1507
|
declare const useLogin: () => {
|
|
1477
1508
|
error: _apollo_client.ApolloError | undefined;
|
|
1478
1509
|
loading: boolean;
|
|
1479
|
-
login: (options?: _apollo_client.MutationFunctionOptions<
|
|
1510
|
+
login: (options?: _apollo_client.MutationFunctionOptions<{
|
|
1511
|
+
login: AuthPayloadType;
|
|
1512
|
+
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
1513
|
+
login: AuthPayloadType;
|
|
1514
|
+
}>>;
|
|
1480
1515
|
};
|
|
1481
1516
|
declare const useLogout: () => {
|
|
1482
1517
|
error: _apollo_client.ApolloError | undefined;
|
|
@@ -1486,7 +1521,11 @@ declare const useLogout: () => {
|
|
|
1486
1521
|
declare const useRefreshToken: () => {
|
|
1487
1522
|
error: _apollo_client.ApolloError | undefined;
|
|
1488
1523
|
loading: boolean;
|
|
1489
|
-
refreshToken: (options?: _apollo_client.MutationFunctionOptions<
|
|
1524
|
+
refreshToken: (options?: _apollo_client.MutationFunctionOptions<{
|
|
1525
|
+
refreshToken: RefreshTokenPayloadType;
|
|
1526
|
+
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
1527
|
+
refreshToken: RefreshTokenPayloadType;
|
|
1528
|
+
}>>;
|
|
1490
1529
|
};
|
|
1491
1530
|
declare const useRequestPasswordReset: () => {
|
|
1492
1531
|
error: _apollo_client.ApolloError | undefined;
|
|
@@ -2037,7 +2076,11 @@ declare const useGetUnregisteredVendor: (_id: string) => {
|
|
|
2037
2076
|
};
|
|
2038
2077
|
|
|
2039
2078
|
declare const useCreateUser: () => {
|
|
2040
|
-
createUser: (options?: _apollo_client.MutationFunctionOptions<
|
|
2079
|
+
createUser: (options?: _apollo_client.MutationFunctionOptions<{
|
|
2080
|
+
createUser: SafeUserType;
|
|
2081
|
+
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
2082
|
+
createUser: SafeUserType;
|
|
2083
|
+
}>>;
|
|
2041
2084
|
error: _apollo_client.ApolloError | undefined;
|
|
2042
2085
|
loading: boolean;
|
|
2043
2086
|
};
|
|
@@ -2045,13 +2088,9 @@ declare const useUpdateUser: () => {
|
|
|
2045
2088
|
error: _apollo_client.ApolloError | undefined;
|
|
2046
2089
|
loading: boolean;
|
|
2047
2090
|
updateUser: (options?: _apollo_client.MutationFunctionOptions<{
|
|
2048
|
-
updateUser:
|
|
2049
|
-
_id: string;
|
|
2050
|
-
};
|
|
2091
|
+
updateUser: SafeUserType;
|
|
2051
2092
|
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
2052
|
-
updateUser:
|
|
2053
|
-
_id: string;
|
|
2054
|
-
};
|
|
2093
|
+
updateUser: SafeUserType;
|
|
2055
2094
|
}>>;
|
|
2056
2095
|
};
|
|
2057
2096
|
declare const useDeleteUser: () => {
|
|
@@ -2121,17 +2160,17 @@ declare const useGetUsers: () => {
|
|
|
2121
2160
|
error: _apollo_client.ApolloError | undefined;
|
|
2122
2161
|
loading: boolean;
|
|
2123
2162
|
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloQueryResult<{
|
|
2124
|
-
users:
|
|
2163
|
+
users: SafeUserType[];
|
|
2125
2164
|
}>>;
|
|
2126
|
-
users:
|
|
2165
|
+
users: SafeUserType[];
|
|
2127
2166
|
};
|
|
2128
2167
|
declare const useGetUser: (_id: string) => {
|
|
2129
2168
|
error: _apollo_client.ApolloError | undefined;
|
|
2130
2169
|
loading: boolean;
|
|
2131
2170
|
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloQueryResult<{
|
|
2132
|
-
user:
|
|
2171
|
+
user: SafeUserType;
|
|
2133
2172
|
}>>;
|
|
2134
|
-
user:
|
|
2173
|
+
user: SafeUserType | undefined;
|
|
2135
2174
|
};
|
|
2136
2175
|
declare const useGetUserEvents: () => {
|
|
2137
2176
|
error: _apollo_client.ApolloError | undefined;
|
|
@@ -2647,7 +2686,7 @@ declare function mapBaseResourceTypeToFormData(data: BaseResourceTypeFormData):
|
|
|
2647
2686
|
|
|
2648
2687
|
declare function useContactUsForm(data?: ContactUsFormData): CreateContactUsFormData;
|
|
2649
2688
|
|
|
2650
|
-
declare function useAdForm(data?: AdFormData):
|
|
2689
|
+
declare function useAdForm(data?: AdFormData): CreateAdFormState;
|
|
2651
2690
|
|
|
2652
2691
|
/**
|
|
2653
2692
|
* Custom hook to manage the partner form state and validation.
|
|
@@ -2939,9 +2978,11 @@ declare const licenseNiceNames: Record<EnumUserLicence, string>;
|
|
|
2939
2978
|
declare const cluemartSocialMedia: SocialMediaType[];
|
|
2940
2979
|
declare const IOS_URL = "https://apps.apple.com/nz/app/cluemart/id6747251008";
|
|
2941
2980
|
declare const ANDROID_URL = "https://play.google.com/store/apps/details?id=com.timardex.cluemart";
|
|
2981
|
+
declare const DEFAULT_RESOURCES_RETURN_LIMIT = 1000;
|
|
2982
|
+
declare const DEFAULT_RESOURCES_RETURN_OFFSET = 0;
|
|
2942
2983
|
declare const CLUEMART_MAIN_DOMAIN_URL = "https://cluemart.co.nz";
|
|
2943
2984
|
|
|
2944
2985
|
declare const SCHOOL_MIN_STUDENT_COUNT = 300;
|
|
2945
2986
|
declare const SCHOOL_MAX_STUDENT_COUNT = 0;
|
|
2946
2987
|
|
|
2947
|
-
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, 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 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 };
|
|
2988
|
+
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 };
|