@timardex/cluemart-shared 1.7.26 → 1.7.29

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.
Files changed (57) hide show
  1. package/dist/{ad-xMotoDzt.d.ts → ad-CQrQILqt.d.ts} +2 -2
  2. package/dist/{ad-BNumAVY7.d.mts → ad-DaMV_FdN.d.mts} +2 -2
  3. package/dist/{coupon-CqCTYMW1.d.ts → affiliate-BjNe7vrz.d.ts} +3 -47
  4. package/dist/{coupon-O__x-VRW.d.mts → affiliate-CRzUWMPv.d.mts} +3 -47
  5. package/dist/auth/index.cjs +118 -26
  6. package/dist/auth/index.cjs.map +1 -1
  7. package/dist/auth/index.d.mts +3 -3
  8. package/dist/auth/index.d.ts +3 -3
  9. package/dist/auth/index.mjs +1 -1
  10. package/dist/{chunk-336EZBSA.mjs → chunk-2KVUR42L.mjs} +9 -85
  11. package/dist/chunk-2KVUR42L.mjs.map +1 -0
  12. package/dist/{chunk-4G4OFSBZ.mjs → chunk-PACEDU64.mjs} +11 -6
  13. package/dist/{chunk-4G4OFSBZ.mjs.map → chunk-PACEDU64.mjs.map} +1 -1
  14. package/dist/{chunk-WPBHYGXW.mjs → chunk-PFY3LS6P.mjs} +120 -26
  15. package/dist/chunk-PFY3LS6P.mjs.map +1 -0
  16. package/dist/{contactUs-BJiiMuGX.d.ts → contactUs-BCkSecPW.d.ts} +1 -1
  17. package/dist/{contactUs-5t9rb3U4.d.mts → contactUs-ryrB_j4c.d.mts} +1 -1
  18. package/dist/formFields/index.d.mts +1 -1
  19. package/dist/formFields/index.d.ts +1 -1
  20. package/dist/formFields/index.mjs +1 -1
  21. package/dist/{global-B6VyEshc.d.ts → global-CF8hwvkc.d.ts} +51 -1
  22. package/dist/{global-BKGlrm75.d.mts → global-Ch11tfC6.d.mts} +51 -1
  23. package/dist/graphql/index.cjs +499 -485
  24. package/dist/graphql/index.cjs.map +1 -1
  25. package/dist/graphql/index.d.mts +5 -5
  26. package/dist/graphql/index.d.ts +5 -5
  27. package/dist/graphql/index.mjs +2 -2
  28. package/dist/hooks/index.cjs +353 -339
  29. package/dist/hooks/index.cjs.map +1 -1
  30. package/dist/hooks/index.d.mts +8 -8
  31. package/dist/hooks/index.d.ts +8 -8
  32. package/dist/hooks/index.mjs +4 -4
  33. package/dist/hooks/index.mjs.map +1 -1
  34. package/dist/index.cjs +510 -491
  35. package/dist/index.cjs.map +1 -1
  36. package/dist/index.d.mts +53 -46
  37. package/dist/index.d.ts +53 -46
  38. package/dist/index.mjs +326 -307
  39. package/dist/index.mjs.map +1 -1
  40. package/dist/map/index.d.mts +1 -1
  41. package/dist/map/index.d.ts +1 -1
  42. package/dist/{resourceActivities-HkorPbJU.d.ts → resourceActivities-2SjrHpuU.d.ts} +1 -1
  43. package/dist/{resourceActivities-l4Q014eT.d.mts → resourceActivities-isol6rr_.d.mts} +1 -1
  44. package/dist/sharing/index.d.mts +1 -1
  45. package/dist/sharing/index.d.ts +1 -1
  46. package/dist/types/index.d.mts +7 -7
  47. package/dist/types/index.d.ts +7 -7
  48. package/dist/{user-Cg80mIww.d.ts → user-BdvV_3eW.d.ts} +2 -1
  49. package/dist/{user-go-eqanx.d.mts → user-CFVqH8Xk.d.mts} +2 -1
  50. package/dist/utils/index.cjs +11 -6
  51. package/dist/utils/index.cjs.map +1 -1
  52. package/dist/utils/index.d.mts +5 -5
  53. package/dist/utils/index.d.ts +5 -5
  54. package/dist/utils/index.mjs +3 -3
  55. package/package.json +1 -1
  56. package/dist/chunk-336EZBSA.mjs.map +0 -1
  57. package/dist/chunk-WPBHYGXW.mjs.map +0 -1
@@ -157,6 +157,7 @@ var USER_FIELDS_FRAGMENT = gql`
157
157
  avatar {
158
158
  ...ResourceImageFields
159
159
  }
160
+ coupon
160
161
  createdAt
161
162
  deletedAt
162
163
  email
@@ -714,8 +715,95 @@ var SEARCH_PARTNERS = gql4`
714
715
  `;
715
716
 
716
717
  // src/graphql/queries/vendor.ts
718
+ import { gql as gql6 } from "@apollo/client";
719
+
720
+ // src/graphql/queries/coupon.ts
717
721
  import { gql as gql5 } from "@apollo/client";
718
- var VENDOR_DATETIME_FIELDS_FRAGMENT = gql5`
722
+ var PRODUCT_COUPON_FIELDS_FRAGMENT = gql5`
723
+ fragment ProductCouponFields on ProductCouponType {
724
+ couponDocumentId
725
+ couponId
726
+ }
727
+ `;
728
+ var COUPON_CODE_FIELDS_FRAGMENT = gql5`
729
+ fragment CouponCodeFields on CouponCodeType {
730
+ code
731
+ qrCode {
732
+ ...ResourceImageFields
733
+ }
734
+ }
735
+ ${RESOURCE_IMAGE_FIELDS_FRAGMENT}
736
+ `;
737
+ var COUPON_PARTICIPANT_USER_FIELDS_FRAGMENT = gql5`
738
+ fragment CouponParticipantUserFields on CouponParticipantUserType {
739
+ couponCollectedCount
740
+ couponRedeemedAt
741
+ createdAt
742
+ updatedAt
743
+ userId
744
+ }
745
+ `;
746
+ var COUPON_DATA_FIELDS_FRAGMENT = gql5`
747
+ fragment CouponDataFields on CouponDataType {
748
+ _id
749
+ active
750
+ couponCode {
751
+ ...CouponCodeFields
752
+ }
753
+ couponDescription
754
+ couponOption
755
+ createdAt
756
+ endDate
757
+ participantProductId
758
+ participantUsers {
759
+ ...CouponParticipantUserFields
760
+ }
761
+ resourceId
762
+ resourceType
763
+ startDate
764
+ updatedAt
765
+ }
766
+ ${COUPON_CODE_FIELDS_FRAGMENT}
767
+ ${COUPON_PARTICIPANT_USER_FIELDS_FRAGMENT}
768
+ `;
769
+ var COUPON = gql5`
770
+ fragment CouponFields on CouponType {
771
+ _id
772
+ active
773
+ couponData {
774
+ ...CouponDataFields
775
+ }
776
+ createdAt
777
+ deletedAt
778
+ owner {
779
+ ...OwnerFields
780
+ }
781
+ updatedAt
782
+ }
783
+ ${OWNER_FIELDS_FRAGMENT}
784
+ ${COUPON_DATA_FIELDS_FRAGMENT}
785
+ ${COUPON_CODE_FIELDS_FRAGMENT}
786
+ ${COUPON_PARTICIPANT_USER_FIELDS_FRAGMENT}
787
+ `;
788
+ var GET_COUPONS = gql5`
789
+ query getCoupons {
790
+ coupons {
791
+ ...CouponFields
792
+ }
793
+ }
794
+ ${COUPON}
795
+ `;
796
+ var GET_COUPON = gql5`
797
+ query getCoupon($_id: ID!) {
798
+ coupon(_id: $_id) {
799
+ ...CouponFields
800
+ }
801
+ }
802
+ ${COUPON}
803
+ `;
804
+
805
+ // src/graphql/queries/vendor.ts
806
+ var VENDOR_DATETIME_FIELDS_FRAGMENT = gql6`
719
807
  fragment VendorDateTimeFields on VendorDateTimeType {
720
808
  dateStatus
721
809
  endDate
@@ -724,9 +812,12 @@ var VENDOR_DATETIME_FIELDS_FRAGMENT = gql5`
724
812
  startTime
725
813
  }
726
814
  `;
727
- var VENDOR_PRODUCT_LIST_FIELDS_FRAGMENT = gql5`
815
+ var VENDOR_PRODUCT_LIST_FIELDS_FRAGMENT = gql6`
728
816
  fragment VendorProductListFields on VendorProductListType {
729
817
  _id
818
+ coupon {
819
+ ...ProductCouponFields
820
+ }
730
821
  createdAt
731
822
  description
732
823
  name
@@ -735,8 +826,9 @@ var VENDOR_PRODUCT_LIST_FIELDS_FRAGMENT = gql5`
735
826
  productGroups
736
827
  updatedAt
737
828
  }
829
+ ${PRODUCT_COUPON_FIELDS_FRAGMENT}
738
830
  `;
739
- var VENDOR = gql5`
831
+ var VENDOR = gql6`
740
832
  fragment VendorFields on VendorType {
741
833
  _id
742
834
  active
@@ -837,13 +929,13 @@ var VENDOR = gql5`
837
929
  ${RELATED_POST_FIELDS_FRAGMENT}
838
930
  ${SOCIAL_SHARE_RESOURCE_FIELDS_FRAGMENT}
839
931
  `;
840
- var VENDOR_ATTRIBUTES_FRAGMENT = gql5`
932
+ var VENDOR_ATTRIBUTES_FRAGMENT = gql6`
841
933
  fragment VendorAttributesFields on VendorAttributesType {
842
934
  details
843
935
  isRequired
844
936
  }
845
937
  `;
846
- var VENDOR_INFO = gql5`
938
+ var VENDOR_INFO = gql6`
847
939
  fragment VendorInfoFields on VendorInfoType {
848
940
  _id
849
941
  compliance {
@@ -884,7 +976,7 @@ var VENDOR_INFO = gql5`
884
976
  ${VENDOR_ATTRIBUTES_FRAGMENT}
885
977
  ${RESOURCE_IMAGE_FIELDS_FRAGMENT}
886
978
  `;
887
- var UNREGISTERED_VENDOR_INVITATION_FRAGMENT = gql5`
979
+ var UNREGISTERED_VENDOR_INVITATION_FRAGMENT = gql6`
888
980
  fragment UnregisteredVendorInvitationFields on UnregisteredVendorInvitationType {
889
981
  dateTime {
890
982
  ...DateTimeFields
@@ -893,7 +985,7 @@ var UNREGISTERED_VENDOR_INVITATION_FRAGMENT = gql5`
893
985
  }
894
986
  ${DATETIME_FIELDS_FRAGMENT}
895
987
  `;
896
- var UNREGISTERED_VENDOR = gql5`
988
+ var UNREGISTERED_VENDOR = gql6`
897
989
  fragment UnregisteredVendorFields on UnregisteredVendorType {
898
990
  _id
899
991
  active
@@ -913,7 +1005,7 @@ var UNREGISTERED_VENDOR = gql5`
913
1005
  }
914
1006
  ${UNREGISTERED_VENDOR_INVITATION_FRAGMENT}
915
1007
  `;
916
- var GET_VENDORS = gql5`
1008
+ var GET_VENDORS = gql6`
917
1009
  query getVendors {
918
1010
  vendors {
919
1011
  ...VendorFields
@@ -921,7 +1013,7 @@ var GET_VENDORS = gql5`
921
1013
  }
922
1014
  ${VENDOR}
923
1015
  `;
924
- var GET_VENDOR = gql5`
1016
+ var GET_VENDOR = gql6`
925
1017
  query getVendor($_id: ID!) {
926
1018
  vendor(_id: $_id) {
927
1019
  ...VendorFields
@@ -929,7 +1021,7 @@ var GET_VENDOR = gql5`
929
1021
  }
930
1022
  ${VENDOR}
931
1023
  `;
932
- var GET_VENDORS_BY_REGION = gql5`
1024
+ var GET_VENDORS_BY_REGION = gql6`
933
1025
  query getVendorsByRegion(
934
1026
  $region: String!
935
1027
  $options: ResourcesByRegionOptions
@@ -940,7 +1032,7 @@ var GET_VENDORS_BY_REGION = gql5`
940
1032
  }
941
1033
  ${VENDOR}
942
1034
  `;
943
- var SEARCH_VENDORS = gql5`
1035
+ var SEARCH_VENDORS = gql6`
944
1036
  query searchVendors($search: String!, $region: String!) {
945
1037
  vendorSearch(search: $search, region: $region) {
946
1038
  ...VendorFields
@@ -948,7 +1040,7 @@ var SEARCH_VENDORS = gql5`
948
1040
  }
949
1041
  ${VENDOR}
950
1042
  `;
951
- var GET_VENDOR_INFO = gql5`
1043
+ var GET_VENDOR_INFO = gql6`
952
1044
  query getVendorInfo($vendorId: ID!) {
953
1045
  vendorInfo(vendorId: $vendorId) {
954
1046
  ...VendorInfoFields
@@ -956,7 +1048,7 @@ var GET_VENDOR_INFO = gql5`
956
1048
  }
957
1049
  ${VENDOR_INFO}
958
1050
  `;
959
- var GET_UNREGISTERED_VENDORS = gql5`
1051
+ var GET_UNREGISTERED_VENDORS = gql6`
960
1052
  query getUnregisteredVendors {
961
1053
  unregisteredVendors {
962
1054
  ...UnregisteredVendorFields
@@ -964,7 +1056,7 @@ var GET_UNREGISTERED_VENDORS = gql5`
964
1056
  }
965
1057
  ${UNREGISTERED_VENDOR}
966
1058
  `;
967
- var GET_UNREGISTERED_VENDORS_BY_INVITER_ID = gql5`
1059
+ var GET_UNREGISTERED_VENDORS_BY_INVITER_ID = gql6`
968
1060
  query getUnregisteredVendorsByInviterId($inviterId: ID!) {
969
1061
  unregisteredVendorsByInviterId(inviterId: $inviterId) {
970
1062
  ...UnregisteredVendorFields
@@ -972,7 +1064,7 @@ var GET_UNREGISTERED_VENDORS_BY_INVITER_ID = gql5`
972
1064
  }
973
1065
  ${UNREGISTERED_VENDOR}
974
1066
  `;
975
- var GET_UNREGISTERED_VENDOR = gql5`
1067
+ var GET_UNREGISTERED_VENDOR = gql6`
976
1068
  query getUnregisteredVendor($_id: ID!) {
977
1069
  unregisteredVendor(_id: $_id) {
978
1070
  ...UnregisteredVendorFields
@@ -980,7 +1072,7 @@ var GET_UNREGISTERED_VENDOR = gql5`
980
1072
  }
981
1073
  ${UNREGISTERED_VENDOR}
982
1074
  `;
983
- var MY_PENDING_VENDOR_CLAIM = gql5`
1075
+ var MY_PENDING_VENDOR_CLAIM = gql6`
984
1076
  query myPendingVendorClaim {
985
1077
  myPendingVendorClaim {
986
1078
  _id
@@ -994,8 +1086,8 @@ var MY_PENDING_VENDOR_CLAIM = gql5`
994
1086
  import { useQuery } from "@apollo/client";
995
1087
 
996
1088
  // src/graphql/queries/user.ts
997
- import { gql as gql6 } from "@apollo/client";
998
- var GET_USERS = gql6`
1089
+ import { gql as gql7 } from "@apollo/client";
1090
+ var GET_USERS = gql7`
999
1091
  query getUsers {
1000
1092
  users {
1001
1093
  ...UserFields
@@ -1003,7 +1095,7 @@ var GET_USERS = gql6`
1003
1095
  }
1004
1096
  ${USER_FIELDS_FRAGMENT}
1005
1097
  `;
1006
- var GET_USER = gql6`
1098
+ var GET_USER = gql7`
1007
1099
  query getUser($_id: ID!) {
1008
1100
  user(_id: $_id) {
1009
1101
  ...UserFields
@@ -1011,7 +1103,7 @@ var GET_USER = gql6`
1011
1103
  }
1012
1104
  ${USER_FIELDS_FRAGMENT}
1013
1105
  `;
1014
- var GET_USER_EVENTS = gql6`
1106
+ var GET_USER_EVENTS = gql7`
1015
1107
  query getUserEvents {
1016
1108
  userEvents {
1017
1109
  ...EventFields
@@ -1019,7 +1111,7 @@ var GET_USER_EVENTS = gql6`
1019
1111
  }
1020
1112
  ${EVENT}
1021
1113
  `;
1022
- var GET_USER_VENDORS = gql6`
1114
+ var GET_USER_VENDORS = gql7`
1023
1115
  query getUserVendors {
1024
1116
  userVendors {
1025
1117
  ...VendorFields
@@ -1027,7 +1119,7 @@ var GET_USER_VENDORS = gql6`
1027
1119
  }
1028
1120
  ${VENDOR}
1029
1121
  `;
1030
- var GET_USER_PARTNERS = gql6`
1122
+ var GET_USER_PARTNERS = gql7`
1031
1123
  query getUserPartners {
1032
1124
  userPartners {
1033
1125
  ...PartnerFields
@@ -1035,7 +1127,7 @@ var GET_USER_PARTNERS = gql6`
1035
1127
  }
1036
1128
  ${PARTNER}
1037
1129
  `;
1038
- var GET_USER_ACTIVITIES = gql6`
1130
+ var GET_USER_ACTIVITIES = gql7`
1039
1131
  query getUserActivities {
1040
1132
  userActivities {
1041
1133
  favourites {
@@ -1070,7 +1162,7 @@ var GET_USER_ACTIVITIES = gql6`
1070
1162
  ${VENDOR}
1071
1163
  ${PARTNER}
1072
1164
  `;
1073
- var GET_USER_RESOURCES = gql6`
1165
+ var GET_USER_RESOURCES = gql7`
1074
1166
  query getUserResources($userId: ID!) {
1075
1167
  userResources(userId: $userId) {
1076
1168
  resources {
@@ -1194,7 +1286,9 @@ export {
1194
1286
  GET_PARTNER,
1195
1287
  GET_PARTNERS_BY_REGION,
1196
1288
  SEARCH_PARTNERS,
1197
- VENDOR_PRODUCT_LIST_FIELDS_FRAGMENT,
1289
+ COUPON,
1290
+ GET_COUPONS,
1291
+ GET_COUPON,
1198
1292
  VENDOR,
1199
1293
  VENDOR_INFO,
1200
1294
  UNREGISTERED_VENDOR,
@@ -1220,4 +1314,4 @@ export {
1220
1314
  useGetUserActivities,
1221
1315
  useGetUserResources
1222
1316
  };
1223
- //# sourceMappingURL=chunk-WPBHYGXW.mjs.map
1317
+ //# sourceMappingURL=chunk-PFY3LS6P.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/graphql/hooks/auth.ts","../src/graphql/mutations/auth.ts","../src/graphql/queries/global.ts","../src/graphql/queries/event.ts","../src/graphql/queries/partner.ts","../src/graphql/queries/vendor.ts","../src/graphql/queries/coupon.ts","../src/graphql/hooks/user/hooksQuery.ts","../src/graphql/queries/user.ts"],"sourcesContent":["import { useMutation } from \"@apollo/client\";\n\nimport {\n AuthMutationResponse,\n RefreshTokenMutationResponse,\n} from \"src/types/auth\";\nimport { MutationResponse } from \"src/types/global\";\n\nimport {\n LOGIN_MUTATION,\n LOGOUT_MUTATION,\n REFRESH_TOKEN_MUTATION,\n REGISTER_MUTATION,\n REQUEST_PASSWORD_RESET_MUTATION,\n RESET_PASSWORD_MUTATION,\n VALIDATE_VERIFICATION_TOKEN_MUTATION,\n} from \"../mutations/auth\";\n\ntype MessageOnlyResponse = MutationResponse<boolean>;\n\nexport const useRegister = () => {\n const [register, { loading, error }] = useMutation<{\n register: AuthMutationResponse;\n }>(REGISTER_MUTATION);\n return { error, loading, register };\n};\n\nexport const useLogin = () => {\n const [login, { loading, error }] = useMutation<{\n login: AuthMutationResponse;\n }>(LOGIN_MUTATION);\n return { error, loading, login };\n};\n\nexport const useLogout = () => {\n const [logout, { loading, error }] = useMutation<{\n logout: MessageOnlyResponse;\n }>(LOGOUT_MUTATION);\n return { error, loading, logout };\n};\n\nexport const useRefreshToken = () => {\n const [refreshToken, { loading, error }] = useMutation<{\n refreshToken: RefreshTokenMutationResponse;\n }>(REFRESH_TOKEN_MUTATION);\n return { error, loading, refreshToken };\n};\n\nexport const useRequestPasswordReset = () => {\n const [requestPasswordReset, { loading, error }] = useMutation<{\n requestPasswordReset: MessageOnlyResponse;\n }>(REQUEST_PASSWORD_RESET_MUTATION);\n\n return { error, loading, requestPasswordReset };\n};\n\nexport const useValidateVerificationToken = () => {\n const [validateVerificationToken, { loading, error }] = useMutation<{\n validateVerificationToken: MessageOnlyResponse;\n }>(VALIDATE_VERIFICATION_TOKEN_MUTATION);\n\n return { error, loading, validateVerificationToken };\n};\n\nexport const useResetPassword = () => {\n const [resetPassword, { loading, error }] = useMutation<{\n resetPassword: MessageOnlyResponse;\n }>(RESET_PASSWORD_MUTATION);\n\n return { error, loading, resetPassword };\n};\n","import { gql } from \"@apollo/client\";\n\nimport { USER_FIELDS_FRAGMENT } from \"../queries/global\";\n\nexport const REGISTER_MUTATION = gql`\n mutation register($input: RegisterInputType!) {\n register(input: $input) {\n data {\n refreshToken\n token\n user {\n ...UserFields\n }\n }\n message\n }\n }\n ${USER_FIELDS_FRAGMENT}\n`;\n\nexport const LOGIN_MUTATION = gql`\n mutation login($input: LoginInputType!) {\n login(input: $input) {\n data {\n refreshToken\n token\n user {\n ...UserFields\n }\n }\n message\n }\n }\n ${USER_FIELDS_FRAGMENT}\n`;\n\nexport const LOGOUT_MUTATION = gql`\n mutation logout {\n logout {\n data\n message\n }\n }\n`;\n\nexport const REFRESH_TOKEN_MUTATION = gql`\n mutation refreshToken($input: RefreshTokenInputType!) {\n refreshToken(input: $input) {\n data {\n refreshToken\n token\n }\n message\n }\n }\n`;\n\nexport const RESET_PASSWORD_MUTATION = gql`\n mutation resetPassword($input: ResetPasswordInputType!) {\n resetPassword(input: $input) {\n data\n message\n }\n }\n`;\n\nexport const REQUEST_PASSWORD_RESET_MUTATION = gql`\n mutation requestPasswordReset($input: RequestPasswordResetInputType!) {\n requestPasswordReset(input: $input) {\n data\n message\n }\n }\n`;\n\nexport const VALIDATE_VERIFICATION_TOKEN_MUTATION = gql`\n mutation validateVerificationToken(\n $input: ValidateVerificationTokenInputType!\n ) {\n validateVerificationToken(input: $input) {\n data\n message\n }\n }\n`;\n","import { gql } from \"@apollo/client\";\n\nexport const POSTER_USAGE_FIELDS_FRAGMENT = gql`\n fragment PosterUsageFields on PosterUsageType {\n month\n count\n }\n`;\n\nexport const SOCIAL_MEDIA_FIELDS_FRAGMENT = gql`\n fragment SocialMediaFields on SocialMediaType {\n name\n link\n }\n`;\n\nexport const RESOURCE_IMAGE_FIELDS_FRAGMENT = gql`\n fragment ResourceImageFields on ResourceImageType {\n active\n source\n title\n }\n`;\n\nexport const OWNER_FIELDS_FRAGMENT = gql`\n fragment OwnerFields on OwnerType {\n email\n userId\n }\n`;\n\nexport const CATEGORY_FIELDS_FRAGMENT = gql`\n fragment CategoryFields on CategoryType {\n id\n name\n subcategories {\n id\n items {\n id\n name\n }\n name\n }\n }\n`;\n\nexport const LICENCE_FIELDS_FRAGMENT = gql`\n fragment LicenceFields on UserLicenceType {\n expiryDate\n issuedDate\n licenceType\n prevLicenceType\n }\n`;\n\nexport const TERMS_AGREEMENT_FIELDS_FRAGMENT = gql`\n fragment TermsAgreementFields on TermsAgreementType {\n appBuildNumber\n appId\n appVersion\n brand\n deviceName\n installationId\n manufacturer\n modelName\n osName\n osVersion\n termVersion\n timestamp\n }\n`;\n\nexport const DATETIME_FIELDS_FRAGMENT = gql`\n fragment DateTimeFields on DateTimeType {\n dateStatus\n endDate\n endTime\n startDate\n startTime\n }\n`;\n\nexport const LOCATION_GEO_FIELDS_FRAGMENT = gql`\n fragment LocationGeoFields on LocationGeoType {\n coordinates\n type\n }\n`;\n\nexport const LOCATION_FIELDS_FRAGMENT = gql`\n fragment LocationFields on LocationType {\n city\n country\n fullAddress\n geo {\n ...LocationGeoFields\n }\n latitude\n longitude\n region\n }\n ${LOCATION_GEO_FIELDS_FRAGMENT}\n`;\n\nconst USER_ACTIVITY_FIELDS_FRAGMENT = gql`\n fragment UserActivityFields on UserActivityType {\n favourites {\n events\n partners\n vendors\n }\n going {\n events {\n resourceId\n dateTime {\n ...DateTimeFields\n }\n }\n }\n interested {\n events {\n resourceId\n dateTime {\n ...DateTimeFields\n }\n }\n }\n present {\n events {\n resourceId\n dateTime {\n ...DateTimeFields\n }\n }\n }\n }\n ${DATETIME_FIELDS_FRAGMENT}\n`;\n\nexport const REDEEMED_REWARD_FIELDS_FRAGMENT = gql`\n fragment RedeemedRewardFields on RedeemedRewardType {\n name\n pointsUsed\n redeemedAt\n }\n`;\n\nconst STRIPE_FIELDS_FRAGMENT = gql`\n fragment StripeSubscriptionFields on StripeSubscriptionType {\n customerId\n subscriptionId\n status\n currentPlan\n startDate\n endDate\n }\n`;\n\nexport const USER_FIELDS_FRAGMENT = gql`\n fragment UserFields on UserType {\n _id\n active\n affiliate\n avatar {\n ...ResourceImageFields\n }\n coupon\n createdAt\n deletedAt\n email\n events\n firstName\n game\n isTester\n lastName\n licences {\n ...LicenceFields\n }\n location {\n ...LocationFields\n }\n partner\n overallPoints\n platform\n preferredRegion\n permissions\n promoCodes\n roles\n redeemedRewards {\n ...RedeemedRewardFields\n }\n school\n stripe {\n ...StripeSubscriptionFields\n }\n termsAgreement {\n ...TermsAgreementFields\n }\n userActivity {\n ...UserActivityFields\n }\n vendor\n updatedAt\n }\n ${RESOURCE_IMAGE_FIELDS_FRAGMENT}\n ${TERMS_AGREEMENT_FIELDS_FRAGMENT}\n ${USER_ACTIVITY_FIELDS_FRAGMENT}\n ${LICENCE_FIELDS_FRAGMENT}\n ${LOCATION_FIELDS_FRAGMENT}\n ${REDEEMED_REWARD_FIELDS_FRAGMENT}\n ${STRIPE_FIELDS_FRAGMENT}\n`;\n\nexport const STALL_TYPE_FIELDS_FRAGMENT = gql`\n fragment StallTypeFields on StallTypeType {\n label\n price\n stallCapacity\n }\n`;\n\nexport const RELATION_DATES_FRAGMENT = gql`\n fragment RelationDates on RelationDateType {\n dateTime {\n dateStatus\n endDate\n endTime\n startDate\n startTime\n stallType {\n ...StallTypeFields\n }\n }\n lastUpdateBy {\n resourceId\n userEmail\n }\n paymentReference\n status\n }\n ${STALL_TYPE_FIELDS_FRAGMENT}\n`;\n\nexport const CONTACT_DETAILS_FIELDS_FRAGMENT = gql`\n fragment ContactDetailsFields on ContactDetailsType {\n email\n landlinePhone\n mobilePhone\n }\n`;\n\nexport const EVENT_LIST_ITEM = gql`\n fragment EventListItemFields on EventListItemType {\n _id\n active\n approvedAt\n claimed\n cover {\n ...ResourceImageFields\n }\n createdAt\n dateTime {\n ...DateTimeFields\n }\n deletedAt\n description\n eventType\n googlePlaceId\n images {\n ...ResourceImageFields\n }\n location {\n ...LocationFields\n }\n logo {\n ...ResourceImageFields\n }\n name\n rainOrShine\n rating\n region\n relations {\n relationId\n relationDates {\n ...RelationDates\n }\n }\n reviewCount\n slug\n updatedAt\n }\n ${DATETIME_FIELDS_FRAGMENT}\n ${LOCATION_FIELDS_FRAGMENT}\n ${RESOURCE_IMAGE_FIELDS_FRAGMENT}\n ${RELATION_DATES_FRAGMENT}\n`;\n\nexport const RELATED_POST_FIELDS_FRAGMENT = gql`\n fragment RelatedPostFields on RelatedPostType {\n postActive\n postId\n postSlug\n postType\n }\n`;\n\nexport const SOCIAL_SHARE_RESOURCE_FIELDS_FRAGMENT = gql`\n fragment SocialShareResourceFields on SocialShareResourceType {\n qrCode {\n ...ResourceImageFields\n }\n socialImage {\n ...ResourceImageFields\n }\n }\n ${RESOURCE_IMAGE_FIELDS_FRAGMENT}\n`;\n","import { gql } from \"@apollo/client\";\n\nimport {\n CONTACT_DETAILS_FIELDS_FRAGMENT,\n DATETIME_FIELDS_FRAGMENT,\n OWNER_FIELDS_FRAGMENT,\n POSTER_USAGE_FIELDS_FRAGMENT,\n RELATION_DATES_FRAGMENT,\n RESOURCE_IMAGE_FIELDS_FRAGMENT,\n SOCIAL_MEDIA_FIELDS_FRAGMENT,\n STALL_TYPE_FIELDS_FRAGMENT,\n TERMS_AGREEMENT_FIELDS_FRAGMENT,\n LOCATION_FIELDS_FRAGMENT,\n EVENT_LIST_ITEM,\n RELATED_POST_FIELDS_FRAGMENT,\n SOCIAL_SHARE_RESOURCE_FIELDS_FRAGMENT,\n} from \"./global\";\n\nexport const EVENT_INFO = gql`\n fragment EventInfoFields on EventInfoType {\n _id\n applicationDeadlineHours\n dateTime {\n dateStatus\n endDate\n endTime\n stallTypes {\n ...StallTypeFields\n }\n startDate\n startTime\n }\n eventId\n packInTime\n paymentDueHours\n paymentInfo {\n accountHolderName\n accountNumber\n link\n paymentMethod\n }\n refundPolicy {\n category\n label\n value\n }\n requirements {\n category\n label\n value\n }\n }\n ${STALL_TYPE_FIELDS_FRAGMENT}\n`;\n\nexport const EVENT = gql`\n fragment EventFields on EventType {\n _id\n active\n adIds\n approvedAt\n cover {\n ...ResourceImageFields\n }\n claimed\n createdAt\n contactDetails {\n ...ContactDetailsFields\n }\n dateTime {\n ...DateTimeFields\n }\n description\n deletedAt\n googlePlaceId\n images {\n ...ResourceImageFields\n }\n eventType\n location {\n ...LocationFields\n }\n logo {\n ...ResourceImageFields\n }\n eventInfoId\n name\n nzbn\n owner {\n ...OwnerFields\n }\n promoCodes\n provider\n posterUsage {\n ...PosterUsageFields\n }\n region\n relations {\n relationId\n relationDates {\n ...RelationDates\n }\n }\n rating\n reviewCount\n rainOrShine\n relatedPost {\n ...RelatedPostFields\n }\n socialMedia {\n ...SocialMediaFields\n }\n sharePublic {\n ...SocialShareResourceFields\n }\n shareRelation {\n ...SocialShareResourceFields\n }\n slug\n tags\n termsAgreement {\n ...TermsAgreementFields\n }\n updatedAt\n }\n ${DATETIME_FIELDS_FRAGMENT}\n ${LOCATION_FIELDS_FRAGMENT}\n ${OWNER_FIELDS_FRAGMENT}\n ${RESOURCE_IMAGE_FIELDS_FRAGMENT}\n ${SOCIAL_MEDIA_FIELDS_FRAGMENT}\n ${POSTER_USAGE_FIELDS_FRAGMENT}\n ${CONTACT_DETAILS_FIELDS_FRAGMENT}\n ${TERMS_AGREEMENT_FIELDS_FRAGMENT}\n ${RELATION_DATES_FRAGMENT}\n ${RELATED_POST_FIELDS_FRAGMENT}\n ${SOCIAL_SHARE_RESOURCE_FIELDS_FRAGMENT}\n`;\n\nexport const GET_EVENTS = gql`\n query getEvents($dateStatus: EventDateStatusEnumType) {\n events(dateStatus: $dateStatus) {\n ...EventListItemFields\n }\n }\n ${EVENT_LIST_ITEM}\n`;\n\nexport const GET_EVENT = gql`\n query getEvent($_id: ID!) {\n event(_id: $_id) {\n ...EventFields\n }\n }\n ${EVENT}\n`;\n\nexport const GET_EVENT_BY_PLACE_ID = gql`\n query getEventByPlaceId($googlePlaceId: String!) {\n eventByPlaceId(googlePlaceId: $googlePlaceId) {\n ...EventListItemFields\n }\n }\n ${EVENT_LIST_ITEM}\n`;\n\nexport const GET_EVENTS_BY_REGION = gql`\n query getEventsByRegion(\n $region: String!\n $options: ResourcesByRegionOptions\n $dateStatus: EventDateStatusEnumType\n ) {\n eventsByRegion(\n region: $region\n options: $options\n dateStatus: $dateStatus\n ) {\n ...EventListItemFields\n }\n }\n ${EVENT_LIST_ITEM}\n`;\n\nexport const SEARCH_EVENTS = gql`\n query searchEvents(\n $region: String!\n $search: String\n $tags: [String]\n $dateStatus: EventDateStatusEnumType\n ) {\n eventsSearch(\n region: $region\n search: $search\n tags: $tags\n dateStatus: $dateStatus\n ) {\n ...EventListItemFields\n }\n }\n ${EVENT_LIST_ITEM}\n`;\n\nexport const GET_EVENTS_NEAR_ME = gql`\n query getEventsNearMe(\n $latitude: Float!\n $longitude: Float!\n $radius: Int\n $dateStatus: EventDateStatusEnumType\n ) {\n eventsNearMe(\n latitude: $latitude\n longitude: $longitude\n radius: $radius\n dateStatus: $dateStatus\n ) {\n ...EventListItemFields\n }\n }\n ${EVENT_LIST_ITEM}\n`;\n\nexport const GET_EVENT_INFO = gql`\n query getEventInfo($eventId: ID!) {\n eventInfo(eventId: $eventId) {\n ...EventInfoFields\n }\n }\n ${EVENT_INFO}\n`;\n","import { gql } from \"@apollo/client\";\n\nimport {\n CONTACT_DETAILS_FIELDS_FRAGMENT,\n LOCATION_FIELDS_FRAGMENT,\n OWNER_FIELDS_FRAGMENT,\n POSTER_USAGE_FIELDS_FRAGMENT,\n RELATED_POST_FIELDS_FRAGMENT,\n RESOURCE_IMAGE_FIELDS_FRAGMENT,\n SOCIAL_MEDIA_FIELDS_FRAGMENT,\n SOCIAL_SHARE_RESOURCE_FIELDS_FRAGMENT,\n TERMS_AGREEMENT_FIELDS_FRAGMENT,\n} from \"./global\";\n\nexport const PARTNER = gql`\n fragment PartnerFields on PartnerType {\n _id\n active\n adIds\n approvedAt\n cover {\n ...ResourceImageFields\n }\n createdAt\n contactDetails {\n ...ContactDetailsFields\n }\n description\n deletedAt\n images {\n ...ResourceImageFields\n }\n location {\n ...LocationFields\n }\n logo {\n ...ResourceImageFields\n }\n name\n nzbn\n owner {\n ...OwnerFields\n }\n partnerType\n posterUsage {\n ...PosterUsageFields\n }\n rating\n region\n reviewCount\n relatedPost {\n ...RelatedPostFields\n }\n socialMedia {\n ...SocialMediaFields\n }\n slug\n sharePublic {\n ...SocialShareResourceFields\n }\n termsAgreement {\n ...TermsAgreementFields\n }\n updatedAt\n }\n ${TERMS_AGREEMENT_FIELDS_FRAGMENT}\n ${LOCATION_FIELDS_FRAGMENT}\n ${OWNER_FIELDS_FRAGMENT}\n ${RESOURCE_IMAGE_FIELDS_FRAGMENT}\n ${POSTER_USAGE_FIELDS_FRAGMENT}\n ${SOCIAL_MEDIA_FIELDS_FRAGMENT}\n ${CONTACT_DETAILS_FIELDS_FRAGMENT}\n ${RELATED_POST_FIELDS_FRAGMENT}\n ${SOCIAL_SHARE_RESOURCE_FIELDS_FRAGMENT}\n`;\n\nexport const GET_PARTNERS = gql`\n query getPartners {\n partners {\n ...PartnerFields\n }\n }\n ${PARTNER}\n`;\n\nexport const GET_PARTNER = gql`\n query getPartner($_id: ID!) {\n partner(_id: $_id) {\n ...PartnerFields\n }\n }\n ${PARTNER}\n`;\n\nexport const GET_PARTNERS_BY_REGION = gql`\n query getPartnersByRegion(\n $region: String!\n $options: ResourcesByRegionOptions\n ) {\n partnersByRegion(region: $region, options: $options) {\n ...PartnerFields\n }\n }\n ${PARTNER}\n`;\n\nexport const SEARCH_PARTNERS = gql`\n query searchPartners($search: String!, $region: String!) {\n partnersSearch(search: $search, region: $region) {\n ...PartnerFields\n }\n }\n ${PARTNER}\n`;\n","import { gql } from \"@apollo/client\";\n\nimport { PRODUCT_COUPON_FIELDS_FRAGMENT } from \"./coupon\";\nimport {\n OWNER_FIELDS_FRAGMENT,\n CATEGORY_FIELDS_FRAGMENT,\n RESOURCE_IMAGE_FIELDS_FRAGMENT,\n SOCIAL_MEDIA_FIELDS_FRAGMENT,\n POSTER_USAGE_FIELDS_FRAGMENT,\n CONTACT_DETAILS_FIELDS_FRAGMENT,\n TERMS_AGREEMENT_FIELDS_FRAGMENT,\n RELATION_DATES_FRAGMENT,\n DATETIME_FIELDS_FRAGMENT,\n LOCATION_FIELDS_FRAGMENT,\n RELATED_POST_FIELDS_FRAGMENT,\n SOCIAL_SHARE_RESOURCE_FIELDS_FRAGMENT,\n} from \"./global\";\n\nconst VENDOR_DATETIME_FIELDS_FRAGMENT = gql`\n fragment VendorDateTimeFields on VendorDateTimeType {\n dateStatus\n endDate\n endTime\n startDate\n startTime\n }\n`;\n\nexport const VENDOR_PRODUCT_LIST_FIELDS_FRAGMENT = gql`\n fragment VendorProductListFields on VendorProductListType {\n _id\n coupon {\n ...ProductCouponFields\n }\n createdAt\n description\n name\n price\n priceUnit\n productGroups\n updatedAt\n }\n ${PRODUCT_COUPON_FIELDS_FRAGMENT}\n`;\n\nexport const VENDOR = gql`\n fragment VendorFields on VendorType {\n _id\n active\n adIds\n approvedAt\n availability {\n corporate\n private\n school\n }\n vendorInfoId\n categories {\n ...CategoryFields\n }\n calendar {\n active\n calendarData {\n dateTime {\n ...VendorDateTimeFields\n }\n description\n location {\n ...LocationFields\n }\n }\n }\n contactDetails {\n ...ContactDetailsFields\n }\n cover {\n ...ResourceImageFields\n }\n createdAt\n claimed\n description\n deletedAt\n foodTruck\n images {\n ...ResourceImageFields\n }\n logo {\n ...ResourceImageFields\n }\n name\n owner {\n ...OwnerFields\n }\n products {\n active\n productsList {\n ...VendorProductListFields\n }\n }\n promoCodes\n posterUsage {\n ...PosterUsageFields\n }\n rating\n region\n reviewCount\n relatedPost {\n ...RelatedPostFields\n }\n relations {\n relationId\n relationDates {\n ...RelationDates\n }\n }\n slug\n socialMedia {\n ...SocialMediaFields\n }\n sharePublic {\n ...SocialShareResourceFields\n }\n shareRelation {\n ...SocialShareResourceFields\n }\n termsAgreement {\n ...TermsAgreementFields\n }\n updatedAt\n vendorType\n unregisteredVendorId\n }\n ${CATEGORY_FIELDS_FRAGMENT}\n ${VENDOR_DATETIME_FIELDS_FRAGMENT}\n ${LOCATION_FIELDS_FRAGMENT}\n ${OWNER_FIELDS_FRAGMENT}\n ${RESOURCE_IMAGE_FIELDS_FRAGMENT}\n ${SOCIAL_MEDIA_FIELDS_FRAGMENT}\n ${POSTER_USAGE_FIELDS_FRAGMENT}\n ${VENDOR_PRODUCT_LIST_FIELDS_FRAGMENT}\n ${CONTACT_DETAILS_FIELDS_FRAGMENT}\n ${TERMS_AGREEMENT_FIELDS_FRAGMENT}\n ${RELATION_DATES_FRAGMENT}\n ${RELATED_POST_FIELDS_FRAGMENT}\n ${SOCIAL_SHARE_RESOURCE_FIELDS_FRAGMENT}\n`;\n\nconst VENDOR_ATTRIBUTES_FRAGMENT = gql`\n fragment VendorAttributesFields on VendorAttributesType {\n details\n isRequired\n }\n`;\n\nexport const VENDOR_INFO = gql`\n fragment VendorInfoFields on VendorInfoType {\n _id\n compliance {\n foodBeverageLicense\n liabilityInsurance\n }\n documents {\n ...ResourceImageFields\n }\n requirements {\n electricity {\n ...VendorAttributesFields\n }\n gazebo {\n ...VendorAttributesFields\n }\n table {\n ...VendorAttributesFields\n }\n }\n product {\n foodFlavors\n packaging\n priceRange {\n max\n min\n }\n producedIn\n }\n stallInfo {\n size {\n depth\n width\n }\n }\n vendorId\n }\n ${VENDOR_ATTRIBUTES_FRAGMENT}\n ${RESOURCE_IMAGE_FIELDS_FRAGMENT}\n`;\n\nconst UNREGISTERED_VENDOR_INVITATION_FRAGMENT = gql`\n fragment UnregisteredVendorInvitationFields on UnregisteredVendorInvitationType {\n dateTime {\n ...DateTimeFields\n }\n inviterId\n }\n ${DATETIME_FIELDS_FRAGMENT}\n`;\n\nexport const UNREGISTERED_VENDOR = gql`\n fragment UnregisteredVendorFields on UnregisteredVendorType {\n _id\n active\n categoryIds\n claimed\n claimedAt\n claimedByUserId\n createdAt\n deletedAt\n email\n invitations {\n ...UnregisteredVendorInvitationFields\n }\n name\n region\n updatedAt\n }\n ${UNREGISTERED_VENDOR_INVITATION_FRAGMENT}\n`;\n\nexport const GET_VENDORS = gql`\n query getVendors {\n vendors {\n ...VendorFields\n }\n }\n ${VENDOR}\n`;\n\nexport const GET_VENDOR = gql`\n query getVendor($_id: ID!) {\n vendor(_id: $_id) {\n ...VendorFields\n }\n }\n ${VENDOR}\n`;\n\nexport const GET_VENDORS_BY_REGION = gql`\n query getVendorsByRegion(\n $region: String!\n $options: ResourcesByRegionOptions\n ) {\n vendorsByRegion(region: $region, options: $options) {\n ...VendorFields\n }\n }\n ${VENDOR}\n`;\n\nexport const SEARCH_VENDORS = gql`\n query searchVendors($search: String!, $region: String!) {\n vendorSearch(search: $search, region: $region) {\n ...VendorFields\n }\n }\n ${VENDOR}\n`;\n\nexport const GET_VENDOR_INFO = gql`\n query getVendorInfo($vendorId: ID!) {\n vendorInfo(vendorId: $vendorId) {\n ...VendorInfoFields\n }\n }\n ${VENDOR_INFO}\n`;\n\nexport const GET_UNREGISTERED_VENDORS = gql`\n query getUnregisteredVendors {\n unregisteredVendors {\n ...UnregisteredVendorFields\n }\n }\n ${UNREGISTERED_VENDOR}\n`;\n\nexport const GET_UNREGISTERED_VENDORS_BY_INVITER_ID = gql`\n query getUnregisteredVendorsByInviterId($inviterId: ID!) {\n unregisteredVendorsByInviterId(inviterId: $inviterId) {\n ...UnregisteredVendorFields\n }\n }\n ${UNREGISTERED_VENDOR}\n`;\n\nexport const GET_UNREGISTERED_VENDOR = gql`\n query getUnregisteredVendor($_id: ID!) {\n unregisteredVendor(_id: $_id) {\n ...UnregisteredVendorFields\n }\n }\n ${UNREGISTERED_VENDOR}\n`;\n\nexport const MY_PENDING_VENDOR_CLAIM = gql`\n query myPendingVendorClaim {\n myPendingVendorClaim {\n _id\n name\n region\n }\n }\n`;\n","import { gql } from \"@apollo/client\";\n\nimport {\n OWNER_FIELDS_FRAGMENT,\n RESOURCE_IMAGE_FIELDS_FRAGMENT,\n} from \"./global\";\n\nexport const PRODUCT_COUPON_FIELDS_FRAGMENT = gql`\n fragment ProductCouponFields on ProductCouponType {\n couponDocumentId\n couponId\n }\n`;\n\nconst COUPON_CODE_FIELDS_FRAGMENT = gql`\n fragment CouponCodeFields on CouponCodeType {\n code\n qrCode {\n ...ResourceImageFields\n }\n }\n ${RESOURCE_IMAGE_FIELDS_FRAGMENT}\n`;\n\nconst COUPON_PARTICIPANT_USER_FIELDS_FRAGMENT = gql`\n fragment CouponParticipantUserFields on CouponParticipantUserType {\n couponCollectedCount\n couponRedeemedAt\n createdAt\n updatedAt\n userId\n }\n`;\n\nconst COUPON_DATA_FIELDS_FRAGMENT = gql`\n fragment CouponDataFields on CouponDataType {\n _id\n active\n couponCode {\n ...CouponCodeFields\n }\n couponDescription\n couponOption\n createdAt\n endDate\n participantProductId\n participantUsers {\n ...CouponParticipantUserFields\n }\n resourceId\n resourceType\n startDate\n updatedAt\n }\n ${COUPON_CODE_FIELDS_FRAGMENT}\n ${COUPON_PARTICIPANT_USER_FIELDS_FRAGMENT}\n`;\n\nexport const COUPON = gql`\n fragment CouponFields on CouponType {\n _id\n active\n couponData {\n ...CouponDataFields\n }\n createdAt\n deletedAt\n owner {\n ...OwnerFields\n }\n updatedAt\n }\n ${OWNER_FIELDS_FRAGMENT}\n ${COUPON_DATA_FIELDS_FRAGMENT}\n ${COUPON_CODE_FIELDS_FRAGMENT}\n ${COUPON_PARTICIPANT_USER_FIELDS_FRAGMENT}\n`;\n\nexport const GET_COUPONS = gql`\n query getCoupons {\n coupons {\n ...CouponFields\n }\n }\n ${COUPON}\n`;\n\nexport const GET_COUPON = gql`\n query getCoupon($_id: ID!) {\n coupon(_id: $_id) {\n ...CouponFields\n }\n }\n ${COUPON}\n`;\n","import { useQuery } from \"@apollo/client\";\n\nimport {\n EventListItemType,\n EventType,\n PartnerType,\n VendorType,\n ResourceByUser,\n SafeUserType,\n} from \"src/types\";\n\nimport {\n GET_USER,\n GET_USER_ACTIVITIES,\n GET_USER_EVENTS,\n GET_USER_PARTNERS,\n GET_USER_RESOURCES,\n GET_USER_VENDORS,\n GET_USERS,\n} from \"../../queries/user\";\n\nexport const useGetUsers = () => {\n const { loading, error, data, refetch } = useQuery<{ users: SafeUserType[] }>(\n GET_USERS,\n {\n fetchPolicy: \"network-only\",\n },\n );\n\n const users = data?.users || [];\n\n return { error, loading, refetch, users };\n};\n\nexport const useGetUser = (_id: string) => {\n const { loading, error, data, refetch } = useQuery<{ user: SafeUserType }>(\n GET_USER,\n {\n fetchPolicy: \"network-only\",\n skip: !_id || _id === \"\",\n variables: { _id },\n },\n );\n\n const user = data?.user;\n\n return { error, loading, refetch, user };\n};\n\nexport const useGetUserEvents = () => {\n const { loading, error, data, refetch } = useQuery<{\n userEvents: EventType[];\n }>(GET_USER_EVENTS, {\n fetchPolicy: \"network-only\",\n });\n\n const userEvents = data?.userEvents || [];\n\n return { error, loading, refetch, userEvents };\n};\n\nexport const useGetUserVendors = () => {\n const { loading, error, data, refetch } = useQuery<{\n userVendors: VendorType[];\n }>(GET_USER_VENDORS, {\n fetchPolicy: \"network-only\",\n });\n\n const userVendors = data?.userVendors || [];\n\n return { error, loading, refetch, userVendors };\n};\n\nexport const useGetUserPartners = () => {\n const { loading, error, data, refetch } = useQuery<{\n userPartners: PartnerType[];\n }>(GET_USER_PARTNERS, {\n fetchPolicy: \"network-only\",\n });\n\n const userPartners = data?.userPartners || [];\n\n return { error, loading, refetch, userPartners };\n};\n\nexport const useGetUserActivities = () => {\n const { loading, error, data, refetch } = useQuery<{\n userActivities: {\n favourites: {\n events: EventListItemType[];\n partners: PartnerType[];\n vendors: VendorType[];\n };\n going: {\n events: EventListItemType[];\n };\n interested: {\n events: EventListItemType[];\n };\n present: {\n events: EventListItemType[];\n };\n };\n }>(GET_USER_ACTIVITIES, {\n fetchPolicy: \"network-only\",\n });\n\n const userActivities = {\n favourites: {\n events: data?.userActivities.favourites.events || [],\n partners: data?.userActivities.favourites.partners || [],\n vendors: data?.userActivities.favourites.vendors || [],\n },\n going: {\n events: data?.userActivities.going.events || [],\n },\n interested: {\n events: data?.userActivities.interested.events || [],\n },\n present: {\n events: data?.userActivities.present.events || [],\n },\n };\n\n return { error, loading, refetch, userActivities };\n};\n\nexport const useGetUserResources = (userId: string) => {\n const { loading, error, data, refetch } = useQuery<{\n userResources: {\n resources: ResourceByUser[];\n };\n }>(GET_USER_RESOURCES, {\n fetchPolicy: \"network-only\",\n skip: !userId || userId === \"\",\n variables: { userId },\n });\n\n const userResources = data?.userResources.resources || [];\n\n return { error, loading, refetch, userResources };\n};\n","import { gql } from \"@apollo/client\";\n\nimport { EVENT } from \"./event\";\nimport { EVENT_LIST_ITEM, USER_FIELDS_FRAGMENT } from \"./global\";\nimport { PARTNER } from \"./partner\";\nimport { VENDOR } from \"./vendor\";\n\nexport const GET_USERS = gql`\n query getUsers {\n users {\n ...UserFields\n }\n }\n ${USER_FIELDS_FRAGMENT}\n`;\n\nexport const GET_USER = gql`\n query getUser($_id: ID!) {\n user(_id: $_id) {\n ...UserFields\n }\n }\n ${USER_FIELDS_FRAGMENT}\n`;\n\nexport const GET_USER_EVENTS = gql`\n query getUserEvents {\n userEvents {\n ...EventFields\n }\n }\n ${EVENT}\n`;\n\nexport const GET_USER_VENDORS = gql`\n query getUserVendors {\n userVendors {\n ...VendorFields\n }\n }\n ${VENDOR}\n`;\n\nexport const GET_USER_PARTNERS = gql`\n query getUserPartners {\n userPartners {\n ...PartnerFields\n }\n }\n ${PARTNER}\n`;\n\nexport const GET_USER_ACTIVITIES = gql`\n query getUserActivities {\n userActivities {\n favourites {\n events {\n ...EventListItemFields\n }\n partners {\n ...PartnerFields\n }\n vendors {\n ...VendorFields\n }\n }\n going {\n events {\n ...EventListItemFields\n }\n }\n interested {\n events {\n ...EventListItemFields\n }\n }\n present {\n events {\n ...EventListItemFields\n }\n }\n }\n }\n ${EVENT_LIST_ITEM}\n ${VENDOR}\n ${PARTNER}\n`;\n\nexport const GET_USER_RESOURCES = gql`\n query getUserResources($userId: ID!) {\n userResources(userId: $userId) {\n resources {\n _id\n logo\n name\n resourceType\n }\n }\n }\n`;\n"],"mappings":"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","names":["gql","gql","gql","gql","gql","gql","gql","gql","gql","gql","gql","gql"]}
@@ -1,4 +1,4 @@
1
- import { J as CreateFormData } from './global-B6VyEshc.js';
1
+ import { Z as CreateFormData } from './global-CF8hwvkc.js';
2
2
 
3
3
  type ContactUsFormData = {
4
4
  email: string;
@@ -1,4 +1,4 @@
1
- import { J as CreateFormData } from './global-BKGlrm75.mjs';
1
+ import { Z as CreateFormData } from './global-Ch11tfC6.mjs';
2
2
 
3
3
  type ContactUsFormData = {
4
4
  email: string;
@@ -1,4 +1,4 @@
1
- import { O as OptionItem, F as FormField, a as FormDateField, R as RefundPolicy, b as Requirement, S as StallType, C as Category } from '../global-BKGlrm75.mjs';
1
+ import { O as OptionItem, F as FormField, a as FormDateField, R as RefundPolicy, b as Requirement, S as StallType, C as Category } from '../global-Ch11tfC6.mjs';
2
2
  import 'react-hook-form';
3
3
  import '../enums/index.mjs';
4
4
 
@@ -1,4 +1,4 @@
1
- import { O as OptionItem, F as FormField, a as FormDateField, R as RefundPolicy, b as Requirement, S as StallType, C as Category } from '../global-B6VyEshc.js';
1
+ import { O as OptionItem, F as FormField, a as FormDateField, R as RefundPolicy, b as Requirement, S as StallType, C as Category } from '../global-CF8hwvkc.js';
2
2
  import 'react-hook-form';
3
3
  import '../enums/index.js';
4
4
 
@@ -46,7 +46,7 @@ import {
46
46
  import {
47
47
  availableCategories,
48
48
  categoryColors
49
- } from "../chunk-4G4OFSBZ.mjs";
49
+ } from "../chunk-PACEDU64.mjs";
50
50
  import "../chunk-SD42WIMV.mjs";
51
51
  import "../chunk-7TL4ZSUO.mjs";
52
52
  import "../chunk-RAYUJODN.mjs";
@@ -383,11 +383,61 @@ type PostType = Omit<PostFormData, "content" | "coverUpload" | "resource"> & {
383
383
  updatedAt: Date | null;
384
384
  };
385
385
 
386
+ type ProductCoupon = {
387
+ couponDocumentId: string;
388
+ couponId: string;
389
+ };
390
+ type CouponTypeOption = {
391
+ buy: number;
392
+ get: number;
393
+ unit: string;
394
+ };
395
+ type CouponDefaultsFormData = {
396
+ couponDescription: string;
397
+ couponOption: CouponTypeOption;
398
+ endDate: Date;
399
+ participantProductId: string;
400
+ startDate: Date;
401
+ };
402
+ type CreateCouponFormData = CreateFormData<CouponDefaultsFormData>;
403
+ type CouponParticipantUserType = {
404
+ couponCollectedCount: number;
405
+ couponRedeemedAt: Date | null;
406
+ createdAt: Date;
407
+ updatedAt: Date | null;
408
+ userId: string;
409
+ };
410
+ type CouponCodeType = {
411
+ code: string;
412
+ qrCode: ResourceImageType;
413
+ };
414
+ type CouponDataType = CouponDefaultsFormData & {
415
+ _id: string;
416
+ active: boolean;
417
+ couponCode: CouponCodeType;
418
+ createdAt: Date;
419
+ participantUsers: CouponParticipantUserType[] | null;
420
+ resourceId: string;
421
+ resourceType: EnumResourceType;
422
+ updatedAt: Date | null;
423
+ };
424
+ type CreateCouponDefaults = Omit<CouponDataType, "_id">;
425
+ interface CouponType {
426
+ _id: string;
427
+ active: boolean;
428
+ couponData: CouponDataType[] | null;
429
+ createdAt: Date;
430
+ deletedAt: Date | null;
431
+ owner: OwnerType;
432
+ updatedAt: Date | null;
433
+ }
434
+
386
435
  type VendorCalendarData = Omit<ResourceDetails, "dateTime" | "eventStatus"> & {
387
436
  dateTime: DateTimeType;
388
437
  };
389
438
  type VendorProductList = {
390
439
  _id?: string;
440
+ coupon?: ProductCoupon | null;
391
441
  createdAt?: Date | null;
392
442
  description?: string | null;
393
443
  name: string;
@@ -708,4 +758,4 @@ interface UseGetResourcesByRegionOptions {
708
758
  offset?: number;
709
759
  }
710
760
 
711
- export { type GameDate as $, type Region as A, type BaseResourceTypeFormData as B, type Category as C, type BaseGameMap as D, type EventType as E, type FormField as F, type GameDocType as G, type BaseGameType as H, type BaseResourceType as I, type CreateFormData as J, type DailyClueBaseGame as K, type LocationType as L, type MutationResponse as M, type DailyClueGameData as N, type OptionItem as O, type PosterUsageType as P, type DateTimeType as Q, type RefundPolicy as R, type StallType as S, type DateTimeWithPriceType as T, type UseGetResourcesByRegionOptions as U, type VendorClaimTokenValidation as V, type DeviceInfo as W, EnumGameStatus as X, EnumGameType as Y, EnumPostContentType as Z, type EventStatusType as _, type FormDateField as a, type GameHistory as a0, type GamePlacement as a1, type GamePlacementClue as a2, type GameType as a3, type GeocodeLocation as a4, type GlobalGameData as a5, type ImageObjectType as a6, type LocationGeoType as a7, type Nullable as a8, type OwnerType as a9, type Subcategory as aA, type SubcategoryItems as aB, type TermsAgreement as aC, type UnregisteredVendorInvitationType as aD, type VendorAttributes as aE, type VendorCalendarData as aF, type VendorProductList as aG, gameScreenIdentifierList as aH, gameTypeToDisplayName as aI, PROMO_CODE_PREFIX as aa, type PaymentInfoType as ab, type PostContentData as ac, type PostContentFormData as ad, type PostContentGame as ae, type PostContentImage as af, type PostContentList as ag, type PostContentTextarea as ah, type PostContentType as ai, type PostContentVideo as aj, type PostFileInput as ak, type PostResource as al, type PromoCodeType as am, type PuzzleAnswer as an, type PuzzleAnsweredQuestion as ao, type PuzzleBaseGame as ap, type PuzzleGameData as aq, type PuzzleQuestion as ar, type RelatedPostType as as, type RelationDate as at, type RelationInputType as au, type ResourceContactDetailsType as av, type ResourceDetails as aw, type ResourceImageType as ax, type SocialMediaType as ay, type SocialShareResourceType as az, type Requirement as b, type EventListItemType as c, type EventInfoType as d, type RelationType as e, type ResourceConnectionsType as f, type UnregisteredVendorType as g, type VendorType as h, type VendorInfoType as i, type MyPendingVendorClaim as j, type UserLicenceType as k, type PostType as l, EnumPostType as m, type GameLeaderboard as n, type VendorFormData as o, type CreateVendorFormData as p, type VendorInfoFormData as q, type CreateVendorInfoFormData as r, type UnregisteredVendorFormData as s, type CreateUnregisteredVendorFormData as t, type EventFormData as u, type CreateEventFormData as v, type EventInfoFormData as w, type CreateEventInfoFormData as x, type PostFormData as y, type CreatePostFormData as z };
761
+ export { type DailyClueGameData as $, type CreatePostFormData as A, type BaseResourceTypeFormData as B, type Category as C, type CouponDefaultsFormData as D, type EventType as E, type FormField as F, type GameDocType as G, type CreateCouponFormData as H, type Region as I, type BaseGameMap as J, type BaseGameType as K, type LocationType as L, type MutationResponse as M, type BaseResourceType as N, type OptionItem as O, type PosterUsageType as P, type CouponCodeType as Q, type RefundPolicy as R, type StallType as S, type CouponDataType as T, type UseGetResourcesByRegionOptions as U, type VendorClaimTokenValidation as V, type CouponParticipantUserType as W, type CouponTypeOption as X, type CreateCouponDefaults as Y, type CreateFormData as Z, type DailyClueBaseGame as _, type FormDateField as a, type DateTimeType as a0, type DateTimeWithPriceType as a1, type DeviceInfo as a2, EnumGameStatus as a3, EnumGameType as a4, EnumPostContentType as a5, type EventStatusType as a6, type GameDate as a7, type GameHistory as a8, type GamePlacement as a9, type PuzzleQuestion as aA, type RelatedPostType as aB, type RelationDate as aC, type RelationInputType as aD, type ResourceContactDetailsType as aE, type ResourceDetails as aF, type ResourceImageType as aG, type SocialMediaType as aH, type SocialShareResourceType as aI, type Subcategory as aJ, type SubcategoryItems as aK, type TermsAgreement as aL, type UnregisteredVendorInvitationType as aM, type VendorAttributes as aN, type VendorCalendarData as aO, type VendorProductList as aP, gameScreenIdentifierList as aQ, gameTypeToDisplayName as aR, type GamePlacementClue as aa, type GameType as ab, type GeocodeLocation as ac, type GlobalGameData as ad, type ImageObjectType as ae, type LocationGeoType as af, type Nullable as ag, type OwnerType as ah, PROMO_CODE_PREFIX as ai, type PaymentInfoType as aj, type PostContentData as ak, type PostContentFormData as al, type PostContentGame as am, type PostContentImage as an, type PostContentList as ao, type PostContentTextarea as ap, type PostContentType as aq, type PostContentVideo as ar, type PostFileInput as as, type PostResource as at, type ProductCoupon as au, type PromoCodeType as av, type PuzzleAnswer as aw, type PuzzleAnsweredQuestion as ax, type PuzzleBaseGame as ay, type PuzzleGameData as az, type Requirement as b, type EventListItemType as c, type EventInfoType as d, type RelationType as e, type ResourceConnectionsType as f, type UnregisteredVendorType as g, type VendorType as h, type VendorInfoType as i, type MyPendingVendorClaim as j, type UserLicenceType as k, type PostType as l, EnumPostType as m, type GameLeaderboard as n, type CouponType as o, type VendorFormData as p, type CreateVendorFormData as q, type VendorInfoFormData as r, type CreateVendorInfoFormData as s, type UnregisteredVendorFormData as t, type CreateUnregisteredVendorFormData as u, type EventFormData as v, type CreateEventFormData as w, type EventInfoFormData as x, type CreateEventInfoFormData as y, type PostFormData as z };
@@ -383,11 +383,61 @@ type PostType = Omit<PostFormData, "content" | "coverUpload" | "resource"> & {
383
383
  updatedAt: Date | null;
384
384
  };
385
385
 
386
+ type ProductCoupon = {
387
+ couponDocumentId: string;
388
+ couponId: string;
389
+ };
390
+ type CouponTypeOption = {
391
+ buy: number;
392
+ get: number;
393
+ unit: string;
394
+ };
395
+ type CouponDefaultsFormData = {
396
+ couponDescription: string;
397
+ couponOption: CouponTypeOption;
398
+ endDate: Date;
399
+ participantProductId: string;
400
+ startDate: Date;
401
+ };
402
+ type CreateCouponFormData = CreateFormData<CouponDefaultsFormData>;
403
+ type CouponParticipantUserType = {
404
+ couponCollectedCount: number;
405
+ couponRedeemedAt: Date | null;
406
+ createdAt: Date;
407
+ updatedAt: Date | null;
408
+ userId: string;
409
+ };
410
+ type CouponCodeType = {
411
+ code: string;
412
+ qrCode: ResourceImageType;
413
+ };
414
+ type CouponDataType = CouponDefaultsFormData & {
415
+ _id: string;
416
+ active: boolean;
417
+ couponCode: CouponCodeType;
418
+ createdAt: Date;
419
+ participantUsers: CouponParticipantUserType[] | null;
420
+ resourceId: string;
421
+ resourceType: EnumResourceType;
422
+ updatedAt: Date | null;
423
+ };
424
+ type CreateCouponDefaults = Omit<CouponDataType, "_id">;
425
+ interface CouponType {
426
+ _id: string;
427
+ active: boolean;
428
+ couponData: CouponDataType[] | null;
429
+ createdAt: Date;
430
+ deletedAt: Date | null;
431
+ owner: OwnerType;
432
+ updatedAt: Date | null;
433
+ }
434
+
386
435
  type VendorCalendarData = Omit<ResourceDetails, "dateTime" | "eventStatus"> & {
387
436
  dateTime: DateTimeType;
388
437
  };
389
438
  type VendorProductList = {
390
439
  _id?: string;
440
+ coupon?: ProductCoupon | null;
391
441
  createdAt?: Date | null;
392
442
  description?: string | null;
393
443
  name: string;
@@ -708,4 +758,4 @@ interface UseGetResourcesByRegionOptions {
708
758
  offset?: number;
709
759
  }
710
760
 
711
- export { type GameDate as $, type Region as A, type BaseResourceTypeFormData as B, type Category as C, type BaseGameMap as D, type EventType as E, type FormField as F, type GameDocType as G, type BaseGameType as H, type BaseResourceType as I, type CreateFormData as J, type DailyClueBaseGame as K, type LocationType as L, type MutationResponse as M, type DailyClueGameData as N, type OptionItem as O, type PosterUsageType as P, type DateTimeType as Q, type RefundPolicy as R, type StallType as S, type DateTimeWithPriceType as T, type UseGetResourcesByRegionOptions as U, type VendorClaimTokenValidation as V, type DeviceInfo as W, EnumGameStatus as X, EnumGameType as Y, EnumPostContentType as Z, type EventStatusType as _, type FormDateField as a, type GameHistory as a0, type GamePlacement as a1, type GamePlacementClue as a2, type GameType as a3, type GeocodeLocation as a4, type GlobalGameData as a5, type ImageObjectType as a6, type LocationGeoType as a7, type Nullable as a8, type OwnerType as a9, type Subcategory as aA, type SubcategoryItems as aB, type TermsAgreement as aC, type UnregisteredVendorInvitationType as aD, type VendorAttributes as aE, type VendorCalendarData as aF, type VendorProductList as aG, gameScreenIdentifierList as aH, gameTypeToDisplayName as aI, PROMO_CODE_PREFIX as aa, type PaymentInfoType as ab, type PostContentData as ac, type PostContentFormData as ad, type PostContentGame as ae, type PostContentImage as af, type PostContentList as ag, type PostContentTextarea as ah, type PostContentType as ai, type PostContentVideo as aj, type PostFileInput as ak, type PostResource as al, type PromoCodeType as am, type PuzzleAnswer as an, type PuzzleAnsweredQuestion as ao, type PuzzleBaseGame as ap, type PuzzleGameData as aq, type PuzzleQuestion as ar, type RelatedPostType as as, type RelationDate as at, type RelationInputType as au, type ResourceContactDetailsType as av, type ResourceDetails as aw, type ResourceImageType as ax, type SocialMediaType as ay, type SocialShareResourceType as az, type Requirement as b, type EventListItemType as c, type EventInfoType as d, type RelationType as e, type ResourceConnectionsType as f, type UnregisteredVendorType as g, type VendorType as h, type VendorInfoType as i, type MyPendingVendorClaim as j, type UserLicenceType as k, type PostType as l, EnumPostType as m, type GameLeaderboard as n, type VendorFormData as o, type CreateVendorFormData as p, type VendorInfoFormData as q, type CreateVendorInfoFormData as r, type UnregisteredVendorFormData as s, type CreateUnregisteredVendorFormData as t, type EventFormData as u, type CreateEventFormData as v, type EventInfoFormData as w, type CreateEventInfoFormData as x, type PostFormData as y, type CreatePostFormData as z };
761
+ export { type DailyClueGameData as $, type CreatePostFormData as A, type BaseResourceTypeFormData as B, type Category as C, type CouponDefaultsFormData as D, type EventType as E, type FormField as F, type GameDocType as G, type CreateCouponFormData as H, type Region as I, type BaseGameMap as J, type BaseGameType as K, type LocationType as L, type MutationResponse as M, type BaseResourceType as N, type OptionItem as O, type PosterUsageType as P, type CouponCodeType as Q, type RefundPolicy as R, type StallType as S, type CouponDataType as T, type UseGetResourcesByRegionOptions as U, type VendorClaimTokenValidation as V, type CouponParticipantUserType as W, type CouponTypeOption as X, type CreateCouponDefaults as Y, type CreateFormData as Z, type DailyClueBaseGame as _, type FormDateField as a, type DateTimeType as a0, type DateTimeWithPriceType as a1, type DeviceInfo as a2, EnumGameStatus as a3, EnumGameType as a4, EnumPostContentType as a5, type EventStatusType as a6, type GameDate as a7, type GameHistory as a8, type GamePlacement as a9, type PuzzleQuestion as aA, type RelatedPostType as aB, type RelationDate as aC, type RelationInputType as aD, type ResourceContactDetailsType as aE, type ResourceDetails as aF, type ResourceImageType as aG, type SocialMediaType as aH, type SocialShareResourceType as aI, type Subcategory as aJ, type SubcategoryItems as aK, type TermsAgreement as aL, type UnregisteredVendorInvitationType as aM, type VendorAttributes as aN, type VendorCalendarData as aO, type VendorProductList as aP, gameScreenIdentifierList as aQ, gameTypeToDisplayName as aR, type GamePlacementClue as aa, type GameType as ab, type GeocodeLocation as ac, type GlobalGameData as ad, type ImageObjectType as ae, type LocationGeoType as af, type Nullable as ag, type OwnerType as ah, PROMO_CODE_PREFIX as ai, type PaymentInfoType as aj, type PostContentData as ak, type PostContentFormData as al, type PostContentGame as am, type PostContentImage as an, type PostContentList as ao, type PostContentTextarea as ap, type PostContentType as aq, type PostContentVideo as ar, type PostFileInput as as, type PostResource as at, type ProductCoupon as au, type PromoCodeType as av, type PuzzleAnswer as aw, type PuzzleAnsweredQuestion as ax, type PuzzleBaseGame as ay, type PuzzleGameData as az, type Requirement as b, type EventListItemType as c, type EventInfoType as d, type RelationType as e, type ResourceConnectionsType as f, type UnregisteredVendorType as g, type VendorType as h, type VendorInfoType as i, type MyPendingVendorClaim as j, type UserLicenceType as k, type PostType as l, EnumPostType as m, type GameLeaderboard as n, type CouponType as o, type VendorFormData as p, type CreateVendorFormData as q, type VendorInfoFormData as r, type CreateVendorInfoFormData as s, type UnregisteredVendorFormData as t, type CreateUnregisteredVendorFormData as u, type EventFormData as v, type CreateEventFormData as w, type EventInfoFormData as x, type CreateEventInfoFormData as y, type PostFormData as z };