@timardex/cluemart-shared 1.2.69 → 1.2.71
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/{ad-BijiW7Nn.d.ts → ad-DIpc7lyr.d.ts} +1 -1
- package/dist/{ad-DITy2OMe.d.mts → ad-_p1gmLNT.d.mts} +1 -1
- package/dist/{auth-iE9sd_mq.d.ts → auth-Bjqk92cx.d.ts} +1 -1
- package/dist/{auth-DCIrfDwB.d.mts → auth-CcX2zTDU.d.mts} +1 -1
- package/dist/formFields/index.cjs +198 -105
- 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 +198 -105
- package/dist/formFields/index.mjs.map +1 -1
- package/dist/{global-DhZY519g.d.mts → global-B0AzhgkH.d.mts} +7 -13
- package/dist/{global-08vcDEuE.d.ts → global-BH6qrlBv.d.ts} +7 -13
- package/dist/graphql/index.cjs +573 -565
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +459 -211
- package/dist/graphql/index.d.ts +459 -211
- package/dist/graphql/index.mjs +378 -370
- package/dist/graphql/index.mjs.map +1 -1
- package/dist/hooks/index.cjs +15 -6
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.d.mts +3 -3
- package/dist/hooks/index.d.ts +3 -3
- package/dist/hooks/index.mjs +15 -6
- package/dist/hooks/index.mjs.map +1 -1
- package/dist/index.cjs +794 -684
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +463 -221
- package/dist/index.d.ts +463 -221
- package/dist/index.mjs +593 -483
- package/dist/index.mjs.map +1 -1
- package/dist/types/index.d.mts +3 -3
- package/dist/types/index.d.ts +3 -3
- package/dist/utils/index.d.mts +1 -1
- package/dist/utils/index.d.ts +1 -1
- package/package.json +24 -24
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { FieldValues, Control, FieldErrors, UseFormHandleSubmit, UseFormReset, UseFormSetValue, UseFormWatch } from 'react-hook-form';
|
|
2
2
|
import * as _apollo_client from '@apollo/client';
|
|
3
|
+
import { useMutation } from '@apollo/client/react';
|
|
3
4
|
|
|
4
5
|
declare enum EnumInviteStatus {
|
|
5
6
|
ACCEPTED = "Accepted",
|
|
@@ -321,8 +322,8 @@ type UserActivity = {
|
|
|
321
322
|
};
|
|
322
323
|
};
|
|
323
324
|
type UserLicenceType = {
|
|
324
|
-
expiryDate: Date
|
|
325
|
-
issuedDate: Date
|
|
325
|
+
expiryDate: Date;
|
|
326
|
+
issuedDate: Date;
|
|
326
327
|
licenceType: EnumUserLicence;
|
|
327
328
|
};
|
|
328
329
|
interface UserType {
|
|
@@ -376,7 +377,7 @@ interface VendorFormData extends BaseResourceTypeFormData {
|
|
|
376
377
|
foodTruck: boolean;
|
|
377
378
|
locations?: VendorLocation[] | null;
|
|
378
379
|
multiLocation: boolean;
|
|
379
|
-
products
|
|
380
|
+
products: VendorMenuType[] | null;
|
|
380
381
|
vendorType: EnumVendorType;
|
|
381
382
|
}
|
|
382
383
|
type CreateVendorFormData = CreateFormData<VendorFormData>;
|
|
@@ -475,12 +476,6 @@ type AssociateType = {
|
|
|
475
476
|
resourceType: EnumResourceType;
|
|
476
477
|
licence: UserLicenceType;
|
|
477
478
|
};
|
|
478
|
-
type AssociateTypeFormData = {
|
|
479
|
-
email: string;
|
|
480
|
-
resourceId: string;
|
|
481
|
-
resourceType: EnumResourceType;
|
|
482
|
-
licenceType: EnumUserLicence;
|
|
483
|
-
};
|
|
484
479
|
type OwnerType = {
|
|
485
480
|
email: string;
|
|
486
481
|
userId: string;
|
|
@@ -488,8 +483,8 @@ type OwnerType = {
|
|
|
488
483
|
interface BaseResourceTypeFormData {
|
|
489
484
|
_id?: string;
|
|
490
485
|
active: boolean;
|
|
491
|
-
associates
|
|
492
|
-
contactDetails
|
|
486
|
+
associates: AssociateType[] | null;
|
|
487
|
+
contactDetails: ResourceContactDetailsType | null;
|
|
493
488
|
cover: ResourceImageType;
|
|
494
489
|
coverUpload?: ResourceImageType | null;
|
|
495
490
|
description: string;
|
|
@@ -501,7 +496,7 @@ interface BaseResourceTypeFormData {
|
|
|
501
496
|
owner?: OwnerType | null;
|
|
502
497
|
promoCodes?: string[] | null;
|
|
503
498
|
region: string;
|
|
504
|
-
socialMedia
|
|
499
|
+
socialMedia: SocialMediaType[] | null;
|
|
505
500
|
termsAgreement?: TermsAgreement | null;
|
|
506
501
|
}
|
|
507
502
|
type PosterUsageType = {
|
|
@@ -917,449 +912,664 @@ declare const companyContactFields: FormField[];
|
|
|
917
912
|
declare const partnerBasicInfoFields: FormField[];
|
|
918
913
|
|
|
919
914
|
declare const useAdminUpdateResourceType: () => {
|
|
920
|
-
adminUpdateResourceType:
|
|
921
|
-
|
|
915
|
+
adminUpdateResourceType: useMutation.MutationFunction<{
|
|
916
|
+
adminUpdateResourceType: {
|
|
917
|
+
resourceId: string;
|
|
918
|
+
resourceType: EnumResourceType;
|
|
919
|
+
};
|
|
920
|
+
}, {
|
|
921
|
+
[x: string]: any;
|
|
922
|
+
}, _apollo_client.ApolloCache>;
|
|
923
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
922
924
|
loading: boolean;
|
|
923
925
|
};
|
|
924
926
|
|
|
925
927
|
declare const useRegister: () => {
|
|
926
|
-
error: _apollo_client.
|
|
928
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
927
929
|
loading: boolean;
|
|
928
|
-
register:
|
|
930
|
+
register: useMutation.MutationFunction<unknown, {
|
|
931
|
+
[x: string]: any;
|
|
932
|
+
}, _apollo_client.ApolloCache>;
|
|
929
933
|
};
|
|
930
934
|
declare const useLogin: () => {
|
|
931
|
-
error: _apollo_client.
|
|
935
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
932
936
|
loading: boolean;
|
|
933
|
-
login:
|
|
937
|
+
login: useMutation.MutationFunction<unknown, {
|
|
938
|
+
[x: string]: any;
|
|
939
|
+
}, _apollo_client.ApolloCache>;
|
|
934
940
|
};
|
|
935
941
|
declare const useLogout: () => {
|
|
936
|
-
error: _apollo_client.
|
|
942
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
937
943
|
loading: boolean;
|
|
938
|
-
logout:
|
|
944
|
+
logout: useMutation.MutationFunction<unknown, {
|
|
945
|
+
[x: string]: any;
|
|
946
|
+
}, _apollo_client.ApolloCache>;
|
|
939
947
|
};
|
|
940
948
|
declare const useRefreshToken: () => {
|
|
941
|
-
error: _apollo_client.
|
|
949
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
942
950
|
loading: boolean;
|
|
943
|
-
refreshToken:
|
|
951
|
+
refreshToken: useMutation.MutationFunction<unknown, {
|
|
952
|
+
[x: string]: any;
|
|
953
|
+
}, _apollo_client.ApolloCache>;
|
|
944
954
|
};
|
|
945
955
|
declare const useRequestPasswordReset: () => {
|
|
946
|
-
error: _apollo_client.
|
|
956
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
947
957
|
loading: boolean;
|
|
948
|
-
requestPasswordReset:
|
|
958
|
+
requestPasswordReset: useMutation.MutationFunction<unknown, {
|
|
959
|
+
[x: string]: any;
|
|
960
|
+
}, _apollo_client.ApolloCache>;
|
|
949
961
|
};
|
|
950
962
|
declare const useValidateVerificationToken: () => {
|
|
951
|
-
error: _apollo_client.
|
|
963
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
952
964
|
loading: boolean;
|
|
953
|
-
validateVerificationToken:
|
|
965
|
+
validateVerificationToken: useMutation.MutationFunction<unknown, {
|
|
966
|
+
[x: string]: any;
|
|
967
|
+
}, _apollo_client.ApolloCache>;
|
|
954
968
|
};
|
|
955
969
|
declare const useResetPassword: () => {
|
|
956
|
-
error: _apollo_client.
|
|
970
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
957
971
|
loading: boolean;
|
|
958
|
-
resetPassword:
|
|
972
|
+
resetPassword: useMutation.MutationFunction<unknown, {
|
|
973
|
+
[x: string]: any;
|
|
974
|
+
}, _apollo_client.ApolloCache>;
|
|
959
975
|
};
|
|
960
976
|
|
|
961
977
|
declare const useSendChatMessage: () => {
|
|
962
|
-
error: _apollo_client.
|
|
978
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
963
979
|
loading: boolean;
|
|
964
|
-
sendChatMessage:
|
|
980
|
+
sendChatMessage: useMutation.MutationFunction<{
|
|
981
|
+
sendChatMessage: {
|
|
982
|
+
_id: string;
|
|
983
|
+
};
|
|
984
|
+
}, {
|
|
985
|
+
[x: string]: any;
|
|
986
|
+
}, _apollo_client.ApolloCache>;
|
|
965
987
|
};
|
|
966
988
|
declare const useDeleteChat: () => {
|
|
967
|
-
deleteChat:
|
|
968
|
-
|
|
989
|
+
deleteChat: useMutation.MutationFunction<unknown, {
|
|
990
|
+
[x: string]: any;
|
|
991
|
+
}, _apollo_client.ApolloCache>;
|
|
992
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
969
993
|
loading: boolean;
|
|
970
994
|
};
|
|
971
995
|
declare const useAddParticipantToChat: () => {
|
|
972
|
-
addParticipantToChat:
|
|
973
|
-
|
|
996
|
+
addParticipantToChat: useMutation.MutationFunction<{
|
|
997
|
+
addParticipantToChat: {
|
|
998
|
+
_id: string;
|
|
999
|
+
};
|
|
1000
|
+
}, {
|
|
1001
|
+
[x: string]: any;
|
|
1002
|
+
}, _apollo_client.ApolloCache>;
|
|
1003
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
974
1004
|
loading: boolean;
|
|
975
1005
|
};
|
|
976
1006
|
declare const useRemoveParticipantFromChat: () => {
|
|
977
|
-
error: _apollo_client.
|
|
1007
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
978
1008
|
loading: boolean;
|
|
979
|
-
removeParticipantFromChat:
|
|
1009
|
+
removeParticipantFromChat: useMutation.MutationFunction<unknown, {
|
|
1010
|
+
[x: string]: any;
|
|
1011
|
+
}, _apollo_client.ApolloCache>;
|
|
980
1012
|
};
|
|
981
1013
|
|
|
982
1014
|
declare const useGetChat: (_id: string) => {
|
|
983
|
-
chat: ChatType;
|
|
984
|
-
error: _apollo_client.
|
|
1015
|
+
chat: ChatType | undefined;
|
|
1016
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
985
1017
|
loading: boolean;
|
|
986
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.
|
|
1018
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloClient.QueryResult<{
|
|
1019
|
+
chat: ChatType;
|
|
1020
|
+
}>>;
|
|
987
1021
|
};
|
|
988
1022
|
declare const useGetUserChats: () => {
|
|
989
|
-
error: _apollo_client.
|
|
1023
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
990
1024
|
loading: boolean;
|
|
991
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.
|
|
1025
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloClient.QueryResult<{
|
|
1026
|
+
userChats: ChatType[];
|
|
1027
|
+
}>>;
|
|
992
1028
|
userChats: ChatType[];
|
|
993
1029
|
};
|
|
994
1030
|
declare const useGetChatSubscription: () => {
|
|
995
|
-
chat: ChatType;
|
|
996
|
-
error: _apollo_client.
|
|
1031
|
+
chat: ChatType | undefined;
|
|
1032
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
997
1033
|
loading: boolean;
|
|
998
1034
|
};
|
|
999
1035
|
|
|
1000
1036
|
declare const useContactUs: () => {
|
|
1001
|
-
contactUs:
|
|
1002
|
-
|
|
1037
|
+
contactUs: useMutation.MutationFunction<unknown, {
|
|
1038
|
+
[x: string]: any;
|
|
1039
|
+
}, _apollo_client.ApolloCache>;
|
|
1040
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1003
1041
|
loading: boolean;
|
|
1004
1042
|
};
|
|
1005
1043
|
|
|
1006
1044
|
declare const useCreateEvent: () => {
|
|
1007
|
-
createEvent:
|
|
1008
|
-
|
|
1045
|
+
createEvent: useMutation.MutationFunction<unknown, {
|
|
1046
|
+
[x: string]: any;
|
|
1047
|
+
}, _apollo_client.ApolloCache>;
|
|
1048
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1009
1049
|
loading: boolean;
|
|
1010
1050
|
};
|
|
1011
1051
|
declare const useUpdateEvent: () => {
|
|
1012
|
-
error: _apollo_client.
|
|
1052
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1013
1053
|
loading: boolean;
|
|
1014
|
-
updateEvent:
|
|
1054
|
+
updateEvent: useMutation.MutationFunction<unknown, {
|
|
1055
|
+
[x: string]: any;
|
|
1056
|
+
}, _apollo_client.ApolloCache>;
|
|
1015
1057
|
};
|
|
1016
1058
|
declare const useDeleteEvent: () => {
|
|
1017
|
-
deleteEvent:
|
|
1018
|
-
|
|
1059
|
+
deleteEvent: useMutation.MutationFunction<unknown, {
|
|
1060
|
+
[x: string]: any;
|
|
1061
|
+
}, _apollo_client.ApolloCache>;
|
|
1062
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1019
1063
|
loading: boolean;
|
|
1020
1064
|
};
|
|
1021
1065
|
declare const useCreateEventInfo: () => {
|
|
1022
|
-
createEventInfo:
|
|
1023
|
-
|
|
1066
|
+
createEventInfo: useMutation.MutationFunction<{
|
|
1067
|
+
createEventInfo: {
|
|
1068
|
+
eventId: string;
|
|
1069
|
+
};
|
|
1070
|
+
}, {
|
|
1071
|
+
[x: string]: any;
|
|
1072
|
+
}, _apollo_client.ApolloCache>;
|
|
1073
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1024
1074
|
loading: boolean;
|
|
1025
1075
|
};
|
|
1026
1076
|
declare const useUpdateEventInfo: () => {
|
|
1027
|
-
error: _apollo_client.
|
|
1077
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1028
1078
|
loading: boolean;
|
|
1029
|
-
updateEventInfo:
|
|
1079
|
+
updateEventInfo: useMutation.MutationFunction<{
|
|
1080
|
+
updateEventInfo: {
|
|
1081
|
+
eventId: string;
|
|
1082
|
+
};
|
|
1083
|
+
}, {
|
|
1084
|
+
[x: string]: any;
|
|
1085
|
+
}, _apollo_client.ApolloCache>;
|
|
1030
1086
|
};
|
|
1031
1087
|
|
|
1032
1088
|
declare const useGetEvents: () => {
|
|
1033
|
-
error: _apollo_client.
|
|
1089
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1034
1090
|
events: EventType[];
|
|
1035
1091
|
loading: boolean;
|
|
1036
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.
|
|
1092
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloClient.QueryResult<{
|
|
1093
|
+
events: EventType[];
|
|
1094
|
+
}>>;
|
|
1037
1095
|
};
|
|
1038
1096
|
declare const useGetEvent: (_id: string) => {
|
|
1039
|
-
error: _apollo_client.
|
|
1040
|
-
event: EventType;
|
|
1097
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1098
|
+
event: EventType | undefined;
|
|
1041
1099
|
loading: boolean;
|
|
1042
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.
|
|
1100
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloClient.QueryResult<{
|
|
1101
|
+
event: EventType;
|
|
1102
|
+
}>>;
|
|
1043
1103
|
};
|
|
1044
1104
|
declare const useGetEventsByRegion: (region: string) => {
|
|
1045
|
-
error: _apollo_client.
|
|
1105
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1046
1106
|
eventsByRegion: EventType[];
|
|
1047
1107
|
loading: boolean;
|
|
1048
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.
|
|
1108
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloClient.QueryResult<{
|
|
1109
|
+
eventsByRegion: EventType[];
|
|
1110
|
+
}>>;
|
|
1049
1111
|
};
|
|
1050
1112
|
declare const useSearchEvents: (search: string, region: string) => {
|
|
1051
|
-
error: _apollo_client.
|
|
1113
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1052
1114
|
eventsSearch: EventType[];
|
|
1053
1115
|
loading: boolean;
|
|
1054
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.
|
|
1116
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloClient.QueryResult<{
|
|
1117
|
+
eventsSearch: EventType[];
|
|
1118
|
+
}>>;
|
|
1055
1119
|
};
|
|
1056
1120
|
declare const useGetEventsNearMe: (location: {
|
|
1057
1121
|
latitude: number;
|
|
1058
1122
|
longitude: number;
|
|
1059
1123
|
radius?: number;
|
|
1060
1124
|
}) => {
|
|
1061
|
-
error: _apollo_client.
|
|
1125
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1062
1126
|
eventsNearMe: EventType[];
|
|
1063
1127
|
loading: boolean;
|
|
1064
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.
|
|
1128
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloClient.QueryResult<{
|
|
1129
|
+
eventsNearMe: EventType[];
|
|
1130
|
+
}>>;
|
|
1065
1131
|
};
|
|
1066
1132
|
declare const useGetEventInfo: (eventId: string) => {
|
|
1067
|
-
error: _apollo_client.
|
|
1068
|
-
eventInfo: EventInfoType;
|
|
1133
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1134
|
+
eventInfo: EventInfoType | undefined;
|
|
1069
1135
|
loading: boolean;
|
|
1070
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.
|
|
1136
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloClient.QueryResult<{
|
|
1137
|
+
eventInfo: EventInfoType;
|
|
1138
|
+
}>>;
|
|
1071
1139
|
};
|
|
1072
1140
|
|
|
1073
1141
|
declare const useCreateBulkNotifications: () => {
|
|
1074
|
-
createBulkNotifications:
|
|
1075
|
-
|
|
1142
|
+
createBulkNotifications: useMutation.MutationFunction<unknown, {
|
|
1143
|
+
[x: string]: any;
|
|
1144
|
+
}, _apollo_client.ApolloCache>;
|
|
1145
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1076
1146
|
loading: boolean;
|
|
1077
1147
|
};
|
|
1078
1148
|
declare const useMarkNotificationRead: () => {
|
|
1079
|
-
error: _apollo_client.
|
|
1149
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1080
1150
|
loading: boolean;
|
|
1081
|
-
markNotificationRead:
|
|
1151
|
+
markNotificationRead: useMutation.MutationFunction<unknown, {
|
|
1152
|
+
[x: string]: any;
|
|
1153
|
+
}, _apollo_client.ApolloCache>;
|
|
1082
1154
|
};
|
|
1083
1155
|
declare const useMarkAllNotificationsRead: () => {
|
|
1084
|
-
error: _apollo_client.
|
|
1156
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1085
1157
|
loading: boolean;
|
|
1086
|
-
markAllNotificationsRead:
|
|
1158
|
+
markAllNotificationsRead: useMutation.MutationFunction<unknown, {
|
|
1159
|
+
[x: string]: any;
|
|
1160
|
+
}, _apollo_client.ApolloCache>;
|
|
1087
1161
|
};
|
|
1088
1162
|
declare const useDeleteNotification: () => {
|
|
1089
|
-
deleteNotification:
|
|
1090
|
-
|
|
1163
|
+
deleteNotification: useMutation.MutationFunction<unknown, {
|
|
1164
|
+
[x: string]: any;
|
|
1165
|
+
}, _apollo_client.ApolloCache>;
|
|
1166
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1091
1167
|
loading: boolean;
|
|
1092
1168
|
};
|
|
1093
1169
|
declare const useDeleteAllNotifications: () => {
|
|
1094
|
-
deleteAllNotifications:
|
|
1095
|
-
|
|
1170
|
+
deleteAllNotifications: useMutation.MutationFunction<unknown, {
|
|
1171
|
+
[x: string]: any;
|
|
1172
|
+
}, _apollo_client.ApolloCache>;
|
|
1173
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1096
1174
|
loading: boolean;
|
|
1097
1175
|
};
|
|
1098
1176
|
|
|
1099
1177
|
declare const useGetUserNotifications: (limit?: number, offset?: number) => {
|
|
1100
|
-
error: _apollo_client.
|
|
1178
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1101
1179
|
loading: boolean;
|
|
1102
1180
|
notifications: NotificationType[];
|
|
1103
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.
|
|
1181
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloClient.QueryResult<{
|
|
1104
1182
|
userNotifications: NotificationType[];
|
|
1105
1183
|
}>>;
|
|
1106
1184
|
};
|
|
1107
1185
|
declare const useGetNotificationCount: () => {
|
|
1108
|
-
error: _apollo_client.
|
|
1186
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1109
1187
|
loading: boolean;
|
|
1110
1188
|
notificationCount: NotificationCount;
|
|
1111
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.
|
|
1189
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloClient.QueryResult<{
|
|
1112
1190
|
notificationCount: NotificationCount;
|
|
1113
1191
|
}>>;
|
|
1114
1192
|
};
|
|
1115
1193
|
|
|
1116
1194
|
declare const useGetUserNotificationsSubscription: () => {
|
|
1117
|
-
error: _apollo_client.
|
|
1195
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1118
1196
|
loading: boolean;
|
|
1119
1197
|
notifications: NotificationType[] | undefined;
|
|
1120
1198
|
};
|
|
1121
1199
|
declare const useGetNotificationCountSubscription: () => {
|
|
1122
|
-
error: _apollo_client.
|
|
1200
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1123
1201
|
loading: boolean;
|
|
1124
1202
|
notificationCount: NotificationCount | undefined;
|
|
1125
1203
|
};
|
|
1126
1204
|
|
|
1127
1205
|
declare const useCreatePoster: () => {
|
|
1128
|
-
createPoster:
|
|
1129
|
-
|
|
1206
|
+
createPoster: useMutation.MutationFunction<unknown, {
|
|
1207
|
+
[x: string]: any;
|
|
1208
|
+
}, _apollo_client.ApolloCache>;
|
|
1209
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1130
1210
|
loading: boolean;
|
|
1131
1211
|
};
|
|
1132
1212
|
|
|
1133
1213
|
declare const useCreatePushToken: () => {
|
|
1134
|
-
createPushToken:
|
|
1135
|
-
|
|
1214
|
+
createPushToken: useMutation.MutationFunction<unknown, {
|
|
1215
|
+
[x: string]: any;
|
|
1216
|
+
}, _apollo_client.ApolloCache>;
|
|
1217
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1136
1218
|
loading: boolean;
|
|
1137
1219
|
};
|
|
1138
1220
|
|
|
1139
1221
|
declare const useCreateRelation: () => {
|
|
1140
|
-
createRelation:
|
|
1141
|
-
|
|
1222
|
+
createRelation: useMutation.MutationFunction<{
|
|
1223
|
+
createRelation: {
|
|
1224
|
+
eventId: string;
|
|
1225
|
+
vendorId: string;
|
|
1226
|
+
lastUpdateBy: EnumResourceType;
|
|
1227
|
+
};
|
|
1228
|
+
}, {
|
|
1229
|
+
[x: string]: any;
|
|
1230
|
+
}, _apollo_client.ApolloCache>;
|
|
1231
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1142
1232
|
loading: boolean;
|
|
1143
1233
|
};
|
|
1144
1234
|
declare const useUpdateRelation: () => {
|
|
1145
|
-
error: _apollo_client.
|
|
1235
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1146
1236
|
loading: boolean;
|
|
1147
|
-
updateRelation:
|
|
1237
|
+
updateRelation: useMutation.MutationFunction<{
|
|
1238
|
+
updateRelation: {
|
|
1239
|
+
eventId: string;
|
|
1240
|
+
vendorId: string;
|
|
1241
|
+
lastUpdateBy: EnumResourceType;
|
|
1242
|
+
};
|
|
1243
|
+
}, {
|
|
1244
|
+
[x: string]: any;
|
|
1245
|
+
}, _apollo_client.ApolloCache>;
|
|
1148
1246
|
};
|
|
1149
1247
|
declare const useDeleteRelation: () => {
|
|
1150
|
-
deleteRelation:
|
|
1151
|
-
|
|
1248
|
+
deleteRelation: useMutation.MutationFunction<{
|
|
1249
|
+
deleteRelation: {
|
|
1250
|
+
eventId: string;
|
|
1251
|
+
vendorId: string;
|
|
1252
|
+
lastUpdateBy: EnumResourceType;
|
|
1253
|
+
};
|
|
1254
|
+
}, {
|
|
1255
|
+
[x: string]: any;
|
|
1256
|
+
}, _apollo_client.ApolloCache>;
|
|
1257
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1152
1258
|
loading: boolean;
|
|
1153
1259
|
};
|
|
1154
1260
|
|
|
1155
1261
|
declare const useGetRelation: (_id: string) => {
|
|
1156
|
-
error: _apollo_client.
|
|
1262
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1157
1263
|
loading: boolean;
|
|
1158
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.
|
|
1159
|
-
|
|
1264
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloClient.QueryResult<{
|
|
1265
|
+
relation: RelationType;
|
|
1266
|
+
}>>;
|
|
1267
|
+
relation: RelationType | undefined;
|
|
1160
1268
|
};
|
|
1161
1269
|
declare const useGetRelationByEventAndVendor: (eventId: string, vendorId: string) => {
|
|
1162
|
-
error: _apollo_client.
|
|
1270
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1163
1271
|
loading: boolean;
|
|
1164
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.
|
|
1165
|
-
|
|
1272
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloClient.QueryResult<{
|
|
1273
|
+
relationByEventAndVendor: RelationType;
|
|
1274
|
+
}>>;
|
|
1275
|
+
relationByEventAndVendor: RelationType | undefined;
|
|
1166
1276
|
};
|
|
1167
1277
|
declare const useGetEventRelations: (eventId: string) => {
|
|
1168
|
-
error: _apollo_client.
|
|
1278
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1169
1279
|
eventRelations: RelationType[];
|
|
1170
1280
|
loading: boolean;
|
|
1171
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.
|
|
1281
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloClient.QueryResult<{
|
|
1282
|
+
eventRelations: RelationType[];
|
|
1283
|
+
}>>;
|
|
1172
1284
|
};
|
|
1173
1285
|
declare const useGetVendorRelations: (vendorId: string) => {
|
|
1174
|
-
error: _apollo_client.
|
|
1286
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1175
1287
|
loading: boolean;
|
|
1176
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.
|
|
1288
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloClient.QueryResult<{
|
|
1289
|
+
vendorRelations: RelationType[];
|
|
1290
|
+
}>>;
|
|
1177
1291
|
vendorRelations: RelationType[];
|
|
1178
1292
|
};
|
|
1179
1293
|
declare const useGetResourceConnections: (resourceId: string, resourceType: EnumResourceType) => {
|
|
1180
|
-
error: _apollo_client.
|
|
1294
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1181
1295
|
loading: boolean;
|
|
1182
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.
|
|
1183
|
-
|
|
1296
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloClient.QueryResult<{
|
|
1297
|
+
resourceConnections: ResourceConnectionsType;
|
|
1298
|
+
}>>;
|
|
1299
|
+
resourceConnections: ResourceConnectionsType | never[];
|
|
1184
1300
|
};
|
|
1185
1301
|
|
|
1186
1302
|
declare const useCreateVendor: () => {
|
|
1187
|
-
createVendor:
|
|
1188
|
-
|
|
1303
|
+
createVendor: useMutation.MutationFunction<unknown, {
|
|
1304
|
+
[x: string]: any;
|
|
1305
|
+
}, _apollo_client.ApolloCache>;
|
|
1306
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1189
1307
|
loading: boolean;
|
|
1190
1308
|
};
|
|
1191
1309
|
declare const useUpdateVendor: () => {
|
|
1192
|
-
error: _apollo_client.
|
|
1310
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1193
1311
|
loading: boolean;
|
|
1194
|
-
updateVendor:
|
|
1312
|
+
updateVendor: useMutation.MutationFunction<unknown, {
|
|
1313
|
+
[x: string]: any;
|
|
1314
|
+
}, _apollo_client.ApolloCache>;
|
|
1195
1315
|
};
|
|
1196
1316
|
declare const useDeleteVendor: () => {
|
|
1197
|
-
deleteVendor:
|
|
1198
|
-
|
|
1317
|
+
deleteVendor: useMutation.MutationFunction<unknown, {
|
|
1318
|
+
[x: string]: any;
|
|
1319
|
+
}, _apollo_client.ApolloCache>;
|
|
1320
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1199
1321
|
loading: boolean;
|
|
1200
1322
|
};
|
|
1201
1323
|
declare const useCreateVendorInfo: () => {
|
|
1202
|
-
createVendorInfo:
|
|
1203
|
-
|
|
1324
|
+
createVendorInfo: useMutation.MutationFunction<{
|
|
1325
|
+
createVendorInfo: {
|
|
1326
|
+
vendorId: string;
|
|
1327
|
+
};
|
|
1328
|
+
}, {
|
|
1329
|
+
[x: string]: any;
|
|
1330
|
+
}, _apollo_client.ApolloCache>;
|
|
1331
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1204
1332
|
loading: boolean;
|
|
1205
1333
|
};
|
|
1206
1334
|
declare const useUpdateVendorInfo: () => {
|
|
1207
|
-
error: _apollo_client.
|
|
1335
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1208
1336
|
loading: boolean;
|
|
1209
|
-
updateVendorInfo:
|
|
1337
|
+
updateVendorInfo: useMutation.MutationFunction<{
|
|
1338
|
+
updateVendorInfo: {
|
|
1339
|
+
vendorId: string;
|
|
1340
|
+
};
|
|
1341
|
+
}, {
|
|
1342
|
+
[x: string]: any;
|
|
1343
|
+
}, _apollo_client.ApolloCache>;
|
|
1210
1344
|
};
|
|
1211
1345
|
|
|
1212
1346
|
declare const useGetVendors: () => {
|
|
1213
|
-
error: _apollo_client.
|
|
1347
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1214
1348
|
loading: boolean;
|
|
1215
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.
|
|
1349
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloClient.QueryResult<{
|
|
1350
|
+
vendors: VendorType[];
|
|
1351
|
+
}>>;
|
|
1216
1352
|
vendors: VendorType[];
|
|
1217
1353
|
};
|
|
1218
1354
|
declare const useGetVendor: (_id: string) => {
|
|
1219
|
-
error: _apollo_client.
|
|
1355
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1220
1356
|
loading: boolean;
|
|
1221
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.
|
|
1222
|
-
|
|
1357
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloClient.QueryResult<{
|
|
1358
|
+
vendor: VendorType;
|
|
1359
|
+
}>>;
|
|
1360
|
+
vendor: VendorType | undefined;
|
|
1223
1361
|
};
|
|
1224
1362
|
declare const useGetVendorsByRegion: (region: string) => {
|
|
1225
|
-
error: _apollo_client.
|
|
1363
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1226
1364
|
loading: boolean;
|
|
1227
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.
|
|
1365
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloClient.QueryResult<{
|
|
1366
|
+
vendorsByRegion: VendorType[];
|
|
1367
|
+
}>>;
|
|
1228
1368
|
vendorsByRegion: VendorType[];
|
|
1229
1369
|
};
|
|
1230
1370
|
declare const useSearchVendors: (search: string, region: string) => {
|
|
1231
|
-
error: _apollo_client.
|
|
1371
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1232
1372
|
loading: boolean;
|
|
1233
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.
|
|
1373
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloClient.QueryResult<{
|
|
1374
|
+
vendorSearch: VendorType[];
|
|
1375
|
+
}>>;
|
|
1234
1376
|
vendorSearch: VendorType[];
|
|
1235
1377
|
};
|
|
1236
1378
|
declare const useGetVendorInfo: (vendorId: string) => {
|
|
1237
|
-
error: _apollo_client.
|
|
1379
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1238
1380
|
loading: boolean;
|
|
1239
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.
|
|
1240
|
-
|
|
1381
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloClient.QueryResult<{
|
|
1382
|
+
vendorInfo: VendorInfoType;
|
|
1383
|
+
}>>;
|
|
1384
|
+
vendorInfo: VendorInfoType | undefined;
|
|
1241
1385
|
};
|
|
1242
1386
|
|
|
1243
1387
|
declare const useCreateTester: () => {
|
|
1244
|
-
createTester:
|
|
1245
|
-
|
|
1246
|
-
|
|
1388
|
+
createTester: useMutation.MutationFunction<unknown, {
|
|
1389
|
+
[x: string]: any;
|
|
1390
|
+
}, _apollo_client.ApolloCache>;
|
|
1391
|
+
data: unknown;
|
|
1392
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1247
1393
|
loading: boolean;
|
|
1248
1394
|
};
|
|
1249
1395
|
declare const useUpdateTester: () => {
|
|
1250
|
-
data:
|
|
1251
|
-
error: _apollo_client.
|
|
1396
|
+
data: unknown;
|
|
1397
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1252
1398
|
loading: boolean;
|
|
1253
|
-
updateTester:
|
|
1399
|
+
updateTester: useMutation.MutationFunction<unknown, {
|
|
1400
|
+
[x: string]: any;
|
|
1401
|
+
}, _apollo_client.ApolloCache>;
|
|
1254
1402
|
};
|
|
1255
1403
|
declare const useDeleteTester: () => {
|
|
1256
|
-
deleteTester:
|
|
1257
|
-
|
|
1404
|
+
deleteTester: useMutation.MutationFunction<unknown, {
|
|
1405
|
+
[x: string]: any;
|
|
1406
|
+
}, _apollo_client.ApolloCache>;
|
|
1407
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1258
1408
|
loading: boolean;
|
|
1259
1409
|
};
|
|
1260
1410
|
|
|
1261
1411
|
declare const useGetTesters: () => {
|
|
1262
|
-
error: _apollo_client.
|
|
1412
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1263
1413
|
loading: boolean;
|
|
1264
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.
|
|
1414
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloClient.QueryResult<{
|
|
1415
|
+
testers: TesterType[];
|
|
1416
|
+
}>>;
|
|
1265
1417
|
testers: TesterType[];
|
|
1266
1418
|
};
|
|
1267
1419
|
declare const useGetTester: (_id: string) => {
|
|
1268
|
-
error: _apollo_client.
|
|
1420
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1269
1421
|
loading: boolean;
|
|
1270
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.
|
|
1271
|
-
|
|
1422
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloClient.QueryResult<{
|
|
1423
|
+
tester: TesterType;
|
|
1424
|
+
}>>;
|
|
1425
|
+
tester: TesterType | undefined;
|
|
1272
1426
|
};
|
|
1273
1427
|
|
|
1274
1428
|
declare const useCreateUser: () => {
|
|
1275
|
-
createUser:
|
|
1276
|
-
|
|
1429
|
+
createUser: useMutation.MutationFunction<unknown, {
|
|
1430
|
+
[x: string]: any;
|
|
1431
|
+
}, _apollo_client.ApolloCache>;
|
|
1432
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1277
1433
|
loading: boolean;
|
|
1278
1434
|
};
|
|
1279
1435
|
declare const useUpdateUser: () => {
|
|
1280
|
-
error: _apollo_client.
|
|
1436
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1281
1437
|
loading: boolean;
|
|
1282
|
-
updateUser:
|
|
1438
|
+
updateUser: useMutation.MutationFunction<{
|
|
1439
|
+
updateUser: {
|
|
1440
|
+
_id: string;
|
|
1441
|
+
};
|
|
1442
|
+
}, {
|
|
1443
|
+
[x: string]: any;
|
|
1444
|
+
}, _apollo_client.ApolloCache>;
|
|
1283
1445
|
};
|
|
1284
1446
|
declare const useDeleteUser: () => {
|
|
1285
|
-
deleteUser:
|
|
1286
|
-
|
|
1447
|
+
deleteUser: useMutation.MutationFunction<unknown, {
|
|
1448
|
+
[x: string]: any;
|
|
1449
|
+
}, _apollo_client.ApolloCache>;
|
|
1450
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1287
1451
|
loading: boolean;
|
|
1288
1452
|
};
|
|
1289
1453
|
declare const useAddUserFavouriteResource: () => {
|
|
1290
|
-
addUserFavouriteResource:
|
|
1291
|
-
|
|
1454
|
+
addUserFavouriteResource: useMutation.MutationFunction<unknown, {
|
|
1455
|
+
[x: string]: any;
|
|
1456
|
+
}, _apollo_client.ApolloCache>;
|
|
1457
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1292
1458
|
loading: boolean;
|
|
1293
1459
|
};
|
|
1294
1460
|
declare const useRemoveUserFavouriteResource: () => {
|
|
1295
|
-
error: _apollo_client.
|
|
1461
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1296
1462
|
loading: boolean;
|
|
1297
|
-
removeUserFavouriteResource:
|
|
1463
|
+
removeUserFavouriteResource: useMutation.MutationFunction<unknown, {
|
|
1464
|
+
[x: string]: any;
|
|
1465
|
+
}, _apollo_client.ApolloCache>;
|
|
1298
1466
|
};
|
|
1299
1467
|
declare const useSelectPackage: () => {
|
|
1300
|
-
error: _apollo_client.
|
|
1468
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1301
1469
|
loading: boolean;
|
|
1302
|
-
selectPackage:
|
|
1470
|
+
selectPackage: useMutation.MutationFunction<{
|
|
1471
|
+
selectPackage: {
|
|
1472
|
+
userId: string;
|
|
1473
|
+
};
|
|
1474
|
+
}, {
|
|
1475
|
+
[x: string]: any;
|
|
1476
|
+
}, _apollo_client.ApolloCache>;
|
|
1303
1477
|
};
|
|
1304
1478
|
declare const useAddUserInterestResource: () => {
|
|
1305
|
-
addUserInterestResource:
|
|
1306
|
-
|
|
1479
|
+
addUserInterestResource: useMutation.MutationFunction<unknown, {
|
|
1480
|
+
[x: string]: any;
|
|
1481
|
+
}, _apollo_client.ApolloCache>;
|
|
1482
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1307
1483
|
loading: boolean;
|
|
1308
1484
|
};
|
|
1309
1485
|
declare const useRemoveUserInterestResource: () => {
|
|
1310
|
-
error: _apollo_client.
|
|
1486
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1311
1487
|
loading: boolean;
|
|
1312
|
-
removeUserInterestResource:
|
|
1488
|
+
removeUserInterestResource: useMutation.MutationFunction<unknown, {
|
|
1489
|
+
[x: string]: any;
|
|
1490
|
+
}, _apollo_client.ApolloCache>;
|
|
1313
1491
|
};
|
|
1314
1492
|
declare const useAddUserGoingResource: () => {
|
|
1315
|
-
addUserGoingResource:
|
|
1316
|
-
|
|
1493
|
+
addUserGoingResource: useMutation.MutationFunction<unknown, {
|
|
1494
|
+
[x: string]: any;
|
|
1495
|
+
}, _apollo_client.ApolloCache>;
|
|
1496
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1317
1497
|
loading: boolean;
|
|
1318
1498
|
};
|
|
1319
1499
|
declare const useRemoveUserGoingResource: () => {
|
|
1320
|
-
error: _apollo_client.
|
|
1500
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1321
1501
|
loading: boolean;
|
|
1322
|
-
removeUserGoingResource:
|
|
1502
|
+
removeUserGoingResource: useMutation.MutationFunction<unknown, {
|
|
1503
|
+
[x: string]: any;
|
|
1504
|
+
}, _apollo_client.ApolloCache>;
|
|
1323
1505
|
};
|
|
1324
1506
|
declare const useAddUserPresentResource: () => {
|
|
1325
|
-
addUserPresentResource:
|
|
1326
|
-
|
|
1507
|
+
addUserPresentResource: useMutation.MutationFunction<unknown, {
|
|
1508
|
+
[x: string]: any;
|
|
1509
|
+
}, _apollo_client.ApolloCache>;
|
|
1510
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1327
1511
|
loading: boolean;
|
|
1328
1512
|
};
|
|
1329
1513
|
declare const useRemoveUserPresentResource: () => {
|
|
1330
|
-
error: _apollo_client.
|
|
1514
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1331
1515
|
loading: boolean;
|
|
1332
|
-
removeUserPresentResource:
|
|
1516
|
+
removeUserPresentResource: useMutation.MutationFunction<unknown, {
|
|
1517
|
+
[x: string]: any;
|
|
1518
|
+
}, _apollo_client.ApolloCache>;
|
|
1333
1519
|
};
|
|
1334
1520
|
|
|
1335
1521
|
declare const useGetUsers: () => {
|
|
1336
|
-
error: _apollo_client.
|
|
1522
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1337
1523
|
loading: boolean;
|
|
1338
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.
|
|
1524
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloClient.QueryResult<{
|
|
1525
|
+
users: UserType[];
|
|
1526
|
+
}>>;
|
|
1339
1527
|
users: UserType[];
|
|
1340
1528
|
};
|
|
1341
1529
|
declare const useGetUser: (_id: string) => {
|
|
1342
|
-
error: _apollo_client.
|
|
1530
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1343
1531
|
loading: boolean;
|
|
1344
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.
|
|
1345
|
-
|
|
1532
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloClient.QueryResult<{
|
|
1533
|
+
user: UserType;
|
|
1534
|
+
}>>;
|
|
1535
|
+
user: UserType | undefined;
|
|
1346
1536
|
};
|
|
1347
1537
|
declare const useGetUserEvents: () => {
|
|
1348
|
-
error: _apollo_client.
|
|
1538
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1349
1539
|
loading: boolean;
|
|
1350
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.
|
|
1540
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloClient.QueryResult<{
|
|
1541
|
+
userEvents: EventType[];
|
|
1542
|
+
}>>;
|
|
1351
1543
|
userEvents: EventType[];
|
|
1352
1544
|
};
|
|
1353
1545
|
declare const useGetUserVendors: () => {
|
|
1354
|
-
error: _apollo_client.
|
|
1546
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1355
1547
|
loading: boolean;
|
|
1356
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.
|
|
1548
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloClient.QueryResult<{
|
|
1549
|
+
userVendors: VendorType[];
|
|
1550
|
+
}>>;
|
|
1357
1551
|
userVendors: VendorType[];
|
|
1358
1552
|
};
|
|
1359
1553
|
declare const useGetUserActivities: () => {
|
|
1360
|
-
error: _apollo_client.
|
|
1361
|
-
loading: boolean;
|
|
1362
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.
|
|
1554
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1555
|
+
loading: boolean;
|
|
1556
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloClient.QueryResult<{
|
|
1557
|
+
userActivities: {
|
|
1558
|
+
favourites: {
|
|
1559
|
+
events: EventType[];
|
|
1560
|
+
vendors: VendorType[];
|
|
1561
|
+
};
|
|
1562
|
+
going: {
|
|
1563
|
+
events: EventType[];
|
|
1564
|
+
};
|
|
1565
|
+
interested: {
|
|
1566
|
+
events: EventType[];
|
|
1567
|
+
};
|
|
1568
|
+
present: {
|
|
1569
|
+
events: EventType[];
|
|
1570
|
+
};
|
|
1571
|
+
};
|
|
1572
|
+
}>>;
|
|
1363
1573
|
userActivities: {
|
|
1364
1574
|
favourites: {
|
|
1365
1575
|
events: EventType[];
|
|
@@ -1378,121 +1588,153 @@ declare const useGetUserActivities: () => {
|
|
|
1378
1588
|
};
|
|
1379
1589
|
|
|
1380
1590
|
declare const useCreateAd: () => {
|
|
1381
|
-
createAd:
|
|
1382
|
-
|
|
1591
|
+
createAd: useMutation.MutationFunction<unknown, {
|
|
1592
|
+
[x: string]: any;
|
|
1593
|
+
}, _apollo_client.ApolloCache>;
|
|
1594
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1383
1595
|
loading: boolean;
|
|
1384
1596
|
};
|
|
1385
1597
|
declare const useUpdateAd: () => {
|
|
1386
|
-
error: _apollo_client.
|
|
1598
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1387
1599
|
loading: boolean;
|
|
1388
|
-
updateAd:
|
|
1600
|
+
updateAd: useMutation.MutationFunction<unknown, {
|
|
1601
|
+
[x: string]: any;
|
|
1602
|
+
}, _apollo_client.ApolloCache>;
|
|
1389
1603
|
};
|
|
1390
1604
|
declare const useDeleteAd: () => {
|
|
1391
|
-
deleteAd:
|
|
1392
|
-
|
|
1605
|
+
deleteAd: useMutation.MutationFunction<unknown, {
|
|
1606
|
+
[x: string]: any;
|
|
1607
|
+
}, _apollo_client.ApolloCache>;
|
|
1608
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1393
1609
|
loading: boolean;
|
|
1394
1610
|
};
|
|
1395
1611
|
|
|
1396
1612
|
declare const useGetAds: () => {
|
|
1397
|
-
ads: AdType[]
|
|
1398
|
-
error: _apollo_client.
|
|
1613
|
+
ads: AdType[];
|
|
1614
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1399
1615
|
loading: boolean;
|
|
1400
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.
|
|
1616
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloClient.QueryResult<{
|
|
1401
1617
|
ads: AdType[];
|
|
1402
1618
|
}>>;
|
|
1403
1619
|
};
|
|
1404
1620
|
declare const useGetAd: (_id: string) => {
|
|
1405
1621
|
ad: AdType | undefined;
|
|
1406
|
-
error: _apollo_client.
|
|
1622
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1407
1623
|
loading: boolean;
|
|
1408
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.
|
|
1624
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloClient.QueryResult<{
|
|
1409
1625
|
ad: AdType;
|
|
1410
1626
|
}>>;
|
|
1411
1627
|
};
|
|
1412
1628
|
declare const useGetAdsByRegion: (region: string, status?: EnumAdStatus) => {
|
|
1413
|
-
adsByRegion: AdType[]
|
|
1414
|
-
error: _apollo_client.
|
|
1629
|
+
adsByRegion: AdType[];
|
|
1630
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1415
1631
|
loading: boolean;
|
|
1416
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.
|
|
1632
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloClient.QueryResult<{
|
|
1417
1633
|
adsByRegion: AdType[];
|
|
1418
1634
|
}>>;
|
|
1419
1635
|
};
|
|
1420
1636
|
|
|
1421
1637
|
declare const useCreateResourceActivity: () => {
|
|
1422
|
-
createResourceActivity:
|
|
1423
|
-
|
|
1638
|
+
createResourceActivity: useMutation.MutationFunction<unknown, {
|
|
1639
|
+
[x: string]: any;
|
|
1640
|
+
}, _apollo_client.ApolloCache>;
|
|
1641
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1424
1642
|
loading: boolean;
|
|
1425
1643
|
};
|
|
1426
1644
|
|
|
1427
1645
|
declare const useGetResourceActivities: (resourceId: string, resourceType: EnumResourceType) => {
|
|
1428
|
-
error: _apollo_client.
|
|
1646
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1429
1647
|
loading: boolean;
|
|
1430
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.
|
|
1648
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloClient.QueryResult<{
|
|
1649
|
+
resourceActivities: ResourceActivityType[];
|
|
1650
|
+
}>>;
|
|
1431
1651
|
resourceActivities: ResourceActivityType[];
|
|
1432
1652
|
};
|
|
1433
1653
|
|
|
1434
1654
|
declare const useCreateCheckoutSession: () => {
|
|
1435
|
-
createCheckoutSession:
|
|
1436
|
-
|
|
1655
|
+
createCheckoutSession: useMutation.MutationFunction<unknown, {
|
|
1656
|
+
[x: string]: any;
|
|
1657
|
+
}, _apollo_client.ApolloCache>;
|
|
1658
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1437
1659
|
loading: boolean;
|
|
1438
1660
|
};
|
|
1439
1661
|
declare const useCancelSubscription: () => {
|
|
1440
|
-
cancelSubscription:
|
|
1441
|
-
|
|
1662
|
+
cancelSubscription: useMutation.MutationFunction<unknown, {
|
|
1663
|
+
[x: string]: any;
|
|
1664
|
+
}, _apollo_client.ApolloCache>;
|
|
1665
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1442
1666
|
loading: boolean;
|
|
1443
1667
|
};
|
|
1444
1668
|
declare const useUpdateSubscriptionPlan: () => {
|
|
1445
|
-
error: _apollo_client.
|
|
1669
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1446
1670
|
loading: boolean;
|
|
1447
|
-
updateSubscriptionPlan:
|
|
1671
|
+
updateSubscriptionPlan: useMutation.MutationFunction<unknown, {
|
|
1672
|
+
[x: string]: any;
|
|
1673
|
+
}, _apollo_client.ApolloCache>;
|
|
1448
1674
|
};
|
|
1449
1675
|
|
|
1450
1676
|
declare const useGetSubscriptionStatus: () => {
|
|
1451
1677
|
data: SubscriptionStatusData | undefined;
|
|
1452
|
-
error: _apollo_client.
|
|
1678
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1453
1679
|
loading: boolean;
|
|
1454
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.
|
|
1680
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloClient.QueryResult<{
|
|
1681
|
+
getSubscriptionStatus: SubscriptionStatusData;
|
|
1682
|
+
}>>;
|
|
1455
1683
|
};
|
|
1456
1684
|
|
|
1457
1685
|
declare const useCreatePartner: () => {
|
|
1458
|
-
createPartner:
|
|
1459
|
-
|
|
1686
|
+
createPartner: useMutation.MutationFunction<unknown, {
|
|
1687
|
+
[x: string]: any;
|
|
1688
|
+
}, _apollo_client.ApolloCache>;
|
|
1689
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1460
1690
|
loading: boolean;
|
|
1461
1691
|
};
|
|
1462
1692
|
declare const useUpdatePartner: () => {
|
|
1463
|
-
error: _apollo_client.
|
|
1693
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1464
1694
|
loading: boolean;
|
|
1465
|
-
updatePartner:
|
|
1695
|
+
updatePartner: useMutation.MutationFunction<unknown, {
|
|
1696
|
+
[x: string]: any;
|
|
1697
|
+
}, _apollo_client.ApolloCache>;
|
|
1466
1698
|
};
|
|
1467
1699
|
declare const useDeletePartner: () => {
|
|
1468
|
-
deletePartner:
|
|
1469
|
-
|
|
1700
|
+
deletePartner: useMutation.MutationFunction<unknown, {
|
|
1701
|
+
[x: string]: any;
|
|
1702
|
+
}, _apollo_client.ApolloCache>;
|
|
1703
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1470
1704
|
loading: boolean;
|
|
1471
1705
|
};
|
|
1472
1706
|
|
|
1473
1707
|
declare const useGetPartners: () => {
|
|
1474
|
-
error: _apollo_client.
|
|
1708
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1475
1709
|
loading: boolean;
|
|
1476
1710
|
partners: PartnerType[];
|
|
1477
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.
|
|
1711
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloClient.QueryResult<{
|
|
1712
|
+
partners: PartnerType[];
|
|
1713
|
+
}>>;
|
|
1478
1714
|
};
|
|
1479
1715
|
declare const useGetPartner: (_id: string) => {
|
|
1480
|
-
error: _apollo_client.
|
|
1716
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1481
1717
|
loading: boolean;
|
|
1482
|
-
partner: PartnerType;
|
|
1483
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.
|
|
1718
|
+
partner: PartnerType | undefined;
|
|
1719
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloClient.QueryResult<{
|
|
1720
|
+
partner: PartnerType;
|
|
1721
|
+
}>>;
|
|
1484
1722
|
};
|
|
1485
1723
|
declare const useGetPartnersByRegion: (region: string) => {
|
|
1486
|
-
error: _apollo_client.
|
|
1724
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1487
1725
|
loading: boolean;
|
|
1488
1726
|
partnersByRegion: PartnerType[];
|
|
1489
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.
|
|
1727
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloClient.QueryResult<{
|
|
1728
|
+
partnersByRegion: PartnerType[];
|
|
1729
|
+
}>>;
|
|
1490
1730
|
};
|
|
1491
1731
|
declare const useSearchPartners: (search: string, region: string) => {
|
|
1492
|
-
error: _apollo_client.
|
|
1732
|
+
error: _apollo_client.ErrorLike | undefined;
|
|
1493
1733
|
loading: boolean;
|
|
1494
1734
|
partnersSearch: PartnerType[];
|
|
1495
|
-
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.
|
|
1735
|
+
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloClient.QueryResult<{
|
|
1736
|
+
partnersSearch: PartnerType[];
|
|
1737
|
+
}>>;
|
|
1496
1738
|
};
|
|
1497
1739
|
|
|
1498
1740
|
interface PlacePrediction {
|
|
@@ -1688,4 +1930,4 @@ declare const availableRegionOptions: OptionItem[];
|
|
|
1688
1930
|
declare const paymentMethodOptions: OptionItem[];
|
|
1689
1931
|
declare function normalizeUrl(url: string): string;
|
|
1690
1932
|
|
|
1691
|
-
export { type AdFormData, type AdType, type AdminUpdateResourceType, type AssociateType, type
|
|
1933
|
+
export { type AdFormData, type AdType, type AdminUpdateResourceType, type AssociateType, type BaseResourceType, type BaseResourceTypeFormData, type Category, type ChatMessageInput, type ChatMessageType, type ChatType, type ContactUsFormData, type CreateAdFormData, type CreateBulkNotificationInput, type CreateContactUsFormData, type CreateEventFormData, type CreateEventInfoFormData, type CreateFormData, type CreateLoginFormData, type CreatePartnerFormData, type CreateRegisterFormData, type CreateRequestPasswordResetFormData, type CreateResetPasswordFormData, type CreateTesterFormData, type CreateUserFormData, type CreateValidateVerificationTokenFormData, type CreateVendorFormData, type CreateVendorInfoFormData, type DateTimeType, type DateTimeWithPriceType, type DeviceInfo, EnumActivity, EnumAdShowOn, EnumAdStatus, EnumAdStyle, EnumAdType, EnumChatType, EnumEventDateStatus, EnumEventType, EnumFoodFlavor, EnumFoodType, EnumInviteStatus, EnumNotificationResourceType, EnumNotificationType, EnumOSPlatform, EnumPartnerType, EnumPaymentMethod, EnumRegions, EnumRelationResource, EnumResourceType, EnumSocialMedia, EnumSubscriptionStatus, EnumUserLicence, EnumUserRole, EnumVendorType, type EventFormData, type EventInfoFormData, type EventInfoType, type EventType, type FormDateField, type FormField, type GeocodeLocation, type ImageObjectType, ImageTypeEnum, type LocationType, type LoginFormData, type MapMultiLocation, type NotificationCount, type NotificationDataType, type NotificationType, type Nullable, type OptionItem, type OwnerType, type ParticipantType, type PartnerFormData, type PartnerType, type PaymentInfoType, type PlacePrediction, type PosterInputType, type PosterUsageType, type Region, type RegisterFormData, type RelationDate, type RelationType, type RequestPasswordResetFormData, type Requirement, type ResetPasswordFormData, type ResourceActivityEntry, type ResourceActivityInputType, type ResourceActivityType, type ResourceConnectionsType, type ResourceContactDetailsType, type ResourceImageType, SAVED_EMAIL_KEY, SAVED_PASSWORD_KEY, SAVED_REFRESH_TOKEN_KEY, SAVED_TOKEN_KEY, type SocialMediaType, type StallType, type StripeSubscription, type Subcategory, type SubcategoryItems, type SubscriptionStatusData, type TermsAgreement, type TesterFormData, type TesterType, USER_STORAGE_KEY, type UserActivity, type UserActivityEvent, type UserFormData, type UserLicenceType, type UserType, type ValidateVerificationTokenFormData, type VendorAttributes, type VendorFormData, type VendorInfoFormData, type VendorInfoType, type VendorLocation, type VendorMenuType, type VendorType, availableCategories, availableRegionOptions, availableRegionTypes, availableTagTypes, capitalizeFirstLetter, categoryColors, companyContactFields, contactUsFields, darkColors, dateFormat, defaultEventFormValues, defaultEventInfoFormValues, defaultPartnerFormValues, defaultRegion, defaultVendorFormValues, defaultVendorInfoFormValues, emailField, eventBasicInfoFields, eventEndDateFields, eventInfo, eventInfoPaymentInfo, eventStartDateFields, fonts, foodFlavourOptions, formatDate, formatTimestamp, getCurrentAndFutureDates, globalDefaultValues, isFutureDatesBeforeThreshold, lightColors, loginFields, mapArrayToOptions, mapBaseResourceTypeToFormData, normalizeUrl, packagingOptions, partnerBasicInfoFields, paymentMethodOptions, producedIngOptions, productLabelGroups, profileFields, registerFields, removeTypename, requestPasswordResetFields, requirementsOptions, resetPasswordFields, socialMediaFields, sortDatesChronologically, stallTypeOptions, statusOptions, tagOptions, testersFields, timeFormat, truncateText, useAdForm, useAddParticipantToChat, useAddUserFavouriteResource, useAddUserGoingResource, useAddUserInterestResource, useAddUserPresentResource, useAdminUpdateResourceType, useCancelSubscription, useContactUs, useContactUsForm, useCreateAd, useCreateBulkNotifications, useCreateCheckoutSession, useCreateEvent, useCreateEventInfo, useCreatePartner, useCreatePoster, useCreatePushToken, useCreateRelation, useCreateResourceActivity, useCreateTester, useCreateUser, useCreateVendor, useCreateVendorInfo, useDeleteAd, useDeleteAllNotifications, useDeleteChat, useDeleteEvent, useDeleteNotification, useDeletePartner, useDeleteRelation, useDeleteTester, useDeleteUser, useDeleteVendor, useEventForm, useEventInfoForm, useGetAd, useGetAds, useGetAdsByRegion, useGetChat, useGetChatSubscription, useGetEvent, useGetEventInfo, useGetEventRelations, useGetEvents, useGetEventsByRegion, useGetEventsNearMe, useGetNotificationCount, useGetNotificationCountSubscription, useGetPartner, useGetPartners, useGetPartnersByRegion, useGetRelation, useGetRelationByEventAndVendor, useGetResourceActivities, useGetResourceConnections, useGetSubscriptionStatus, useGetTester, useGetTesters, useGetUser, useGetUserActivities, useGetUserChats, useGetUserEvents, useGetUserNotifications, useGetUserNotificationsSubscription, useGetUserVendors, useGetUsers, useGetVendor, useGetVendorInfo, useGetVendorRelations, useGetVendors, useGetVendorsByRegion, useLocationSearch, useLogin, useLoginForm, useLogout, useMarkAllNotificationsRead, useMarkNotificationRead, usePartnerForm, useRefreshToken, useRegister, useRegisterForm, useRemoveParticipantFromChat, useRemoveUserFavouriteResource, useRemoveUserGoingResource, useRemoveUserInterestResource, useRemoveUserPresentResource, useRequestPasswordReset, useRequestPasswordResetForm, useResetPassword, useResetPasswordForm, useSearchEvents, useSearchPartners, useSearchVendors, useSelectPackage, useSendChatMessage, useTesterForm, useUpdateAd, useUpdateEvent, useUpdateEventInfo, useUpdatePartner, useUpdateRelation, useUpdateSubscriptionPlan, useUpdateTester, useUpdateUser, useUpdateVendor, useUpdateVendorInfo, useUserForm, useValidateVerificationToken, useValidateVerificationTokenForm, useVendorForm, useVendorInfoForm, validateVerificationTokenFields, vendorAvailability, vendorBasicInfoFields, vendorCompliance, vendorElectricity, vendorEndDateFields, vendorFoodFlavour, vendorFullAddress, vendorGazebo, vendorLocationDescription, vendorMenuFields, vendorMultiLocation, vendorPackaging, vendorPriceRange, vendorProducedIn, vendorStallSize, vendorStartDateFields, vendorTable };
|