@timardex/cluemart-shared 1.5.843 → 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.
- package/dist/{ad-CD820Thg.d.ts → ad-BUYzE6zx.d.ts} +6 -5
- package/dist/{ad-Dh0rDcR3.d.mts → ad-BhLoEul3.d.mts} +6 -5
- package/dist/{affiliate-C56okox0.d.mts → affiliate-BbtjeUP4.d.mts} +2 -2
- package/dist/{affiliate-B28f_U7r.d.ts → affiliate-C51nzKsw.d.ts} +2 -2
- package/dist/apollo/index.cjs +7 -4
- package/dist/apollo/index.cjs.map +1 -1
- package/dist/apollo/index.d.mts +2 -2
- package/dist/apollo/index.d.ts +2 -2
- package/dist/apollo/index.mjs +7 -4
- package/dist/apollo/index.mjs.map +1 -1
- package/dist/auth/index.cjs +23 -12
- package/dist/auth/index.cjs.map +1 -1
- package/dist/auth/index.d.mts +3 -3
- package/dist/auth/index.d.ts +3 -3
- package/dist/auth/index.mjs +1 -1
- package/dist/{chunk-QGEZL577.mjs → chunk-32MKHJTX.mjs} +27 -22
- package/dist/chunk-32MKHJTX.mjs.map +1 -0
- package/dist/{chunk-4VN5M5JO.mjs → chunk-ILILH7E2.mjs} +1 -1
- package/dist/chunk-ILILH7E2.mjs.map +1 -0
- package/dist/{chunk-TX3TVIQO.mjs → chunk-LBEJECG3.mjs} +2 -2
- package/dist/{chunk-GSPUTUBD.mjs → chunk-PT273XYH.mjs} +502 -391
- package/dist/chunk-PT273XYH.mjs.map +1 -0
- package/dist/{contactUs-DKhr1NAC.d.ts → contactUs--NoohZBu.d.ts} +1 -1
- package/dist/{contactUs-BH5uubk6.d.mts → contactUs-CBWzefUS.d.mts} +1 -1
- package/dist/formFields/index.cjs.map +1 -1
- package/dist/formFields/index.d.mts +1 -1
- package/dist/formFields/index.d.ts +1 -1
- package/dist/formFields/index.mjs +2 -2
- package/dist/{global-B8kHBTPv.d.ts → global-CUYYxpy2.d.ts} +7 -2
- package/dist/{global-JPj82Tvl.d.mts → global-DePDtOFt.d.mts} +7 -2
- package/dist/graphql/index.cjs +526 -410
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +401 -178
- package/dist/graphql/index.d.ts +401 -178
- package/dist/graphql/index.mjs +2 -2
- package/dist/hooks/index.cjs +339 -103
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.d.mts +5 -5
- package/dist/hooks/index.d.ts +5 -5
- package/dist/hooks/index.mjs +4 -4
- package/dist/index.cjs +526 -410
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +405 -175
- package/dist/index.d.ts +405 -175
- package/dist/index.mjs +526 -410
- package/dist/index.mjs.map +1 -1
- package/dist/map/index.d.mts +1 -1
- package/dist/map/index.d.ts +1 -1
- package/dist/{resourceActivities-DV23pl5i.d.ts → resourceActivities-CMUcn2P7.d.ts} +9 -3
- package/dist/{resourceActivities-CZw8My9Z.d.mts → resourceActivities-CwbJFGIp.d.mts} +9 -3
- package/dist/sharing/index.d.mts +1 -1
- package/dist/sharing/index.d.ts +1 -1
- package/dist/types/index.cjs.map +1 -1
- package/dist/types/index.d.mts +9 -15
- package/dist/types/index.d.ts +9 -15
- package/dist/types/index.mjs +1 -1
- package/dist/{user-c_sh7aZ_.d.ts → user-D47MLFyH.d.ts} +4 -3
- package/dist/{user-B8Y1_VmG.d.mts → user-DE8edl3u.d.mts} +4 -3
- package/dist/utils/index.cjs.map +1 -1
- package/dist/utils/index.d.mts +3 -3
- package/dist/utils/index.d.ts +3 -3
- package/dist/utils/index.mjs +2 -2
- package/package.json +1 -1
- package/dist/chunk-4VN5M5JO.mjs.map +0 -1
- package/dist/chunk-GSPUTUBD.mjs.map +0 -1
- package/dist/chunk-QGEZL577.mjs.map +0 -1
- /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;
|
|
@@ -1664,87 +1671,102 @@ declare function toGraphqlQueryString(query: DocumentNode): string;
|
|
|
1664
1671
|
|
|
1665
1672
|
declare const useAdminUpdateResourceType: () => {
|
|
1666
1673
|
adminUpdateResourceType: (options?: _apollo_client.MutationFunctionOptions<{
|
|
1667
|
-
adminUpdateResourceType:
|
|
1668
|
-
resourceId: string;
|
|
1669
|
-
resourceType: EnumResourceType;
|
|
1670
|
-
};
|
|
1674
|
+
adminUpdateResourceType: MutationResponse<AdminUpdateResourceType>;
|
|
1671
1675
|
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
1672
|
-
adminUpdateResourceType:
|
|
1673
|
-
resourceId: string;
|
|
1674
|
-
resourceType: EnumResourceType;
|
|
1675
|
-
};
|
|
1676
|
+
adminUpdateResourceType: MutationResponse<AdminUpdateResourceType>;
|
|
1676
1677
|
}>>;
|
|
1677
1678
|
error: _apollo_client.ApolloError | undefined;
|
|
1678
1679
|
loading: boolean;
|
|
1679
1680
|
};
|
|
1680
1681
|
declare const useAdminResendUserVerificationEmail: () => {
|
|
1681
|
-
adminResendUserVerificationEmail: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
1682
1687
|
error: _apollo_client.ApolloError | undefined;
|
|
1683
1688
|
loading: boolean;
|
|
1684
1689
|
};
|
|
1685
1690
|
declare const useAdminPermanentlyDeleteResource: () => {
|
|
1686
|
-
adminPermanentlyDeleteResource: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
1687
1696
|
error: _apollo_client.ApolloError | undefined;
|
|
1688
1697
|
loading: boolean;
|
|
1689
1698
|
};
|
|
1690
1699
|
|
|
1700
|
+
type MessageOnlyResponse = MutationResponse<boolean>;
|
|
1691
1701
|
declare const useRegister: () => {
|
|
1692
1702
|
error: _apollo_client.ApolloError | undefined;
|
|
1693
1703
|
loading: boolean;
|
|
1694
1704
|
register: (options?: _apollo_client.MutationFunctionOptions<{
|
|
1695
|
-
register:
|
|
1705
|
+
register: AuthMutationResponse;
|
|
1696
1706
|
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
1697
|
-
register:
|
|
1707
|
+
register: AuthMutationResponse;
|
|
1698
1708
|
}>>;
|
|
1699
1709
|
};
|
|
1700
1710
|
declare const useLogin: () => {
|
|
1701
1711
|
error: _apollo_client.ApolloError | undefined;
|
|
1702
1712
|
loading: boolean;
|
|
1703
1713
|
login: (options?: _apollo_client.MutationFunctionOptions<{
|
|
1704
|
-
login:
|
|
1714
|
+
login: AuthMutationResponse;
|
|
1705
1715
|
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
1706
|
-
login:
|
|
1716
|
+
login: AuthMutationResponse;
|
|
1707
1717
|
}>>;
|
|
1708
1718
|
};
|
|
1709
1719
|
declare const useLogout: () => {
|
|
1710
1720
|
error: _apollo_client.ApolloError | undefined;
|
|
1711
1721
|
loading: boolean;
|
|
1712
|
-
logout: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
1713
1727
|
};
|
|
1714
1728
|
declare const useRefreshToken: () => {
|
|
1715
1729
|
error: _apollo_client.ApolloError | undefined;
|
|
1716
1730
|
loading: boolean;
|
|
1717
1731
|
refreshToken: (options?: _apollo_client.MutationFunctionOptions<{
|
|
1718
|
-
refreshToken:
|
|
1732
|
+
refreshToken: RefreshTokenMutationResponse;
|
|
1719
1733
|
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
1720
|
-
refreshToken:
|
|
1734
|
+
refreshToken: RefreshTokenMutationResponse;
|
|
1721
1735
|
}>>;
|
|
1722
1736
|
};
|
|
1723
1737
|
declare const useRequestPasswordReset: () => {
|
|
1724
1738
|
error: _apollo_client.ApolloError | undefined;
|
|
1725
1739
|
loading: boolean;
|
|
1726
|
-
requestPasswordReset: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
1727
1745
|
};
|
|
1728
1746
|
declare const useValidateVerificationToken: () => {
|
|
1729
1747
|
error: _apollo_client.ApolloError | undefined;
|
|
1730
1748
|
loading: boolean;
|
|
1731
|
-
validateVerificationToken: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
1732
1754
|
};
|
|
1733
1755
|
declare const useResetPassword: () => {
|
|
1734
1756
|
error: _apollo_client.ApolloError | undefined;
|
|
1735
1757
|
loading: boolean;
|
|
1736
|
-
resetPassword: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
1737
1763
|
};
|
|
1738
1764
|
|
|
1739
1765
|
declare const useCreatePrivateChat: () => {
|
|
1740
1766
|
createPrivateChat: (options?: _apollo_client.MutationFunctionOptions<{
|
|
1741
|
-
createPrivateChat:
|
|
1742
|
-
_id: string;
|
|
1743
|
-
};
|
|
1767
|
+
createPrivateChat: MutationResponse<ChatType>;
|
|
1744
1768
|
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
1745
|
-
createPrivateChat:
|
|
1746
|
-
_id: string;
|
|
1747
|
-
};
|
|
1769
|
+
createPrivateChat: MutationResponse<ChatType>;
|
|
1748
1770
|
}>>;
|
|
1749
1771
|
error: _apollo_client.ApolloError | undefined;
|
|
1750
1772
|
loading: boolean;
|
|
@@ -1753,29 +1775,25 @@ declare const useSendChatMessage: () => {
|
|
|
1753
1775
|
error: _apollo_client.ApolloError | undefined;
|
|
1754
1776
|
loading: boolean;
|
|
1755
1777
|
sendChatMessage: (options?: _apollo_client.MutationFunctionOptions<{
|
|
1756
|
-
sendChatMessage:
|
|
1757
|
-
_id: string;
|
|
1758
|
-
};
|
|
1778
|
+
sendChatMessage: MutationResponse<ChatType>;
|
|
1759
1779
|
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
1760
|
-
sendChatMessage:
|
|
1761
|
-
_id: string;
|
|
1762
|
-
};
|
|
1780
|
+
sendChatMessage: MutationResponse<ChatType>;
|
|
1763
1781
|
}>>;
|
|
1764
1782
|
};
|
|
1765
1783
|
declare const useDeleteChat: () => {
|
|
1766
|
-
deleteChat: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
1767
1789
|
error: _apollo_client.ApolloError | undefined;
|
|
1768
1790
|
loading: boolean;
|
|
1769
1791
|
};
|
|
1770
1792
|
declare const useAddParticipantToChat: () => {
|
|
1771
1793
|
addParticipantToChat: (options?: _apollo_client.MutationFunctionOptions<{
|
|
1772
|
-
addParticipantToChat:
|
|
1773
|
-
_id: string;
|
|
1774
|
-
};
|
|
1794
|
+
addParticipantToChat: MutationResponse<ChatType>;
|
|
1775
1795
|
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
1776
|
-
addParticipantToChat:
|
|
1777
|
-
_id: string;
|
|
1778
|
-
};
|
|
1796
|
+
addParticipantToChat: MutationResponse<ChatType>;
|
|
1779
1797
|
}>>;
|
|
1780
1798
|
error: _apollo_client.ApolloError | undefined;
|
|
1781
1799
|
loading: boolean;
|
|
@@ -1784,47 +1802,43 @@ declare const useRemoveParticipantFromChat: () => {
|
|
|
1784
1802
|
error: _apollo_client.ApolloError | undefined;
|
|
1785
1803
|
loading: boolean;
|
|
1786
1804
|
removeParticipantFromChat: (options?: _apollo_client.MutationFunctionOptions<{
|
|
1787
|
-
removeParticipantFromChat: {
|
|
1805
|
+
removeParticipantFromChat: MutationResponse<{
|
|
1788
1806
|
success: boolean;
|
|
1789
1807
|
region?: string | null;
|
|
1790
|
-
}
|
|
1808
|
+
}>;
|
|
1791
1809
|
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
1792
|
-
removeParticipantFromChat: {
|
|
1810
|
+
removeParticipantFromChat: MutationResponse<{
|
|
1793
1811
|
success: boolean;
|
|
1794
1812
|
region?: string | null;
|
|
1795
|
-
}
|
|
1813
|
+
}>;
|
|
1796
1814
|
}>>;
|
|
1797
1815
|
};
|
|
1798
1816
|
declare const useToggleChatMessageLike: () => {
|
|
1799
1817
|
error: _apollo_client.ApolloError | undefined;
|
|
1800
1818
|
loading: boolean;
|
|
1801
1819
|
toggleChatMessageLike: (options?: _apollo_client.MutationFunctionOptions<{
|
|
1802
|
-
toggleChatMessageLike:
|
|
1803
|
-
_id: string;
|
|
1804
|
-
};
|
|
1820
|
+
toggleChatMessageLike: MutationResponse<ChatType>;
|
|
1805
1821
|
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
1806
|
-
toggleChatMessageLike:
|
|
1807
|
-
_id: string;
|
|
1808
|
-
};
|
|
1822
|
+
toggleChatMessageLike: MutationResponse<ChatType>;
|
|
1809
1823
|
}>>;
|
|
1810
1824
|
};
|
|
1811
1825
|
declare const useMarkChatMessagesSeen: () => {
|
|
1812
1826
|
error: _apollo_client.ApolloError | undefined;
|
|
1813
1827
|
loading: boolean;
|
|
1814
1828
|
markChatMessagesSeen: (options?: _apollo_client.MutationFunctionOptions<{
|
|
1815
|
-
markChatMessagesSeen:
|
|
1816
|
-
_id: string;
|
|
1817
|
-
};
|
|
1829
|
+
markChatMessagesSeen: MutationResponse<ChatType>;
|
|
1818
1830
|
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
1819
|
-
markChatMessagesSeen:
|
|
1820
|
-
_id: string;
|
|
1821
|
-
};
|
|
1831
|
+
markChatMessagesSeen: MutationResponse<ChatType>;
|
|
1822
1832
|
}>>;
|
|
1823
1833
|
};
|
|
1824
1834
|
declare const useReportChatUser: () => {
|
|
1825
1835
|
error: _apollo_client.ApolloError | undefined;
|
|
1826
1836
|
loading: boolean;
|
|
1827
|
-
reportChatUser: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
1828
1842
|
};
|
|
1829
1843
|
|
|
1830
1844
|
declare const useGetChat: (_id: string) => {
|
|
@@ -1866,13 +1880,21 @@ declare const useGetReportedChatUsers: () => {
|
|
|
1866
1880
|
};
|
|
1867
1881
|
|
|
1868
1882
|
declare const useContactUs: () => {
|
|
1869
|
-
contactUs: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
1870
1888
|
error: _apollo_client.ApolloError | undefined;
|
|
1871
1889
|
loading: boolean;
|
|
1872
1890
|
};
|
|
1873
1891
|
|
|
1874
1892
|
declare const useCreateEvent: () => {
|
|
1875
|
-
createEvent: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
1876
1898
|
error: _apollo_client.ApolloError | undefined;
|
|
1877
1899
|
loading: boolean;
|
|
1878
1900
|
};
|
|
@@ -1880,29 +1902,29 @@ declare const useUpdateEvent: () => {
|
|
|
1880
1902
|
error: _apollo_client.ApolloError | undefined;
|
|
1881
1903
|
loading: boolean;
|
|
1882
1904
|
updateEvent: (options?: _apollo_client.MutationFunctionOptions<{
|
|
1883
|
-
updateEvent:
|
|
1884
|
-
_id: string;
|
|
1885
|
-
};
|
|
1905
|
+
updateEvent: MutationResponse<EventType>;
|
|
1886
1906
|
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
1887
|
-
updateEvent:
|
|
1888
|
-
_id: string;
|
|
1889
|
-
};
|
|
1907
|
+
updateEvent: MutationResponse<EventType>;
|
|
1890
1908
|
}>>;
|
|
1891
1909
|
};
|
|
1892
1910
|
declare const useDeleteEvent: () => {
|
|
1893
|
-
deleteEvent: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
1894
1916
|
error: _apollo_client.ApolloError | undefined;
|
|
1895
1917
|
loading: boolean;
|
|
1896
1918
|
};
|
|
1897
1919
|
declare const useCreateEventInfo: () => {
|
|
1898
1920
|
createEventInfo: (options?: _apollo_client.MutationFunctionOptions<{
|
|
1899
|
-
createEventInfo: {
|
|
1921
|
+
createEventInfo: MutationResponse<{
|
|
1900
1922
|
eventId: string;
|
|
1901
|
-
}
|
|
1923
|
+
}>;
|
|
1902
1924
|
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
1903
|
-
createEventInfo: {
|
|
1925
|
+
createEventInfo: MutationResponse<{
|
|
1904
1926
|
eventId: string;
|
|
1905
|
-
}
|
|
1927
|
+
}>;
|
|
1906
1928
|
}>>;
|
|
1907
1929
|
error: _apollo_client.ApolloError | undefined;
|
|
1908
1930
|
loading: boolean;
|
|
@@ -1911,13 +1933,13 @@ declare const useUpdateEventInfo: () => {
|
|
|
1911
1933
|
error: _apollo_client.ApolloError | undefined;
|
|
1912
1934
|
loading: boolean;
|
|
1913
1935
|
updateEventInfo: (options?: _apollo_client.MutationFunctionOptions<{
|
|
1914
|
-
updateEventInfo: {
|
|
1936
|
+
updateEventInfo: MutationResponse<{
|
|
1915
1937
|
eventId: string;
|
|
1916
|
-
}
|
|
1938
|
+
}>;
|
|
1917
1939
|
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
1918
|
-
updateEventInfo: {
|
|
1940
|
+
updateEventInfo: MutationResponse<{
|
|
1919
1941
|
eventId: string;
|
|
1920
|
-
}
|
|
1942
|
+
}>;
|
|
1921
1943
|
}>>;
|
|
1922
1944
|
};
|
|
1923
1945
|
|
|
@@ -1995,27 +2017,47 @@ declare const useGetEventInfo: (eventId: string) => {
|
|
|
1995
2017
|
};
|
|
1996
2018
|
|
|
1997
2019
|
declare const useCreateBulkNotifications: () => {
|
|
1998
|
-
createBulkNotifications: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
1999
2025
|
error: _apollo_client.ApolloError | undefined;
|
|
2000
2026
|
loading: boolean;
|
|
2001
2027
|
};
|
|
2002
2028
|
declare const useMarkNotificationRead: () => {
|
|
2003
2029
|
error: _apollo_client.ApolloError | undefined;
|
|
2004
2030
|
loading: boolean;
|
|
2005
|
-
markNotificationRead: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2006
2036
|
};
|
|
2007
2037
|
declare const useMarkAllNotificationsRead: () => {
|
|
2008
2038
|
error: _apollo_client.ApolloError | undefined;
|
|
2009
2039
|
loading: boolean;
|
|
2010
|
-
markAllNotificationsRead: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2011
2045
|
};
|
|
2012
2046
|
declare const useDeleteNotification: () => {
|
|
2013
|
-
deleteNotification: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2014
2052
|
error: _apollo_client.ApolloError | undefined;
|
|
2015
2053
|
loading: boolean;
|
|
2016
2054
|
};
|
|
2017
2055
|
declare const useDeleteAllNotifications: () => {
|
|
2018
|
-
deleteAllNotifications: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2019
2061
|
error: _apollo_client.ApolloError | undefined;
|
|
2020
2062
|
loading: boolean;
|
|
2021
2063
|
};
|
|
@@ -2049,22 +2091,38 @@ declare const useGetNotificationCountSubscription: () => {
|
|
|
2049
2091
|
};
|
|
2050
2092
|
|
|
2051
2093
|
declare const useCreatePoster: () => {
|
|
2052
|
-
createPoster: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2053
2103
|
error: _apollo_client.ApolloError | undefined;
|
|
2054
2104
|
loading: boolean;
|
|
2055
2105
|
};
|
|
2056
2106
|
|
|
2057
2107
|
declare const useCreatePushToken: () => {
|
|
2058
|
-
createPushToken: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2059
2117
|
error: _apollo_client.ApolloError | undefined;
|
|
2060
2118
|
loading: boolean;
|
|
2061
2119
|
};
|
|
2062
2120
|
|
|
2063
2121
|
declare const useCreateRelation: () => {
|
|
2064
2122
|
createRelation: (options?: _apollo_client.MutationFunctionOptions<{
|
|
2065
|
-
createRelation: RelationType$1
|
|
2123
|
+
createRelation: MutationResponse<RelationType$1>;
|
|
2066
2124
|
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
2067
|
-
createRelation: RelationType$1
|
|
2125
|
+
createRelation: MutationResponse<RelationType$1>;
|
|
2068
2126
|
}>>;
|
|
2069
2127
|
error: _apollo_client.ApolloError | undefined;
|
|
2070
2128
|
loading: boolean;
|
|
@@ -2073,16 +2131,16 @@ declare const useUpdateRelation: () => {
|
|
|
2073
2131
|
error: _apollo_client.ApolloError | undefined;
|
|
2074
2132
|
loading: boolean;
|
|
2075
2133
|
updateRelation: (options?: _apollo_client.MutationFunctionOptions<{
|
|
2076
|
-
updateRelation: RelationType$1
|
|
2134
|
+
updateRelation: MutationResponse<RelationType$1>;
|
|
2077
2135
|
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
2078
|
-
updateRelation: RelationType$1
|
|
2136
|
+
updateRelation: MutationResponse<RelationType$1>;
|
|
2079
2137
|
}>>;
|
|
2080
2138
|
};
|
|
2081
2139
|
declare const useDeleteRelation: () => {
|
|
2082
2140
|
deleteRelation: (options?: _apollo_client.MutationFunctionOptions<{
|
|
2083
|
-
deleteRelation: RelationType$1
|
|
2141
|
+
deleteRelation: MutationResponse<RelationType$1>;
|
|
2084
2142
|
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
2085
|
-
deleteRelation: RelationType$1
|
|
2143
|
+
deleteRelation: MutationResponse<RelationType$1>;
|
|
2086
2144
|
}>>;
|
|
2087
2145
|
error: _apollo_client.ApolloError | undefined;
|
|
2088
2146
|
loading: boolean;
|
|
@@ -2130,29 +2188,41 @@ declare const useGetResourceConnections: (resourceId: string, resourceType: Enum
|
|
|
2130
2188
|
};
|
|
2131
2189
|
|
|
2132
2190
|
declare const useCreateVendor: () => {
|
|
2133
|
-
createVendor: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2134
2196
|
error: _apollo_client.ApolloError | undefined;
|
|
2135
2197
|
loading: boolean;
|
|
2136
2198
|
};
|
|
2137
2199
|
declare const useUpdateVendor: () => {
|
|
2138
2200
|
error: _apollo_client.ApolloError | undefined;
|
|
2139
2201
|
loading: boolean;
|
|
2140
|
-
updateVendor: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2141
2207
|
};
|
|
2142
2208
|
declare const useDeleteVendor: () => {
|
|
2143
|
-
deleteVendor: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2144
2214
|
error: _apollo_client.ApolloError | undefined;
|
|
2145
2215
|
loading: boolean;
|
|
2146
2216
|
};
|
|
2147
2217
|
declare const useCreateVendorInfo: () => {
|
|
2148
2218
|
createVendorInfo: (options?: _apollo_client.MutationFunctionOptions<{
|
|
2149
|
-
createVendorInfo: {
|
|
2219
|
+
createVendorInfo: MutationResponse<{
|
|
2150
2220
|
vendorId: string;
|
|
2151
|
-
}
|
|
2221
|
+
}>;
|
|
2152
2222
|
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
2153
|
-
createVendorInfo: {
|
|
2223
|
+
createVendorInfo: MutationResponse<{
|
|
2154
2224
|
vendorId: string;
|
|
2155
|
-
}
|
|
2225
|
+
}>;
|
|
2156
2226
|
}>>;
|
|
2157
2227
|
error: _apollo_client.ApolloError | undefined;
|
|
2158
2228
|
loading: boolean;
|
|
@@ -2161,34 +2231,50 @@ declare const useUpdateVendorInfo: () => {
|
|
|
2161
2231
|
error: _apollo_client.ApolloError | undefined;
|
|
2162
2232
|
loading: boolean;
|
|
2163
2233
|
updateVendorInfo: (options?: _apollo_client.MutationFunctionOptions<{
|
|
2164
|
-
updateVendorInfo: {
|
|
2234
|
+
updateVendorInfo: MutationResponse<{
|
|
2165
2235
|
vendorId: string;
|
|
2166
|
-
}
|
|
2236
|
+
}>;
|
|
2167
2237
|
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
2168
|
-
updateVendorInfo: {
|
|
2238
|
+
updateVendorInfo: MutationResponse<{
|
|
2169
2239
|
vendorId: string;
|
|
2170
|
-
}
|
|
2240
|
+
}>;
|
|
2171
2241
|
}>>;
|
|
2172
2242
|
};
|
|
2173
2243
|
declare const useCreateUnregisteredVendor: () => {
|
|
2174
|
-
createUnregisteredVendor: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2175
2249
|
error: _apollo_client.ApolloError | undefined;
|
|
2176
2250
|
loading: boolean;
|
|
2177
2251
|
};
|
|
2178
2252
|
declare const useUpdateUnregisteredVendor: () => {
|
|
2179
2253
|
error: _apollo_client.ApolloError | undefined;
|
|
2180
2254
|
loading: boolean;
|
|
2181
|
-
updateUnregisteredVendor: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2182
2260
|
};
|
|
2183
2261
|
declare const useDeleteUnregisteredVendor: () => {
|
|
2184
|
-
deleteUnregisteredVendor: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2185
2267
|
error: _apollo_client.ApolloError | undefined;
|
|
2186
2268
|
loading: boolean;
|
|
2187
2269
|
};
|
|
2188
2270
|
declare const useUnlinkUnregisteredVendorByInviterId: () => {
|
|
2189
2271
|
error: _apollo_client.ApolloError | undefined;
|
|
2190
2272
|
loading: boolean;
|
|
2191
|
-
unlinkUnregisteredVendorByInviterId: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2192
2278
|
};
|
|
2193
2279
|
|
|
2194
2280
|
declare const useGetVendors: () => {
|
|
@@ -2270,9 +2356,9 @@ declare const useGetUnregisteredVendor: (_id: string) => {
|
|
|
2270
2356
|
|
|
2271
2357
|
declare const useCreateUser: () => {
|
|
2272
2358
|
createUser: (options?: _apollo_client.MutationFunctionOptions<{
|
|
2273
|
-
createUser: SafeUserType
|
|
2359
|
+
createUser: MutationResponse<SafeUserType>;
|
|
2274
2360
|
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
2275
|
-
createUser: SafeUserType
|
|
2361
|
+
createUser: MutationResponse<SafeUserType>;
|
|
2276
2362
|
}>>;
|
|
2277
2363
|
error: _apollo_client.ApolloError | undefined;
|
|
2278
2364
|
loading: boolean;
|
|
@@ -2281,13 +2367,17 @@ declare const useUpdateUser: () => {
|
|
|
2281
2367
|
error: _apollo_client.ApolloError | undefined;
|
|
2282
2368
|
loading: boolean;
|
|
2283
2369
|
updateUser: (options?: _apollo_client.MutationFunctionOptions<{
|
|
2284
|
-
updateUser: SafeUserType
|
|
2370
|
+
updateUser: MutationResponse<SafeUserType>;
|
|
2285
2371
|
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
2286
|
-
updateUser: SafeUserType
|
|
2372
|
+
updateUser: MutationResponse<SafeUserType>;
|
|
2287
2373
|
}>>;
|
|
2288
2374
|
};
|
|
2289
2375
|
declare const useDeleteUser: () => {
|
|
2290
|
-
deleteUser: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2291
2381
|
error: _apollo_client.ApolloError | undefined;
|
|
2292
2382
|
loading: boolean;
|
|
2293
2383
|
};
|
|
@@ -2295,66 +2385,96 @@ declare const useRedeemReward: () => {
|
|
|
2295
2385
|
error: _apollo_client.ApolloError | undefined;
|
|
2296
2386
|
loading: boolean;
|
|
2297
2387
|
redeemReward: (options?: _apollo_client.MutationFunctionOptions<{
|
|
2298
|
-
redeemReward:
|
|
2388
|
+
redeemReward: RedeemRewardMutationResponse;
|
|
2299
2389
|
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
2300
|
-
redeemReward:
|
|
2390
|
+
redeemReward: RedeemRewardMutationResponse;
|
|
2301
2391
|
}>>;
|
|
2302
2392
|
};
|
|
2303
2393
|
declare const useAddUserFavouriteResource: () => {
|
|
2304
|
-
addUserFavouriteResource: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2305
2399
|
error: _apollo_client.ApolloError | undefined;
|
|
2306
2400
|
loading: boolean;
|
|
2307
2401
|
};
|
|
2308
2402
|
declare const useRemoveUserFavouriteResource: () => {
|
|
2309
2403
|
error: _apollo_client.ApolloError | undefined;
|
|
2310
2404
|
loading: boolean;
|
|
2311
|
-
removeUserFavouriteResource: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2312
2410
|
};
|
|
2313
2411
|
declare const useAddUserInterestResource: () => {
|
|
2314
|
-
addUserInterestResource: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2315
2417
|
error: _apollo_client.ApolloError | undefined;
|
|
2316
2418
|
loading: boolean;
|
|
2317
2419
|
};
|
|
2318
2420
|
declare const useRemoveUserInterestResource: () => {
|
|
2319
2421
|
error: _apollo_client.ApolloError | undefined;
|
|
2320
2422
|
loading: boolean;
|
|
2321
|
-
removeUserInterestResource: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2322
2428
|
};
|
|
2323
2429
|
declare const useAddUserGoingResource: () => {
|
|
2324
|
-
addUserGoingResource: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2325
2435
|
error: _apollo_client.ApolloError | undefined;
|
|
2326
2436
|
loading: boolean;
|
|
2327
2437
|
};
|
|
2328
2438
|
declare const useRemoveUserGoingResource: () => {
|
|
2329
2439
|
error: _apollo_client.ApolloError | undefined;
|
|
2330
2440
|
loading: boolean;
|
|
2331
|
-
removeUserGoingResource: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2332
2446
|
};
|
|
2333
2447
|
declare const useAddUserPresentResource: () => {
|
|
2334
|
-
addUserPresentResource: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2335
2453
|
error: _apollo_client.ApolloError | undefined;
|
|
2336
2454
|
loading: boolean;
|
|
2337
2455
|
};
|
|
2338
2456
|
declare const useRemoveUserPresentResource: () => {
|
|
2339
2457
|
error: _apollo_client.ApolloError | undefined;
|
|
2340
2458
|
loading: boolean;
|
|
2341
|
-
removeUserPresentResource: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2342
2464
|
};
|
|
2343
2465
|
declare const useSelectStandardPackage: () => {
|
|
2344
2466
|
error: _apollo_client.ApolloError | undefined;
|
|
2345
2467
|
loading: boolean;
|
|
2346
2468
|
selectStandardPackage: (options?: _apollo_client.MutationFunctionOptions<{
|
|
2347
|
-
selectStandardPackage: {
|
|
2469
|
+
selectStandardPackage: MutationResponse<{
|
|
2348
2470
|
userId: string;
|
|
2349
|
-
message: string;
|
|
2350
2471
|
licences: UserLicenceType[];
|
|
2351
|
-
}
|
|
2472
|
+
}>;
|
|
2352
2473
|
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
2353
|
-
selectStandardPackage: {
|
|
2474
|
+
selectStandardPackage: MutationResponse<{
|
|
2354
2475
|
userId: string;
|
|
2355
|
-
message: string;
|
|
2356
2476
|
licences: UserLicenceType[];
|
|
2357
|
-
}
|
|
2477
|
+
}>;
|
|
2358
2478
|
}>>;
|
|
2359
2479
|
};
|
|
2360
2480
|
|
|
@@ -2448,17 +2568,29 @@ declare const useGetUserResources: (userId: string) => {
|
|
|
2448
2568
|
};
|
|
2449
2569
|
|
|
2450
2570
|
declare const useCreateAd: () => {
|
|
2451
|
-
createAd: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2452
2576
|
error: _apollo_client.ApolloError | undefined;
|
|
2453
2577
|
loading: boolean;
|
|
2454
2578
|
};
|
|
2455
2579
|
declare const useUpdateAd: () => {
|
|
2456
2580
|
error: _apollo_client.ApolloError | undefined;
|
|
2457
2581
|
loading: boolean;
|
|
2458
|
-
updateAd: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2459
2587
|
};
|
|
2460
2588
|
declare const useDeleteAd: () => {
|
|
2461
|
-
deleteAd: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2462
2594
|
error: _apollo_client.ApolloError | undefined;
|
|
2463
2595
|
loading: boolean;
|
|
2464
2596
|
};
|
|
@@ -2489,7 +2621,11 @@ declare const useGetAdsByRegion: (region: string, status?: EnumAdStatus) => {
|
|
|
2489
2621
|
};
|
|
2490
2622
|
|
|
2491
2623
|
declare const useCreateResourceActivity: () => {
|
|
2492
|
-
createResourceActivity: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2493
2629
|
error: _apollo_client.ApolloError | undefined;
|
|
2494
2630
|
loading: boolean;
|
|
2495
2631
|
};
|
|
@@ -2504,22 +2640,58 @@ declare const useGetResourceActivity: (resourceId: string, resourceType: EnumRes
|
|
|
2504
2640
|
};
|
|
2505
2641
|
|
|
2506
2642
|
declare const useCreateCheckoutSession: () => {
|
|
2507
|
-
createCheckoutSession: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2508
2654
|
error: _apollo_client.ApolloError | undefined;
|
|
2509
2655
|
loading: boolean;
|
|
2510
2656
|
};
|
|
2511
2657
|
declare const useCancelSubscription: () => {
|
|
2512
|
-
cancelSubscription: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2513
2663
|
error: _apollo_client.ApolloError | undefined;
|
|
2514
2664
|
loading: boolean;
|
|
2515
2665
|
};
|
|
2516
2666
|
declare const useUpdateSubscriptionPlan: () => {
|
|
2517
2667
|
error: _apollo_client.ApolloError | undefined;
|
|
2518
2668
|
loading: boolean;
|
|
2519
|
-
updateSubscriptionPlan: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2520
2684
|
};
|
|
2521
2685
|
declare const useCreateCustomerPortal: () => {
|
|
2522
|
-
createCustomerPortal: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2523
2695
|
error: _apollo_client.ApolloError | undefined;
|
|
2524
2696
|
loading: boolean;
|
|
2525
2697
|
};
|
|
@@ -2527,19 +2699,17 @@ declare const useSelectPackage: () => {
|
|
|
2527
2699
|
error: _apollo_client.ApolloError | undefined;
|
|
2528
2700
|
loading: boolean;
|
|
2529
2701
|
selectPackage: (options?: _apollo_client.MutationFunctionOptions<{
|
|
2530
|
-
selectPackage: {
|
|
2702
|
+
selectPackage: MutationResponse<{
|
|
2531
2703
|
checkoutUrl?: string;
|
|
2532
2704
|
userId: string;
|
|
2533
|
-
message: string;
|
|
2534
2705
|
licences: UserLicenceType[];
|
|
2535
|
-
}
|
|
2706
|
+
}>;
|
|
2536
2707
|
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
2537
|
-
selectPackage: {
|
|
2708
|
+
selectPackage: MutationResponse<{
|
|
2538
2709
|
checkoutUrl?: string;
|
|
2539
2710
|
userId: string;
|
|
2540
|
-
message: string;
|
|
2541
2711
|
licences: UserLicenceType[];
|
|
2542
|
-
}
|
|
2712
|
+
}>;
|
|
2543
2713
|
}>>;
|
|
2544
2714
|
};
|
|
2545
2715
|
|
|
@@ -2561,17 +2731,29 @@ declare const useGetSubscriptionPlans: () => {
|
|
|
2561
2731
|
};
|
|
2562
2732
|
|
|
2563
2733
|
declare const useCreatePartner: () => {
|
|
2564
|
-
createPartner: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2565
2739
|
error: _apollo_client.ApolloError | undefined;
|
|
2566
2740
|
loading: boolean;
|
|
2567
2741
|
};
|
|
2568
2742
|
declare const useUpdatePartner: () => {
|
|
2569
2743
|
error: _apollo_client.ApolloError | undefined;
|
|
2570
2744
|
loading: boolean;
|
|
2571
|
-
updatePartner: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2572
2750
|
};
|
|
2573
2751
|
declare const useDeletePartner: () => {
|
|
2574
|
-
deletePartner: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2575
2757
|
error: _apollo_client.ApolloError | undefined;
|
|
2576
2758
|
loading: boolean;
|
|
2577
2759
|
};
|
|
@@ -2622,17 +2804,29 @@ declare const useSearchPartners: (search: string, region: string) => {
|
|
|
2622
2804
|
};
|
|
2623
2805
|
|
|
2624
2806
|
declare const useCreatePost: () => {
|
|
2625
|
-
createPost: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2626
2812
|
error: _apollo_client.ApolloError | undefined;
|
|
2627
2813
|
loading: boolean;
|
|
2628
2814
|
};
|
|
2629
2815
|
declare const useUpdatePost: () => {
|
|
2630
2816
|
error: _apollo_client.ApolloError | undefined;
|
|
2631
2817
|
loading: boolean;
|
|
2632
|
-
updatePost: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2633
2823
|
};
|
|
2634
2824
|
declare const useDeletePost: () => {
|
|
2635
|
-
deletePost: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2636
2830
|
error: _apollo_client.ApolloError | undefined;
|
|
2637
2831
|
loading: boolean;
|
|
2638
2832
|
};
|
|
@@ -2665,17 +2859,17 @@ declare const useGetPostsByType: (postType: EnumPostType) => {
|
|
|
2665
2859
|
declare const useUpdateAppSettings: () => {
|
|
2666
2860
|
error: _apollo_client.ApolloError | undefined;
|
|
2667
2861
|
loading: boolean;
|
|
2668
|
-
updateAppSettings: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2669
2867
|
};
|
|
2670
2868
|
declare const useCrawlGoogleMarkets: () => {
|
|
2671
2869
|
crawlGoogleMarkets: (options?: _apollo_client.MutationFunctionOptions<{
|
|
2672
|
-
crawlGoogleMarkets:
|
|
2673
|
-
message: string;
|
|
2674
|
-
};
|
|
2870
|
+
crawlGoogleMarkets: MutationResponse<boolean>;
|
|
2675
2871
|
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
2676
|
-
crawlGoogleMarkets:
|
|
2677
|
-
message: string;
|
|
2678
|
-
};
|
|
2872
|
+
crawlGoogleMarkets: MutationResponse<boolean>;
|
|
2679
2873
|
}>>;
|
|
2680
2874
|
error: _apollo_client.ApolloError | undefined;
|
|
2681
2875
|
loading: boolean;
|
|
@@ -2684,13 +2878,9 @@ declare const useUpdateGoogleImportedMarkets: () => {
|
|
|
2684
2878
|
error: _apollo_client.ApolloError | undefined;
|
|
2685
2879
|
loading: boolean;
|
|
2686
2880
|
updateGoogleImportedMarkets: (options?: _apollo_client.MutationFunctionOptions<{
|
|
2687
|
-
updateGoogleImportedMarkets:
|
|
2688
|
-
message: string;
|
|
2689
|
-
};
|
|
2881
|
+
updateGoogleImportedMarkets: MutationResponse<boolean>;
|
|
2690
2882
|
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
2691
|
-
updateGoogleImportedMarkets:
|
|
2692
|
-
message: string;
|
|
2693
|
-
};
|
|
2883
|
+
updateGoogleImportedMarkets: MutationResponse<boolean>;
|
|
2694
2884
|
}>>;
|
|
2695
2885
|
};
|
|
2696
2886
|
|
|
@@ -2707,32 +2897,36 @@ declare const useStartGame: () => {
|
|
|
2707
2897
|
error: _apollo_client.ApolloError | undefined;
|
|
2708
2898
|
loading: boolean;
|
|
2709
2899
|
startGame: (options?: _apollo_client.MutationFunctionOptions<{
|
|
2710
|
-
startGame: GameDocType
|
|
2900
|
+
startGame: MutationResponse<GameDocType>;
|
|
2711
2901
|
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
2712
|
-
startGame: GameDocType
|
|
2902
|
+
startGame: MutationResponse<GameDocType>;
|
|
2713
2903
|
}>>;
|
|
2714
2904
|
};
|
|
2715
2905
|
declare const useLeaveGame: () => {
|
|
2716
2906
|
error: _apollo_client.ApolloError | undefined;
|
|
2717
|
-
leaveGame: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2718
2912
|
loading: boolean;
|
|
2719
2913
|
};
|
|
2720
2914
|
declare const useUpdateDailyClueGame: () => {
|
|
2721
2915
|
error: _apollo_client.ApolloError | undefined;
|
|
2722
2916
|
loading: boolean;
|
|
2723
2917
|
updateDailyClueGame: (options?: _apollo_client.MutationFunctionOptions<{
|
|
2724
|
-
updateDailyClueGame: GameDocType
|
|
2918
|
+
updateDailyClueGame: MutationResponse<GameDocType>;
|
|
2725
2919
|
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
2726
|
-
updateDailyClueGame: GameDocType
|
|
2920
|
+
updateDailyClueGame: MutationResponse<GameDocType>;
|
|
2727
2921
|
}>>;
|
|
2728
2922
|
};
|
|
2729
2923
|
declare const useUpdatePuzzleGame: () => {
|
|
2730
2924
|
error: _apollo_client.ApolloError | undefined;
|
|
2731
2925
|
loading: boolean;
|
|
2732
2926
|
updatePuzzleGame: (options?: _apollo_client.MutationFunctionOptions<{
|
|
2733
|
-
updatePuzzleGame: GameDocType
|
|
2927
|
+
updatePuzzleGame: MutationResponse<GameDocType>;
|
|
2734
2928
|
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
2735
|
-
updatePuzzleGame: GameDocType
|
|
2929
|
+
updatePuzzleGame: MutationResponse<GameDocType>;
|
|
2736
2930
|
}>>;
|
|
2737
2931
|
};
|
|
2738
2932
|
|
|
@@ -2762,24 +2956,40 @@ declare const useGetGameLeaderboard: () => {
|
|
|
2762
2956
|
};
|
|
2763
2957
|
|
|
2764
2958
|
declare const useCreateSchool: () => {
|
|
2765
|
-
createSchool: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2766
2964
|
error: _apollo_client.ApolloError | undefined;
|
|
2767
2965
|
loading: boolean;
|
|
2768
2966
|
};
|
|
2769
2967
|
declare const useUpdateSchool: () => {
|
|
2770
2968
|
error: _apollo_client.ApolloError | undefined;
|
|
2771
2969
|
loading: boolean;
|
|
2772
|
-
updateSchool: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2773
2975
|
};
|
|
2774
2976
|
declare const useDeleteSchool: () => {
|
|
2775
|
-
deleteSchool: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2776
2982
|
error: _apollo_client.ApolloError | undefined;
|
|
2777
2983
|
loading: boolean;
|
|
2778
2984
|
};
|
|
2779
2985
|
declare const useRequestMarketingMaterial: () => {
|
|
2780
2986
|
error: _apollo_client.ApolloError | undefined;
|
|
2781
2987
|
loading: boolean;
|
|
2782
|
-
requestMarketingMaterial: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2783
2993
|
};
|
|
2784
2994
|
|
|
2785
2995
|
declare const useGetSchools: () => {
|
|
@@ -2819,25 +3029,45 @@ declare const useGetAffiliates: () => {
|
|
|
2819
3029
|
declare const useUpdateAffiliateDetails: () => {
|
|
2820
3030
|
error: _apollo_client.ApolloError | undefined;
|
|
2821
3031
|
loading: boolean;
|
|
2822
|
-
updateAffiliateDetails: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2823
3037
|
};
|
|
2824
3038
|
declare const useDeleteAffiliate: () => {
|
|
2825
|
-
deleteAffiliate: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2826
3044
|
error: _apollo_client.ApolloError | undefined;
|
|
2827
3045
|
loading: boolean;
|
|
2828
3046
|
};
|
|
2829
3047
|
declare const useRedeemAffiliateReward: () => {
|
|
2830
3048
|
error: _apollo_client.ApolloError | undefined;
|
|
2831
3049
|
loading: boolean;
|
|
2832
|
-
redeemAffiliateReward: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2833
3055
|
};
|
|
2834
3056
|
declare const useAssignAffiliateResourceReward: () => {
|
|
2835
|
-
assignAffiliateResourceReward: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2836
3062
|
error: _apollo_client.ApolloError | undefined;
|
|
2837
3063
|
loading: boolean;
|
|
2838
3064
|
};
|
|
2839
3065
|
declare const useAssignAffiliateBonusReward: () => {
|
|
2840
|
-
assignAffiliateBonusReward: (options?: _apollo_client.MutationFunctionOptions<
|
|
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
|
+
}>>;
|
|
2841
3071
|
error: _apollo_client.ApolloError | undefined;
|
|
2842
3072
|
loading: boolean;
|
|
2843
3073
|
};
|
|
@@ -3320,4 +3550,4 @@ declare function toUserFacingErrorMessage(error: string | null | undefined, fall
|
|
|
3320
3550
|
/** Extracts and sanitizes an unknown catch/Apollo error for toasts and alerts. */
|
|
3321
3551
|
declare function getErrorMessage(error: unknown, fallback?: string): string;
|
|
3322
3552
|
|
|
3323
|
-
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 };
|