@timardex/cluemart-shared 1.5.842 → 1.6.0

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 (68) hide show
  1. package/dist/{ad-OyMRZ4ZE.d.ts → ad-BUYzE6zx.d.ts} +7 -5
  2. package/dist/{ad-bXnDHikm.d.mts → ad-BhLoEul3.d.mts} +7 -5
  3. package/dist/{affiliate-C56okox0.d.mts → affiliate-BbtjeUP4.d.mts} +2 -2
  4. package/dist/{affiliate-B28f_U7r.d.ts → affiliate-C51nzKsw.d.ts} +2 -2
  5. package/dist/apollo/index.cjs +7 -4
  6. package/dist/apollo/index.cjs.map +1 -1
  7. package/dist/apollo/index.d.mts +2 -2
  8. package/dist/apollo/index.d.ts +2 -2
  9. package/dist/apollo/index.mjs +7 -4
  10. package/dist/apollo/index.mjs.map +1 -1
  11. package/dist/auth/index.cjs +23 -12
  12. package/dist/auth/index.cjs.map +1 -1
  13. package/dist/auth/index.d.mts +3 -3
  14. package/dist/auth/index.d.ts +3 -3
  15. package/dist/auth/index.mjs +1 -1
  16. package/dist/{chunk-QGEZL577.mjs → chunk-32MKHJTX.mjs} +27 -22
  17. package/dist/chunk-32MKHJTX.mjs.map +1 -0
  18. package/dist/{chunk-4VN5M5JO.mjs → chunk-ILILH7E2.mjs} +1 -1
  19. package/dist/chunk-ILILH7E2.mjs.map +1 -0
  20. package/dist/{chunk-TX3TVIQO.mjs → chunk-LBEJECG3.mjs} +2 -2
  21. package/dist/{chunk-ZDYD4VDB.mjs → chunk-PT273XYH.mjs} +503 -391
  22. package/dist/chunk-PT273XYH.mjs.map +1 -0
  23. package/dist/{contactUs-DKhr1NAC.d.ts → contactUs--NoohZBu.d.ts} +1 -1
  24. package/dist/{contactUs-BH5uubk6.d.mts → contactUs-CBWzefUS.d.mts} +1 -1
  25. package/dist/formFields/index.cjs.map +1 -1
  26. package/dist/formFields/index.d.mts +1 -1
  27. package/dist/formFields/index.d.ts +1 -1
  28. package/dist/formFields/index.mjs +2 -2
  29. package/dist/{global-B8kHBTPv.d.ts → global-CUYYxpy2.d.ts} +7 -2
  30. package/dist/{global-JPj82Tvl.d.mts → global-DePDtOFt.d.mts} +7 -2
  31. package/dist/graphql/index.cjs +527 -410
  32. package/dist/graphql/index.cjs.map +1 -1
  33. package/dist/graphql/index.d.mts +401 -178
  34. package/dist/graphql/index.d.ts +401 -178
  35. package/dist/graphql/index.mjs +2 -2
  36. package/dist/hooks/index.cjs +349 -108
  37. package/dist/hooks/index.cjs.map +1 -1
  38. package/dist/hooks/index.d.mts +5 -5
  39. package/dist/hooks/index.d.ts +5 -5
  40. package/dist/hooks/index.mjs +13 -9
  41. package/dist/hooks/index.mjs.map +1 -1
  42. package/dist/index.cjs +527 -410
  43. package/dist/index.cjs.map +1 -1
  44. package/dist/index.d.mts +406 -175
  45. package/dist/index.d.ts +406 -175
  46. package/dist/index.mjs +527 -410
  47. package/dist/index.mjs.map +1 -1
  48. package/dist/map/index.d.mts +1 -1
  49. package/dist/map/index.d.ts +1 -1
  50. package/dist/{resourceActivities-DV23pl5i.d.ts → resourceActivities-CMUcn2P7.d.ts} +9 -3
  51. package/dist/{resourceActivities-CZw8My9Z.d.mts → resourceActivities-CwbJFGIp.d.mts} +9 -3
  52. package/dist/sharing/index.d.mts +1 -1
  53. package/dist/sharing/index.d.ts +1 -1
  54. package/dist/types/index.cjs.map +1 -1
  55. package/dist/types/index.d.mts +9 -15
  56. package/dist/types/index.d.ts +9 -15
  57. package/dist/types/index.mjs +1 -1
  58. package/dist/{user-c_sh7aZ_.d.ts → user-D47MLFyH.d.ts} +4 -3
  59. package/dist/{user-B8Y1_VmG.d.mts → user-DE8edl3u.d.mts} +4 -3
  60. package/dist/utils/index.cjs.map +1 -1
  61. package/dist/utils/index.d.mts +3 -3
  62. package/dist/utils/index.d.ts +3 -3
  63. package/dist/utils/index.mjs +2 -2
  64. package/package.json +1 -1
  65. package/dist/chunk-4VN5M5JO.mjs.map +0 -1
  66. package/dist/chunk-QGEZL577.mjs.map +0 -1
  67. package/dist/chunk-ZDYD4VDB.mjs.map +0 -1
  68. /package/dist/{chunk-TX3TVIQO.mjs.map → chunk-LBEJECG3.mjs.map} +0 -0
package/dist/index.d.mts CHANGED
@@ -731,6 +731,11 @@ type PromoCodeType = `${typeof PROMO_CODE_PREFIX}${string}`;
731
731
  type Nullable<T> = {
732
732
  [K in keyof T]: T[K] | null | undefined;
733
733
  };
734
+ /** Uniform mutation response envelope used across GraphQL mutations. */
735
+ type MutationResponse<T> = {
736
+ data: T | null;
737
+ message: string | null;
738
+ };
734
739
  type DeviceInfo = {
735
740
  appBuildNumber: string;
736
741
  appId: string;
@@ -1077,8 +1082,9 @@ type RedeemRewardInput = {
1077
1082
  };
1078
1083
  type RedeemRewardResponse = {
1079
1084
  userId: string;
1080
- message: string;
1081
1085
  };
1086
+ /** GraphQL envelope for `redeemReward`. */
1087
+ type RedeemRewardMutationResponse = MutationResponse<RedeemRewardResponse>;
1082
1088
  type RedeemedReward = {
1083
1089
  name: EnumReward;
1084
1090
  pointsUsed: number;
@@ -1155,15 +1161,16 @@ type ValidateVerificationTokenFormData = {
1155
1161
  };
1156
1162
  type CreateValidateVerificationTokenFormData = CreateFormData<ValidateVerificationTokenFormData>;
1157
1163
  type AuthPayloadType = {
1158
- message: string;
1159
- token: string;
1160
1164
  refreshToken: string | null;
1165
+ token: string;
1161
1166
  user: SafeUserType;
1162
1167
  };
1168
+ type AuthMutationResponse = MutationResponse<AuthPayloadType>;
1163
1169
  type RefreshTokenPayloadType = {
1164
1170
  refreshToken: string;
1165
1171
  token: string;
1166
1172
  };
1173
+ type RefreshTokenMutationResponse = MutationResponse<RefreshTokenPayloadType>;
1167
1174
 
1168
1175
  type ParticipantType = {
1169
1176
  active: boolean;
@@ -1433,6 +1440,7 @@ type PushTokenType = {
1433
1440
  interface AppSettingsFormData {
1434
1441
  appVersion: string;
1435
1442
  isOfflineMode: boolean;
1443
+ minimumRedeemableAffiliatePoints: number;
1436
1444
  }
1437
1445
  type CreateAppSettingsFormData = CreateFormData<AppSettingsFormData>;
1438
1446
  type AppSettingsType = AppSettingsFormData & {
@@ -1663,87 +1671,102 @@ declare function toGraphqlQueryString(query: DocumentNode): string;
1663
1671
 
1664
1672
  declare const useAdminUpdateResourceType: () => {
1665
1673
  adminUpdateResourceType: (options?: _apollo_client.MutationFunctionOptions<{
1666
- adminUpdateResourceType: {
1667
- resourceId: string;
1668
- resourceType: EnumResourceType;
1669
- };
1674
+ adminUpdateResourceType: MutationResponse<AdminUpdateResourceType>;
1670
1675
  }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
1671
- adminUpdateResourceType: {
1672
- resourceId: string;
1673
- resourceType: EnumResourceType;
1674
- };
1676
+ adminUpdateResourceType: MutationResponse<AdminUpdateResourceType>;
1675
1677
  }>>;
1676
1678
  error: _apollo_client.ApolloError | undefined;
1677
1679
  loading: boolean;
1678
1680
  };
1679
1681
  declare const useAdminResendUserVerificationEmail: () => {
1680
- adminResendUserVerificationEmail: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
1682
+ adminResendUserVerificationEmail: (options?: _apollo_client.MutationFunctionOptions<{
1683
+ adminResendUserVerificationEmail: MutationResponse<boolean>;
1684
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
1685
+ adminResendUserVerificationEmail: MutationResponse<boolean>;
1686
+ }>>;
1681
1687
  error: _apollo_client.ApolloError | undefined;
1682
1688
  loading: boolean;
1683
1689
  };
1684
1690
  declare const useAdminPermanentlyDeleteResource: () => {
1685
- adminPermanentlyDeleteResource: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
1691
+ adminPermanentlyDeleteResource: (options?: _apollo_client.MutationFunctionOptions<{
1692
+ adminPermanentlyDeleteResource: MutationResponse<boolean>;
1693
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
1694
+ adminPermanentlyDeleteResource: MutationResponse<boolean>;
1695
+ }>>;
1686
1696
  error: _apollo_client.ApolloError | undefined;
1687
1697
  loading: boolean;
1688
1698
  };
1689
1699
 
1700
+ type MessageOnlyResponse = MutationResponse<boolean>;
1690
1701
  declare const useRegister: () => {
1691
1702
  error: _apollo_client.ApolloError | undefined;
1692
1703
  loading: boolean;
1693
1704
  register: (options?: _apollo_client.MutationFunctionOptions<{
1694
- register: AuthPayloadType;
1705
+ register: AuthMutationResponse;
1695
1706
  }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
1696
- register: AuthPayloadType;
1707
+ register: AuthMutationResponse;
1697
1708
  }>>;
1698
1709
  };
1699
1710
  declare const useLogin: () => {
1700
1711
  error: _apollo_client.ApolloError | undefined;
1701
1712
  loading: boolean;
1702
1713
  login: (options?: _apollo_client.MutationFunctionOptions<{
1703
- login: AuthPayloadType;
1714
+ login: AuthMutationResponse;
1704
1715
  }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
1705
- login: AuthPayloadType;
1716
+ login: AuthMutationResponse;
1706
1717
  }>>;
1707
1718
  };
1708
1719
  declare const useLogout: () => {
1709
1720
  error: _apollo_client.ApolloError | undefined;
1710
1721
  loading: boolean;
1711
- logout: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
1722
+ logout: (options?: _apollo_client.MutationFunctionOptions<{
1723
+ logout: MessageOnlyResponse;
1724
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
1725
+ logout: MessageOnlyResponse;
1726
+ }>>;
1712
1727
  };
1713
1728
  declare const useRefreshToken: () => {
1714
1729
  error: _apollo_client.ApolloError | undefined;
1715
1730
  loading: boolean;
1716
1731
  refreshToken: (options?: _apollo_client.MutationFunctionOptions<{
1717
- refreshToken: RefreshTokenPayloadType;
1732
+ refreshToken: RefreshTokenMutationResponse;
1718
1733
  }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
1719
- refreshToken: RefreshTokenPayloadType;
1734
+ refreshToken: RefreshTokenMutationResponse;
1720
1735
  }>>;
1721
1736
  };
1722
1737
  declare const useRequestPasswordReset: () => {
1723
1738
  error: _apollo_client.ApolloError | undefined;
1724
1739
  loading: boolean;
1725
- requestPasswordReset: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
1740
+ requestPasswordReset: (options?: _apollo_client.MutationFunctionOptions<{
1741
+ requestPasswordReset: MessageOnlyResponse;
1742
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
1743
+ requestPasswordReset: MessageOnlyResponse;
1744
+ }>>;
1726
1745
  };
1727
1746
  declare const useValidateVerificationToken: () => {
1728
1747
  error: _apollo_client.ApolloError | undefined;
1729
1748
  loading: boolean;
1730
- validateVerificationToken: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
1749
+ validateVerificationToken: (options?: _apollo_client.MutationFunctionOptions<{
1750
+ validateVerificationToken: MessageOnlyResponse;
1751
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
1752
+ validateVerificationToken: MessageOnlyResponse;
1753
+ }>>;
1731
1754
  };
1732
1755
  declare const useResetPassword: () => {
1733
1756
  error: _apollo_client.ApolloError | undefined;
1734
1757
  loading: boolean;
1735
- resetPassword: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
1758
+ resetPassword: (options?: _apollo_client.MutationFunctionOptions<{
1759
+ resetPassword: MessageOnlyResponse;
1760
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
1761
+ resetPassword: MessageOnlyResponse;
1762
+ }>>;
1736
1763
  };
1737
1764
 
1738
1765
  declare const useCreatePrivateChat: () => {
1739
1766
  createPrivateChat: (options?: _apollo_client.MutationFunctionOptions<{
1740
- createPrivateChat: {
1741
- _id: string;
1742
- };
1767
+ createPrivateChat: MutationResponse<ChatType>;
1743
1768
  }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
1744
- createPrivateChat: {
1745
- _id: string;
1746
- };
1769
+ createPrivateChat: MutationResponse<ChatType>;
1747
1770
  }>>;
1748
1771
  error: _apollo_client.ApolloError | undefined;
1749
1772
  loading: boolean;
@@ -1752,29 +1775,25 @@ declare const useSendChatMessage: () => {
1752
1775
  error: _apollo_client.ApolloError | undefined;
1753
1776
  loading: boolean;
1754
1777
  sendChatMessage: (options?: _apollo_client.MutationFunctionOptions<{
1755
- sendChatMessage: {
1756
- _id: string;
1757
- };
1778
+ sendChatMessage: MutationResponse<ChatType>;
1758
1779
  }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
1759
- sendChatMessage: {
1760
- _id: string;
1761
- };
1780
+ sendChatMessage: MutationResponse<ChatType>;
1762
1781
  }>>;
1763
1782
  };
1764
1783
  declare const useDeleteChat: () => {
1765
- deleteChat: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
1784
+ deleteChat: (options?: _apollo_client.MutationFunctionOptions<{
1785
+ deleteChat: MutationResponse<boolean>;
1786
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
1787
+ deleteChat: MutationResponse<boolean>;
1788
+ }>>;
1766
1789
  error: _apollo_client.ApolloError | undefined;
1767
1790
  loading: boolean;
1768
1791
  };
1769
1792
  declare const useAddParticipantToChat: () => {
1770
1793
  addParticipantToChat: (options?: _apollo_client.MutationFunctionOptions<{
1771
- addParticipantToChat: {
1772
- _id: string;
1773
- };
1794
+ addParticipantToChat: MutationResponse<ChatType>;
1774
1795
  }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
1775
- addParticipantToChat: {
1776
- _id: string;
1777
- };
1796
+ addParticipantToChat: MutationResponse<ChatType>;
1778
1797
  }>>;
1779
1798
  error: _apollo_client.ApolloError | undefined;
1780
1799
  loading: boolean;
@@ -1783,47 +1802,43 @@ declare const useRemoveParticipantFromChat: () => {
1783
1802
  error: _apollo_client.ApolloError | undefined;
1784
1803
  loading: boolean;
1785
1804
  removeParticipantFromChat: (options?: _apollo_client.MutationFunctionOptions<{
1786
- removeParticipantFromChat: {
1805
+ removeParticipantFromChat: MutationResponse<{
1787
1806
  success: boolean;
1788
1807
  region?: string | null;
1789
- };
1808
+ }>;
1790
1809
  }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
1791
- removeParticipantFromChat: {
1810
+ removeParticipantFromChat: MutationResponse<{
1792
1811
  success: boolean;
1793
1812
  region?: string | null;
1794
- };
1813
+ }>;
1795
1814
  }>>;
1796
1815
  };
1797
1816
  declare const useToggleChatMessageLike: () => {
1798
1817
  error: _apollo_client.ApolloError | undefined;
1799
1818
  loading: boolean;
1800
1819
  toggleChatMessageLike: (options?: _apollo_client.MutationFunctionOptions<{
1801
- toggleChatMessageLike: {
1802
- _id: string;
1803
- };
1820
+ toggleChatMessageLike: MutationResponse<ChatType>;
1804
1821
  }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
1805
- toggleChatMessageLike: {
1806
- _id: string;
1807
- };
1822
+ toggleChatMessageLike: MutationResponse<ChatType>;
1808
1823
  }>>;
1809
1824
  };
1810
1825
  declare const useMarkChatMessagesSeen: () => {
1811
1826
  error: _apollo_client.ApolloError | undefined;
1812
1827
  loading: boolean;
1813
1828
  markChatMessagesSeen: (options?: _apollo_client.MutationFunctionOptions<{
1814
- markChatMessagesSeen: {
1815
- _id: string;
1816
- };
1829
+ markChatMessagesSeen: MutationResponse<ChatType>;
1817
1830
  }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
1818
- markChatMessagesSeen: {
1819
- _id: string;
1820
- };
1831
+ markChatMessagesSeen: MutationResponse<ChatType>;
1821
1832
  }>>;
1822
1833
  };
1823
1834
  declare const useReportChatUser: () => {
1824
1835
  error: _apollo_client.ApolloError | undefined;
1825
1836
  loading: boolean;
1826
- reportChatUser: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
1837
+ reportChatUser: (options?: _apollo_client.MutationFunctionOptions<{
1838
+ reportChatUser: MutationResponse<ReportChatUser>;
1839
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
1840
+ reportChatUser: MutationResponse<ReportChatUser>;
1841
+ }>>;
1827
1842
  };
1828
1843
 
1829
1844
  declare const useGetChat: (_id: string) => {
@@ -1865,13 +1880,21 @@ declare const useGetReportedChatUsers: () => {
1865
1880
  };
1866
1881
 
1867
1882
  declare const useContactUs: () => {
1868
- contactUs: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
1883
+ contactUs: (options?: _apollo_client.MutationFunctionOptions<{
1884
+ contactUs: MutationResponse<boolean>;
1885
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
1886
+ contactUs: MutationResponse<boolean>;
1887
+ }>>;
1869
1888
  error: _apollo_client.ApolloError | undefined;
1870
1889
  loading: boolean;
1871
1890
  };
1872
1891
 
1873
1892
  declare const useCreateEvent: () => {
1874
- createEvent: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
1893
+ createEvent: (options?: _apollo_client.MutationFunctionOptions<{
1894
+ createEvent: MutationResponse<EventType>;
1895
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
1896
+ createEvent: MutationResponse<EventType>;
1897
+ }>>;
1875
1898
  error: _apollo_client.ApolloError | undefined;
1876
1899
  loading: boolean;
1877
1900
  };
@@ -1879,29 +1902,29 @@ declare const useUpdateEvent: () => {
1879
1902
  error: _apollo_client.ApolloError | undefined;
1880
1903
  loading: boolean;
1881
1904
  updateEvent: (options?: _apollo_client.MutationFunctionOptions<{
1882
- updateEvent: {
1883
- _id: string;
1884
- };
1905
+ updateEvent: MutationResponse<EventType>;
1885
1906
  }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
1886
- updateEvent: {
1887
- _id: string;
1888
- };
1907
+ updateEvent: MutationResponse<EventType>;
1889
1908
  }>>;
1890
1909
  };
1891
1910
  declare const useDeleteEvent: () => {
1892
- deleteEvent: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
1911
+ deleteEvent: (options?: _apollo_client.MutationFunctionOptions<{
1912
+ deleteEvent: MutationResponse<boolean>;
1913
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
1914
+ deleteEvent: MutationResponse<boolean>;
1915
+ }>>;
1893
1916
  error: _apollo_client.ApolloError | undefined;
1894
1917
  loading: boolean;
1895
1918
  };
1896
1919
  declare const useCreateEventInfo: () => {
1897
1920
  createEventInfo: (options?: _apollo_client.MutationFunctionOptions<{
1898
- createEventInfo: {
1921
+ createEventInfo: MutationResponse<{
1899
1922
  eventId: string;
1900
- };
1923
+ }>;
1901
1924
  }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
1902
- createEventInfo: {
1925
+ createEventInfo: MutationResponse<{
1903
1926
  eventId: string;
1904
- };
1927
+ }>;
1905
1928
  }>>;
1906
1929
  error: _apollo_client.ApolloError | undefined;
1907
1930
  loading: boolean;
@@ -1910,13 +1933,13 @@ declare const useUpdateEventInfo: () => {
1910
1933
  error: _apollo_client.ApolloError | undefined;
1911
1934
  loading: boolean;
1912
1935
  updateEventInfo: (options?: _apollo_client.MutationFunctionOptions<{
1913
- updateEventInfo: {
1936
+ updateEventInfo: MutationResponse<{
1914
1937
  eventId: string;
1915
- };
1938
+ }>;
1916
1939
  }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
1917
- updateEventInfo: {
1940
+ updateEventInfo: MutationResponse<{
1918
1941
  eventId: string;
1919
- };
1942
+ }>;
1920
1943
  }>>;
1921
1944
  };
1922
1945
 
@@ -1994,27 +2017,47 @@ declare const useGetEventInfo: (eventId: string) => {
1994
2017
  };
1995
2018
 
1996
2019
  declare const useCreateBulkNotifications: () => {
1997
- createBulkNotifications: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2020
+ createBulkNotifications: (options?: _apollo_client.MutationFunctionOptions<{
2021
+ createBulkNotifications: MutationResponse<boolean>;
2022
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2023
+ createBulkNotifications: MutationResponse<boolean>;
2024
+ }>>;
1998
2025
  error: _apollo_client.ApolloError | undefined;
1999
2026
  loading: boolean;
2000
2027
  };
2001
2028
  declare const useMarkNotificationRead: () => {
2002
2029
  error: _apollo_client.ApolloError | undefined;
2003
2030
  loading: boolean;
2004
- markNotificationRead: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2031
+ markNotificationRead: (options?: _apollo_client.MutationFunctionOptions<{
2032
+ markNotificationRead: MutationResponse<NotificationType[]>;
2033
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2034
+ markNotificationRead: MutationResponse<NotificationType[]>;
2035
+ }>>;
2005
2036
  };
2006
2037
  declare const useMarkAllNotificationsRead: () => {
2007
2038
  error: _apollo_client.ApolloError | undefined;
2008
2039
  loading: boolean;
2009
- markAllNotificationsRead: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2040
+ markAllNotificationsRead: (options?: _apollo_client.MutationFunctionOptions<{
2041
+ markAllNotificationsRead: MutationResponse<boolean>;
2042
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2043
+ markAllNotificationsRead: MutationResponse<boolean>;
2044
+ }>>;
2010
2045
  };
2011
2046
  declare const useDeleteNotification: () => {
2012
- deleteNotification: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2047
+ deleteNotification: (options?: _apollo_client.MutationFunctionOptions<{
2048
+ deleteNotification: MutationResponse<boolean>;
2049
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2050
+ deleteNotification: MutationResponse<boolean>;
2051
+ }>>;
2013
2052
  error: _apollo_client.ApolloError | undefined;
2014
2053
  loading: boolean;
2015
2054
  };
2016
2055
  declare const useDeleteAllNotifications: () => {
2017
- deleteAllNotifications: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2056
+ deleteAllNotifications: (options?: _apollo_client.MutationFunctionOptions<{
2057
+ deleteAllNotifications: MutationResponse<boolean>;
2058
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2059
+ deleteAllNotifications: MutationResponse<boolean>;
2060
+ }>>;
2018
2061
  error: _apollo_client.ApolloError | undefined;
2019
2062
  loading: boolean;
2020
2063
  };
@@ -2048,22 +2091,38 @@ declare const useGetNotificationCountSubscription: () => {
2048
2091
  };
2049
2092
 
2050
2093
  declare const useCreatePoster: () => {
2051
- createPoster: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2094
+ createPoster: (options?: _apollo_client.MutationFunctionOptions<{
2095
+ createPoster: MutationResponse<{
2096
+ posterUsage: PosterUsageType;
2097
+ }>;
2098
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2099
+ createPoster: MutationResponse<{
2100
+ posterUsage: PosterUsageType;
2101
+ }>;
2102
+ }>>;
2052
2103
  error: _apollo_client.ApolloError | undefined;
2053
2104
  loading: boolean;
2054
2105
  };
2055
2106
 
2056
2107
  declare const useCreatePushToken: () => {
2057
- createPushToken: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2108
+ createPushToken: (options?: _apollo_client.MutationFunctionOptions<{
2109
+ createPushToken: MutationResponse<{
2110
+ success: boolean;
2111
+ }>;
2112
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2113
+ createPushToken: MutationResponse<{
2114
+ success: boolean;
2115
+ }>;
2116
+ }>>;
2058
2117
  error: _apollo_client.ApolloError | undefined;
2059
2118
  loading: boolean;
2060
2119
  };
2061
2120
 
2062
2121
  declare const useCreateRelation: () => {
2063
2122
  createRelation: (options?: _apollo_client.MutationFunctionOptions<{
2064
- createRelation: RelationType$1;
2123
+ createRelation: MutationResponse<RelationType$1>;
2065
2124
  }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2066
- createRelation: RelationType$1;
2125
+ createRelation: MutationResponse<RelationType$1>;
2067
2126
  }>>;
2068
2127
  error: _apollo_client.ApolloError | undefined;
2069
2128
  loading: boolean;
@@ -2072,16 +2131,16 @@ declare const useUpdateRelation: () => {
2072
2131
  error: _apollo_client.ApolloError | undefined;
2073
2132
  loading: boolean;
2074
2133
  updateRelation: (options?: _apollo_client.MutationFunctionOptions<{
2075
- updateRelation: RelationType$1;
2134
+ updateRelation: MutationResponse<RelationType$1>;
2076
2135
  }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2077
- updateRelation: RelationType$1;
2136
+ updateRelation: MutationResponse<RelationType$1>;
2078
2137
  }>>;
2079
2138
  };
2080
2139
  declare const useDeleteRelation: () => {
2081
2140
  deleteRelation: (options?: _apollo_client.MutationFunctionOptions<{
2082
- deleteRelation: RelationType$1;
2141
+ deleteRelation: MutationResponse<RelationType$1>;
2083
2142
  }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2084
- deleteRelation: RelationType$1;
2143
+ deleteRelation: MutationResponse<RelationType$1>;
2085
2144
  }>>;
2086
2145
  error: _apollo_client.ApolloError | undefined;
2087
2146
  loading: boolean;
@@ -2129,29 +2188,41 @@ declare const useGetResourceConnections: (resourceId: string, resourceType: Enum
2129
2188
  };
2130
2189
 
2131
2190
  declare const useCreateVendor: () => {
2132
- createVendor: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2191
+ createVendor: (options?: _apollo_client.MutationFunctionOptions<{
2192
+ createVendor: MutationResponse<VendorType>;
2193
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2194
+ createVendor: MutationResponse<VendorType>;
2195
+ }>>;
2133
2196
  error: _apollo_client.ApolloError | undefined;
2134
2197
  loading: boolean;
2135
2198
  };
2136
2199
  declare const useUpdateVendor: () => {
2137
2200
  error: _apollo_client.ApolloError | undefined;
2138
2201
  loading: boolean;
2139
- updateVendor: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2202
+ updateVendor: (options?: _apollo_client.MutationFunctionOptions<{
2203
+ updateVendor: MutationResponse<VendorType>;
2204
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2205
+ updateVendor: MutationResponse<VendorType>;
2206
+ }>>;
2140
2207
  };
2141
2208
  declare const useDeleteVendor: () => {
2142
- deleteVendor: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2209
+ deleteVendor: (options?: _apollo_client.MutationFunctionOptions<{
2210
+ deleteVendor: MutationResponse<boolean>;
2211
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2212
+ deleteVendor: MutationResponse<boolean>;
2213
+ }>>;
2143
2214
  error: _apollo_client.ApolloError | undefined;
2144
2215
  loading: boolean;
2145
2216
  };
2146
2217
  declare const useCreateVendorInfo: () => {
2147
2218
  createVendorInfo: (options?: _apollo_client.MutationFunctionOptions<{
2148
- createVendorInfo: {
2219
+ createVendorInfo: MutationResponse<{
2149
2220
  vendorId: string;
2150
- };
2221
+ }>;
2151
2222
  }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2152
- createVendorInfo: {
2223
+ createVendorInfo: MutationResponse<{
2153
2224
  vendorId: string;
2154
- };
2225
+ }>;
2155
2226
  }>>;
2156
2227
  error: _apollo_client.ApolloError | undefined;
2157
2228
  loading: boolean;
@@ -2160,34 +2231,50 @@ declare const useUpdateVendorInfo: () => {
2160
2231
  error: _apollo_client.ApolloError | undefined;
2161
2232
  loading: boolean;
2162
2233
  updateVendorInfo: (options?: _apollo_client.MutationFunctionOptions<{
2163
- updateVendorInfo: {
2234
+ updateVendorInfo: MutationResponse<{
2164
2235
  vendorId: string;
2165
- };
2236
+ }>;
2166
2237
  }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2167
- updateVendorInfo: {
2238
+ updateVendorInfo: MutationResponse<{
2168
2239
  vendorId: string;
2169
- };
2240
+ }>;
2170
2241
  }>>;
2171
2242
  };
2172
2243
  declare const useCreateUnregisteredVendor: () => {
2173
- createUnregisteredVendor: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2244
+ createUnregisteredVendor: (options?: _apollo_client.MutationFunctionOptions<{
2245
+ createUnregisteredVendor: MutationResponse<UnregisteredVendorType>;
2246
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2247
+ createUnregisteredVendor: MutationResponse<UnregisteredVendorType>;
2248
+ }>>;
2174
2249
  error: _apollo_client.ApolloError | undefined;
2175
2250
  loading: boolean;
2176
2251
  };
2177
2252
  declare const useUpdateUnregisteredVendor: () => {
2178
2253
  error: _apollo_client.ApolloError | undefined;
2179
2254
  loading: boolean;
2180
- updateUnregisteredVendor: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2255
+ updateUnregisteredVendor: (options?: _apollo_client.MutationFunctionOptions<{
2256
+ updateUnregisteredVendor: MutationResponse<UnregisteredVendorType>;
2257
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2258
+ updateUnregisteredVendor: MutationResponse<UnregisteredVendorType>;
2259
+ }>>;
2181
2260
  };
2182
2261
  declare const useDeleteUnregisteredVendor: () => {
2183
- deleteUnregisteredVendor: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2262
+ deleteUnregisteredVendor: (options?: _apollo_client.MutationFunctionOptions<{
2263
+ deleteUnregisteredVendor: MutationResponse<boolean>;
2264
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2265
+ deleteUnregisteredVendor: MutationResponse<boolean>;
2266
+ }>>;
2184
2267
  error: _apollo_client.ApolloError | undefined;
2185
2268
  loading: boolean;
2186
2269
  };
2187
2270
  declare const useUnlinkUnregisteredVendorByInviterId: () => {
2188
2271
  error: _apollo_client.ApolloError | undefined;
2189
2272
  loading: boolean;
2190
- unlinkUnregisteredVendorByInviterId: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2273
+ unlinkUnregisteredVendorByInviterId: (options?: _apollo_client.MutationFunctionOptions<{
2274
+ unlinkUnregisteredVendorByInviterId: MutationResponse<boolean>;
2275
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2276
+ unlinkUnregisteredVendorByInviterId: MutationResponse<boolean>;
2277
+ }>>;
2191
2278
  };
2192
2279
 
2193
2280
  declare const useGetVendors: () => {
@@ -2269,9 +2356,9 @@ declare const useGetUnregisteredVendor: (_id: string) => {
2269
2356
 
2270
2357
  declare const useCreateUser: () => {
2271
2358
  createUser: (options?: _apollo_client.MutationFunctionOptions<{
2272
- createUser: SafeUserType;
2359
+ createUser: MutationResponse<SafeUserType>;
2273
2360
  }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2274
- createUser: SafeUserType;
2361
+ createUser: MutationResponse<SafeUserType>;
2275
2362
  }>>;
2276
2363
  error: _apollo_client.ApolloError | undefined;
2277
2364
  loading: boolean;
@@ -2280,13 +2367,17 @@ declare const useUpdateUser: () => {
2280
2367
  error: _apollo_client.ApolloError | undefined;
2281
2368
  loading: boolean;
2282
2369
  updateUser: (options?: _apollo_client.MutationFunctionOptions<{
2283
- updateUser: SafeUserType;
2370
+ updateUser: MutationResponse<SafeUserType>;
2284
2371
  }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2285
- updateUser: SafeUserType;
2372
+ updateUser: MutationResponse<SafeUserType>;
2286
2373
  }>>;
2287
2374
  };
2288
2375
  declare const useDeleteUser: () => {
2289
- deleteUser: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2376
+ deleteUser: (options?: _apollo_client.MutationFunctionOptions<{
2377
+ deleteUser: MutationResponse<boolean>;
2378
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2379
+ deleteUser: MutationResponse<boolean>;
2380
+ }>>;
2290
2381
  error: _apollo_client.ApolloError | undefined;
2291
2382
  loading: boolean;
2292
2383
  };
@@ -2294,66 +2385,96 @@ declare const useRedeemReward: () => {
2294
2385
  error: _apollo_client.ApolloError | undefined;
2295
2386
  loading: boolean;
2296
2387
  redeemReward: (options?: _apollo_client.MutationFunctionOptions<{
2297
- redeemReward: RedeemRewardResponse;
2388
+ redeemReward: RedeemRewardMutationResponse;
2298
2389
  }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2299
- redeemReward: RedeemRewardResponse;
2390
+ redeemReward: RedeemRewardMutationResponse;
2300
2391
  }>>;
2301
2392
  };
2302
2393
  declare const useAddUserFavouriteResource: () => {
2303
- addUserFavouriteResource: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2394
+ addUserFavouriteResource: (options?: _apollo_client.MutationFunctionOptions<{
2395
+ addUserFavouriteResource: MutationResponse<SafeUserType>;
2396
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2397
+ addUserFavouriteResource: MutationResponse<SafeUserType>;
2398
+ }>>;
2304
2399
  error: _apollo_client.ApolloError | undefined;
2305
2400
  loading: boolean;
2306
2401
  };
2307
2402
  declare const useRemoveUserFavouriteResource: () => {
2308
2403
  error: _apollo_client.ApolloError | undefined;
2309
2404
  loading: boolean;
2310
- removeUserFavouriteResource: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2405
+ removeUserFavouriteResource: (options?: _apollo_client.MutationFunctionOptions<{
2406
+ removeUserFavouriteResource: MutationResponse<SafeUserType>;
2407
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2408
+ removeUserFavouriteResource: MutationResponse<SafeUserType>;
2409
+ }>>;
2311
2410
  };
2312
2411
  declare const useAddUserInterestResource: () => {
2313
- addUserInterestResource: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2412
+ addUserInterestResource: (options?: _apollo_client.MutationFunctionOptions<{
2413
+ addUserInterestResource: MutationResponse<SafeUserType>;
2414
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2415
+ addUserInterestResource: MutationResponse<SafeUserType>;
2416
+ }>>;
2314
2417
  error: _apollo_client.ApolloError | undefined;
2315
2418
  loading: boolean;
2316
2419
  };
2317
2420
  declare const useRemoveUserInterestResource: () => {
2318
2421
  error: _apollo_client.ApolloError | undefined;
2319
2422
  loading: boolean;
2320
- removeUserInterestResource: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2423
+ removeUserInterestResource: (options?: _apollo_client.MutationFunctionOptions<{
2424
+ removeUserInterestResource: MutationResponse<SafeUserType>;
2425
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2426
+ removeUserInterestResource: MutationResponse<SafeUserType>;
2427
+ }>>;
2321
2428
  };
2322
2429
  declare const useAddUserGoingResource: () => {
2323
- addUserGoingResource: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2430
+ addUserGoingResource: (options?: _apollo_client.MutationFunctionOptions<{
2431
+ addUserGoingResource: MutationResponse<SafeUserType>;
2432
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2433
+ addUserGoingResource: MutationResponse<SafeUserType>;
2434
+ }>>;
2324
2435
  error: _apollo_client.ApolloError | undefined;
2325
2436
  loading: boolean;
2326
2437
  };
2327
2438
  declare const useRemoveUserGoingResource: () => {
2328
2439
  error: _apollo_client.ApolloError | undefined;
2329
2440
  loading: boolean;
2330
- removeUserGoingResource: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2441
+ removeUserGoingResource: (options?: _apollo_client.MutationFunctionOptions<{
2442
+ removeUserGoingResource: MutationResponse<SafeUserType>;
2443
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2444
+ removeUserGoingResource: MutationResponse<SafeUserType>;
2445
+ }>>;
2331
2446
  };
2332
2447
  declare const useAddUserPresentResource: () => {
2333
- addUserPresentResource: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2448
+ addUserPresentResource: (options?: _apollo_client.MutationFunctionOptions<{
2449
+ addUserPresentResource: MutationResponse<SafeUserType>;
2450
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2451
+ addUserPresentResource: MutationResponse<SafeUserType>;
2452
+ }>>;
2334
2453
  error: _apollo_client.ApolloError | undefined;
2335
2454
  loading: boolean;
2336
2455
  };
2337
2456
  declare const useRemoveUserPresentResource: () => {
2338
2457
  error: _apollo_client.ApolloError | undefined;
2339
2458
  loading: boolean;
2340
- removeUserPresentResource: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2459
+ removeUserPresentResource: (options?: _apollo_client.MutationFunctionOptions<{
2460
+ removeUserPresentResource: MutationResponse<SafeUserType>;
2461
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2462
+ removeUserPresentResource: MutationResponse<SafeUserType>;
2463
+ }>>;
2341
2464
  };
2342
2465
  declare const useSelectStandardPackage: () => {
2343
2466
  error: _apollo_client.ApolloError | undefined;
2344
2467
  loading: boolean;
2345
2468
  selectStandardPackage: (options?: _apollo_client.MutationFunctionOptions<{
2346
- selectStandardPackage: {
2469
+ selectStandardPackage: MutationResponse<{
2347
2470
  userId: string;
2348
- message: string;
2349
2471
  licences: UserLicenceType[];
2350
- };
2472
+ }>;
2351
2473
  }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2352
- selectStandardPackage: {
2474
+ selectStandardPackage: MutationResponse<{
2353
2475
  userId: string;
2354
- message: string;
2355
2476
  licences: UserLicenceType[];
2356
- };
2477
+ }>;
2357
2478
  }>>;
2358
2479
  };
2359
2480
 
@@ -2447,17 +2568,29 @@ declare const useGetUserResources: (userId: string) => {
2447
2568
  };
2448
2569
 
2449
2570
  declare const useCreateAd: () => {
2450
- createAd: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2571
+ createAd: (options?: _apollo_client.MutationFunctionOptions<{
2572
+ createAd: MutationResponse<AdType>;
2573
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2574
+ createAd: MutationResponse<AdType>;
2575
+ }>>;
2451
2576
  error: _apollo_client.ApolloError | undefined;
2452
2577
  loading: boolean;
2453
2578
  };
2454
2579
  declare const useUpdateAd: () => {
2455
2580
  error: _apollo_client.ApolloError | undefined;
2456
2581
  loading: boolean;
2457
- updateAd: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2582
+ updateAd: (options?: _apollo_client.MutationFunctionOptions<{
2583
+ updateAd: MutationResponse<AdType>;
2584
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2585
+ updateAd: MutationResponse<AdType>;
2586
+ }>>;
2458
2587
  };
2459
2588
  declare const useDeleteAd: () => {
2460
- deleteAd: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2589
+ deleteAd: (options?: _apollo_client.MutationFunctionOptions<{
2590
+ deleteAd: MutationResponse<boolean>;
2591
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2592
+ deleteAd: MutationResponse<boolean>;
2593
+ }>>;
2461
2594
  error: _apollo_client.ApolloError | undefined;
2462
2595
  loading: boolean;
2463
2596
  };
@@ -2488,7 +2621,11 @@ declare const useGetAdsByRegion: (region: string, status?: EnumAdStatus) => {
2488
2621
  };
2489
2622
 
2490
2623
  declare const useCreateResourceActivity: () => {
2491
- createResourceActivity: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2624
+ createResourceActivity: (options?: _apollo_client.MutationFunctionOptions<{
2625
+ createResourceActivity: MutationResponse<boolean>;
2626
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2627
+ createResourceActivity: MutationResponse<boolean>;
2628
+ }>>;
2492
2629
  error: _apollo_client.ApolloError | undefined;
2493
2630
  loading: boolean;
2494
2631
  };
@@ -2503,22 +2640,58 @@ declare const useGetResourceActivity: (resourceId: string, resourceType: EnumRes
2503
2640
  };
2504
2641
 
2505
2642
  declare const useCreateCheckoutSession: () => {
2506
- createCheckoutSession: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2643
+ createCheckoutSession: (options?: _apollo_client.MutationFunctionOptions<{
2644
+ createCheckoutSession: MutationResponse<{
2645
+ sessionId: string;
2646
+ checkoutUrl: string;
2647
+ }>;
2648
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2649
+ createCheckoutSession: MutationResponse<{
2650
+ sessionId: string;
2651
+ checkoutUrl: string;
2652
+ }>;
2653
+ }>>;
2507
2654
  error: _apollo_client.ApolloError | undefined;
2508
2655
  loading: boolean;
2509
2656
  };
2510
2657
  declare const useCancelSubscription: () => {
2511
- cancelSubscription: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2658
+ cancelSubscription: (options?: _apollo_client.MutationFunctionOptions<{
2659
+ cancelSubscription: MutationResponse<string>;
2660
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2661
+ cancelSubscription: MutationResponse<string>;
2662
+ }>>;
2512
2663
  error: _apollo_client.ApolloError | undefined;
2513
2664
  loading: boolean;
2514
2665
  };
2515
2666
  declare const useUpdateSubscriptionPlan: () => {
2516
2667
  error: _apollo_client.ApolloError | undefined;
2517
2668
  loading: boolean;
2518
- updateSubscriptionPlan: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2669
+ updateSubscriptionPlan: (options?: _apollo_client.MutationFunctionOptions<{
2670
+ updateSubscriptionPlan: MutationResponse<{
2671
+ subscriptionId: string;
2672
+ status: string;
2673
+ priceId: string;
2674
+ currentPlan: string;
2675
+ }>;
2676
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2677
+ updateSubscriptionPlan: MutationResponse<{
2678
+ subscriptionId: string;
2679
+ status: string;
2680
+ priceId: string;
2681
+ currentPlan: string;
2682
+ }>;
2683
+ }>>;
2519
2684
  };
2520
2685
  declare const useCreateCustomerPortal: () => {
2521
- createCustomerPortal: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2686
+ createCustomerPortal: (options?: _apollo_client.MutationFunctionOptions<{
2687
+ createCustomerPortal: MutationResponse<{
2688
+ portalUrl: string;
2689
+ }>;
2690
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2691
+ createCustomerPortal: MutationResponse<{
2692
+ portalUrl: string;
2693
+ }>;
2694
+ }>>;
2522
2695
  error: _apollo_client.ApolloError | undefined;
2523
2696
  loading: boolean;
2524
2697
  };
@@ -2526,19 +2699,17 @@ declare const useSelectPackage: () => {
2526
2699
  error: _apollo_client.ApolloError | undefined;
2527
2700
  loading: boolean;
2528
2701
  selectPackage: (options?: _apollo_client.MutationFunctionOptions<{
2529
- selectPackage: {
2702
+ selectPackage: MutationResponse<{
2530
2703
  checkoutUrl?: string;
2531
2704
  userId: string;
2532
- message: string;
2533
2705
  licences: UserLicenceType[];
2534
- };
2706
+ }>;
2535
2707
  }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2536
- selectPackage: {
2708
+ selectPackage: MutationResponse<{
2537
2709
  checkoutUrl?: string;
2538
2710
  userId: string;
2539
- message: string;
2540
2711
  licences: UserLicenceType[];
2541
- };
2712
+ }>;
2542
2713
  }>>;
2543
2714
  };
2544
2715
 
@@ -2560,17 +2731,29 @@ declare const useGetSubscriptionPlans: () => {
2560
2731
  };
2561
2732
 
2562
2733
  declare const useCreatePartner: () => {
2563
- createPartner: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2734
+ createPartner: (options?: _apollo_client.MutationFunctionOptions<{
2735
+ createPartner: MutationResponse<PartnerType>;
2736
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2737
+ createPartner: MutationResponse<PartnerType>;
2738
+ }>>;
2564
2739
  error: _apollo_client.ApolloError | undefined;
2565
2740
  loading: boolean;
2566
2741
  };
2567
2742
  declare const useUpdatePartner: () => {
2568
2743
  error: _apollo_client.ApolloError | undefined;
2569
2744
  loading: boolean;
2570
- updatePartner: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2745
+ updatePartner: (options?: _apollo_client.MutationFunctionOptions<{
2746
+ updatePartner: MutationResponse<PartnerType>;
2747
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2748
+ updatePartner: MutationResponse<PartnerType>;
2749
+ }>>;
2571
2750
  };
2572
2751
  declare const useDeletePartner: () => {
2573
- deletePartner: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2752
+ deletePartner: (options?: _apollo_client.MutationFunctionOptions<{
2753
+ deletePartner: MutationResponse<boolean>;
2754
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2755
+ deletePartner: MutationResponse<boolean>;
2756
+ }>>;
2574
2757
  error: _apollo_client.ApolloError | undefined;
2575
2758
  loading: boolean;
2576
2759
  };
@@ -2621,17 +2804,29 @@ declare const useSearchPartners: (search: string, region: string) => {
2621
2804
  };
2622
2805
 
2623
2806
  declare const useCreatePost: () => {
2624
- createPost: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2807
+ createPost: (options?: _apollo_client.MutationFunctionOptions<{
2808
+ createPost: MutationResponse<PostType>;
2809
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2810
+ createPost: MutationResponse<PostType>;
2811
+ }>>;
2625
2812
  error: _apollo_client.ApolloError | undefined;
2626
2813
  loading: boolean;
2627
2814
  };
2628
2815
  declare const useUpdatePost: () => {
2629
2816
  error: _apollo_client.ApolloError | undefined;
2630
2817
  loading: boolean;
2631
- updatePost: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2818
+ updatePost: (options?: _apollo_client.MutationFunctionOptions<{
2819
+ updatePost: MutationResponse<PostType>;
2820
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2821
+ updatePost: MutationResponse<PostType>;
2822
+ }>>;
2632
2823
  };
2633
2824
  declare const useDeletePost: () => {
2634
- deletePost: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2825
+ deletePost: (options?: _apollo_client.MutationFunctionOptions<{
2826
+ deletePost: MutationResponse<boolean>;
2827
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2828
+ deletePost: MutationResponse<boolean>;
2829
+ }>>;
2635
2830
  error: _apollo_client.ApolloError | undefined;
2636
2831
  loading: boolean;
2637
2832
  };
@@ -2664,17 +2859,17 @@ declare const useGetPostsByType: (postType: EnumPostType) => {
2664
2859
  declare const useUpdateAppSettings: () => {
2665
2860
  error: _apollo_client.ApolloError | undefined;
2666
2861
  loading: boolean;
2667
- updateAppSettings: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2862
+ updateAppSettings: (options?: _apollo_client.MutationFunctionOptions<{
2863
+ updateAppSettings: MutationResponse<boolean>;
2864
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2865
+ updateAppSettings: MutationResponse<boolean>;
2866
+ }>>;
2668
2867
  };
2669
2868
  declare const useCrawlGoogleMarkets: () => {
2670
2869
  crawlGoogleMarkets: (options?: _apollo_client.MutationFunctionOptions<{
2671
- crawlGoogleMarkets: {
2672
- message: string;
2673
- };
2870
+ crawlGoogleMarkets: MutationResponse<boolean>;
2674
2871
  }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2675
- crawlGoogleMarkets: {
2676
- message: string;
2677
- };
2872
+ crawlGoogleMarkets: MutationResponse<boolean>;
2678
2873
  }>>;
2679
2874
  error: _apollo_client.ApolloError | undefined;
2680
2875
  loading: boolean;
@@ -2683,13 +2878,9 @@ declare const useUpdateGoogleImportedMarkets: () => {
2683
2878
  error: _apollo_client.ApolloError | undefined;
2684
2879
  loading: boolean;
2685
2880
  updateGoogleImportedMarkets: (options?: _apollo_client.MutationFunctionOptions<{
2686
- updateGoogleImportedMarkets: {
2687
- message: string;
2688
- };
2881
+ updateGoogleImportedMarkets: MutationResponse<boolean>;
2689
2882
  }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2690
- updateGoogleImportedMarkets: {
2691
- message: string;
2692
- };
2883
+ updateGoogleImportedMarkets: MutationResponse<boolean>;
2693
2884
  }>>;
2694
2885
  };
2695
2886
 
@@ -2706,32 +2897,36 @@ declare const useStartGame: () => {
2706
2897
  error: _apollo_client.ApolloError | undefined;
2707
2898
  loading: boolean;
2708
2899
  startGame: (options?: _apollo_client.MutationFunctionOptions<{
2709
- startGame: GameDocType;
2900
+ startGame: MutationResponse<GameDocType>;
2710
2901
  }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2711
- startGame: GameDocType;
2902
+ startGame: MutationResponse<GameDocType>;
2712
2903
  }>>;
2713
2904
  };
2714
2905
  declare const useLeaveGame: () => {
2715
2906
  error: _apollo_client.ApolloError | undefined;
2716
- leaveGame: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2907
+ leaveGame: (options?: _apollo_client.MutationFunctionOptions<{
2908
+ leaveGame: MutationResponse<boolean>;
2909
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2910
+ leaveGame: MutationResponse<boolean>;
2911
+ }>>;
2717
2912
  loading: boolean;
2718
2913
  };
2719
2914
  declare const useUpdateDailyClueGame: () => {
2720
2915
  error: _apollo_client.ApolloError | undefined;
2721
2916
  loading: boolean;
2722
2917
  updateDailyClueGame: (options?: _apollo_client.MutationFunctionOptions<{
2723
- updateDailyClueGame: GameDocType;
2918
+ updateDailyClueGame: MutationResponse<GameDocType>;
2724
2919
  }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2725
- updateDailyClueGame: GameDocType;
2920
+ updateDailyClueGame: MutationResponse<GameDocType>;
2726
2921
  }>>;
2727
2922
  };
2728
2923
  declare const useUpdatePuzzleGame: () => {
2729
2924
  error: _apollo_client.ApolloError | undefined;
2730
2925
  loading: boolean;
2731
2926
  updatePuzzleGame: (options?: _apollo_client.MutationFunctionOptions<{
2732
- updatePuzzleGame: GameDocType;
2927
+ updatePuzzleGame: MutationResponse<GameDocType>;
2733
2928
  }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2734
- updatePuzzleGame: GameDocType;
2929
+ updatePuzzleGame: MutationResponse<GameDocType>;
2735
2930
  }>>;
2736
2931
  };
2737
2932
 
@@ -2761,24 +2956,40 @@ declare const useGetGameLeaderboard: () => {
2761
2956
  };
2762
2957
 
2763
2958
  declare const useCreateSchool: () => {
2764
- createSchool: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2959
+ createSchool: (options?: _apollo_client.MutationFunctionOptions<{
2960
+ createSchool: MutationResponse<SchoolType>;
2961
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2962
+ createSchool: MutationResponse<SchoolType>;
2963
+ }>>;
2765
2964
  error: _apollo_client.ApolloError | undefined;
2766
2965
  loading: boolean;
2767
2966
  };
2768
2967
  declare const useUpdateSchool: () => {
2769
2968
  error: _apollo_client.ApolloError | undefined;
2770
2969
  loading: boolean;
2771
- updateSchool: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2970
+ updateSchool: (options?: _apollo_client.MutationFunctionOptions<{
2971
+ updateSchool: MutationResponse<SchoolType>;
2972
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2973
+ updateSchool: MutationResponse<SchoolType>;
2974
+ }>>;
2772
2975
  };
2773
2976
  declare const useDeleteSchool: () => {
2774
- deleteSchool: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2977
+ deleteSchool: (options?: _apollo_client.MutationFunctionOptions<{
2978
+ deleteSchool: MutationResponse<boolean>;
2979
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2980
+ deleteSchool: MutationResponse<boolean>;
2981
+ }>>;
2775
2982
  error: _apollo_client.ApolloError | undefined;
2776
2983
  loading: boolean;
2777
2984
  };
2778
2985
  declare const useRequestMarketingMaterial: () => {
2779
2986
  error: _apollo_client.ApolloError | undefined;
2780
2987
  loading: boolean;
2781
- requestMarketingMaterial: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
2988
+ requestMarketingMaterial: (options?: _apollo_client.MutationFunctionOptions<{
2989
+ requestMarketingMaterial: MutationResponse<boolean>;
2990
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
2991
+ requestMarketingMaterial: MutationResponse<boolean>;
2992
+ }>>;
2782
2993
  };
2783
2994
 
2784
2995
  declare const useGetSchools: () => {
@@ -2818,25 +3029,45 @@ declare const useGetAffiliates: () => {
2818
3029
  declare const useUpdateAffiliateDetails: () => {
2819
3030
  error: _apollo_client.ApolloError | undefined;
2820
3031
  loading: boolean;
2821
- updateAffiliateDetails: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
3032
+ updateAffiliateDetails: (options?: _apollo_client.MutationFunctionOptions<{
3033
+ updateAffiliateDetails: MutationResponse<AffiliateType>;
3034
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
3035
+ updateAffiliateDetails: MutationResponse<AffiliateType>;
3036
+ }>>;
2822
3037
  };
2823
3038
  declare const useDeleteAffiliate: () => {
2824
- deleteAffiliate: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
3039
+ deleteAffiliate: (options?: _apollo_client.MutationFunctionOptions<{
3040
+ deleteAffiliate: MutationResponse<boolean>;
3041
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
3042
+ deleteAffiliate: MutationResponse<boolean>;
3043
+ }>>;
2825
3044
  error: _apollo_client.ApolloError | undefined;
2826
3045
  loading: boolean;
2827
3046
  };
2828
3047
  declare const useRedeemAffiliateReward: () => {
2829
3048
  error: _apollo_client.ApolloError | undefined;
2830
3049
  loading: boolean;
2831
- redeemAffiliateReward: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
3050
+ redeemAffiliateReward: (options?: _apollo_client.MutationFunctionOptions<{
3051
+ redeemAffiliateReward: MutationResponse<AffiliateType>;
3052
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
3053
+ redeemAffiliateReward: MutationResponse<AffiliateType>;
3054
+ }>>;
2832
3055
  };
2833
3056
  declare const useAssignAffiliateResourceReward: () => {
2834
- assignAffiliateResourceReward: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
3057
+ assignAffiliateResourceReward: (options?: _apollo_client.MutationFunctionOptions<{
3058
+ assignAffiliateResourceReward: MutationResponse<AffiliateType>;
3059
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
3060
+ assignAffiliateResourceReward: MutationResponse<AffiliateType>;
3061
+ }>>;
2835
3062
  error: _apollo_client.ApolloError | undefined;
2836
3063
  loading: boolean;
2837
3064
  };
2838
3065
  declare const useAssignAffiliateBonusReward: () => {
2839
- assignAffiliateBonusReward: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
3066
+ assignAffiliateBonusReward: (options?: _apollo_client.MutationFunctionOptions<{
3067
+ assignAffiliateBonusReward: MutationResponse<AffiliateType>;
3068
+ }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
3069
+ assignAffiliateBonusReward: MutationResponse<AffiliateType>;
3070
+ }>>;
2840
3071
  error: _apollo_client.ApolloError | undefined;
2841
3072
  loading: boolean;
2842
3073
  };
@@ -3319,4 +3550,4 @@ declare function toUserFacingErrorMessage(error: string | null | undefined, fall
3319
3550
  /** Extracts and sanitizes an unknown catch/Apollo error for toasts and alerts. */
3320
3551
  declare function getErrorMessage(error: unknown, fallback?: string): string;
3321
3552
 
3322
- export { ADMIN_APP_ROLES, ADMIN_DASHBOARD_CONTEXTS, AFFILIATE_PARTICIPANT_TYPE_LABELS, AFFILIATE_REWARDS, ANDROID_URL, type AdFormData, type AdFormState, type AdResource, type AdType, type AdminAppRole, type AdminDashboardContext, type AdminDashboardContextInfo, type AdminUpdateResourceType, type AffiliateBankAccountDetailsType, type AffiliateContactDetails, type AffiliateDetailsType, type AffiliateFormData, type AffiliateResourceType, type AffiliateRewardType, type AffiliateType, type AffiliateUserDefaultFields, type AppSettingsFormData, type AppSettingsType, type AuthPayloadType, type BadgeBasename, type BadgeId, type BaseGameMap, type BaseGameType, type BaseResourceType, type BaseResourceTypeFormData, CLUEMART_MAIN_DOMAIN_URL, CM_AFFILIATE_PROMO_CODE, CM_SCHOOL_PROMO_CODE, type CalendarSheetContentData, type Category, type ChatMessageInput, type ChatMessageReaction, type ChatMessageReplyPreview, type ChatMessageSeen, type ChatMessageType, type ChatType, type CluiImageBasename, type CluiImageId, type ContactUsFormData, type CreateAdFormData, type CreateAdFormState, type CreateAffiliateFormData, type CreateAppSettingsFormData, type CreateBulkNotificationInput, type CreateContactUsFormData, type CreateEventFormData, type CreateEventInfoFormData, type CreateFormData, type CreateLoginFormData, type CreatePartnerFormData, type CreatePostFormData, type CreateRegisterFormData, type CreateRequestPasswordResetFormData, type CreateResetPasswordFormData, type CreateSchoolFormData, type CreateUnregisteredVendorFormData, type CreateUserFormData, type CreateValidateVerificationTokenFormData, type CreateVendorFormData, type CreateVendorInfoFormData, DEFAULT_RESOURCES_RETURN_LIMIT, DEFAULT_RESOURCES_RETURN_OFFSET, DEFAULT_SHARE_OG_IMAGE, DEFAULT_USER_FACING_ERROR, type DailyClueBaseGame, type DailyClueGameData, type DateTimeType, type DateTimeWithPriceType, type DeviceInfo, EVENT_DATE_STATUS_PERIOD_MAP, EnumActivity, EnumAdShowOn, EnumAdStatus, EnumAdStyle, EnumAdType, EnumAffiliateParticipantType, EnumAffiliateRewardType, EnumBillingPeriod, EnumChatReportReason, EnumChatType, EnumEventDateStatus, EnumEventType, EnumFoodFlavor, EnumFoodType, EnumGameStatus, EnumGameType, EnumInviteStatus, EnumNotificationResourceType, EnumNotificationType, EnumOSPlatform, EnumPartnerType, EnumPaymentMethod, EnumPostContentType, EnumPostType, EnumRegions, EnumRelationResource, EnumResourceType, EnumReward, EnumSocialMedia, EnumSubscriptionStatus, EnumUserLicence, EnumUserRole, EnumVendorType, EnumVerificationType, type EventFormData, type EventInfoFormData, type EventInfoType, type EventListItemType, type EventScheduleStatusPresentation, type EventScheduleStatusTone, type EventStatusType, type EventType, type FormDateField, type FormField, GET_EVENT, GET_EVENT_BY_SLUG, GET_EVENT_INFO, GET_PARTNER, GET_PARTNER_BY_SLUG, GET_POST, GET_POST_BY_SLUG, GET_RESOURCE_CONNECTIONS, GET_VENDOR, GET_VENDOR_BY_SLUG, GET_VENDOR_INFO, type GameDate, type GameDocType, type GameHistory, type GameLeaderboard, type GamePlacement, type GamePlacementClue, type GameType, type GeocodeLocation, type GlobalGameData, type GoogleAddressComponent, type GoogleImportedMarket, IMAGE_EXTENSION, IOS_URL, type IconBasename, type IconId, type ImageObjectType, ImageTypeEnum, KNOWN_EVENT_SCHEDULE_STATUSES, type LocationGeoType, type LocationType, type LoginFormData, type LogoBasename, type LogoId, type MarketingMaterialRequestInputType, NETWORK_USER_FACING_ERROR, type NotificationCount, type NotificationDataType, type NotificationType, type Nullable, OG_DESCRIPTION_LINE_BREAK, type OptionItem, type OtherImagesBasename, type OtherImagesId, type OwnerType, PERMISSIONS, POST_SHARE_RESOURCE_TYPES, PROMO_CODE_PREFIX, PUBLIC_SHARE_PATH_TYPES, type ParticipantType, type PartnerFormData, type PartnerType, type PaymentInfoType, type Permission, type PostContentData, type PostContentFormData, type PostContentGame, type PostContentImage, type PostContentList, type PostContentTextarea, type PostContentType, type PostContentVideo, type PostFileInput, type PostFormData, type PostResource, type PostShareResourceType, type PostType, PostTypeLabels, type PosterAssetId, type PosterImageBasename, type PosterInputType, type PosterUsageType, type PromoCodeType, type PublicSharePathType, type PushTokenType, type PuzzleAnswer, type PuzzleAnsweredQuestion, type PuzzleBaseGame, type PuzzleGameData, type PuzzleQuestion, RELATION_OVERLAY_LAYOUT_VERSION, RELATION_SHARE_APPLICATION, RELATION_SHARE_INVITATION, RELATION_SHARE_RESOURCE_TYPES, RESOURCE_SHARE_TYPES, ROLE_PERMISSIONS, type RedeemHistoryType, type RedeemRewardInput, type RedeemRewardResponse, type RedeemedReward, type RefreshTokenPayloadType, type RefundPolicy, type Region, type RegisterFormData, type RelatedPostType, type RelationDate, type RelationInputType, type RelationSharePathType, type RelationShareResourceType, type RelationType$1 as RelationType, type ReportChatUser, type RequestPasswordResetFormData, type Requirement, type ResetPasswordFormData, type ResourceActivityEntry, type ResourceActivityInputType, type ResourceActivityType, type ResourceByUser, type ResourceConnectionsType, type ResourceContactDetailsType, type ResourceDetails, type ResourceImageType, type ResourceShareType, SAVED_EMAIL_KEY, SAVED_PASSWORD_KEY, SAVED_REFRESH_TOKEN_KEY, SAVED_TOKEN_KEY, SCHOOL_MAX_STUDENT_COUNT, SCHOOL_MIN_STUDENT_COUNT, SHARE_APPLICATION_DEADLINE_PREFIX, SHARE_CALENDAR_ICON, SHARE_CATEGORIES_SECTION_HEADING, SHARE_CATEGORY_ICON, SHARE_CHECKMARK_ICON, SHARE_CLOCK_ICON, SHARE_COMPLIANCE_PREFIX, SHARE_DESCRIPTION_SECTION_BREAK, SHARE_DOLLAR_ICON, SHARE_FOOD_TRUCK_LINE, SHARE_INFO_ICON, SHARE_MARKET_DATES_SECTION_HEADING, SHARE_MORE_INFO_LINE, SHARE_PRICE_RANGE_PREFIX, SHARE_RAIN_OR_SHINE_LINE, SHARE_REQUIREMENTS_SECTION_HEADING, SHARE_RESOURCE_LABEL, SHARE_RULER_ICON, SHARE_SITE_URL, SHARE_STALL_SIZE_PREFIX, SHARE_TAGS_SECTION_HEADING, SHARE_TYPE_PATH_REGEX, SOCIAL_IMAGE_HEIGHT, SOCIAL_IMAGE_WIDTH, type SafeUserType, type SchoolCampaignType, type SchoolFormData, type SchoolRegisteredUserType, type SchoolReturnType, type SchoolType, type ShareEventForInvitation, type ShareEventForPublic, type ShareEventInfoForInvitation, type ShareMessageFooterPlacement, type ShareResourceType, type ShareSlugResource, type ShareType, type ShareVendorForApplication, type ShareVendorForPublic, type ShareVendorInfoForApplication, type SocialMediaType, type SocialShareResourceType, type StallType, type StallholderFilterOption, type StripeSubscription, type Subcategory, type SubcategoryItems, type SubscriptionPlanData, type SubscriptionPlansResponse, type SubscriptionPricingData, type SubscriptionStatusData, TIERS_BY_PRIORITY, TIER_DISPLAY_LABELS, TIER_FROM_LICENCE, type TermsAgreement, type Tier, USER_STORAGE_KEY, type UnregisteredVendorFormData, type UnregisteredVendorInvitationType, type UnregisteredVendorType, type UseGetResourcesByRegionOptions, type UserActivity, type UserActivityEvent, type UserFormData, type UserLicenceType, type UserType, type ValidateVerificationTokenFormData, type VendorAttributes, type VendorCalendarData, type VendorFormData, type VendorInfoFormData, type VendorInfoType, type VendorProductList, type VendorType, WILDCARD_PERMISSION, appendShareMoreInfoLine, availableCategories, availableRegionOptions, availableRegionTypes, availableTagTypes, badgeFiles, badgeIds, badges, bankAccountDetailsFields, buildApplicationShareDescription, buildCalendarSheetContentData, buildFacebookShareQuote, buildInvitationShareDescription, buildPublicEventShareDescription, buildPublicVendorShareDescription, buildShareMessageSections, buildShareOgDescription, buildShareOgDescriptionFromSections, buildSharePagePath, buildShareUrl, canAccessAdminApp, canAccessAdminPath, capitalizeFirstLetter, categoryColors, cluemartSocialMedia, cluiFiles, cluiIds, cluiImages, collectStallholderStartDates, collectVendorEventRelationDateTimes, companyContactFields, computeDailyClueState, contactUsFields, createAffiliateReward, darkColors, dateFormat, emailField, eventBasicInfoFields, eventEndDateFields, eventHasSelectedDate, eventInfo, eventInfoPaymentInfo, eventMatchesDateStatusPeriod, eventStartDateFields, eventStartDatesSet, filterEventsByDateStatusPeriod, filterRegisteredVendorsByEventDatesOnly, filterRegisteredVendorsForEvent, filterUnregisteredVendorsByEventDatesOnly, filterUnregisteredVendorsForEvent, filterVendorEventsBySelectedDate, findEventDateTimeByIsoDate, fonts, foodFlavourOptions, formatCategoryLabel, formatDate, formatIrdNumber, formatNZBankAccount, formatShareApplicationCategoriesSection, formatShareApplicationComplianceSection, formatShareApplicationPriceRangeLine, formatShareApplicationStallSizeLine, formatShareInvitationApplicationDeadlineLine, formatShareInvitationMarketDatesSection, formatShareInvitationRequirementsSection, formatShareIsFoodTrueLine, formatShareMarketDate, formatShareRainOrShineLine, formatShareStallLine, formatShareTagsSection, formatStallCapacityLabel, formatTimestamp, fromCalendarIsoDate, futureTimePeriods, gameScreenIdentifierList, gameTypeToDisplayName, getAllowedEventDateStatuses, getCurrentAndFutureDates, getDefaultAdminHome, getErrorMessage, getEventCalendarIsoDates, getEventDatesWithStallholders, getEventScheduleStatusLabel, getEventScheduleStatusPresentation, getEventScheduleStatusTone, getEventStallholderEmptyMessage, getPermissionsForRoles, getRegisteredVendorCategoryNames, getRegisteredVendorStartDates, getStallholderCategoryNames, getStallholderCategoryOptions, getUnregisteredVendorCategoryNames, getUnregisteredVendorStartDates, getUsableAdminContexts, getVendorEventRelationDateOptions, getVendorEventRelationStartDates, getVendorEventsEmptyMessage, hasAllPermissions, hasAnyPermission, hasAnyRole, hasMatchingEventDate, hasPermission, hasRole, iconFiles, iconIds, icons, isFutureDatesBeforeThreshold, isInternalErrorMessage, isIsoDateString, isPostShareResourceType, isRelationShareResourceType, isResourceImageActive, isTransientNetworkError, isValidIrdNumber, joinShareDescriptionSections, joinShareOgDescriptionSections, licenseNiceNames, lightColors, loginFields, logoFiles, logoIds, logos, mapArrayToOptions, matchesCategory, matchesSelectedDate, normalizeIrdNumber, normalizeResourceImage, normalizeShareOgDescription, normalizeShareRouteId, normalizeShareText, normalizeUrl, nzStartOfDay, otherImages, otherImagesFiles, otherImagesIds, packagingOptions, partnerBasicInfoFields, paymentMethodOptions, permissionListIncludes, posterFiles, posterIds, posters, priceUnits, producedIngOptions, productLabelGroups, profileFields, refundPolicyOptions, registerFields, relationHasSelectedDate, removeTypename, requestPasswordResetFields, requirementsOptions, resetPasswordFields, resolveAdminContextFromPath, resolveResourceImageActive, rewardNiceNames, seededShuffle, shareMessageFooterPlacementForType, shareSlugResourceId, shouldShowEventActionsWithWeather, socialMediaFields, sortDatesChronologically, splitShareDescriptionSections, stallTypeOptions, statusOptions, stripOverlaySubtitleSpecialChars, tagOptions, timeFormat, toCalendarIsoDate, toGraphqlQueryString, toNZTime, toShareSocialImageCacheVersion, toUserFacingErrorMessage, truncateText, useAddParticipantToChat, useAddUserFavouriteResource, useAddUserGoingResource, useAddUserInterestResource, useAddUserPresentResource, useAdminPermanentlyDeleteResource, useAdminResendUserVerificationEmail, useAdminUpdateResourceType, useAssignAffiliateBonusReward, useAssignAffiliateResourceReward, useCancelSubscription, useContactUs, useCrawlGoogleMarkets, useCreateAd, useCreateBulkNotifications, useCreateCheckoutSession, useCreateCustomerPortal, useCreateEvent, useCreateEventInfo, useCreatePartner, useCreatePost, useCreatePoster, useCreatePrivateChat, useCreatePushToken, useCreateRelation, useCreateResourceActivity, useCreateSchool, useCreateUnregisteredVendor, useCreateUser, useCreateVendor, useCreateVendorInfo, useDeleteAd, useDeleteAffiliate, useDeleteAllNotifications, useDeleteChat, useDeleteEvent, useDeleteNotification, useDeletePartner, useDeletePost, useDeleteRelation, useDeleteSchool, useDeleteUnregisteredVendor, useDeleteUser, useDeleteVendor, useGetAd, useGetAds, useGetAdsByRegion, useGetAffiliate, useGetAffiliates, useGetAppSettings, useGetChat, useGetChatSubscription, useGetChatsByRegion, useGetEvent, useGetEventByPlaceId, useGetEventInfo, useGetEventRelations, useGetEvents, useGetEventsByRegion, useGetEventsNearMe, useGetGame, useGetGameLeaderboard, useGetGames, useGetNotificationCount, useGetNotificationCountSubscription, useGetPartner, useGetPartners, useGetPartnersByRegion, useGetPost, useGetPosts, useGetPostsByType, useGetRelation, useGetRelationByEventAndVendor, useGetReportedChatUsers, useGetResourceActivity, useGetResourceConnections, useGetSchool, useGetSchools, useGetSubscriptionPlans, useGetSubscriptionStatus, useGetUnregisteredVendor, useGetUnregisteredVendors, useGetUnregisteredVendorsByInviterId, useGetUser, useGetUserActivities, useGetUserChats, useGetUserEvents, useGetUserNotifications, useGetUserNotificationsSubscription, useGetUserPartners, useGetUserResources, useGetUserVendors, useGetUsers, useGetVendor, useGetVendorInfo, useGetVendorRelations, useGetVendors, useGetVendorsByRegion, useLeaveGame, useLogin, useLogout, useMarkAllNotificationsRead, useMarkChatMessagesSeen, useMarkNotificationRead, useRedeemAffiliateReward, useRedeemReward, useRefreshToken, useRegister, useRemoveParticipantFromChat, useRemoveUserFavouriteResource, useRemoveUserGoingResource, useRemoveUserInterestResource, useRemoveUserPresentResource, useReportChatUser, useRequestMarketingMaterial, useRequestPasswordReset, useResetPassword, useSearchEvents, useSearchPartners, useSearchVendors, useSelectPackage, useSelectStandardPackage, useSendChatMessage, useStartGame, useToggleChatMessageLike, useUnlinkUnregisteredVendorByInviterId, useUpdateAd, useUpdateAffiliateDetails, useUpdateAppSettings, useUpdateDailyClueGame, useUpdateEvent, useUpdateEventInfo, useUpdateGoogleImportedMarkets, useUpdatePartner, useUpdatePost, useUpdatePuzzleGame, useUpdateRelation, useUpdateSchool, useUpdateSubscriptionPlan, useUpdateUnregisteredVendor, useUpdateUser, useUpdateVendor, useUpdateVendorInfo, useValidateVerificationToken, validateVerificationTokenFields, vendorAvailability, vendorBasicInfoFields, vendorCompliance, vendorElectricity, vendorEndDateFields, vendorFoodFlavour, vendorFullAddress, vendorGazebo, vendorLocationDescription, vendorMenuFields, vendorPackaging, vendorPriceRange, vendorProducedIn, vendorStallSize, vendorStartDateFields, vendorTable };
3553
+ export { ADMIN_APP_ROLES, ADMIN_DASHBOARD_CONTEXTS, AFFILIATE_PARTICIPANT_TYPE_LABELS, AFFILIATE_REWARDS, ANDROID_URL, type AdFormData, type AdFormState, type AdResource, type AdType, type AdminAppRole, type AdminDashboardContext, type AdminDashboardContextInfo, type AdminUpdateResourceType, type AffiliateBankAccountDetailsType, type AffiliateContactDetails, type AffiliateDetailsType, type AffiliateFormData, type AffiliateResourceType, type AffiliateRewardType, type AffiliateType, type AffiliateUserDefaultFields, type AppSettingsFormData, type AppSettingsType, type AuthMutationResponse, type AuthPayloadType, type BadgeBasename, type BadgeId, type BaseGameMap, type BaseGameType, type BaseResourceType, type BaseResourceTypeFormData, CLUEMART_MAIN_DOMAIN_URL, CM_AFFILIATE_PROMO_CODE, CM_SCHOOL_PROMO_CODE, type CalendarSheetContentData, type Category, type ChatMessageInput, type ChatMessageReaction, type ChatMessageReplyPreview, type ChatMessageSeen, type ChatMessageType, type ChatType, type CluiImageBasename, type CluiImageId, type ContactUsFormData, type CreateAdFormData, type CreateAdFormState, type CreateAffiliateFormData, type CreateAppSettingsFormData, type CreateBulkNotificationInput, type CreateContactUsFormData, type CreateEventFormData, type CreateEventInfoFormData, type CreateFormData, type CreateLoginFormData, type CreatePartnerFormData, type CreatePostFormData, type CreateRegisterFormData, type CreateRequestPasswordResetFormData, type CreateResetPasswordFormData, type CreateSchoolFormData, type CreateUnregisteredVendorFormData, type CreateUserFormData, type CreateValidateVerificationTokenFormData, type CreateVendorFormData, type CreateVendorInfoFormData, DEFAULT_RESOURCES_RETURN_LIMIT, DEFAULT_RESOURCES_RETURN_OFFSET, DEFAULT_SHARE_OG_IMAGE, DEFAULT_USER_FACING_ERROR, type DailyClueBaseGame, type DailyClueGameData, type DateTimeType, type DateTimeWithPriceType, type DeviceInfo, EVENT_DATE_STATUS_PERIOD_MAP, EnumActivity, EnumAdShowOn, EnumAdStatus, EnumAdStyle, EnumAdType, EnumAffiliateParticipantType, EnumAffiliateRewardType, EnumBillingPeriod, EnumChatReportReason, EnumChatType, EnumEventDateStatus, EnumEventType, EnumFoodFlavor, EnumFoodType, EnumGameStatus, EnumGameType, EnumInviteStatus, EnumNotificationResourceType, EnumNotificationType, EnumOSPlatform, EnumPartnerType, EnumPaymentMethod, EnumPostContentType, EnumPostType, EnumRegions, EnumRelationResource, EnumResourceType, EnumReward, EnumSocialMedia, EnumSubscriptionStatus, EnumUserLicence, EnumUserRole, EnumVendorType, EnumVerificationType, type EventFormData, type EventInfoFormData, type EventInfoType, type EventListItemType, type EventScheduleStatusPresentation, type EventScheduleStatusTone, type EventStatusType, type EventType, type FormDateField, type FormField, GET_EVENT, GET_EVENT_BY_SLUG, GET_EVENT_INFO, GET_PARTNER, GET_PARTNER_BY_SLUG, GET_POST, GET_POST_BY_SLUG, GET_RESOURCE_CONNECTIONS, GET_VENDOR, GET_VENDOR_BY_SLUG, GET_VENDOR_INFO, type GameDate, type GameDocType, type GameHistory, type GameLeaderboard, type GamePlacement, type GamePlacementClue, type GameType, type GeocodeLocation, type GlobalGameData, type GoogleAddressComponent, type GoogleImportedMarket, IMAGE_EXTENSION, IOS_URL, type IconBasename, type IconId, type ImageObjectType, ImageTypeEnum, KNOWN_EVENT_SCHEDULE_STATUSES, type LocationGeoType, type LocationType, type LoginFormData, type LogoBasename, type LogoId, type MarketingMaterialRequestInputType, type MutationResponse, NETWORK_USER_FACING_ERROR, type NotificationCount, type NotificationDataType, type NotificationType, type Nullable, OG_DESCRIPTION_LINE_BREAK, type OptionItem, type OtherImagesBasename, type OtherImagesId, type OwnerType, PERMISSIONS, POST_SHARE_RESOURCE_TYPES, PROMO_CODE_PREFIX, PUBLIC_SHARE_PATH_TYPES, type ParticipantType, type PartnerFormData, type PartnerType, type PaymentInfoType, type Permission, type PostContentData, type PostContentFormData, type PostContentGame, type PostContentImage, type PostContentList, type PostContentTextarea, type PostContentType, type PostContentVideo, type PostFileInput, type PostFormData, type PostResource, type PostShareResourceType, type PostType, PostTypeLabels, type PosterAssetId, type PosterImageBasename, type PosterInputType, type PosterUsageType, type PromoCodeType, type PublicSharePathType, type PushTokenType, type PuzzleAnswer, type PuzzleAnsweredQuestion, type PuzzleBaseGame, type PuzzleGameData, type PuzzleQuestion, RELATION_OVERLAY_LAYOUT_VERSION, RELATION_SHARE_APPLICATION, RELATION_SHARE_INVITATION, RELATION_SHARE_RESOURCE_TYPES, RESOURCE_SHARE_TYPES, ROLE_PERMISSIONS, type RedeemHistoryType, type RedeemRewardInput, type RedeemRewardMutationResponse, type RedeemRewardResponse, type RedeemedReward, type RefreshTokenMutationResponse, type RefreshTokenPayloadType, type RefundPolicy, type Region, type RegisterFormData, type RelatedPostType, type RelationDate, type RelationInputType, type RelationSharePathType, type RelationShareResourceType, type RelationType$1 as RelationType, type ReportChatUser, type RequestPasswordResetFormData, type Requirement, type ResetPasswordFormData, type ResourceActivityEntry, type ResourceActivityInputType, type ResourceActivityType, type ResourceByUser, type ResourceConnectionsType, type ResourceContactDetailsType, type ResourceDetails, type ResourceImageType, type ResourceShareType, SAVED_EMAIL_KEY, SAVED_PASSWORD_KEY, SAVED_REFRESH_TOKEN_KEY, SAVED_TOKEN_KEY, SCHOOL_MAX_STUDENT_COUNT, SCHOOL_MIN_STUDENT_COUNT, SHARE_APPLICATION_DEADLINE_PREFIX, SHARE_CALENDAR_ICON, SHARE_CATEGORIES_SECTION_HEADING, SHARE_CATEGORY_ICON, SHARE_CHECKMARK_ICON, SHARE_CLOCK_ICON, SHARE_COMPLIANCE_PREFIX, SHARE_DESCRIPTION_SECTION_BREAK, SHARE_DOLLAR_ICON, SHARE_FOOD_TRUCK_LINE, SHARE_INFO_ICON, SHARE_MARKET_DATES_SECTION_HEADING, SHARE_MORE_INFO_LINE, SHARE_PRICE_RANGE_PREFIX, SHARE_RAIN_OR_SHINE_LINE, SHARE_REQUIREMENTS_SECTION_HEADING, SHARE_RESOURCE_LABEL, SHARE_RULER_ICON, SHARE_SITE_URL, SHARE_STALL_SIZE_PREFIX, SHARE_TAGS_SECTION_HEADING, SHARE_TYPE_PATH_REGEX, SOCIAL_IMAGE_HEIGHT, SOCIAL_IMAGE_WIDTH, type SafeUserType, type SchoolCampaignType, type SchoolFormData, type SchoolRegisteredUserType, type SchoolReturnType, type SchoolType, type ShareEventForInvitation, type ShareEventForPublic, type ShareEventInfoForInvitation, type ShareMessageFooterPlacement, type ShareResourceType, type ShareSlugResource, type ShareType, type ShareVendorForApplication, type ShareVendorForPublic, type ShareVendorInfoForApplication, type SocialMediaType, type SocialShareResourceType, type StallType, type StallholderFilterOption, type StripeSubscription, type Subcategory, type SubcategoryItems, type SubscriptionPlanData, type SubscriptionPlansResponse, type SubscriptionPricingData, type SubscriptionStatusData, TIERS_BY_PRIORITY, TIER_DISPLAY_LABELS, TIER_FROM_LICENCE, type TermsAgreement, type Tier, USER_STORAGE_KEY, type UnregisteredVendorFormData, type UnregisteredVendorInvitationType, type UnregisteredVendorType, type UseGetResourcesByRegionOptions, type UserActivity, type UserActivityEvent, type UserFormData, type UserLicenceType, type UserType, type ValidateVerificationTokenFormData, type VendorAttributes, type VendorCalendarData, type VendorFormData, type VendorInfoFormData, type VendorInfoType, type VendorProductList, type VendorType, WILDCARD_PERMISSION, appendShareMoreInfoLine, availableCategories, availableRegionOptions, availableRegionTypes, availableTagTypes, badgeFiles, badgeIds, badges, bankAccountDetailsFields, buildApplicationShareDescription, buildCalendarSheetContentData, buildFacebookShareQuote, buildInvitationShareDescription, buildPublicEventShareDescription, buildPublicVendorShareDescription, buildShareMessageSections, buildShareOgDescription, buildShareOgDescriptionFromSections, buildSharePagePath, buildShareUrl, canAccessAdminApp, canAccessAdminPath, capitalizeFirstLetter, categoryColors, cluemartSocialMedia, cluiFiles, cluiIds, cluiImages, collectStallholderStartDates, collectVendorEventRelationDateTimes, companyContactFields, computeDailyClueState, contactUsFields, createAffiliateReward, darkColors, dateFormat, emailField, eventBasicInfoFields, eventEndDateFields, eventHasSelectedDate, eventInfo, eventInfoPaymentInfo, eventMatchesDateStatusPeriod, eventStartDateFields, eventStartDatesSet, filterEventsByDateStatusPeriod, filterRegisteredVendorsByEventDatesOnly, filterRegisteredVendorsForEvent, filterUnregisteredVendorsByEventDatesOnly, filterUnregisteredVendorsForEvent, filterVendorEventsBySelectedDate, findEventDateTimeByIsoDate, fonts, foodFlavourOptions, formatCategoryLabel, formatDate, formatIrdNumber, formatNZBankAccount, formatShareApplicationCategoriesSection, formatShareApplicationComplianceSection, formatShareApplicationPriceRangeLine, formatShareApplicationStallSizeLine, formatShareInvitationApplicationDeadlineLine, formatShareInvitationMarketDatesSection, formatShareInvitationRequirementsSection, formatShareIsFoodTrueLine, formatShareMarketDate, formatShareRainOrShineLine, formatShareStallLine, formatShareTagsSection, formatStallCapacityLabel, formatTimestamp, fromCalendarIsoDate, futureTimePeriods, gameScreenIdentifierList, gameTypeToDisplayName, getAllowedEventDateStatuses, getCurrentAndFutureDates, getDefaultAdminHome, getErrorMessage, getEventCalendarIsoDates, getEventDatesWithStallholders, getEventScheduleStatusLabel, getEventScheduleStatusPresentation, getEventScheduleStatusTone, getEventStallholderEmptyMessage, getPermissionsForRoles, getRegisteredVendorCategoryNames, getRegisteredVendorStartDates, getStallholderCategoryNames, getStallholderCategoryOptions, getUnregisteredVendorCategoryNames, getUnregisteredVendorStartDates, getUsableAdminContexts, getVendorEventRelationDateOptions, getVendorEventRelationStartDates, getVendorEventsEmptyMessage, hasAllPermissions, hasAnyPermission, hasAnyRole, hasMatchingEventDate, hasPermission, hasRole, iconFiles, iconIds, icons, isFutureDatesBeforeThreshold, isInternalErrorMessage, isIsoDateString, isPostShareResourceType, isRelationShareResourceType, isResourceImageActive, isTransientNetworkError, isValidIrdNumber, joinShareDescriptionSections, joinShareOgDescriptionSections, licenseNiceNames, lightColors, loginFields, logoFiles, logoIds, logos, mapArrayToOptions, matchesCategory, matchesSelectedDate, normalizeIrdNumber, normalizeResourceImage, normalizeShareOgDescription, normalizeShareRouteId, normalizeShareText, normalizeUrl, nzStartOfDay, otherImages, otherImagesFiles, otherImagesIds, packagingOptions, partnerBasicInfoFields, paymentMethodOptions, permissionListIncludes, posterFiles, posterIds, posters, priceUnits, producedIngOptions, productLabelGroups, profileFields, refundPolicyOptions, registerFields, relationHasSelectedDate, removeTypename, requestPasswordResetFields, requirementsOptions, resetPasswordFields, resolveAdminContextFromPath, resolveResourceImageActive, rewardNiceNames, seededShuffle, shareMessageFooterPlacementForType, shareSlugResourceId, shouldShowEventActionsWithWeather, socialMediaFields, sortDatesChronologically, splitShareDescriptionSections, stallTypeOptions, statusOptions, stripOverlaySubtitleSpecialChars, tagOptions, timeFormat, toCalendarIsoDate, toGraphqlQueryString, toNZTime, toShareSocialImageCacheVersion, toUserFacingErrorMessage, truncateText, useAddParticipantToChat, useAddUserFavouriteResource, useAddUserGoingResource, useAddUserInterestResource, useAddUserPresentResource, useAdminPermanentlyDeleteResource, useAdminResendUserVerificationEmail, useAdminUpdateResourceType, useAssignAffiliateBonusReward, useAssignAffiliateResourceReward, useCancelSubscription, useContactUs, useCrawlGoogleMarkets, useCreateAd, useCreateBulkNotifications, useCreateCheckoutSession, useCreateCustomerPortal, useCreateEvent, useCreateEventInfo, useCreatePartner, useCreatePost, useCreatePoster, useCreatePrivateChat, useCreatePushToken, useCreateRelation, useCreateResourceActivity, useCreateSchool, useCreateUnregisteredVendor, useCreateUser, useCreateVendor, useCreateVendorInfo, useDeleteAd, useDeleteAffiliate, useDeleteAllNotifications, useDeleteChat, useDeleteEvent, useDeleteNotification, useDeletePartner, useDeletePost, useDeleteRelation, useDeleteSchool, useDeleteUnregisteredVendor, useDeleteUser, useDeleteVendor, useGetAd, useGetAds, useGetAdsByRegion, useGetAffiliate, useGetAffiliates, useGetAppSettings, useGetChat, useGetChatSubscription, useGetChatsByRegion, useGetEvent, useGetEventByPlaceId, useGetEventInfo, useGetEventRelations, useGetEvents, useGetEventsByRegion, useGetEventsNearMe, useGetGame, useGetGameLeaderboard, useGetGames, useGetNotificationCount, useGetNotificationCountSubscription, useGetPartner, useGetPartners, useGetPartnersByRegion, useGetPost, useGetPosts, useGetPostsByType, useGetRelation, useGetRelationByEventAndVendor, useGetReportedChatUsers, useGetResourceActivity, useGetResourceConnections, useGetSchool, useGetSchools, useGetSubscriptionPlans, useGetSubscriptionStatus, useGetUnregisteredVendor, useGetUnregisteredVendors, useGetUnregisteredVendorsByInviterId, useGetUser, useGetUserActivities, useGetUserChats, useGetUserEvents, useGetUserNotifications, useGetUserNotificationsSubscription, useGetUserPartners, useGetUserResources, useGetUserVendors, useGetUsers, useGetVendor, useGetVendorInfo, useGetVendorRelations, useGetVendors, useGetVendorsByRegion, useLeaveGame, useLogin, useLogout, useMarkAllNotificationsRead, useMarkChatMessagesSeen, useMarkNotificationRead, useRedeemAffiliateReward, useRedeemReward, useRefreshToken, useRegister, useRemoveParticipantFromChat, useRemoveUserFavouriteResource, useRemoveUserGoingResource, useRemoveUserInterestResource, useRemoveUserPresentResource, useReportChatUser, useRequestMarketingMaterial, useRequestPasswordReset, useResetPassword, useSearchEvents, useSearchPartners, useSearchVendors, useSelectPackage, useSelectStandardPackage, useSendChatMessage, useStartGame, useToggleChatMessageLike, useUnlinkUnregisteredVendorByInviterId, useUpdateAd, useUpdateAffiliateDetails, useUpdateAppSettings, useUpdateDailyClueGame, useUpdateEvent, useUpdateEventInfo, useUpdateGoogleImportedMarkets, useUpdatePartner, useUpdatePost, useUpdatePuzzleGame, useUpdateRelation, useUpdateSchool, useUpdateSubscriptionPlan, useUpdateUnregisteredVendor, useUpdateUser, useUpdateVendor, useUpdateVendorInfo, useValidateVerificationToken, validateVerificationTokenFields, vendorAvailability, vendorBasicInfoFields, vendorCompliance, vendorElectricity, vendorEndDateFields, vendorFoodFlavour, vendorFullAddress, vendorGazebo, vendorLocationDescription, vendorMenuFields, vendorPackaging, vendorPriceRange, vendorProducedIn, vendorStallSize, vendorStartDateFields, vendorTable };