@ludo.ninja/api 2.8.83 → 2.8.85

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/build/config/index.d.ts +1 -0
  2. package/build/config/index.js +33 -6
  3. package/build/cookies/index.d.ts +1 -1
  4. package/build/graphql_tools/__generated__/adminHost/schema.d.ts +274 -32
  5. package/build/graphql_tools/__generated__/adminHost/schema.js +220 -61
  6. package/build/graphql_tools/__generated__/assetsHost/schema.d.ts +2 -2
  7. package/build/graphql_tools/__generated__/assetsHost/schema.js +3 -3
  8. package/build/graphql_tools/__generated__/authHost/schema.d.ts +2 -2
  9. package/build/graphql_tools/__generated__/authHost/schema.js +3 -3
  10. package/build/graphql_tools/__generated__/collectionsHost/schema.d.ts +2 -2
  11. package/build/graphql_tools/__generated__/collectionsHost/schema.js +3 -3
  12. package/build/graphql_tools/__generated__/experiencesHost/schema.d.ts +9 -9
  13. package/build/graphql_tools/__generated__/experiencesHost/schema.js +10 -10
  14. package/build/graphql_tools/__generated__/extensionHost/schema.d.ts +28 -28
  15. package/build/graphql_tools/__generated__/extensionHost/schema.js +18 -18
  16. package/build/graphql_tools/__generated__/formsHost/schema.js +8 -8
  17. package/build/graphql_tools/__generated__/galleriesHost/schema.d.ts +46 -46
  18. package/build/graphql_tools/__generated__/galleriesHost/schema.js +21 -21
  19. package/build/graphql_tools/__generated__/identityHost/schema.d.ts +52 -52
  20. package/build/graphql_tools/__generated__/identityHost/schema.js +31 -32
  21. package/build/graphql_tools/__generated__/mediasHost/schema.d.ts +5 -5
  22. package/build/graphql_tools/__generated__/mediasHost/schema.js +5 -5
  23. package/build/graphql_tools/__generated__/notificationsHost/schema.d.ts +3 -3
  24. package/build/graphql_tools/__generated__/notificationsHost/schema.js +2 -2
  25. package/build/graphql_tools/__generated__/opportunitiesHost/schema.d.ts +7 -7
  26. package/build/graphql_tools/__generated__/opportunitiesHost/schema.js +11 -11
  27. package/build/graphql_tools/__generated__/preferencesHost/schema.d.ts +2 -2
  28. package/build/graphql_tools/__generated__/preferencesHost/schema.js +23 -23
  29. package/build/graphql_tools/__generated__/searchHost/schema.d.ts +48 -48
  30. package/build/graphql_tools/__generated__/searchHost/schema.js +33 -33
  31. package/build/graphql_tools/__generated__/tapHost/schema.d.ts +6 -6
  32. package/build/graphql_tools/__generated__/tapHost/schema.js +12 -12
  33. package/build/index.d.ts +590 -1185
  34. package/package.json +1 -1
  35. package/src/config/index.ts +39 -9
  36. package/src/graphql_tools/__generated__/adminHost/schema.ts +305 -2
  37. package/tsconfig.tsbuildinfo +1 -1
package/build/index.d.ts CHANGED
@@ -17,81 +17,56 @@ import * as formsSchema from "./graphql_tools/__generated__/formsHost/schema";
17
17
  import * as tapsSchema from "./graphql_tools/__generated__/tapHost/schema";
18
18
  import * as notificationsSchema from "./graphql_tools/__generated__/notificationsHost/schema";
19
19
  declare const schema: {
20
- useOnNotificationSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<notificationsSchema.IOnNotificationSubscription, notificationsSchema.Exact<{
21
- authToken: string;
22
- notificationTypes: notificationsSchema.INotificationType[];
23
- }>>): {
20
+ useOnNotificationSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<notificationsSchema.IOnNotificationSubscription, notificationsSchema.IOnNotificationSubscriptionVariables>): {
24
21
  restart(): void;
25
22
  loading: boolean;
26
23
  data?: notificationsSchema.IOnNotificationSubscription | undefined;
27
- error?: import("@apollo/client").ApolloError | undefined;
24
+ error?: import("@apollo/client").ApolloError;
28
25
  variables?: notificationsSchema.Exact<{
29
- authToken: string;
30
- notificationTypes: notificationsSchema.INotificationType[];
26
+ authToken: notificationsSchema.Scalars["String"];
27
+ notificationTypes: Array<notificationsSchema.INotificationType>;
31
28
  }> | undefined;
32
29
  };
33
30
  IEventType: typeof notificationsSchema.IEventType;
34
31
  INotificationType: typeof notificationsSchema.INotificationType;
35
32
  OnNotificationDocument: import("graphql").DocumentNode;
36
- useClaimFarmingRewardMutation(baseOptions?: import("@apollo/client").MutationHookOptions<tapsSchema.IClaimFarmingRewardMutation, tapsSchema.Exact<{
37
- [key: string]: never;
38
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<tapsSchema.IClaimFarmingRewardMutation, tapsSchema.Exact<{
33
+ useClaimFarmingRewardMutation(baseOptions?: import("@apollo/client").MutationHookOptions<tapsSchema.IClaimFarmingRewardMutation, tapsSchema.IClaimFarmingRewardMutationVariables>): import("@apollo/client").MutationTuple<tapsSchema.IClaimFarmingRewardMutation, tapsSchema.Exact<{
39
34
  [key: string]: never;
40
35
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
41
- useConfirmStreakNotificationHasBeenReadMutation(baseOptions?: import("@apollo/client").MutationHookOptions<tapsSchema.IConfirmStreakNotificationHasBeenReadMutation, tapsSchema.Exact<{
42
- streakId: string;
43
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<tapsSchema.IConfirmStreakNotificationHasBeenReadMutation, tapsSchema.Exact<{
44
- streakId: string;
36
+ useConfirmStreakNotificationHasBeenReadMutation(baseOptions?: import("@apollo/client").MutationHookOptions<tapsSchema.IConfirmStreakNotificationHasBeenReadMutation, tapsSchema.IConfirmStreakNotificationHasBeenReadMutationVariables>): import("@apollo/client").MutationTuple<tapsSchema.IConfirmStreakNotificationHasBeenReadMutation, tapsSchema.Exact<{
37
+ streakId: tapsSchema.Scalars["ID"];
45
38
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
46
- useMarkNotificationAsNewMutation(baseOptions?: import("@apollo/client").MutationHookOptions<tapsSchema.IMarkNotificationAsNewMutation, tapsSchema.Exact<{
47
- notificationId: string;
48
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<tapsSchema.IMarkNotificationAsNewMutation, tapsSchema.Exact<{
49
- notificationId: string;
39
+ useMarkNotificationAsNewMutation(baseOptions?: import("@apollo/client").MutationHookOptions<tapsSchema.IMarkNotificationAsNewMutation, tapsSchema.IMarkNotificationAsNewMutationVariables>): import("@apollo/client").MutationTuple<tapsSchema.IMarkNotificationAsNewMutation, tapsSchema.Exact<{
40
+ notificationId: tapsSchema.Scalars["ID"];
50
41
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
51
- useMarkNotificationAsReadMutation(baseOptions?: import("@apollo/client").MutationHookOptions<tapsSchema.IMarkNotificationAsReadMutation, tapsSchema.Exact<{
52
- notificationId: string;
53
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<tapsSchema.IMarkNotificationAsReadMutation, tapsSchema.Exact<{
54
- notificationId: string;
42
+ useMarkNotificationAsReadMutation(baseOptions?: import("@apollo/client").MutationHookOptions<tapsSchema.IMarkNotificationAsReadMutation, tapsSchema.IMarkNotificationAsReadMutationVariables>): import("@apollo/client").MutationTuple<tapsSchema.IMarkNotificationAsReadMutation, tapsSchema.Exact<{
43
+ notificationId: tapsSchema.Scalars["ID"];
55
44
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
56
- useMarkNotificationAsShownMutation(baseOptions?: import("@apollo/client").MutationHookOptions<tapsSchema.IMarkNotificationAsShownMutation, tapsSchema.Exact<{
57
- notificationId: string;
58
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<tapsSchema.IMarkNotificationAsShownMutation, tapsSchema.Exact<{
59
- notificationId: string;
45
+ useMarkNotificationAsShownMutation(baseOptions?: import("@apollo/client").MutationHookOptions<tapsSchema.IMarkNotificationAsShownMutation, tapsSchema.IMarkNotificationAsShownMutationVariables>): import("@apollo/client").MutationTuple<tapsSchema.IMarkNotificationAsShownMutation, tapsSchema.Exact<{
46
+ notificationId: tapsSchema.Scalars["ID"];
60
47
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
61
- useStartFarmingMutation(baseOptions?: import("@apollo/client").MutationHookOptions<tapsSchema.IStartFarmingMutation, tapsSchema.Exact<{
62
- [key: string]: never;
63
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<tapsSchema.IStartFarmingMutation, tapsSchema.Exact<{
48
+ useStartFarmingMutation(baseOptions?: import("@apollo/client").MutationHookOptions<tapsSchema.IStartFarmingMutation, tapsSchema.IStartFarmingMutationVariables>): import("@apollo/client").MutationTuple<tapsSchema.IStartFarmingMutation, tapsSchema.Exact<{
64
49
  [key: string]: never;
65
50
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
66
- useFetchFrensDataQuery(baseOptions?: import("@apollo/client").QueryHookOptions<tapsSchema.IFetchFrensDataQuery, tapsSchema.Exact<{
67
- [key: string]: never;
68
- }>> | undefined): import("@apollo/client").QueryResult<tapsSchema.IFetchFrensDataQuery, tapsSchema.Exact<{
51
+ useFetchFrensDataQuery(baseOptions?: import("@apollo/client").QueryHookOptions<tapsSchema.IFetchFrensDataQuery, tapsSchema.IFetchFrensDataQueryVariables>): import("@apollo/client").QueryResult<tapsSchema.IFetchFrensDataQuery, tapsSchema.Exact<{
69
52
  [key: string]: never;
70
53
  }>>;
71
- useFetchFrensDataLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<tapsSchema.IFetchFrensDataQuery, tapsSchema.Exact<{
72
- [key: string]: never;
73
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<tapsSchema.IFetchFrensDataQuery, tapsSchema.Exact<{
54
+ useFetchFrensDataLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<tapsSchema.IFetchFrensDataQuery, tapsSchema.IFetchFrensDataQueryVariables>): import("@apollo/client").LazyQueryResultTuple<tapsSchema.IFetchFrensDataQuery, tapsSchema.Exact<{
74
55
  [key: string]: never;
75
56
  }>>;
76
- useFetchPlayerStateQuery(baseOptions?: import("@apollo/client").QueryHookOptions<tapsSchema.IFetchPlayerStateQuery, tapsSchema.Exact<{
77
- [key: string]: never;
78
- }>> | undefined): import("@apollo/client").QueryResult<tapsSchema.IFetchPlayerStateQuery, tapsSchema.Exact<{
57
+ useFetchPlayerStateQuery(baseOptions?: import("@apollo/client").QueryHookOptions<tapsSchema.IFetchPlayerStateQuery, tapsSchema.IFetchPlayerStateQueryVariables>): import("@apollo/client").QueryResult<tapsSchema.IFetchPlayerStateQuery, tapsSchema.Exact<{
79
58
  [key: string]: never;
80
59
  }>>;
81
- useFetchPlayerStateLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<tapsSchema.IFetchPlayerStateQuery, tapsSchema.Exact<{
82
- [key: string]: never;
83
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<tapsSchema.IFetchPlayerStateQuery, tapsSchema.Exact<{
60
+ useFetchPlayerStateLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<tapsSchema.IFetchPlayerStateQuery, tapsSchema.IFetchPlayerStateQueryVariables>): import("@apollo/client").LazyQueryResultTuple<tapsSchema.IFetchPlayerStateQuery, tapsSchema.Exact<{
84
61
  [key: string]: never;
85
62
  }>>;
86
- useOnPlayerStateUpdatedSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<tapsSchema.IOnPlayerStateUpdatedSubscription, tapsSchema.Exact<{
87
- authToken: string;
88
- }>>): {
63
+ useOnPlayerStateUpdatedSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<tapsSchema.IOnPlayerStateUpdatedSubscription, tapsSchema.IOnPlayerStateUpdatedSubscriptionVariables>): {
89
64
  restart(): void;
90
65
  loading: boolean;
91
66
  data?: tapsSchema.IOnPlayerStateUpdatedSubscription | undefined;
92
- error?: import("@apollo/client").ApolloError | undefined;
67
+ error?: import("@apollo/client").ApolloError;
93
68
  variables?: tapsSchema.Exact<{
94
- authToken: string;
69
+ authToken: tapsSchema.Scalars["String"];
95
70
  }> | undefined;
96
71
  };
97
72
  IFarmingStatus: typeof tapsSchema.IFarmingStatus;
@@ -107,39 +82,25 @@ declare const schema: {
107
82
  FetchFrensDataDocument: import("graphql").DocumentNode;
108
83
  FetchPlayerStateDocument: import("graphql").DocumentNode;
109
84
  OnPlayerStateUpdatedDocument: import("graphql").DocumentNode;
110
- useSubmitContactSupportMutation(baseOptions?: import("@apollo/client").MutationHookOptions<formsSchema.ISubmitContactSupportMutation, formsSchema.Exact<{
111
- input: formsSchema.IContactSupportInput;
112
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<formsSchema.ISubmitContactSupportMutation, formsSchema.Exact<{
85
+ useSubmitContactSupportMutation(baseOptions?: import("@apollo/client").MutationHookOptions<formsSchema.ISubmitContactSupportMutation, formsSchema.ISubmitContactSupportMutationVariables>): import("@apollo/client").MutationTuple<formsSchema.ISubmitContactSupportMutation, formsSchema.Exact<{
113
86
  input: formsSchema.IContactSupportInput;
114
87
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
115
- useSubmitContentReportMutation(baseOptions?: import("@apollo/client").MutationHookOptions<formsSchema.ISubmitContentReportMutation, formsSchema.Exact<{
116
- input: formsSchema.IContentReportInput;
117
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<formsSchema.ISubmitContentReportMutation, formsSchema.Exact<{
88
+ useSubmitContentReportMutation(baseOptions?: import("@apollo/client").MutationHookOptions<formsSchema.ISubmitContentReportMutation, formsSchema.ISubmitContentReportMutationVariables>): import("@apollo/client").MutationTuple<formsSchema.ISubmitContentReportMutation, formsSchema.Exact<{
118
89
  input: formsSchema.IContentReportInput;
119
90
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
120
- useSubmitInvestorInquiryMutation(baseOptions?: import("@apollo/client").MutationHookOptions<formsSchema.ISubmitInvestorInquiryMutation, formsSchema.Exact<{
121
- input: formsSchema.IInvestorInquiryInput;
122
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<formsSchema.ISubmitInvestorInquiryMutation, formsSchema.Exact<{
91
+ useSubmitInvestorInquiryMutation(baseOptions?: import("@apollo/client").MutationHookOptions<formsSchema.ISubmitInvestorInquiryMutation, formsSchema.ISubmitInvestorInquiryMutationVariables>): import("@apollo/client").MutationTuple<formsSchema.ISubmitInvestorInquiryMutation, formsSchema.Exact<{
123
92
  input: formsSchema.IInvestorInquiryInput;
124
93
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
125
- useSubmitOpportunityMutation(baseOptions?: import("@apollo/client").MutationHookOptions<formsSchema.ISubmitOpportunityMutation, formsSchema.Exact<{
126
- input: formsSchema.IOpportunityInput;
127
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<formsSchema.ISubmitOpportunityMutation, formsSchema.Exact<{
94
+ useSubmitOpportunityMutation(baseOptions?: import("@apollo/client").MutationHookOptions<formsSchema.ISubmitOpportunityMutation, formsSchema.ISubmitOpportunityMutationVariables>): import("@apollo/client").MutationTuple<formsSchema.ISubmitOpportunityMutation, formsSchema.Exact<{
128
95
  input: formsSchema.IOpportunityInput;
129
96
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
130
- useSubmitPartnershipInquiryMutation(baseOptions?: import("@apollo/client").MutationHookOptions<formsSchema.ISubmitPartnershipInquiryMutation, formsSchema.Exact<{
131
- input: formsSchema.IPartnershipInquiryInput;
132
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<formsSchema.ISubmitPartnershipInquiryMutation, formsSchema.Exact<{
97
+ useSubmitPartnershipInquiryMutation(baseOptions?: import("@apollo/client").MutationHookOptions<formsSchema.ISubmitPartnershipInquiryMutation, formsSchema.ISubmitPartnershipInquiryMutationVariables>): import("@apollo/client").MutationTuple<formsSchema.ISubmitPartnershipInquiryMutation, formsSchema.Exact<{
133
98
  input: formsSchema.IPartnershipInquiryInput;
134
99
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
135
- useSubmitRegistrationInviteMutation(baseOptions?: import("@apollo/client").MutationHookOptions<formsSchema.ISubmitRegistrationInviteMutation, formsSchema.Exact<{
136
- input: formsSchema.IRegistrationInviteInput;
137
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<formsSchema.ISubmitRegistrationInviteMutation, formsSchema.Exact<{
100
+ useSubmitRegistrationInviteMutation(baseOptions?: import("@apollo/client").MutationHookOptions<formsSchema.ISubmitRegistrationInviteMutation, formsSchema.ISubmitRegistrationInviteMutationVariables>): import("@apollo/client").MutationTuple<formsSchema.ISubmitRegistrationInviteMutation, formsSchema.Exact<{
138
101
  input: formsSchema.IRegistrationInviteInput;
139
102
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
140
- useSubmitUserFeedbackMutation(baseOptions?: import("@apollo/client").MutationHookOptions<formsSchema.ISubmitUserFeedbackMutation, formsSchema.Exact<{
141
- input: formsSchema.IUserFeedbackInput;
142
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<formsSchema.ISubmitUserFeedbackMutation, formsSchema.Exact<{
103
+ useSubmitUserFeedbackMutation(baseOptions?: import("@apollo/client").MutationHookOptions<formsSchema.ISubmitUserFeedbackMutation, formsSchema.ISubmitUserFeedbackMutationVariables>): import("@apollo/client").MutationTuple<formsSchema.ISubmitUserFeedbackMutation, formsSchema.Exact<{
143
104
  input: formsSchema.IUserFeedbackInput;
144
105
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
145
106
  SubmitContactSupportDocument: import("graphql").DocumentNode;
@@ -149,213 +110,125 @@ declare const schema: {
149
110
  SubmitPartnershipInquiryDocument: import("graphql").DocumentNode;
150
111
  SubmitRegistrationInviteDocument: import("graphql").DocumentNode;
151
112
  SubmitUserFeedbackDocument: import("graphql").DocumentNode;
152
- useFetchAllCreationsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<searchSchema.IFetchAllCreationsQuery, searchSchema.Exact<{
153
- page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
154
- }>> | undefined): import("@apollo/client").QueryResult<searchSchema.IFetchAllCreationsQuery, searchSchema.Exact<{
155
- page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
156
- }>>;
157
- useFetchAllCreationsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFetchAllCreationsQuery, searchSchema.Exact<{
158
- page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
159
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFetchAllCreationsQuery, searchSchema.Exact<{
160
- page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
161
- }>>;
162
- useFetchAssetByBlockchainQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFetchAssetByBlockchainQuery, searchSchema.Exact<{
163
- blockchain: string;
164
- address?: searchSchema.Maybe<string> | undefined;
165
- tokenId?: searchSchema.Maybe<string> | undefined;
166
- elrondId?: searchSchema.Maybe<string> | undefined;
167
- }>>): import("@apollo/client").QueryResult<searchSchema.IFetchAssetByBlockchainQuery, searchSchema.Exact<{
168
- blockchain: string;
169
- address?: searchSchema.Maybe<string> | undefined;
170
- tokenId?: searchSchema.Maybe<string> | undefined;
171
- elrondId?: searchSchema.Maybe<string> | undefined;
172
- }>>;
173
- useFetchAssetByBlockchainLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFetchAssetByBlockchainQuery, searchSchema.Exact<{
174
- blockchain: string;
175
- address?: searchSchema.Maybe<string> | undefined;
176
- tokenId?: searchSchema.Maybe<string> | undefined;
177
- elrondId?: searchSchema.Maybe<string> | undefined;
178
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFetchAssetByBlockchainQuery, searchSchema.Exact<{
179
- blockchain: string;
180
- address?: searchSchema.Maybe<string> | undefined;
181
- tokenId?: searchSchema.Maybe<string> | undefined;
182
- elrondId?: searchSchema.Maybe<string> | undefined;
183
- }>>;
184
- useFetchAssetsQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFetchAssetsQuery, searchSchema.Exact<{
185
- assetIds: string[];
186
- }>>): import("@apollo/client").QueryResult<searchSchema.IFetchAssetsQuery, searchSchema.Exact<{
187
- assetIds: string[];
188
- }>>;
189
- useFetchAssetsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFetchAssetsQuery, searchSchema.Exact<{
190
- assetIds: string[];
191
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFetchAssetsQuery, searchSchema.Exact<{
192
- assetIds: string[];
193
- }>>;
194
- useFetchCollectionQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFetchCollectionQuery, searchSchema.Exact<{
195
- collectionId: string;
196
- }>>): import("@apollo/client").QueryResult<searchSchema.IFetchCollectionQuery, searchSchema.Exact<{
197
- collectionId: string;
198
- }>>;
199
- useFetchCollectionLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFetchCollectionQuery, searchSchema.Exact<{
200
- collectionId: string;
201
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFetchCollectionQuery, searchSchema.Exact<{
202
- collectionId: string;
203
- }>>;
204
- useFindCollectionsQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFindCollectionsQuery, searchSchema.Exact<{
205
- term: string;
206
- input: searchSchema.ICollectionFilterInput;
207
- page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
208
- }>>): import("@apollo/client").QueryResult<searchSchema.IFindCollectionsQuery, searchSchema.Exact<{
209
- term: string;
210
- input: searchSchema.ICollectionFilterInput;
211
- page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
113
+ useFetchAllCreationsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<searchSchema.IFetchAllCreationsQuery, searchSchema.IFetchAllCreationsQueryVariables>): import("@apollo/client").QueryResult<searchSchema.IFetchAllCreationsQuery, searchSchema.Exact<{
114
+ page?: searchSchema.Maybe<searchSchema.IPageInput>;
115
+ }>>;
116
+ useFetchAllCreationsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFetchAllCreationsQuery, searchSchema.IFetchAllCreationsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFetchAllCreationsQuery, searchSchema.Exact<{
117
+ page?: searchSchema.Maybe<searchSchema.IPageInput>;
212
118
  }>>;
213
- useFindCollectionsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFindCollectionsQuery, searchSchema.Exact<{
214
- term: string;
119
+ useFetchAssetByBlockchainQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFetchAssetByBlockchainQuery, searchSchema.IFetchAssetByBlockchainQueryVariables>): import("@apollo/client").QueryResult<searchSchema.IFetchAssetByBlockchainQuery, searchSchema.Exact<{
120
+ blockchain: searchSchema.Scalars["String"];
121
+ address?: searchSchema.Maybe<searchSchema.Scalars["String"]>;
122
+ tokenId?: searchSchema.Maybe<searchSchema.Scalars["String"]>;
123
+ elrondId?: searchSchema.Maybe<searchSchema.Scalars["String"]>;
124
+ }>>;
125
+ useFetchAssetByBlockchainLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFetchAssetByBlockchainQuery, searchSchema.IFetchAssetByBlockchainQueryVariables>): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFetchAssetByBlockchainQuery, searchSchema.Exact<{
126
+ blockchain: searchSchema.Scalars["String"];
127
+ address?: searchSchema.Maybe<searchSchema.Scalars["String"]>;
128
+ tokenId?: searchSchema.Maybe<searchSchema.Scalars["String"]>;
129
+ elrondId?: searchSchema.Maybe<searchSchema.Scalars["String"]>;
130
+ }>>;
131
+ useFetchAssetsQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFetchAssetsQuery, searchSchema.IFetchAssetsQueryVariables>): import("@apollo/client").QueryResult<searchSchema.IFetchAssetsQuery, searchSchema.Exact<{
132
+ assetIds: Array<searchSchema.Scalars["String"]>;
133
+ }>>;
134
+ useFetchAssetsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFetchAssetsQuery, searchSchema.IFetchAssetsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFetchAssetsQuery, searchSchema.Exact<{
135
+ assetIds: Array<searchSchema.Scalars["String"]>;
136
+ }>>;
137
+ useFetchCollectionQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFetchCollectionQuery, searchSchema.IFetchCollectionQueryVariables>): import("@apollo/client").QueryResult<searchSchema.IFetchCollectionQuery, searchSchema.Exact<{
138
+ collectionId: searchSchema.Scalars["String"];
139
+ }>>;
140
+ useFetchCollectionLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFetchCollectionQuery, searchSchema.IFetchCollectionQueryVariables>): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFetchCollectionQuery, searchSchema.Exact<{
141
+ collectionId: searchSchema.Scalars["String"];
142
+ }>>;
143
+ useFindCollectionsQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFindCollectionsQuery, searchSchema.IFindCollectionsQueryVariables>): import("@apollo/client").QueryResult<searchSchema.IFindCollectionsQuery, searchSchema.Exact<{
144
+ term: searchSchema.Scalars["String"];
215
145
  input: searchSchema.ICollectionFilterInput;
216
- page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
217
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFindCollectionsQuery, searchSchema.Exact<{
218
- term: string;
146
+ page?: searchSchema.Maybe<searchSchema.IPageInput>;
147
+ }>>;
148
+ useFindCollectionsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFindCollectionsQuery, searchSchema.IFindCollectionsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFindCollectionsQuery, searchSchema.Exact<{
149
+ term: searchSchema.Scalars["String"];
219
150
  input: searchSchema.ICollectionFilterInput;
220
- page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
221
- }>>;
222
- useFetchCollectionsByIdsQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFetchCollectionsByIdsQuery, searchSchema.Exact<{
223
- collectionIds: string[];
224
- }>>): import("@apollo/client").QueryResult<searchSchema.IFetchCollectionsByIdsQuery, searchSchema.Exact<{
225
- collectionIds: string[];
226
- }>>;
227
- useFetchCollectionsByIdsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFetchCollectionsByIdsQuery, searchSchema.Exact<{
228
- collectionIds: string[];
229
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFetchCollectionsByIdsQuery, searchSchema.Exact<{
230
- collectionIds: string[];
231
- }>>;
232
- useFetchCreationsByTypeQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFetchCreationsByTypeQuery, searchSchema.Exact<{
233
- itemType: string;
234
- page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
235
- }>>): import("@apollo/client").QueryResult<searchSchema.IFetchCreationsByTypeQuery, searchSchema.Exact<{
236
- itemType: string;
237
- page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
238
- }>>;
239
- useFetchCreationsByTypeLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFetchCreationsByTypeQuery, searchSchema.Exact<{
240
- itemType: string;
241
- page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
242
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFetchCreationsByTypeQuery, searchSchema.Exact<{
243
- itemType: string;
244
- page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
245
- }>>;
246
- useFetchDynamicAssetLikesQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFetchDynamicAssetLikesQuery, searchSchema.Exact<{
247
- assetId: string;
248
- }>>): import("@apollo/client").QueryResult<searchSchema.IFetchDynamicAssetLikesQuery, searchSchema.Exact<{
249
- assetId: string;
250
- }>>;
251
- useFetchDynamicAssetLikesLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFetchDynamicAssetLikesQuery, searchSchema.Exact<{
252
- assetId: string;
253
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFetchDynamicAssetLikesQuery, searchSchema.Exact<{
254
- assetId: string;
255
- }>>;
256
- useFetchDynamicAssetsLikesQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFetchDynamicAssetsLikesQuery, searchSchema.Exact<{
257
- assetIds: string[];
258
- }>>): import("@apollo/client").QueryResult<searchSchema.IFetchDynamicAssetsLikesQuery, searchSchema.Exact<{
259
- assetIds: string[];
260
- }>>;
261
- useFetchDynamicAssetsLikesLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFetchDynamicAssetsLikesQuery, searchSchema.Exact<{
262
- assetIds: string[];
263
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFetchDynamicAssetsLikesQuery, searchSchema.Exact<{
264
- assetIds: string[];
265
- }>>;
266
- useFetchDynamicCollectionDataQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFetchDynamicCollectionDataQuery, searchSchema.Exact<{
267
- input: searchSchema.IDynamicCollectionDataInput;
268
- }>>): import("@apollo/client").QueryResult<searchSchema.IFetchDynamicCollectionDataQuery, searchSchema.Exact<{
269
- input: searchSchema.IDynamicCollectionDataInput;
151
+ page?: searchSchema.Maybe<searchSchema.IPageInput>;
152
+ }>>;
153
+ useFetchCollectionsByIdsQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFetchCollectionsByIdsQuery, searchSchema.IFetchCollectionsByIdsQueryVariables>): import("@apollo/client").QueryResult<searchSchema.IFetchCollectionsByIdsQuery, searchSchema.Exact<{
154
+ collectionIds: Array<searchSchema.Scalars["String"]>;
155
+ }>>;
156
+ useFetchCollectionsByIdsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFetchCollectionsByIdsQuery, searchSchema.IFetchCollectionsByIdsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFetchCollectionsByIdsQuery, searchSchema.Exact<{
157
+ collectionIds: Array<searchSchema.Scalars["String"]>;
158
+ }>>;
159
+ useFetchCreationsByTypeQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFetchCreationsByTypeQuery, searchSchema.IFetchCreationsByTypeQueryVariables>): import("@apollo/client").QueryResult<searchSchema.IFetchCreationsByTypeQuery, searchSchema.Exact<{
160
+ itemType: searchSchema.Scalars["String"];
161
+ page?: searchSchema.Maybe<searchSchema.IPageInput>;
162
+ }>>;
163
+ useFetchCreationsByTypeLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFetchCreationsByTypeQuery, searchSchema.IFetchCreationsByTypeQueryVariables>): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFetchCreationsByTypeQuery, searchSchema.Exact<{
164
+ itemType: searchSchema.Scalars["String"];
165
+ page?: searchSchema.Maybe<searchSchema.IPageInput>;
166
+ }>>;
167
+ useFetchDynamicAssetLikesQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFetchDynamicAssetLikesQuery, searchSchema.IFetchDynamicAssetLikesQueryVariables>): import("@apollo/client").QueryResult<searchSchema.IFetchDynamicAssetLikesQuery, searchSchema.Exact<{
168
+ assetId: searchSchema.Scalars["String"];
169
+ }>>;
170
+ useFetchDynamicAssetLikesLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFetchDynamicAssetLikesQuery, searchSchema.IFetchDynamicAssetLikesQueryVariables>): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFetchDynamicAssetLikesQuery, searchSchema.Exact<{
171
+ assetId: searchSchema.Scalars["String"];
270
172
  }>>;
271
- useFetchDynamicCollectionDataLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFetchDynamicCollectionDataQuery, searchSchema.Exact<{
173
+ useFetchDynamicAssetsLikesQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFetchDynamicAssetsLikesQuery, searchSchema.IFetchDynamicAssetsLikesQueryVariables>): import("@apollo/client").QueryResult<searchSchema.IFetchDynamicAssetsLikesQuery, searchSchema.Exact<{
174
+ assetIds: Array<searchSchema.Scalars["String"]>;
175
+ }>>;
176
+ useFetchDynamicAssetsLikesLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFetchDynamicAssetsLikesQuery, searchSchema.IFetchDynamicAssetsLikesQueryVariables>): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFetchDynamicAssetsLikesQuery, searchSchema.Exact<{
177
+ assetIds: Array<searchSchema.Scalars["String"]>;
178
+ }>>;
179
+ useFetchDynamicCollectionDataQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFetchDynamicCollectionDataQuery, searchSchema.IFetchDynamicCollectionDataQueryVariables>): import("@apollo/client").QueryResult<searchSchema.IFetchDynamicCollectionDataQuery, searchSchema.Exact<{
272
180
  input: searchSchema.IDynamicCollectionDataInput;
273
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFetchDynamicCollectionDataQuery, searchSchema.Exact<{
181
+ }>>;
182
+ useFetchDynamicCollectionDataLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFetchDynamicCollectionDataQuery, searchSchema.IFetchDynamicCollectionDataQueryVariables>): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFetchDynamicCollectionDataQuery, searchSchema.Exact<{
274
183
  input: searchSchema.IDynamicCollectionDataInput;
275
184
  }>>;
276
- useFetchDynamicCollectionsDataQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFetchDynamicCollectionsDataQuery, searchSchema.Exact<{
277
- input: searchSchema.IDynamicCollectionDataInput[];
278
- }>>): import("@apollo/client").QueryResult<searchSchema.IFetchDynamicCollectionsDataQuery, searchSchema.Exact<{
279
- input: searchSchema.IDynamicCollectionDataInput[];
280
- }>>;
281
- useFetchDynamicCollectionsDataLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFetchDynamicCollectionsDataQuery, searchSchema.Exact<{
282
- input: searchSchema.IDynamicCollectionDataInput[];
283
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFetchDynamicCollectionsDataQuery, searchSchema.Exact<{
284
- input: searchSchema.IDynamicCollectionDataInput[];
285
- }>>;
286
- useFindAllTopEntitiesByNameQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFindAllTopEntitiesByNameQuery, searchSchema.Exact<{
287
- name: string;
288
- pageSize: number;
289
- }>>): import("@apollo/client").QueryResult<searchSchema.IFindAllTopEntitiesByNameQuery, searchSchema.Exact<{
290
- name: string;
291
- pageSize: number;
292
- }>>;
293
- useFindAllTopEntitiesByNameLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFindAllTopEntitiesByNameQuery, searchSchema.Exact<{
294
- name: string;
295
- pageSize: number;
296
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFindAllTopEntitiesByNameQuery, searchSchema.Exact<{
297
- name: string;
298
- pageSize: number;
299
- }>>;
300
- useFetchUserPortfolioQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFetchUserPortfolioQuery, searchSchema.Exact<{
301
- ownerId: string;
302
- }>>): import("@apollo/client").QueryResult<searchSchema.IFetchUserPortfolioQuery, searchSchema.Exact<{
303
- ownerId: string;
304
- }>>;
305
- useFetchUserPortfolioLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFetchUserPortfolioQuery, searchSchema.Exact<{
306
- ownerId: string;
307
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFetchUserPortfolioQuery, searchSchema.Exact<{
308
- ownerId: string;
309
- }>>;
310
- useFindCreationsQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFindCreationsQuery, searchSchema.Exact<{
311
- term: string;
312
- input: searchSchema.ICreationFilterInput;
313
- page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
314
- }>>): import("@apollo/client").QueryResult<searchSchema.IFindCreationsQuery, searchSchema.Exact<{
315
- term: string;
316
- input: searchSchema.ICreationFilterInput;
317
- page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
185
+ useFetchDynamicCollectionsDataQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFetchDynamicCollectionsDataQuery, searchSchema.IFetchDynamicCollectionsDataQueryVariables>): import("@apollo/client").QueryResult<searchSchema.IFetchDynamicCollectionsDataQuery, searchSchema.Exact<{
186
+ input: Array<searchSchema.IDynamicCollectionDataInput>;
318
187
  }>>;
319
- useFindCreationsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFindCreationsQuery, searchSchema.Exact<{
320
- term: string;
321
- input: searchSchema.ICreationFilterInput;
322
- page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
323
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFindCreationsQuery, searchSchema.Exact<{
324
- term: string;
325
- input: searchSchema.ICreationFilterInput;
326
- page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
327
- }>>;
328
- useFindProfilesByNameQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFindProfilesByNameQuery, searchSchema.Exact<{
329
- name: string;
330
- page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
331
- }>>): import("@apollo/client").QueryResult<searchSchema.IFindProfilesByNameQuery, searchSchema.Exact<{
332
- name: string;
333
- page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
334
- }>>;
335
- useFindProfilesByNameLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFindProfilesByNameQuery, searchSchema.Exact<{
336
- name: string;
337
- page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
338
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFindProfilesByNameQuery, searchSchema.Exact<{
339
- name: string;
340
- page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
341
- }>>;
342
- useFindUserCreationsQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFindUserCreationsQuery, searchSchema.Exact<{
343
- ownerId: string;
188
+ useFetchDynamicCollectionsDataLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFetchDynamicCollectionsDataQuery, searchSchema.IFetchDynamicCollectionsDataQueryVariables>): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFetchDynamicCollectionsDataQuery, searchSchema.Exact<{
189
+ input: Array<searchSchema.IDynamicCollectionDataInput>;
190
+ }>>;
191
+ useFindAllTopEntitiesByNameQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFindAllTopEntitiesByNameQuery, searchSchema.IFindAllTopEntitiesByNameQueryVariables>): import("@apollo/client").QueryResult<searchSchema.IFindAllTopEntitiesByNameQuery, searchSchema.Exact<{
192
+ name: searchSchema.Scalars["String"];
193
+ pageSize: searchSchema.Scalars["Int"];
194
+ }>>;
195
+ useFindAllTopEntitiesByNameLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFindAllTopEntitiesByNameQuery, searchSchema.IFindAllTopEntitiesByNameQueryVariables>): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFindAllTopEntitiesByNameQuery, searchSchema.Exact<{
196
+ name: searchSchema.Scalars["String"];
197
+ pageSize: searchSchema.Scalars["Int"];
198
+ }>>;
199
+ useFetchUserPortfolioQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFetchUserPortfolioQuery, searchSchema.IFetchUserPortfolioQueryVariables>): import("@apollo/client").QueryResult<searchSchema.IFetchUserPortfolioQuery, searchSchema.Exact<{
200
+ ownerId: searchSchema.Scalars["String"];
201
+ }>>;
202
+ useFetchUserPortfolioLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFetchUserPortfolioQuery, searchSchema.IFetchUserPortfolioQueryVariables>): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFetchUserPortfolioQuery, searchSchema.Exact<{
203
+ ownerId: searchSchema.Scalars["String"];
204
+ }>>;
205
+ useFindCreationsQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFindCreationsQuery, searchSchema.IFindCreationsQueryVariables>): import("@apollo/client").QueryResult<searchSchema.IFindCreationsQuery, searchSchema.Exact<{
206
+ term: searchSchema.Scalars["String"];
344
207
  input: searchSchema.ICreationFilterInput;
345
- page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
346
- }>>): import("@apollo/client").QueryResult<searchSchema.IFindUserCreationsQuery, searchSchema.Exact<{
347
- ownerId: string;
208
+ page?: searchSchema.Maybe<searchSchema.IPageInput>;
209
+ }>>;
210
+ useFindCreationsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFindCreationsQuery, searchSchema.IFindCreationsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFindCreationsQuery, searchSchema.Exact<{
211
+ term: searchSchema.Scalars["String"];
348
212
  input: searchSchema.ICreationFilterInput;
349
- page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
213
+ page?: searchSchema.Maybe<searchSchema.IPageInput>;
214
+ }>>;
215
+ useFindProfilesByNameQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFindProfilesByNameQuery, searchSchema.IFindProfilesByNameQueryVariables>): import("@apollo/client").QueryResult<searchSchema.IFindProfilesByNameQuery, searchSchema.Exact<{
216
+ name: searchSchema.Scalars["String"];
217
+ page?: searchSchema.Maybe<searchSchema.IPageInput>;
218
+ }>>;
219
+ useFindProfilesByNameLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFindProfilesByNameQuery, searchSchema.IFindProfilesByNameQueryVariables>): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFindProfilesByNameQuery, searchSchema.Exact<{
220
+ name: searchSchema.Scalars["String"];
221
+ page?: searchSchema.Maybe<searchSchema.IPageInput>;
350
222
  }>>;
351
- useFindUserCreationsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFindUserCreationsQuery, searchSchema.Exact<{
352
- ownerId: string;
223
+ useFindUserCreationsQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFindUserCreationsQuery, searchSchema.IFindUserCreationsQueryVariables>): import("@apollo/client").QueryResult<searchSchema.IFindUserCreationsQuery, searchSchema.Exact<{
224
+ ownerId: searchSchema.Scalars["String"];
353
225
  input: searchSchema.ICreationFilterInput;
354
- page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
355
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFindUserCreationsQuery, searchSchema.Exact<{
356
- ownerId: string;
226
+ page?: searchSchema.Maybe<searchSchema.IPageInput>;
227
+ }>>;
228
+ useFindUserCreationsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFindUserCreationsQuery, searchSchema.IFindUserCreationsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFindUserCreationsQuery, searchSchema.Exact<{
229
+ ownerId: searchSchema.Scalars["String"];
357
230
  input: searchSchema.ICreationFilterInput;
358
- page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
231
+ page?: searchSchema.Maybe<searchSchema.IPageInput>;
359
232
  }>>;
360
233
  FetchAllCreationsDocument: import("graphql").DocumentNode;
361
234
  FetchAssetByBlockchainDocument: import("graphql").DocumentNode;
@@ -373,114 +246,70 @@ declare const schema: {
373
246
  FindCreationsDocument: import("graphql").DocumentNode;
374
247
  FindProfilesByNameDocument: import("graphql").DocumentNode;
375
248
  FindUserCreationsDocument: import("graphql").DocumentNode;
376
- useSaveUserExpectationsMutation(baseOptions?: import("@apollo/client").MutationHookOptions<preferencesSchema.ISaveUserExpectationsMutation, preferencesSchema.Exact<{
377
- expectations: preferencesSchema.Maybe<string>[];
378
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<preferencesSchema.ISaveUserExpectationsMutation, preferencesSchema.Exact<{
379
- expectations: preferencesSchema.Maybe<string>[];
249
+ useSaveUserExpectationsMutation(baseOptions?: import("@apollo/client").MutationHookOptions<preferencesSchema.ISaveUserExpectationsMutation, preferencesSchema.ISaveUserExpectationsMutationVariables>): import("@apollo/client").MutationTuple<preferencesSchema.ISaveUserExpectationsMutation, preferencesSchema.Exact<{
250
+ expectations: Array<preferencesSchema.Maybe<preferencesSchema.Scalars["String"]>>;
380
251
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
381
- useSaveUserInterestsMutation(baseOptions?: import("@apollo/client").MutationHookOptions<preferencesSchema.ISaveUserInterestsMutation, preferencesSchema.Exact<{
382
- interests: preferencesSchema.Maybe<string>[];
383
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<preferencesSchema.ISaveUserInterestsMutation, preferencesSchema.Exact<{
384
- interests: preferencesSchema.Maybe<string>[];
252
+ useSaveUserInterestsMutation(baseOptions?: import("@apollo/client").MutationHookOptions<preferencesSchema.ISaveUserInterestsMutation, preferencesSchema.ISaveUserInterestsMutationVariables>): import("@apollo/client").MutationTuple<preferencesSchema.ISaveUserInterestsMutation, preferencesSchema.Exact<{
253
+ interests: Array<preferencesSchema.Maybe<preferencesSchema.Scalars["String"]>>;
385
254
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
386
- useFetchExpectationsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<preferencesSchema.IFetchExpectationsQuery, preferencesSchema.Exact<{
387
- [key: string]: never;
388
- }>> | undefined): import("@apollo/client").QueryResult<preferencesSchema.IFetchExpectationsQuery, preferencesSchema.Exact<{
255
+ useFetchExpectationsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<preferencesSchema.IFetchExpectationsQuery, preferencesSchema.IFetchExpectationsQueryVariables>): import("@apollo/client").QueryResult<preferencesSchema.IFetchExpectationsQuery, preferencesSchema.Exact<{
389
256
  [key: string]: never;
390
257
  }>>;
391
- useFetchExpectationsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<preferencesSchema.IFetchExpectationsQuery, preferencesSchema.Exact<{
392
- [key: string]: never;
393
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<preferencesSchema.IFetchExpectationsQuery, preferencesSchema.Exact<{
258
+ useFetchExpectationsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<preferencesSchema.IFetchExpectationsQuery, preferencesSchema.IFetchExpectationsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<preferencesSchema.IFetchExpectationsQuery, preferencesSchema.Exact<{
394
259
  [key: string]: never;
395
260
  }>>;
396
- useFetchInterestsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<preferencesSchema.IFetchInterestsQuery, preferencesSchema.Exact<{
397
- [key: string]: never;
398
- }>> | undefined): import("@apollo/client").QueryResult<preferencesSchema.IFetchInterestsQuery, preferencesSchema.Exact<{
261
+ useFetchInterestsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<preferencesSchema.IFetchInterestsQuery, preferencesSchema.IFetchInterestsQueryVariables>): import("@apollo/client").QueryResult<preferencesSchema.IFetchInterestsQuery, preferencesSchema.Exact<{
399
262
  [key: string]: never;
400
263
  }>>;
401
- useFetchInterestsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<preferencesSchema.IFetchInterestsQuery, preferencesSchema.Exact<{
402
- [key: string]: never;
403
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<preferencesSchema.IFetchInterestsQuery, preferencesSchema.Exact<{
264
+ useFetchInterestsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<preferencesSchema.IFetchInterestsQuery, preferencesSchema.IFetchInterestsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<preferencesSchema.IFetchInterestsQuery, preferencesSchema.Exact<{
404
265
  [key: string]: never;
405
266
  }>>;
406
- useFetchSearchResultSelectionsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<preferencesSchema.IFetchSearchResultSelectionsQuery, preferencesSchema.Exact<{
407
- [key: string]: never;
408
- }>> | undefined): import("@apollo/client").QueryResult<preferencesSchema.IFetchSearchResultSelectionsQuery, preferencesSchema.Exact<{
267
+ useFetchSearchResultSelectionsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<preferencesSchema.IFetchSearchResultSelectionsQuery, preferencesSchema.IFetchSearchResultSelectionsQueryVariables>): import("@apollo/client").QueryResult<preferencesSchema.IFetchSearchResultSelectionsQuery, preferencesSchema.Exact<{
409
268
  [key: string]: never;
410
269
  }>>;
411
- useFetchSearchResultSelectionsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<preferencesSchema.IFetchSearchResultSelectionsQuery, preferencesSchema.Exact<{
412
- [key: string]: never;
413
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<preferencesSchema.IFetchSearchResultSelectionsQuery, preferencesSchema.Exact<{
270
+ useFetchSearchResultSelectionsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<preferencesSchema.IFetchSearchResultSelectionsQuery, preferencesSchema.IFetchSearchResultSelectionsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<preferencesSchema.IFetchSearchResultSelectionsQuery, preferencesSchema.Exact<{
414
271
  [key: string]: never;
415
272
  }>>;
416
- useFetchSearchResultTimeSelectionsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<preferencesSchema.IFetchSearchResultTimeSelectionsQuery, preferencesSchema.Exact<{
417
- [key: string]: never;
418
- }>> | undefined): import("@apollo/client").QueryResult<preferencesSchema.IFetchSearchResultTimeSelectionsQuery, preferencesSchema.Exact<{
273
+ useFetchSearchResultTimeSelectionsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<preferencesSchema.IFetchSearchResultTimeSelectionsQuery, preferencesSchema.IFetchSearchResultTimeSelectionsQueryVariables>): import("@apollo/client").QueryResult<preferencesSchema.IFetchSearchResultTimeSelectionsQuery, preferencesSchema.Exact<{
419
274
  [key: string]: never;
420
275
  }>>;
421
- useFetchSearchResultTimeSelectionsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<preferencesSchema.IFetchSearchResultTimeSelectionsQuery, preferencesSchema.Exact<{
422
- [key: string]: never;
423
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<preferencesSchema.IFetchSearchResultTimeSelectionsQuery, preferencesSchema.Exact<{
276
+ useFetchSearchResultTimeSelectionsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<preferencesSchema.IFetchSearchResultTimeSelectionsQuery, preferencesSchema.IFetchSearchResultTimeSelectionsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<preferencesSchema.IFetchSearchResultTimeSelectionsQuery, preferencesSchema.Exact<{
424
277
  [key: string]: never;
425
278
  }>>;
426
- useFetchUserExpectationsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<preferencesSchema.IFetchUserExpectationsQuery, preferencesSchema.Exact<{
427
- [key: string]: never;
428
- }>> | undefined): import("@apollo/client").QueryResult<preferencesSchema.IFetchUserExpectationsQuery, preferencesSchema.Exact<{
279
+ useFetchUserExpectationsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<preferencesSchema.IFetchUserExpectationsQuery, preferencesSchema.IFetchUserExpectationsQueryVariables>): import("@apollo/client").QueryResult<preferencesSchema.IFetchUserExpectationsQuery, preferencesSchema.Exact<{
429
280
  [key: string]: never;
430
281
  }>>;
431
- useFetchUserExpectationsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<preferencesSchema.IFetchUserExpectationsQuery, preferencesSchema.Exact<{
432
- [key: string]: never;
433
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<preferencesSchema.IFetchUserExpectationsQuery, preferencesSchema.Exact<{
282
+ useFetchUserExpectationsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<preferencesSchema.IFetchUserExpectationsQuery, preferencesSchema.IFetchUserExpectationsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<preferencesSchema.IFetchUserExpectationsQuery, preferencesSchema.Exact<{
434
283
  [key: string]: never;
435
284
  }>>;
436
- useFetchUserInterestsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<preferencesSchema.IFetchUserInterestsQuery, preferencesSchema.Exact<{
437
- [key: string]: never;
438
- }>> | undefined): import("@apollo/client").QueryResult<preferencesSchema.IFetchUserInterestsQuery, preferencesSchema.Exact<{
285
+ useFetchUserInterestsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<preferencesSchema.IFetchUserInterestsQuery, preferencesSchema.IFetchUserInterestsQueryVariables>): import("@apollo/client").QueryResult<preferencesSchema.IFetchUserInterestsQuery, preferencesSchema.Exact<{
439
286
  [key: string]: never;
440
287
  }>>;
441
- useFetchUserInterestsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<preferencesSchema.IFetchUserInterestsQuery, preferencesSchema.Exact<{
442
- [key: string]: never;
443
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<preferencesSchema.IFetchUserInterestsQuery, preferencesSchema.Exact<{
288
+ useFetchUserInterestsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<preferencesSchema.IFetchUserInterestsQuery, preferencesSchema.IFetchUserInterestsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<preferencesSchema.IFetchUserInterestsQuery, preferencesSchema.Exact<{
444
289
  [key: string]: never;
445
290
  }>>;
446
- useFetchSearchResultBlockchainSelectionsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<preferencesSchema.IFetchSearchResultBlockchainSelectionsQuery, preferencesSchema.Exact<{
447
- [key: string]: never;
448
- }>> | undefined): import("@apollo/client").QueryResult<preferencesSchema.IFetchSearchResultBlockchainSelectionsQuery, preferencesSchema.Exact<{
291
+ useFetchSearchResultBlockchainSelectionsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<preferencesSchema.IFetchSearchResultBlockchainSelectionsQuery, preferencesSchema.IFetchSearchResultBlockchainSelectionsQueryVariables>): import("@apollo/client").QueryResult<preferencesSchema.IFetchSearchResultBlockchainSelectionsQuery, preferencesSchema.Exact<{
449
292
  [key: string]: never;
450
293
  }>>;
451
- useFetchSearchResultBlockchainSelectionsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<preferencesSchema.IFetchSearchResultBlockchainSelectionsQuery, preferencesSchema.Exact<{
452
- [key: string]: never;
453
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<preferencesSchema.IFetchSearchResultBlockchainSelectionsQuery, preferencesSchema.Exact<{
294
+ useFetchSearchResultBlockchainSelectionsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<preferencesSchema.IFetchSearchResultBlockchainSelectionsQuery, preferencesSchema.IFetchSearchResultBlockchainSelectionsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<preferencesSchema.IFetchSearchResultBlockchainSelectionsQuery, preferencesSchema.Exact<{
454
295
  [key: string]: never;
455
296
  }>>;
456
- useFetchSearchResultCategorySelectionsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<preferencesSchema.IFetchSearchResultCategorySelectionsQuery, preferencesSchema.Exact<{
457
- [key: string]: never;
458
- }>> | undefined): import("@apollo/client").QueryResult<preferencesSchema.IFetchSearchResultCategorySelectionsQuery, preferencesSchema.Exact<{
297
+ useFetchSearchResultCategorySelectionsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<preferencesSchema.IFetchSearchResultCategorySelectionsQuery, preferencesSchema.IFetchSearchResultCategorySelectionsQueryVariables>): import("@apollo/client").QueryResult<preferencesSchema.IFetchSearchResultCategorySelectionsQuery, preferencesSchema.Exact<{
459
298
  [key: string]: never;
460
299
  }>>;
461
- useFetchSearchResultCategorySelectionsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<preferencesSchema.IFetchSearchResultCategorySelectionsQuery, preferencesSchema.Exact<{
462
- [key: string]: never;
463
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<preferencesSchema.IFetchSearchResultCategorySelectionsQuery, preferencesSchema.Exact<{
300
+ useFetchSearchResultCategorySelectionsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<preferencesSchema.IFetchSearchResultCategorySelectionsQuery, preferencesSchema.IFetchSearchResultCategorySelectionsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<preferencesSchema.IFetchSearchResultCategorySelectionsQuery, preferencesSchema.Exact<{
464
301
  [key: string]: never;
465
302
  }>>;
466
- useFetchSearchResultStatusSelectionsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<preferencesSchema.IFetchSearchResultStatusSelectionsQuery, preferencesSchema.Exact<{
467
- [key: string]: never;
468
- }>> | undefined): import("@apollo/client").QueryResult<preferencesSchema.IFetchSearchResultStatusSelectionsQuery, preferencesSchema.Exact<{
303
+ useFetchSearchResultStatusSelectionsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<preferencesSchema.IFetchSearchResultStatusSelectionsQuery, preferencesSchema.IFetchSearchResultStatusSelectionsQueryVariables>): import("@apollo/client").QueryResult<preferencesSchema.IFetchSearchResultStatusSelectionsQuery, preferencesSchema.Exact<{
469
304
  [key: string]: never;
470
305
  }>>;
471
- useFetchSearchResultStatusSelectionsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<preferencesSchema.IFetchSearchResultStatusSelectionsQuery, preferencesSchema.Exact<{
472
- [key: string]: never;
473
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<preferencesSchema.IFetchSearchResultStatusSelectionsQuery, preferencesSchema.Exact<{
306
+ useFetchSearchResultStatusSelectionsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<preferencesSchema.IFetchSearchResultStatusSelectionsQuery, preferencesSchema.IFetchSearchResultStatusSelectionsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<preferencesSchema.IFetchSearchResultStatusSelectionsQuery, preferencesSchema.Exact<{
474
307
  [key: string]: never;
475
308
  }>>;
476
- useFetchSetsSearchResultTypeSelectionsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<preferencesSchema.IFetchSetsSearchResultTypeSelectionsQuery, preferencesSchema.Exact<{
477
- [key: string]: never;
478
- }>> | undefined): import("@apollo/client").QueryResult<preferencesSchema.IFetchSetsSearchResultTypeSelectionsQuery, preferencesSchema.Exact<{
309
+ useFetchSetsSearchResultTypeSelectionsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<preferencesSchema.IFetchSetsSearchResultTypeSelectionsQuery, preferencesSchema.IFetchSetsSearchResultTypeSelectionsQueryVariables>): import("@apollo/client").QueryResult<preferencesSchema.IFetchSetsSearchResultTypeSelectionsQuery, preferencesSchema.Exact<{
479
310
  [key: string]: never;
480
311
  }>>;
481
- useFetchSetsSearchResultTypeSelectionsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<preferencesSchema.IFetchSetsSearchResultTypeSelectionsQuery, preferencesSchema.Exact<{
482
- [key: string]: never;
483
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<preferencesSchema.IFetchSetsSearchResultTypeSelectionsQuery, preferencesSchema.Exact<{
312
+ useFetchSetsSearchResultTypeSelectionsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<preferencesSchema.IFetchSetsSearchResultTypeSelectionsQuery, preferencesSchema.IFetchSetsSearchResultTypeSelectionsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<preferencesSchema.IFetchSetsSearchResultTypeSelectionsQuery, preferencesSchema.Exact<{
484
313
  [key: string]: never;
485
314
  }>>;
486
315
  SaveUserExpectationsDocument: import("graphql").DocumentNode;
@@ -495,55 +324,35 @@ declare const schema: {
495
324
  FetchSearchResultCategorySelectionsDocument: import("graphql").DocumentNode;
496
325
  FetchSearchResultStatusSelectionsDocument: import("graphql").DocumentNode;
497
326
  FetchSetsSearchResultTypeSelectionsDocument: import("graphql").DocumentNode;
498
- useDislikeOpportunityMutation(baseOptions?: import("@apollo/client").MutationHookOptions<opportunitiesSchema.IDislikeOpportunityMutation, opportunitiesSchema.Exact<{
499
- opportunityId: string;
500
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<opportunitiesSchema.IDislikeOpportunityMutation, opportunitiesSchema.Exact<{
501
- opportunityId: string;
327
+ useDislikeOpportunityMutation(baseOptions?: import("@apollo/client").MutationHookOptions<opportunitiesSchema.IDislikeOpportunityMutation, opportunitiesSchema.IDislikeOpportunityMutationVariables>): import("@apollo/client").MutationTuple<opportunitiesSchema.IDislikeOpportunityMutation, opportunitiesSchema.Exact<{
328
+ opportunityId: opportunitiesSchema.Scalars["String"];
502
329
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
503
- useLikeOpportunityMutation(baseOptions?: import("@apollo/client").MutationHookOptions<opportunitiesSchema.ILikeOpportunityMutation, opportunitiesSchema.Exact<{
504
- opportunityId: string;
505
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<opportunitiesSchema.ILikeOpportunityMutation, opportunitiesSchema.Exact<{
506
- opportunityId: string;
330
+ useLikeOpportunityMutation(baseOptions?: import("@apollo/client").MutationHookOptions<opportunitiesSchema.ILikeOpportunityMutation, opportunitiesSchema.ILikeOpportunityMutationVariables>): import("@apollo/client").MutationTuple<opportunitiesSchema.ILikeOpportunityMutation, opportunitiesSchema.Exact<{
331
+ opportunityId: opportunitiesSchema.Scalars["String"];
507
332
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
508
- useCreateOpportunityMutation(baseOptions?: import("@apollo/client").MutationHookOptions<opportunitiesSchema.ICreateOpportunityMutation, opportunitiesSchema.Exact<{
509
- input: opportunitiesSchema.IOpportunityInput;
510
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<opportunitiesSchema.ICreateOpportunityMutation, opportunitiesSchema.Exact<{
333
+ useCreateOpportunityMutation(baseOptions?: import("@apollo/client").MutationHookOptions<opportunitiesSchema.ICreateOpportunityMutation, opportunitiesSchema.ICreateOpportunityMutationVariables>): import("@apollo/client").MutationTuple<opportunitiesSchema.ICreateOpportunityMutation, opportunitiesSchema.Exact<{
511
334
  input: opportunitiesSchema.IOpportunityInput;
512
335
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
513
- useOpenOpportunityMutation(baseOptions?: import("@apollo/client").MutationHookOptions<opportunitiesSchema.IOpenOpportunityMutation, opportunitiesSchema.Exact<{
514
- opportunityId: string;
515
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<opportunitiesSchema.IOpenOpportunityMutation, opportunitiesSchema.Exact<{
516
- opportunityId: string;
336
+ useOpenOpportunityMutation(baseOptions?: import("@apollo/client").MutationHookOptions<opportunitiesSchema.IOpenOpportunityMutation, opportunitiesSchema.IOpenOpportunityMutationVariables>): import("@apollo/client").MutationTuple<opportunitiesSchema.IOpenOpportunityMutation, opportunitiesSchema.Exact<{
337
+ opportunityId: opportunitiesSchema.Scalars["ID"];
517
338
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
518
- useFetchOpportunitiesByIdsQuery(baseOptions: import("@apollo/client").QueryHookOptions<opportunitiesSchema.IFetchOpportunitiesByIdsQuery, opportunitiesSchema.Exact<{
519
- opportunityIds: string[];
520
- }>>): import("@apollo/client").QueryResult<opportunitiesSchema.IFetchOpportunitiesByIdsQuery, opportunitiesSchema.Exact<{
521
- opportunityIds: string[];
339
+ useFetchOpportunitiesByIdsQuery(baseOptions: import("@apollo/client").QueryHookOptions<opportunitiesSchema.IFetchOpportunitiesByIdsQuery, opportunitiesSchema.IFetchOpportunitiesByIdsQueryVariables>): import("@apollo/client").QueryResult<opportunitiesSchema.IFetchOpportunitiesByIdsQuery, opportunitiesSchema.Exact<{
340
+ opportunityIds: Array<opportunitiesSchema.Scalars["ID"]>;
522
341
  }>>;
523
- useFetchOpportunitiesByIdsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<opportunitiesSchema.IFetchOpportunitiesByIdsQuery, opportunitiesSchema.Exact<{
524
- opportunityIds: string[];
525
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<opportunitiesSchema.IFetchOpportunitiesByIdsQuery, opportunitiesSchema.Exact<{
526
- opportunityIds: string[];
342
+ useFetchOpportunitiesByIdsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<opportunitiesSchema.IFetchOpportunitiesByIdsQuery, opportunitiesSchema.IFetchOpportunitiesByIdsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<opportunitiesSchema.IFetchOpportunitiesByIdsQuery, opportunitiesSchema.Exact<{
343
+ opportunityIds: Array<opportunitiesSchema.Scalars["ID"]>;
527
344
  }>>;
528
- useFetchOpportunitiesForProfileQuery(baseOptions?: import("@apollo/client").QueryHookOptions<opportunitiesSchema.IFetchOpportunitiesForProfileQuery, opportunitiesSchema.Exact<{
529
- [key: string]: never;
530
- }>> | undefined): import("@apollo/client").QueryResult<opportunitiesSchema.IFetchOpportunitiesForProfileQuery, opportunitiesSchema.Exact<{
345
+ useFetchOpportunitiesForProfileQuery(baseOptions?: import("@apollo/client").QueryHookOptions<opportunitiesSchema.IFetchOpportunitiesForProfileQuery, opportunitiesSchema.IFetchOpportunitiesForProfileQueryVariables>): import("@apollo/client").QueryResult<opportunitiesSchema.IFetchOpportunitiesForProfileQuery, opportunitiesSchema.Exact<{
531
346
  [key: string]: never;
532
347
  }>>;
533
- useFetchOpportunitiesForProfileLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<opportunitiesSchema.IFetchOpportunitiesForProfileQuery, opportunitiesSchema.Exact<{
534
- [key: string]: never;
535
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<opportunitiesSchema.IFetchOpportunitiesForProfileQuery, opportunitiesSchema.Exact<{
348
+ useFetchOpportunitiesForProfileLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<opportunitiesSchema.IFetchOpportunitiesForProfileQuery, opportunitiesSchema.IFetchOpportunitiesForProfileQueryVariables>): import("@apollo/client").LazyQueryResultTuple<opportunitiesSchema.IFetchOpportunitiesForProfileQuery, opportunitiesSchema.Exact<{
536
349
  [key: string]: never;
537
350
  }>>;
538
- useFetchOpportunitiesQuery(baseOptions?: import("@apollo/client").QueryHookOptions<opportunitiesSchema.IFetchOpportunitiesQuery, opportunitiesSchema.Exact<{
539
- domain?: opportunitiesSchema.Maybe<string> | undefined;
540
- }>> | undefined): import("@apollo/client").QueryResult<opportunitiesSchema.IFetchOpportunitiesQuery, opportunitiesSchema.Exact<{
541
- domain?: opportunitiesSchema.Maybe<string> | undefined;
351
+ useFetchOpportunitiesQuery(baseOptions?: import("@apollo/client").QueryHookOptions<opportunitiesSchema.IFetchOpportunitiesQuery, opportunitiesSchema.IFetchOpportunitiesQueryVariables>): import("@apollo/client").QueryResult<opportunitiesSchema.IFetchOpportunitiesQuery, opportunitiesSchema.Exact<{
352
+ domain?: opportunitiesSchema.Maybe<opportunitiesSchema.Scalars["String"]>;
542
353
  }>>;
543
- useFetchOpportunitiesLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<opportunitiesSchema.IFetchOpportunitiesQuery, opportunitiesSchema.Exact<{
544
- domain?: opportunitiesSchema.Maybe<string> | undefined;
545
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<opportunitiesSchema.IFetchOpportunitiesQuery, opportunitiesSchema.Exact<{
546
- domain?: opportunitiesSchema.Maybe<string> | undefined;
354
+ useFetchOpportunitiesLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<opportunitiesSchema.IFetchOpportunitiesQuery, opportunitiesSchema.IFetchOpportunitiesQueryVariables>): import("@apollo/client").LazyQueryResultTuple<opportunitiesSchema.IFetchOpportunitiesQuery, opportunitiesSchema.Exact<{
355
+ domain?: opportunitiesSchema.Maybe<opportunitiesSchema.Scalars["String"]>;
547
356
  }>>;
548
357
  DislikeOpportunityDocument: import("graphql").DocumentNode;
549
358
  LikeOpportunityDocument: import("graphql").DocumentNode;
@@ -552,236 +361,139 @@ declare const schema: {
552
361
  FetchOpportunitiesByIdsDocument: import("graphql").DocumentNode;
553
362
  FetchOpportunitiesForProfileDocument: import("graphql").DocumentNode;
554
363
  FetchOpportunitiesDocument: import("graphql").DocumentNode;
555
- useDeleteGalleryBannerMutation(baseOptions?: import("@apollo/client").MutationHookOptions<mediasSchema.IDeleteGalleryBannerMutation, mediasSchema.Exact<{
556
- galleryId: string;
557
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<mediasSchema.IDeleteGalleryBannerMutation, mediasSchema.Exact<{
558
- galleryId: string;
559
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
560
- useUploadGalleryBannerMutation(baseOptions?: import("@apollo/client").MutationHookOptions<mediasSchema.IUploadGalleryBannerMutation, mediasSchema.Exact<{
561
- galleryId: string;
562
- file: any;
563
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<mediasSchema.IUploadGalleryBannerMutation, mediasSchema.Exact<{
564
- galleryId: string;
565
- file: any;
566
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
567
- useFetchUserpicQuery(baseOptions: import("@apollo/client").QueryHookOptions<mediasSchema.IFetchUserpicQuery, mediasSchema.Exact<{
568
- userId: string;
569
- }>>): import("@apollo/client").QueryResult<mediasSchema.IFetchUserpicQuery, mediasSchema.Exact<{
570
- userId: string;
571
- }>>;
572
- useFetchUserpicLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<mediasSchema.IFetchUserpicQuery, mediasSchema.Exact<{
573
- userId: string;
574
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<mediasSchema.IFetchUserpicQuery, mediasSchema.Exact<{
575
- userId: string;
364
+ useDeleteGalleryBannerMutation(baseOptions?: import("@apollo/client").MutationHookOptions<mediasSchema.IDeleteGalleryBannerMutation, mediasSchema.IDeleteGalleryBannerMutationVariables>): import("@apollo/client").MutationTuple<mediasSchema.IDeleteGalleryBannerMutation, mediasSchema.Exact<{
365
+ galleryId: mediasSchema.Scalars["ID"];
366
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
367
+ useUploadGalleryBannerMutation(baseOptions?: import("@apollo/client").MutationHookOptions<mediasSchema.IUploadGalleryBannerMutation, mediasSchema.IUploadGalleryBannerMutationVariables>): import("@apollo/client").MutationTuple<mediasSchema.IUploadGalleryBannerMutation, mediasSchema.Exact<{
368
+ galleryId: mediasSchema.Scalars["ID"];
369
+ file: mediasSchema.Scalars["Upload"];
370
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
371
+ useFetchUserpicQuery(baseOptions: import("@apollo/client").QueryHookOptions<mediasSchema.IFetchUserpicQuery, mediasSchema.IFetchUserpicQueryVariables>): import("@apollo/client").QueryResult<mediasSchema.IFetchUserpicQuery, mediasSchema.Exact<{
372
+ userId: mediasSchema.Scalars["ID"];
373
+ }>>;
374
+ useFetchUserpicLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<mediasSchema.IFetchUserpicQuery, mediasSchema.IFetchUserpicQueryVariables>): import("@apollo/client").LazyQueryResultTuple<mediasSchema.IFetchUserpicQuery, mediasSchema.Exact<{
375
+ userId: mediasSchema.Scalars["ID"];
576
376
  }>>;
577
377
  DeleteGalleryBannerDocument: import("graphql").DocumentNode;
578
378
  UploadGalleryBannerDocument: import("graphql").DocumentNode;
579
379
  FetchUserpicDocument: import("graphql").DocumentNode;
580
- useAddWalletElrondMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.IAddWalletElrondMutation, identitySchema.Exact<{
581
- signature: string;
582
- address: string;
583
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<identitySchema.IAddWalletElrondMutation, identitySchema.Exact<{
584
- signature: string;
585
- address: string;
586
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
587
- useAddWalletFlowMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.IAddWalletFlowMutation, identitySchema.Exact<{
588
- signature: string;
589
- address: string;
590
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<identitySchema.IAddWalletFlowMutation, identitySchema.Exact<{
591
- signature: string;
592
- address: string;
593
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
594
- useAddWalletMetamaskMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.IAddWalletMetamaskMutation, identitySchema.Exact<{
595
- signature: string;
596
- address: string;
597
- chainId: string;
598
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<identitySchema.IAddWalletMetamaskMutation, identitySchema.Exact<{
599
- signature: string;
600
- address: string;
601
- chainId: string;
602
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
603
- useAddWalletSolanaMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.IAddWalletSolanaMutation, identitySchema.Exact<{
604
- signature: string;
605
- pubkey: string;
606
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<identitySchema.IAddWalletSolanaMutation, identitySchema.Exact<{
607
- signature: string;
608
- pubkey: string;
609
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
610
- useAddWalletTezosMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.IAddWalletTezosMutation, identitySchema.Exact<{
611
- signature: string;
612
- pubkey: string;
613
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<identitySchema.IAddWalletTezosMutation, identitySchema.Exact<{
614
- signature: string;
615
- pubkey: string;
616
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
617
- useAddWalletTonMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.IAddWalletTonMutation, identitySchema.Exact<{
618
- request: identitySchema.ICheckTonProofRequest;
619
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<identitySchema.IAddWalletTonMutation, identitySchema.Exact<{
380
+ useAddWalletElrondMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.IAddWalletElrondMutation, identitySchema.IAddWalletElrondMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.IAddWalletElrondMutation, identitySchema.Exact<{
381
+ signature: identitySchema.Scalars["String"];
382
+ address: identitySchema.Scalars["String"];
383
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
384
+ useAddWalletFlowMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.IAddWalletFlowMutation, identitySchema.IAddWalletFlowMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.IAddWalletFlowMutation, identitySchema.Exact<{
385
+ signature: identitySchema.Scalars["String"];
386
+ address: identitySchema.Scalars["String"];
387
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
388
+ useAddWalletMetamaskMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.IAddWalletMetamaskMutation, identitySchema.IAddWalletMetamaskMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.IAddWalletMetamaskMutation, identitySchema.Exact<{
389
+ signature: identitySchema.Scalars["String"];
390
+ address: identitySchema.Scalars["String"];
391
+ chainId: identitySchema.Scalars["String"];
392
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
393
+ useAddWalletSolanaMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.IAddWalletSolanaMutation, identitySchema.IAddWalletSolanaMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.IAddWalletSolanaMutation, identitySchema.Exact<{
394
+ signature: identitySchema.Scalars["String"];
395
+ pubkey: identitySchema.Scalars["String"];
396
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
397
+ useAddWalletTezosMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.IAddWalletTezosMutation, identitySchema.IAddWalletTezosMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.IAddWalletTezosMutation, identitySchema.Exact<{
398
+ signature: identitySchema.Scalars["String"];
399
+ pubkey: identitySchema.Scalars["String"];
400
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
401
+ useAddWalletTonMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.IAddWalletTonMutation, identitySchema.IAddWalletTonMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.IAddWalletTonMutation, identitySchema.Exact<{
620
402
  request: identitySchema.ICheckTonProofRequest;
621
403
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
622
- useCreateEvmNonceMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.ICreateEvmNonceMutation, identitySchema.Exact<{
623
- [key: string]: never;
624
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<identitySchema.ICreateEvmNonceMutation, identitySchema.Exact<{
404
+ useCreateEvmNonceMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.ICreateEvmNonceMutation, identitySchema.ICreateEvmNonceMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.ICreateEvmNonceMutation, identitySchema.Exact<{
625
405
  [key: string]: never;
626
406
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
627
- useCreateNonceMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.ICreateNonceMutation, identitySchema.Exact<{
628
- address: string;
629
- blockchain: string;
630
- chainId?: identitySchema.Maybe<string> | undefined;
631
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<identitySchema.ICreateNonceMutation, identitySchema.Exact<{
632
- address: string;
633
- blockchain: string;
634
- chainId?: identitySchema.Maybe<string> | undefined;
407
+ useCreateNonceMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.ICreateNonceMutation, identitySchema.ICreateNonceMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.ICreateNonceMutation, identitySchema.Exact<{
408
+ address: identitySchema.Scalars["String"];
409
+ blockchain: identitySchema.Scalars["String"];
410
+ chainId?: identitySchema.Maybe<identitySchema.Scalars["String"]>;
635
411
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
636
- useCreateTonNonceMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.ICreateTonNonceMutation, identitySchema.Exact<{
637
- [key: string]: never;
638
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<identitySchema.ICreateTonNonceMutation, identitySchema.Exact<{
412
+ useCreateTonNonceMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.ICreateTonNonceMutation, identitySchema.ICreateTonNonceMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.ICreateTonNonceMutation, identitySchema.Exact<{
639
413
  [key: string]: never;
640
414
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
641
- useGenerateNewInviteCodesMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.IGenerateNewInviteCodesMutation, identitySchema.Exact<{
642
- codesNum: number;
643
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<identitySchema.IGenerateNewInviteCodesMutation, identitySchema.Exact<{
644
- codesNum: number;
645
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
646
- useUseInviteCodeMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.IUseInviteCodeMutation, identitySchema.Exact<{
647
- inviteCode: string;
648
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<identitySchema.IUseInviteCodeMutation, identitySchema.Exact<{
649
- inviteCode: string;
650
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
651
- useRemoveWalletMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.IRemoveWalletMutation, identitySchema.Exact<{
652
- blockchain: string;
653
- address: string;
654
- chainId?: identitySchema.Maybe<string> | undefined;
655
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<identitySchema.IRemoveWalletMutation, identitySchema.Exact<{
656
- blockchain: string;
657
- address: string;
658
- chainId?: identitySchema.Maybe<string> | undefined;
659
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
660
- useSaveEmailOfJoinerMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.ISaveEmailOfJoinerMutation, identitySchema.Exact<{
661
- email: string;
662
- isSubscribed: boolean;
663
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<identitySchema.ISaveEmailOfJoinerMutation, identitySchema.Exact<{
664
- email: string;
665
- isSubscribed: boolean;
666
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
667
- useSetMainWalletMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.ISetMainWalletMutation, identitySchema.Exact<{
668
- blockchain: string;
669
- address: string;
670
- chainId?: identitySchema.Maybe<string> | undefined;
671
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<identitySchema.ISetMainWalletMutation, identitySchema.Exact<{
672
- blockchain: string;
673
- address: string;
674
- chainId?: identitySchema.Maybe<string> | undefined;
675
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
676
- useSignInAdminMetamaskMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.ISignInAdminMetamaskMutation, identitySchema.Exact<{
677
- signature: string;
678
- address: string;
679
- chainId: string;
680
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<identitySchema.ISignInAdminMetamaskMutation, identitySchema.Exact<{
681
- signature: string;
682
- address: string;
683
- chainId: string;
684
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
685
- useSignInElrondMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.ISignInElrondMutation, identitySchema.Exact<{
686
- signature: string;
687
- address: string;
688
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<identitySchema.ISignInElrondMutation, identitySchema.Exact<{
689
- signature: string;
690
- address: string;
691
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
692
- useSignInFlowMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.ISignInFlowMutation, identitySchema.Exact<{
693
- signature: string;
694
- address: string;
695
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<identitySchema.ISignInFlowMutation, identitySchema.Exact<{
696
- signature: string;
697
- address: string;
698
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
699
- useSignInMetamaskMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.ISignInMetamaskMutation, identitySchema.Exact<{
700
- signature: string;
701
- address: string;
702
- chainId: string;
703
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<identitySchema.ISignInMetamaskMutation, identitySchema.Exact<{
704
- signature: string;
705
- address: string;
706
- chainId: string;
707
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
708
- useSignInSolanaMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.ISignInSolanaMutation, identitySchema.Exact<{
709
- signature: string;
710
- pubkey: string;
711
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<identitySchema.ISignInSolanaMutation, identitySchema.Exact<{
712
- signature: string;
713
- pubkey: string;
714
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
715
- useSignInTezosMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.ISignInTezosMutation, identitySchema.Exact<{
716
- signature: string;
717
- pubkey: string;
718
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<identitySchema.ISignInTezosMutation, identitySchema.Exact<{
719
- signature: string;
720
- pubkey: string;
721
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
722
- useSignInTonMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.ISignInTonMutation, identitySchema.Exact<{
723
- request: identitySchema.ICheckTonProofRequest;
724
- restore?: identitySchema.Maybe<boolean> | undefined;
725
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<identitySchema.ISignInTonMutation, identitySchema.Exact<{
415
+ useGenerateNewInviteCodesMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.IGenerateNewInviteCodesMutation, identitySchema.IGenerateNewInviteCodesMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.IGenerateNewInviteCodesMutation, identitySchema.Exact<{
416
+ codesNum: identitySchema.Scalars["Int"];
417
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
418
+ useUseInviteCodeMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.IUseInviteCodeMutation, identitySchema.IUseInviteCodeMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.IUseInviteCodeMutation, identitySchema.Exact<{
419
+ inviteCode: identitySchema.Scalars["String"];
420
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
421
+ useRemoveWalletMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.IRemoveWalletMutation, identitySchema.IRemoveWalletMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.IRemoveWalletMutation, identitySchema.Exact<{
422
+ blockchain: identitySchema.Scalars["String"];
423
+ address: identitySchema.Scalars["String"];
424
+ chainId?: identitySchema.Maybe<identitySchema.Scalars["String"]>;
425
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
426
+ useSaveEmailOfJoinerMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.ISaveEmailOfJoinerMutation, identitySchema.ISaveEmailOfJoinerMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.ISaveEmailOfJoinerMutation, identitySchema.Exact<{
427
+ email: identitySchema.Scalars["String"];
428
+ isSubscribed: identitySchema.Scalars["Boolean"];
429
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
430
+ useSetMainWalletMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.ISetMainWalletMutation, identitySchema.ISetMainWalletMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.ISetMainWalletMutation, identitySchema.Exact<{
431
+ blockchain: identitySchema.Scalars["String"];
432
+ address: identitySchema.Scalars["String"];
433
+ chainId?: identitySchema.Maybe<identitySchema.Scalars["String"]>;
434
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
435
+ useSignInAdminMetamaskMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.ISignInAdminMetamaskMutation, identitySchema.ISignInAdminMetamaskMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.ISignInAdminMetamaskMutation, identitySchema.Exact<{
436
+ signature: identitySchema.Scalars["String"];
437
+ address: identitySchema.Scalars["String"];
438
+ chainId: identitySchema.Scalars["String"];
439
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
440
+ useSignInElrondMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.ISignInElrondMutation, identitySchema.ISignInElrondMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.ISignInElrondMutation, identitySchema.Exact<{
441
+ signature: identitySchema.Scalars["String"];
442
+ address: identitySchema.Scalars["String"];
443
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
444
+ useSignInFlowMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.ISignInFlowMutation, identitySchema.ISignInFlowMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.ISignInFlowMutation, identitySchema.Exact<{
445
+ signature: identitySchema.Scalars["String"];
446
+ address: identitySchema.Scalars["String"];
447
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
448
+ useSignInMetamaskMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.ISignInMetamaskMutation, identitySchema.ISignInMetamaskMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.ISignInMetamaskMutation, identitySchema.Exact<{
449
+ signature: identitySchema.Scalars["String"];
450
+ address: identitySchema.Scalars["String"];
451
+ chainId: identitySchema.Scalars["String"];
452
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
453
+ useSignInSolanaMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.ISignInSolanaMutation, identitySchema.ISignInSolanaMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.ISignInSolanaMutation, identitySchema.Exact<{
454
+ signature: identitySchema.Scalars["String"];
455
+ pubkey: identitySchema.Scalars["String"];
456
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
457
+ useSignInTezosMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.ISignInTezosMutation, identitySchema.ISignInTezosMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.ISignInTezosMutation, identitySchema.Exact<{
458
+ signature: identitySchema.Scalars["String"];
459
+ pubkey: identitySchema.Scalars["String"];
460
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
461
+ useSignInTonMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.ISignInTonMutation, identitySchema.ISignInTonMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.ISignInTonMutation, identitySchema.Exact<{
726
462
  request: identitySchema.ICheckTonProofRequest;
727
- restore?: identitySchema.Maybe<boolean> | undefined;
728
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
729
- useUpdateProfileMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.IUpdateProfileMutation, identitySchema.Exact<{
730
- username?: identitySchema.Maybe<string> | undefined;
731
- about?: identitySchema.Maybe<string> | undefined;
732
- facebook?: identitySchema.Maybe<string> | undefined;
733
- twitter?: identitySchema.Maybe<string> | undefined;
734
- instagram?: identitySchema.Maybe<string> | undefined;
735
- website?: identitySchema.Maybe<string> | undefined;
736
- showNsfw?: identitySchema.Maybe<boolean> | undefined;
737
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<identitySchema.IUpdateProfileMutation, identitySchema.Exact<{
738
- username?: identitySchema.Maybe<string> | undefined;
739
- about?: identitySchema.Maybe<string> | undefined;
740
- facebook?: identitySchema.Maybe<string> | undefined;
741
- twitter?: identitySchema.Maybe<string> | undefined;
742
- instagram?: identitySchema.Maybe<string> | undefined;
743
- website?: identitySchema.Maybe<string> | undefined;
744
- showNsfw?: identitySchema.Maybe<boolean> | undefined;
745
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
746
- useFetchMultiversXAuditQuery(baseOptions: import("@apollo/client").QueryHookOptions<identitySchema.IFetchMultiversXAuditQuery, identitySchema.Exact<{
747
- wallet: string;
748
- }>>): import("@apollo/client").QueryResult<identitySchema.IFetchMultiversXAuditQuery, identitySchema.Exact<{
749
- wallet: string;
750
- }>>;
751
- useFetchMultiversXAuditLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<identitySchema.IFetchMultiversXAuditQuery, identitySchema.Exact<{
752
- wallet: string;
753
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<identitySchema.IFetchMultiversXAuditQuery, identitySchema.Exact<{
754
- wallet: string;
755
- }>>;
756
- useFetchMyProfileV2Query(baseOptions?: import("@apollo/client").QueryHookOptions<identitySchema.IFetchMyProfileV2Query, identitySchema.Exact<{
757
- [key: string]: never;
758
- }>> | undefined): import("@apollo/client").QueryResult<identitySchema.IFetchMyProfileV2Query, identitySchema.Exact<{
759
- [key: string]: never;
463
+ restore?: identitySchema.Maybe<identitySchema.Scalars["Boolean"]>;
464
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
465
+ useUpdateProfileMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.IUpdateProfileMutation, identitySchema.IUpdateProfileMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.IUpdateProfileMutation, identitySchema.Exact<{
466
+ username?: identitySchema.Maybe<identitySchema.Scalars["String"]>;
467
+ about?: identitySchema.Maybe<identitySchema.Scalars["String"]>;
468
+ facebook?: identitySchema.Maybe<identitySchema.Scalars["String"]>;
469
+ twitter?: identitySchema.Maybe<identitySchema.Scalars["String"]>;
470
+ instagram?: identitySchema.Maybe<identitySchema.Scalars["String"]>;
471
+ website?: identitySchema.Maybe<identitySchema.Scalars["String"]>;
472
+ showNsfw?: identitySchema.Maybe<identitySchema.Scalars["Boolean"]>;
473
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
474
+ useFetchMultiversXAuditQuery(baseOptions: import("@apollo/client").QueryHookOptions<identitySchema.IFetchMultiversXAuditQuery, identitySchema.IFetchMultiversXAuditQueryVariables>): import("@apollo/client").QueryResult<identitySchema.IFetchMultiversXAuditQuery, identitySchema.Exact<{
475
+ wallet: identitySchema.Scalars["String"];
476
+ }>>;
477
+ useFetchMultiversXAuditLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<identitySchema.IFetchMultiversXAuditQuery, identitySchema.IFetchMultiversXAuditQueryVariables>): import("@apollo/client").LazyQueryResultTuple<identitySchema.IFetchMultiversXAuditQuery, identitySchema.Exact<{
478
+ wallet: identitySchema.Scalars["String"];
760
479
  }>>;
761
- useFetchMyProfileV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<identitySchema.IFetchMyProfileV2Query, identitySchema.Exact<{
480
+ useFetchMyProfileV2Query(baseOptions?: import("@apollo/client").QueryHookOptions<identitySchema.IFetchMyProfileV2Query, identitySchema.IFetchMyProfileV2QueryVariables>): import("@apollo/client").QueryResult<identitySchema.IFetchMyProfileV2Query, identitySchema.Exact<{
762
481
  [key: string]: never;
763
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<identitySchema.IFetchMyProfileV2Query, identitySchema.Exact<{
482
+ }>>;
483
+ useFetchMyProfileV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<identitySchema.IFetchMyProfileV2Query, identitySchema.IFetchMyProfileV2QueryVariables>): import("@apollo/client").LazyQueryResultTuple<identitySchema.IFetchMyProfileV2Query, identitySchema.Exact<{
764
484
  [key: string]: never;
765
485
  }>>;
766
- useFetchProfileQuery(baseOptions: import("@apollo/client").QueryHookOptions<identitySchema.IFetchProfileQuery, identitySchema.Exact<{
767
- userId: string;
768
- }>>): import("@apollo/client").QueryResult<identitySchema.IFetchProfileQuery, identitySchema.Exact<{
769
- userId: string;
486
+ useFetchProfileQuery(baseOptions: import("@apollo/client").QueryHookOptions<identitySchema.IFetchProfileQuery, identitySchema.IFetchProfileQueryVariables>): import("@apollo/client").QueryResult<identitySchema.IFetchProfileQuery, identitySchema.Exact<{
487
+ userId: identitySchema.Scalars["ID"];
770
488
  }>>;
771
- useFetchProfileLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<identitySchema.IFetchProfileQuery, identitySchema.Exact<{
772
- userId: string;
773
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<identitySchema.IFetchProfileQuery, identitySchema.Exact<{
774
- userId: string;
489
+ useFetchProfileLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<identitySchema.IFetchProfileQuery, identitySchema.IFetchProfileQueryVariables>): import("@apollo/client").LazyQueryResultTuple<identitySchema.IFetchProfileQuery, identitySchema.Exact<{
490
+ userId: identitySchema.Scalars["ID"];
775
491
  }>>;
776
- useFetchUserWalletsQuery(baseOptions: import("@apollo/client").QueryHookOptions<identitySchema.IFetchUserWalletsQuery, identitySchema.Exact<{
777
- userId: string;
778
- }>>): import("@apollo/client").QueryResult<identitySchema.IFetchUserWalletsQuery, identitySchema.Exact<{
779
- userId: string;
492
+ useFetchUserWalletsQuery(baseOptions: import("@apollo/client").QueryHookOptions<identitySchema.IFetchUserWalletsQuery, identitySchema.IFetchUserWalletsQueryVariables>): import("@apollo/client").QueryResult<identitySchema.IFetchUserWalletsQuery, identitySchema.Exact<{
493
+ userId: identitySchema.Scalars["ID"];
780
494
  }>>;
781
- useFetchUserWalletsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<identitySchema.IFetchUserWalletsQuery, identitySchema.Exact<{
782
- userId: string;
783
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<identitySchema.IFetchUserWalletsQuery, identitySchema.Exact<{
784
- userId: string;
495
+ useFetchUserWalletsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<identitySchema.IFetchUserWalletsQuery, identitySchema.IFetchUserWalletsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<identitySchema.IFetchUserWalletsQuery, identitySchema.Exact<{
496
+ userId: identitySchema.Scalars["ID"];
785
497
  }>>;
786
498
  IRole: typeof identitySchema.IRole;
787
499
  AddWalletElrondDocument: import("graphql").DocumentNode;
@@ -810,157 +522,91 @@ declare const schema: {
810
522
  FetchMyProfileV2Document: import("graphql").DocumentNode;
811
523
  FetchProfileDocument: import("graphql").DocumentNode;
812
524
  FetchUserWalletsDocument: import("graphql").DocumentNode;
813
- useAddAssetsToGalleryV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IAddAssetsToGalleryV2Mutation, galleriesSchema.Exact<{
814
- galleryId: string;
815
- assetIds: string[];
816
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<galleriesSchema.IAddAssetsToGalleryV2Mutation, galleriesSchema.Exact<{
817
- galleryId: string;
818
- assetIds: string[];
819
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
820
- useAddCollectionsToGalleryV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IAddCollectionsToGalleryV2Mutation, galleriesSchema.Exact<{
821
- galleryId: string;
822
- collectionIds: string[];
823
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<galleriesSchema.IAddCollectionsToGalleryV2Mutation, galleriesSchema.Exact<{
824
- galleryId: string;
825
- collectionIds: string[];
826
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
827
- useAddCreationsToGalleryV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IAddCreationsToGalleryV2Mutation, galleriesSchema.Exact<{
828
- galleryId: string;
829
- creationIds: string[];
830
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<galleriesSchema.IAddCreationsToGalleryV2Mutation, galleriesSchema.Exact<{
831
- galleryId: string;
832
- creationIds: string[];
833
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
834
- useCreateFavoriteListV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.ICreateFavoriteListV2Mutation, galleriesSchema.Exact<{
835
- name: string;
836
- description?: galleriesSchema.Maybe<string> | undefined;
837
- publicAccessible?: galleriesSchema.Maybe<boolean> | undefined;
838
- creationIds?: galleriesSchema.Maybe<galleriesSchema.Maybe<string>[]> | undefined;
839
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<galleriesSchema.ICreateFavoriteListV2Mutation, galleriesSchema.Exact<{
840
- name: string;
841
- description?: galleriesSchema.Maybe<string> | undefined;
842
- publicAccessible?: galleriesSchema.Maybe<boolean> | undefined;
843
- creationIds?: galleriesSchema.Maybe<galleriesSchema.Maybe<string>[]> | undefined;
844
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
845
- useCreateGalleryV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.ICreateGalleryV2Mutation, galleriesSchema.Exact<{
846
- name: string;
847
- description?: galleriesSchema.Maybe<string> | undefined;
848
- publicAccessible?: galleriesSchema.Maybe<boolean> | undefined;
849
- creationIds?: galleriesSchema.Maybe<galleriesSchema.Maybe<string>[]> | undefined;
850
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<galleriesSchema.ICreateGalleryV2Mutation, galleriesSchema.Exact<{
851
- name: string;
852
- description?: galleriesSchema.Maybe<string> | undefined;
853
- publicAccessible?: galleriesSchema.Maybe<boolean> | undefined;
854
- creationIds?: galleriesSchema.Maybe<galleriesSchema.Maybe<string>[]> | undefined;
855
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
856
- useDeleteGalleryMutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IDeleteGalleryMutation, galleriesSchema.Exact<{
857
- galleryId: string;
858
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<galleriesSchema.IDeleteGalleryMutation, galleriesSchema.Exact<{
859
- galleryId: string;
860
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
861
- useEditGalleryMutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IEditGalleryMutation, galleriesSchema.Exact<{
862
- galleryId: string;
863
- name?: galleriesSchema.Maybe<string> | undefined;
864
- description?: galleriesSchema.Maybe<string> | undefined;
865
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<galleriesSchema.IEditGalleryMutation, galleriesSchema.Exact<{
866
- galleryId: string;
867
- name?: galleriesSchema.Maybe<string> | undefined;
868
- description?: galleriesSchema.Maybe<string> | undefined;
869
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
870
- useRemoveAssetFromGalleryV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IRemoveAssetFromGalleryV2Mutation, galleriesSchema.Exact<{
871
- galleryId: string;
872
- assetId: string;
873
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<galleriesSchema.IRemoveAssetFromGalleryV2Mutation, galleriesSchema.Exact<{
874
- galleryId: string;
875
- assetId: string;
876
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
877
- useRemoveCollectionFromGalleryV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IRemoveCollectionFromGalleryV2Mutation, galleriesSchema.Exact<{
878
- galleryId: string;
879
- collectionId: string;
880
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<galleriesSchema.IRemoveCollectionFromGalleryV2Mutation, galleriesSchema.Exact<{
881
- galleryId: string;
882
- collectionId: string;
883
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
884
- useRemoveCreationFromGalleryV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IRemoveCreationFromGalleryV2Mutation, galleriesSchema.Exact<{
885
- galleryId: string;
886
- creationId: string;
887
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<galleriesSchema.IRemoveCreationFromGalleryV2Mutation, galleriesSchema.Exact<{
888
- galleryId: string;
889
- creationId: string;
890
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
891
- useFetchGalleryV2Query(baseOptions: import("@apollo/client").QueryHookOptions<galleriesSchema.IFetchGalleryV2Query, galleriesSchema.Exact<{
892
- galleryId: string;
893
- }>>): import("@apollo/client").QueryResult<galleriesSchema.IFetchGalleryV2Query, galleriesSchema.Exact<{
894
- galleryId: string;
895
- }>>;
896
- useFetchGalleryV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<galleriesSchema.IFetchGalleryV2Query, galleriesSchema.Exact<{
897
- galleryId: string;
898
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<galleriesSchema.IFetchGalleryV2Query, galleriesSchema.Exact<{
899
- galleryId: string;
900
- }>>;
901
- useFetchMyFavoritesV2Query(baseOptions: import("@apollo/client").QueryHookOptions<galleriesSchema.IFetchMyFavoritesV2Query, galleriesSchema.Exact<{
902
- pageSize: number;
903
- pageToken?: galleriesSchema.Maybe<string> | undefined;
904
- }>>): import("@apollo/client").QueryResult<galleriesSchema.IFetchMyFavoritesV2Query, galleriesSchema.Exact<{
905
- pageSize: number;
906
- pageToken?: galleriesSchema.Maybe<string> | undefined;
907
- }>>;
908
- useFetchMyFavoritesV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<galleriesSchema.IFetchMyFavoritesV2Query, galleriesSchema.Exact<{
909
- pageSize: number;
910
- pageToken?: galleriesSchema.Maybe<string> | undefined;
911
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<galleriesSchema.IFetchMyFavoritesV2Query, galleriesSchema.Exact<{
912
- pageSize: number;
913
- pageToken?: galleriesSchema.Maybe<string> | undefined;
914
- }>>;
915
- useFetchMyGalleriesV2Query(baseOptions: import("@apollo/client").QueryHookOptions<galleriesSchema.IFetchMyGalleriesV2Query, galleriesSchema.Exact<{
916
- pageSize: number;
917
- pageToken?: galleriesSchema.Maybe<string> | undefined;
918
- }>>): import("@apollo/client").QueryResult<galleriesSchema.IFetchMyGalleriesV2Query, galleriesSchema.Exact<{
919
- pageSize: number;
920
- pageToken?: galleriesSchema.Maybe<string> | undefined;
921
- }>>;
922
- useFetchMyGalleriesV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<galleriesSchema.IFetchMyGalleriesV2Query, galleriesSchema.Exact<{
923
- pageSize: number;
924
- pageToken?: galleriesSchema.Maybe<string> | undefined;
925
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<galleriesSchema.IFetchMyGalleriesV2Query, galleriesSchema.Exact<{
926
- pageSize: number;
927
- pageToken?: galleriesSchema.Maybe<string> | undefined;
928
- }>>;
929
- useFetchUserFavoritesV2Query(baseOptions: import("@apollo/client").QueryHookOptions<galleriesSchema.IFetchUserFavoritesV2Query, galleriesSchema.Exact<{
930
- userId: string;
931
- pageSize: number;
932
- pageToken?: galleriesSchema.Maybe<string> | undefined;
933
- }>>): import("@apollo/client").QueryResult<galleriesSchema.IFetchUserFavoritesV2Query, galleriesSchema.Exact<{
934
- userId: string;
935
- pageSize: number;
936
- pageToken?: galleriesSchema.Maybe<string> | undefined;
937
- }>>;
938
- useFetchUserFavoritesV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<galleriesSchema.IFetchUserFavoritesV2Query, galleriesSchema.Exact<{
939
- userId: string;
940
- pageSize: number;
941
- pageToken?: galleriesSchema.Maybe<string> | undefined;
942
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<galleriesSchema.IFetchUserFavoritesV2Query, galleriesSchema.Exact<{
943
- userId: string;
944
- pageSize: number;
945
- pageToken?: galleriesSchema.Maybe<string> | undefined;
946
- }>>;
947
- useFetchUserGalleriesV2Query(baseOptions: import("@apollo/client").QueryHookOptions<galleriesSchema.IFetchUserGalleriesV2Query, galleriesSchema.Exact<{
948
- userId: string;
949
- pageSize: number;
950
- pageToken?: galleriesSchema.Maybe<string> | undefined;
951
- }>>): import("@apollo/client").QueryResult<galleriesSchema.IFetchUserGalleriesV2Query, galleriesSchema.Exact<{
952
- userId: string;
953
- pageSize: number;
954
- pageToken?: galleriesSchema.Maybe<string> | undefined;
955
- }>>;
956
- useFetchUserGalleriesV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<galleriesSchema.IFetchUserGalleriesV2Query, galleriesSchema.Exact<{
957
- userId: string;
958
- pageSize: number;
959
- pageToken?: galleriesSchema.Maybe<string> | undefined;
960
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<galleriesSchema.IFetchUserGalleriesV2Query, galleriesSchema.Exact<{
961
- userId: string;
962
- pageSize: number;
963
- pageToken?: galleriesSchema.Maybe<string> | undefined;
525
+ useAddAssetsToGalleryV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IAddAssetsToGalleryV2Mutation, galleriesSchema.IAddAssetsToGalleryV2MutationVariables>): import("@apollo/client").MutationTuple<galleriesSchema.IAddAssetsToGalleryV2Mutation, galleriesSchema.Exact<{
526
+ galleryId: galleriesSchema.Scalars["ID"];
527
+ assetIds: Array<galleriesSchema.Scalars["String"]>;
528
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
529
+ useAddCollectionsToGalleryV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IAddCollectionsToGalleryV2Mutation, galleriesSchema.IAddCollectionsToGalleryV2MutationVariables>): import("@apollo/client").MutationTuple<galleriesSchema.IAddCollectionsToGalleryV2Mutation, galleriesSchema.Exact<{
530
+ galleryId: galleriesSchema.Scalars["ID"];
531
+ collectionIds: Array<galleriesSchema.Scalars["String"]>;
532
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
533
+ useAddCreationsToGalleryV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IAddCreationsToGalleryV2Mutation, galleriesSchema.IAddCreationsToGalleryV2MutationVariables>): import("@apollo/client").MutationTuple<galleriesSchema.IAddCreationsToGalleryV2Mutation, galleriesSchema.Exact<{
534
+ galleryId: galleriesSchema.Scalars["ID"];
535
+ creationIds: Array<galleriesSchema.Scalars["String"]>;
536
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
537
+ useCreateFavoriteListV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.ICreateFavoriteListV2Mutation, galleriesSchema.ICreateFavoriteListV2MutationVariables>): import("@apollo/client").MutationTuple<galleriesSchema.ICreateFavoriteListV2Mutation, galleriesSchema.Exact<{
538
+ name: galleriesSchema.Scalars["String"];
539
+ description?: galleriesSchema.Maybe<galleriesSchema.Scalars["String"]>;
540
+ publicAccessible?: galleriesSchema.Maybe<galleriesSchema.Scalars["Boolean"]>;
541
+ creationIds?: galleriesSchema.Maybe<Array<galleriesSchema.Maybe<galleriesSchema.Scalars["String"]>>>;
542
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
543
+ useCreateGalleryV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.ICreateGalleryV2Mutation, galleriesSchema.ICreateGalleryV2MutationVariables>): import("@apollo/client").MutationTuple<galleriesSchema.ICreateGalleryV2Mutation, galleriesSchema.Exact<{
544
+ name: galleriesSchema.Scalars["String"];
545
+ description?: galleriesSchema.Maybe<galleriesSchema.Scalars["String"]>;
546
+ publicAccessible?: galleriesSchema.Maybe<galleriesSchema.Scalars["Boolean"]>;
547
+ creationIds?: galleriesSchema.Maybe<Array<galleriesSchema.Maybe<galleriesSchema.Scalars["String"]>>>;
548
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
549
+ useDeleteGalleryMutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IDeleteGalleryMutation, galleriesSchema.IDeleteGalleryMutationVariables>): import("@apollo/client").MutationTuple<galleriesSchema.IDeleteGalleryMutation, galleriesSchema.Exact<{
550
+ galleryId: galleriesSchema.Scalars["ID"];
551
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
552
+ useEditGalleryMutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IEditGalleryMutation, galleriesSchema.IEditGalleryMutationVariables>): import("@apollo/client").MutationTuple<galleriesSchema.IEditGalleryMutation, galleriesSchema.Exact<{
553
+ galleryId: galleriesSchema.Scalars["ID"];
554
+ name?: galleriesSchema.Maybe<galleriesSchema.Scalars["String"]>;
555
+ description?: galleriesSchema.Maybe<galleriesSchema.Scalars["String"]>;
556
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
557
+ useRemoveAssetFromGalleryV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IRemoveAssetFromGalleryV2Mutation, galleriesSchema.IRemoveAssetFromGalleryV2MutationVariables>): import("@apollo/client").MutationTuple<galleriesSchema.IRemoveAssetFromGalleryV2Mutation, galleriesSchema.Exact<{
558
+ galleryId: galleriesSchema.Scalars["ID"];
559
+ assetId: galleriesSchema.Scalars["String"];
560
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
561
+ useRemoveCollectionFromGalleryV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IRemoveCollectionFromGalleryV2Mutation, galleriesSchema.IRemoveCollectionFromGalleryV2MutationVariables>): import("@apollo/client").MutationTuple<galleriesSchema.IRemoveCollectionFromGalleryV2Mutation, galleriesSchema.Exact<{
562
+ galleryId: galleriesSchema.Scalars["ID"];
563
+ collectionId: galleriesSchema.Scalars["String"];
564
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
565
+ useRemoveCreationFromGalleryV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IRemoveCreationFromGalleryV2Mutation, galleriesSchema.IRemoveCreationFromGalleryV2MutationVariables>): import("@apollo/client").MutationTuple<galleriesSchema.IRemoveCreationFromGalleryV2Mutation, galleriesSchema.Exact<{
566
+ galleryId: galleriesSchema.Scalars["ID"];
567
+ creationId: galleriesSchema.Scalars["String"];
568
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
569
+ useFetchGalleryV2Query(baseOptions: import("@apollo/client").QueryHookOptions<galleriesSchema.IFetchGalleryV2Query, galleriesSchema.IFetchGalleryV2QueryVariables>): import("@apollo/client").QueryResult<galleriesSchema.IFetchGalleryV2Query, galleriesSchema.Exact<{
570
+ galleryId: galleriesSchema.Scalars["String"];
571
+ }>>;
572
+ useFetchGalleryV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<galleriesSchema.IFetchGalleryV2Query, galleriesSchema.IFetchGalleryV2QueryVariables>): import("@apollo/client").LazyQueryResultTuple<galleriesSchema.IFetchGalleryV2Query, galleriesSchema.Exact<{
573
+ galleryId: galleriesSchema.Scalars["String"];
574
+ }>>;
575
+ useFetchMyFavoritesV2Query(baseOptions: import("@apollo/client").QueryHookOptions<galleriesSchema.IFetchMyFavoritesV2Query, galleriesSchema.IFetchMyFavoritesV2QueryVariables>): import("@apollo/client").QueryResult<galleriesSchema.IFetchMyFavoritesV2Query, galleriesSchema.Exact<{
576
+ pageSize: galleriesSchema.Scalars["Int"];
577
+ pageToken?: galleriesSchema.Maybe<galleriesSchema.Scalars["String"]>;
578
+ }>>;
579
+ useFetchMyFavoritesV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<galleriesSchema.IFetchMyFavoritesV2Query, galleriesSchema.IFetchMyFavoritesV2QueryVariables>): import("@apollo/client").LazyQueryResultTuple<galleriesSchema.IFetchMyFavoritesV2Query, galleriesSchema.Exact<{
580
+ pageSize: galleriesSchema.Scalars["Int"];
581
+ pageToken?: galleriesSchema.Maybe<galleriesSchema.Scalars["String"]>;
582
+ }>>;
583
+ useFetchMyGalleriesV2Query(baseOptions: import("@apollo/client").QueryHookOptions<galleriesSchema.IFetchMyGalleriesV2Query, galleriesSchema.IFetchMyGalleriesV2QueryVariables>): import("@apollo/client").QueryResult<galleriesSchema.IFetchMyGalleriesV2Query, galleriesSchema.Exact<{
584
+ pageSize: galleriesSchema.Scalars["Int"];
585
+ pageToken?: galleriesSchema.Maybe<galleriesSchema.Scalars["String"]>;
586
+ }>>;
587
+ useFetchMyGalleriesV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<galleriesSchema.IFetchMyGalleriesV2Query, galleriesSchema.IFetchMyGalleriesV2QueryVariables>): import("@apollo/client").LazyQueryResultTuple<galleriesSchema.IFetchMyGalleriesV2Query, galleriesSchema.Exact<{
588
+ pageSize: galleriesSchema.Scalars["Int"];
589
+ pageToken?: galleriesSchema.Maybe<galleriesSchema.Scalars["String"]>;
590
+ }>>;
591
+ useFetchUserFavoritesV2Query(baseOptions: import("@apollo/client").QueryHookOptions<galleriesSchema.IFetchUserFavoritesV2Query, galleriesSchema.IFetchUserFavoritesV2QueryVariables>): import("@apollo/client").QueryResult<galleriesSchema.IFetchUserFavoritesV2Query, galleriesSchema.Exact<{
592
+ userId: galleriesSchema.Scalars["ID"];
593
+ pageSize: galleriesSchema.Scalars["Int"];
594
+ pageToken?: galleriesSchema.Maybe<galleriesSchema.Scalars["String"]>;
595
+ }>>;
596
+ useFetchUserFavoritesV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<galleriesSchema.IFetchUserFavoritesV2Query, galleriesSchema.IFetchUserFavoritesV2QueryVariables>): import("@apollo/client").LazyQueryResultTuple<galleriesSchema.IFetchUserFavoritesV2Query, galleriesSchema.Exact<{
597
+ userId: galleriesSchema.Scalars["ID"];
598
+ pageSize: galleriesSchema.Scalars["Int"];
599
+ pageToken?: galleriesSchema.Maybe<galleriesSchema.Scalars["String"]>;
600
+ }>>;
601
+ useFetchUserGalleriesV2Query(baseOptions: import("@apollo/client").QueryHookOptions<galleriesSchema.IFetchUserGalleriesV2Query, galleriesSchema.IFetchUserGalleriesV2QueryVariables>): import("@apollo/client").QueryResult<galleriesSchema.IFetchUserGalleriesV2Query, galleriesSchema.Exact<{
602
+ userId: galleriesSchema.Scalars["ID"];
603
+ pageSize: galleriesSchema.Scalars["Int"];
604
+ pageToken?: galleriesSchema.Maybe<galleriesSchema.Scalars["String"]>;
605
+ }>>;
606
+ useFetchUserGalleriesV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<galleriesSchema.IFetchUserGalleriesV2Query, galleriesSchema.IFetchUserGalleriesV2QueryVariables>): import("@apollo/client").LazyQueryResultTuple<galleriesSchema.IFetchUserGalleriesV2Query, galleriesSchema.Exact<{
607
+ userId: galleriesSchema.Scalars["ID"];
608
+ pageSize: galleriesSchema.Scalars["Int"];
609
+ pageToken?: galleriesSchema.Maybe<galleriesSchema.Scalars["String"]>;
964
610
  }>>;
965
611
  AddAssetsToGalleryV2Document: import("graphql").DocumentNode;
966
612
  AddCollectionsToGalleryV2Document: import("graphql").DocumentNode;
@@ -977,120 +623,71 @@ declare const schema: {
977
623
  FetchMyGalleriesV2Document: import("graphql").DocumentNode;
978
624
  FetchUserFavoritesV2Document: import("graphql").DocumentNode;
979
625
  FetchUserGalleriesV2Document: import("graphql").DocumentNode;
980
- useHideOpportunityV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<extensionSchema.IHideOpportunityV2Mutation, extensionSchema.Exact<{
981
- opportunityId: string;
982
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<extensionSchema.IHideOpportunityV2Mutation, extensionSchema.Exact<{
983
- opportunityId: string;
984
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
985
- useOpenOpportunityV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<extensionSchema.IOpenOpportunityV2Mutation, extensionSchema.Exact<{
986
- opportunityId: string;
987
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<extensionSchema.IOpenOpportunityV2Mutation, extensionSchema.Exact<{
988
- opportunityId: string;
989
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
990
- useVisitPageV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<extensionSchema.IVisitPageV2Mutation, extensionSchema.Exact<{
991
- domain: string;
992
- title: string;
993
- description?: extensionSchema.Maybe<string> | undefined;
994
- tags?: extensionSchema.Maybe<extensionSchema.Maybe<string>[]> | undefined;
995
- brandId?: extensionSchema.Maybe<string> | undefined;
996
- categoryId?: extensionSchema.Maybe<string> | undefined;
997
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<extensionSchema.IVisitPageV2Mutation, extensionSchema.Exact<{
998
- domain: string;
999
- title: string;
1000
- description?: extensionSchema.Maybe<string> | undefined;
1001
- tags?: extensionSchema.Maybe<extensionSchema.Maybe<string>[]> | undefined;
1002
- brandId?: extensionSchema.Maybe<string> | undefined;
1003
- categoryId?: extensionSchema.Maybe<string> | undefined;
1004
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1005
- useFetchCollectionRanksQuery(baseOptions: import("@apollo/client").QueryHookOptions<extensionSchema.IFetchCollectionRanksQuery, extensionSchema.Exact<{
1006
- collectionKeys: extensionSchema.ICollectionKey[];
1007
- }>>): import("@apollo/client").QueryResult<extensionSchema.IFetchCollectionRanksQuery, extensionSchema.Exact<{
1008
- collectionKeys: extensionSchema.ICollectionKey[];
1009
- }>>;
1010
- useFetchCollectionRanksLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchCollectionRanksQuery, extensionSchema.Exact<{
1011
- collectionKeys: extensionSchema.ICollectionKey[];
1012
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchCollectionRanksQuery, extensionSchema.Exact<{
1013
- collectionKeys: extensionSchema.ICollectionKey[];
1014
- }>>;
1015
- useFetchExtensionBrandsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<extensionSchema.IFetchExtensionBrandsQuery, extensionSchema.Exact<{
1016
- [key: string]: never;
1017
- }>> | undefined): import("@apollo/client").QueryResult<extensionSchema.IFetchExtensionBrandsQuery, extensionSchema.Exact<{
1018
- [key: string]: never;
626
+ useHideOpportunityV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<extensionSchema.IHideOpportunityV2Mutation, extensionSchema.IHideOpportunityV2MutationVariables>): import("@apollo/client").MutationTuple<extensionSchema.IHideOpportunityV2Mutation, extensionSchema.Exact<{
627
+ opportunityId: extensionSchema.Scalars["ID"];
628
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
629
+ useOpenOpportunityV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<extensionSchema.IOpenOpportunityV2Mutation, extensionSchema.IOpenOpportunityV2MutationVariables>): import("@apollo/client").MutationTuple<extensionSchema.IOpenOpportunityV2Mutation, extensionSchema.Exact<{
630
+ opportunityId: extensionSchema.Scalars["ID"];
631
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
632
+ useVisitPageV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<extensionSchema.IVisitPageV2Mutation, extensionSchema.IVisitPageV2MutationVariables>): import("@apollo/client").MutationTuple<extensionSchema.IVisitPageV2Mutation, extensionSchema.Exact<{
633
+ domain: extensionSchema.Scalars["String"];
634
+ title: extensionSchema.Scalars["String"];
635
+ description?: extensionSchema.Maybe<extensionSchema.Scalars["String"]>;
636
+ tags?: extensionSchema.Maybe<Array<extensionSchema.Maybe<extensionSchema.Scalars["String"]>>>;
637
+ brandId?: extensionSchema.Maybe<extensionSchema.Scalars["String"]>;
638
+ categoryId?: extensionSchema.Maybe<extensionSchema.Scalars["String"]>;
639
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
640
+ useFetchCollectionRanksQuery(baseOptions: import("@apollo/client").QueryHookOptions<extensionSchema.IFetchCollectionRanksQuery, extensionSchema.IFetchCollectionRanksQueryVariables>): import("@apollo/client").QueryResult<extensionSchema.IFetchCollectionRanksQuery, extensionSchema.Exact<{
641
+ collectionKeys: Array<extensionSchema.ICollectionKey>;
1019
642
  }>>;
1020
- useFetchExtensionBrandsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchExtensionBrandsQuery, extensionSchema.Exact<{
1021
- [key: string]: never;
1022
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchExtensionBrandsQuery, extensionSchema.Exact<{
1023
- [key: string]: never;
643
+ useFetchCollectionRanksLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchCollectionRanksQuery, extensionSchema.IFetchCollectionRanksQueryVariables>): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchCollectionRanksQuery, extensionSchema.Exact<{
644
+ collectionKeys: Array<extensionSchema.ICollectionKey>;
1024
645
  }>>;
1025
- useFetchExtensionCategoriesQuery(baseOptions?: import("@apollo/client").QueryHookOptions<extensionSchema.IFetchExtensionCategoriesQuery, extensionSchema.Exact<{
646
+ useFetchExtensionBrandsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<extensionSchema.IFetchExtensionBrandsQuery, extensionSchema.IFetchExtensionBrandsQueryVariables>): import("@apollo/client").QueryResult<extensionSchema.IFetchExtensionBrandsQuery, extensionSchema.Exact<{
1026
647
  [key: string]: never;
1027
- }>> | undefined): import("@apollo/client").QueryResult<extensionSchema.IFetchExtensionCategoriesQuery, extensionSchema.Exact<{
648
+ }>>;
649
+ useFetchExtensionBrandsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchExtensionBrandsQuery, extensionSchema.IFetchExtensionBrandsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchExtensionBrandsQuery, extensionSchema.Exact<{
1028
650
  [key: string]: never;
1029
651
  }>>;
1030
- useFetchExtensionCategoriesLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchExtensionCategoriesQuery, extensionSchema.Exact<{
652
+ useFetchExtensionCategoriesQuery(baseOptions?: import("@apollo/client").QueryHookOptions<extensionSchema.IFetchExtensionCategoriesQuery, extensionSchema.IFetchExtensionCategoriesQueryVariables>): import("@apollo/client").QueryResult<extensionSchema.IFetchExtensionCategoriesQuery, extensionSchema.Exact<{
1031
653
  [key: string]: never;
1032
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchExtensionCategoriesQuery, extensionSchema.Exact<{
654
+ }>>;
655
+ useFetchExtensionCategoriesLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchExtensionCategoriesQuery, extensionSchema.IFetchExtensionCategoriesQueryVariables>): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchExtensionCategoriesQuery, extensionSchema.Exact<{
1033
656
  [key: string]: never;
1034
657
  }>>;
1035
- useFetchExtensionOpportunitiesV2Query(baseOptions: import("@apollo/client").QueryHookOptions<extensionSchema.IFetchExtensionOpportunitiesV2Query, extensionSchema.Exact<{
1036
- domain: string;
1037
- brandId?: extensionSchema.Maybe<string> | undefined;
1038
- categoryId?: extensionSchema.Maybe<string> | undefined;
1039
- }>>): import("@apollo/client").QueryResult<extensionSchema.IFetchExtensionOpportunitiesV2Query, extensionSchema.Exact<{
1040
- domain: string;
1041
- brandId?: extensionSchema.Maybe<string> | undefined;
1042
- categoryId?: extensionSchema.Maybe<string> | undefined;
1043
- }>>;
1044
- useFetchExtensionOpportunitiesV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchExtensionOpportunitiesV2Query, extensionSchema.Exact<{
1045
- domain: string;
1046
- brandId?: extensionSchema.Maybe<string> | undefined;
1047
- categoryId?: extensionSchema.Maybe<string> | undefined;
1048
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchExtensionOpportunitiesV2Query, extensionSchema.Exact<{
1049
- domain: string;
1050
- brandId?: extensionSchema.Maybe<string> | undefined;
1051
- categoryId?: extensionSchema.Maybe<string> | undefined;
1052
- }>>;
1053
- useFetchNftDataQuery(baseOptions: import("@apollo/client").QueryHookOptions<extensionSchema.IFetchNftDataQuery, extensionSchema.Exact<{
1054
- blockchain: string;
1055
- contractAddress?: extensionSchema.Maybe<string> | undefined;
1056
- tokenId?: extensionSchema.Maybe<string> | undefined;
1057
- elrondId?: extensionSchema.Maybe<string> | undefined;
1058
- }>>): import("@apollo/client").QueryResult<extensionSchema.IFetchNftDataQuery, extensionSchema.Exact<{
1059
- blockchain: string;
1060
- contractAddress?: extensionSchema.Maybe<string> | undefined;
1061
- tokenId?: extensionSchema.Maybe<string> | undefined;
1062
- elrondId?: extensionSchema.Maybe<string> | undefined;
1063
- }>>;
1064
- useFetchNftDataLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchNftDataQuery, extensionSchema.Exact<{
1065
- blockchain: string;
1066
- contractAddress?: extensionSchema.Maybe<string> | undefined;
1067
- tokenId?: extensionSchema.Maybe<string> | undefined;
1068
- elrondId?: extensionSchema.Maybe<string> | undefined;
1069
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchNftDataQuery, extensionSchema.Exact<{
1070
- blockchain: string;
1071
- contractAddress?: extensionSchema.Maybe<string> | undefined;
1072
- tokenId?: extensionSchema.Maybe<string> | undefined;
1073
- elrondId?: extensionSchema.Maybe<string> | undefined;
1074
- }>>;
1075
- useFetchNftRanksQuery(baseOptions: import("@apollo/client").QueryHookOptions<extensionSchema.IFetchNftRanksQuery, extensionSchema.Exact<{
1076
- nftKeys: extensionSchema.INftKey[];
1077
- }>>): import("@apollo/client").QueryResult<extensionSchema.IFetchNftRanksQuery, extensionSchema.Exact<{
1078
- nftKeys: extensionSchema.INftKey[];
1079
- }>>;
1080
- useFetchNftRanksLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchNftRanksQuery, extensionSchema.Exact<{
1081
- nftKeys: extensionSchema.INftKey[];
1082
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchNftRanksQuery, extensionSchema.Exact<{
1083
- nftKeys: extensionSchema.INftKey[];
1084
- }>>;
1085
- useFetchWalletRanksQuery(baseOptions: import("@apollo/client").QueryHookOptions<extensionSchema.IFetchWalletRanksQuery, extensionSchema.Exact<{
1086
- wallets: string[];
1087
- }>>): import("@apollo/client").QueryResult<extensionSchema.IFetchWalletRanksQuery, extensionSchema.Exact<{
1088
- wallets: string[];
1089
- }>>;
1090
- useFetchWalletRanksLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchWalletRanksQuery, extensionSchema.Exact<{
1091
- wallets: string[];
1092
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchWalletRanksQuery, extensionSchema.Exact<{
1093
- wallets: string[];
658
+ useFetchExtensionOpportunitiesV2Query(baseOptions: import("@apollo/client").QueryHookOptions<extensionSchema.IFetchExtensionOpportunitiesV2Query, extensionSchema.IFetchExtensionOpportunitiesV2QueryVariables>): import("@apollo/client").QueryResult<extensionSchema.IFetchExtensionOpportunitiesV2Query, extensionSchema.Exact<{
659
+ domain: extensionSchema.Scalars["String"];
660
+ brandId?: extensionSchema.Maybe<extensionSchema.Scalars["String"]>;
661
+ categoryId?: extensionSchema.Maybe<extensionSchema.Scalars["String"]>;
662
+ }>>;
663
+ useFetchExtensionOpportunitiesV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchExtensionOpportunitiesV2Query, extensionSchema.IFetchExtensionOpportunitiesV2QueryVariables>): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchExtensionOpportunitiesV2Query, extensionSchema.Exact<{
664
+ domain: extensionSchema.Scalars["String"];
665
+ brandId?: extensionSchema.Maybe<extensionSchema.Scalars["String"]>;
666
+ categoryId?: extensionSchema.Maybe<extensionSchema.Scalars["String"]>;
667
+ }>>;
668
+ useFetchNftDataQuery(baseOptions: import("@apollo/client").QueryHookOptions<extensionSchema.IFetchNftDataQuery, extensionSchema.IFetchNftDataQueryVariables>): import("@apollo/client").QueryResult<extensionSchema.IFetchNftDataQuery, extensionSchema.Exact<{
669
+ blockchain: extensionSchema.Scalars["String"];
670
+ contractAddress?: extensionSchema.Maybe<extensionSchema.Scalars["String"]>;
671
+ tokenId?: extensionSchema.Maybe<extensionSchema.Scalars["String"]>;
672
+ elrondId?: extensionSchema.Maybe<extensionSchema.Scalars["String"]>;
673
+ }>>;
674
+ useFetchNftDataLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchNftDataQuery, extensionSchema.IFetchNftDataQueryVariables>): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchNftDataQuery, extensionSchema.Exact<{
675
+ blockchain: extensionSchema.Scalars["String"];
676
+ contractAddress?: extensionSchema.Maybe<extensionSchema.Scalars["String"]>;
677
+ tokenId?: extensionSchema.Maybe<extensionSchema.Scalars["String"]>;
678
+ elrondId?: extensionSchema.Maybe<extensionSchema.Scalars["String"]>;
679
+ }>>;
680
+ useFetchNftRanksQuery(baseOptions: import("@apollo/client").QueryHookOptions<extensionSchema.IFetchNftRanksQuery, extensionSchema.IFetchNftRanksQueryVariables>): import("@apollo/client").QueryResult<extensionSchema.IFetchNftRanksQuery, extensionSchema.Exact<{
681
+ nftKeys: Array<extensionSchema.INftKey>;
682
+ }>>;
683
+ useFetchNftRanksLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchNftRanksQuery, extensionSchema.IFetchNftRanksQueryVariables>): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchNftRanksQuery, extensionSchema.Exact<{
684
+ nftKeys: Array<extensionSchema.INftKey>;
685
+ }>>;
686
+ useFetchWalletRanksQuery(baseOptions: import("@apollo/client").QueryHookOptions<extensionSchema.IFetchWalletRanksQuery, extensionSchema.IFetchWalletRanksQueryVariables>): import("@apollo/client").QueryResult<extensionSchema.IFetchWalletRanksQuery, extensionSchema.Exact<{
687
+ wallets: Array<extensionSchema.Scalars["String"]>;
688
+ }>>;
689
+ useFetchWalletRanksLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchWalletRanksQuery, extensionSchema.IFetchWalletRanksQueryVariables>): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchWalletRanksQuery, extensionSchema.Exact<{
690
+ wallets: Array<extensionSchema.Scalars["String"]>;
1094
691
  }>>;
1095
692
  HideOpportunityV2Document: import("graphql").DocumentNode;
1096
693
  OpenOpportunityV2Document: import("graphql").DocumentNode;
@@ -1102,79 +699,61 @@ declare const schema: {
1102
699
  FetchNftDataDocument: import("graphql").DocumentNode;
1103
700
  FetchNftRanksDocument: import("graphql").DocumentNode;
1104
701
  FetchWalletRanksDocument: import("graphql").DocumentNode;
1105
- useFetchMyExperienceV2Query(baseOptions?: import("@apollo/client").QueryHookOptions<experiencesSchema.IFetchMyExperienceV2Query, experiencesSchema.Exact<{
1106
- [key: string]: never;
1107
- }>> | undefined): import("@apollo/client").QueryResult<experiencesSchema.IFetchMyExperienceV2Query, experiencesSchema.Exact<{
702
+ useFetchMyExperienceV2Query(baseOptions?: import("@apollo/client").QueryHookOptions<experiencesSchema.IFetchMyExperienceV2Query, experiencesSchema.IFetchMyExperienceV2QueryVariables>): import("@apollo/client").QueryResult<experiencesSchema.IFetchMyExperienceV2Query, experiencesSchema.Exact<{
1108
703
  [key: string]: never;
1109
704
  }>>;
1110
- useFetchMyExperienceV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<experiencesSchema.IFetchMyExperienceV2Query, experiencesSchema.Exact<{
1111
- [key: string]: never;
1112
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<experiencesSchema.IFetchMyExperienceV2Query, experiencesSchema.Exact<{
705
+ useFetchMyExperienceV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<experiencesSchema.IFetchMyExperienceV2Query, experiencesSchema.IFetchMyExperienceV2QueryVariables>): import("@apollo/client").LazyQueryResultTuple<experiencesSchema.IFetchMyExperienceV2Query, experiencesSchema.Exact<{
1113
706
  [key: string]: never;
1114
707
  }>>;
1115
- useFetchMyTasksQuery(baseOptions?: import("@apollo/client").QueryHookOptions<experiencesSchema.IFetchMyTasksQuery, experiencesSchema.Exact<{
1116
- [key: string]: never;
1117
- }>> | undefined): import("@apollo/client").QueryResult<experiencesSchema.IFetchMyTasksQuery, experiencesSchema.Exact<{
708
+ useFetchMyTasksQuery(baseOptions?: import("@apollo/client").QueryHookOptions<experiencesSchema.IFetchMyTasksQuery, experiencesSchema.IFetchMyTasksQueryVariables>): import("@apollo/client").QueryResult<experiencesSchema.IFetchMyTasksQuery, experiencesSchema.Exact<{
1118
709
  [key: string]: never;
1119
710
  }>>;
1120
- useFetchMyTasksLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<experiencesSchema.IFetchMyTasksQuery, experiencesSchema.Exact<{
1121
- [key: string]: never;
1122
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<experiencesSchema.IFetchMyTasksQuery, experiencesSchema.Exact<{
711
+ useFetchMyTasksLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<experiencesSchema.IFetchMyTasksQuery, experiencesSchema.IFetchMyTasksQueryVariables>): import("@apollo/client").LazyQueryResultTuple<experiencesSchema.IFetchMyTasksQuery, experiencesSchema.Exact<{
1123
712
  [key: string]: never;
1124
713
  }>>;
1125
- useOnCommonOpportunityNotificationSubscription(baseOptions?: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnCommonOpportunityNotificationSubscription, experiencesSchema.Exact<{
1126
- [key: string]: never;
1127
- }>> | undefined): {
714
+ useOnCommonOpportunityNotificationSubscription(baseOptions?: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnCommonOpportunityNotificationSubscription, experiencesSchema.IOnCommonOpportunityNotificationSubscriptionVariables>): {
1128
715
  restart(): void;
1129
716
  loading: boolean;
1130
717
  data?: experiencesSchema.IOnCommonOpportunityNotificationSubscription | undefined;
1131
- error?: import("@apollo/client").ApolloError | undefined;
718
+ error?: import("@apollo/client").ApolloError;
1132
719
  variables?: experiencesSchema.Exact<{
1133
720
  [key: string]: never;
1134
721
  }> | undefined;
1135
722
  };
1136
- useOnInviteCodeUsedSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnInviteCodeUsedSubscription, experiencesSchema.Exact<{
1137
- authToken: string;
1138
- }>>): {
723
+ useOnInviteCodeUsedSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnInviteCodeUsedSubscription, experiencesSchema.IOnInviteCodeUsedSubscriptionVariables>): {
1139
724
  restart(): void;
1140
725
  loading: boolean;
1141
726
  data?: experiencesSchema.IOnInviteCodeUsedSubscription | undefined;
1142
- error?: import("@apollo/client").ApolloError | undefined;
727
+ error?: import("@apollo/client").ApolloError;
1143
728
  variables?: experiencesSchema.Exact<{
1144
- authToken: string;
729
+ authToken: experiencesSchema.Scalars["String"];
1145
730
  }> | undefined;
1146
731
  };
1147
- useOnMyExperienceIncrementedSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnMyExperienceIncrementedSubscription, experiencesSchema.Exact<{
1148
- authToken: string;
1149
- }>>): {
732
+ useOnMyExperienceIncrementedSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnMyExperienceIncrementedSubscription, experiencesSchema.IOnMyExperienceIncrementedSubscriptionVariables>): {
1150
733
  restart(): void;
1151
734
  loading: boolean;
1152
735
  data?: experiencesSchema.IOnMyExperienceIncrementedSubscription | undefined;
1153
- error?: import("@apollo/client").ApolloError | undefined;
736
+ error?: import("@apollo/client").ApolloError;
1154
737
  variables?: experiencesSchema.Exact<{
1155
- authToken: string;
738
+ authToken: experiencesSchema.Scalars["String"];
1156
739
  }> | undefined;
1157
740
  };
1158
- useOnMyExperienceUpdatedSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnMyExperienceUpdatedSubscription, experiencesSchema.Exact<{
1159
- authToken: string;
1160
- }>>): {
741
+ useOnMyExperienceUpdatedSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnMyExperienceUpdatedSubscription, experiencesSchema.IOnMyExperienceUpdatedSubscriptionVariables>): {
1161
742
  restart(): void;
1162
743
  loading: boolean;
1163
744
  data?: experiencesSchema.IOnMyExperienceUpdatedSubscription | undefined;
1164
- error?: import("@apollo/client").ApolloError | undefined;
745
+ error?: import("@apollo/client").ApolloError;
1165
746
  variables?: experiencesSchema.Exact<{
1166
- authToken: string;
747
+ authToken: experiencesSchema.Scalars["String"];
1167
748
  }> | undefined;
1168
749
  };
1169
- useOnUserOpportunityNotificationSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnUserOpportunityNotificationSubscription, experiencesSchema.Exact<{
1170
- authToken: string;
1171
- }>>): {
750
+ useOnUserOpportunityNotificationSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnUserOpportunityNotificationSubscription, experiencesSchema.IOnUserOpportunityNotificationSubscriptionVariables>): {
1172
751
  restart(): void;
1173
752
  loading: boolean;
1174
753
  data?: experiencesSchema.IOnUserOpportunityNotificationSubscription | undefined;
1175
- error?: import("@apollo/client").ApolloError | undefined;
754
+ error?: import("@apollo/client").ApolloError;
1176
755
  variables?: experiencesSchema.Exact<{
1177
- authToken: string;
756
+ authToken: experiencesSchema.Scalars["String"];
1178
757
  }> | undefined;
1179
758
  };
1180
759
  FetchMyExperienceV2Document: import("graphql").DocumentNode;
@@ -1184,493 +763,317 @@ declare const schema: {
1184
763
  OnMyExperienceIncrementedDocument: import("graphql").DocumentNode;
1185
764
  OnMyExperienceUpdatedDocument: import("graphql").DocumentNode;
1186
765
  OnUserOpportunityNotificationDocument: import("graphql").DocumentNode;
1187
- useDislikeCollectionMutation(baseOptions?: import("@apollo/client").MutationHookOptions<collectionsSchema.IDislikeCollectionMutation, collectionsSchema.Exact<{
1188
- collectionId: string;
1189
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<collectionsSchema.IDislikeCollectionMutation, collectionsSchema.Exact<{
1190
- collectionId: string;
766
+ useDislikeCollectionMutation(baseOptions?: import("@apollo/client").MutationHookOptions<collectionsSchema.IDislikeCollectionMutation, collectionsSchema.IDislikeCollectionMutationVariables>): import("@apollo/client").MutationTuple<collectionsSchema.IDislikeCollectionMutation, collectionsSchema.Exact<{
767
+ collectionId: collectionsSchema.Scalars["String"];
1191
768
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1192
- useLikeCollectionMutation(baseOptions?: import("@apollo/client").MutationHookOptions<collectionsSchema.ILikeCollectionMutation, collectionsSchema.Exact<{
1193
- collectionId: string;
1194
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<collectionsSchema.ILikeCollectionMutation, collectionsSchema.Exact<{
1195
- collectionId: string;
769
+ useLikeCollectionMutation(baseOptions?: import("@apollo/client").MutationHookOptions<collectionsSchema.ILikeCollectionMutation, collectionsSchema.ILikeCollectionMutationVariables>): import("@apollo/client").MutationTuple<collectionsSchema.ILikeCollectionMutation, collectionsSchema.Exact<{
770
+ collectionId: collectionsSchema.Scalars["String"];
1196
771
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1197
772
  DislikeCollectionDocument: import("graphql").DocumentNode;
1198
773
  LikeCollectionDocument: import("graphql").DocumentNode;
1199
- useRefreshTokenMutation(baseOptions?: import("@apollo/client").MutationHookOptions<authSchema.IRefreshTokenMutation, authSchema.Exact<{
1200
- refreshToken: string;
1201
- showNsfw?: authSchema.Maybe<boolean> | undefined;
1202
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<authSchema.IRefreshTokenMutation, authSchema.Exact<{
1203
- refreshToken: string;
1204
- showNsfw?: authSchema.Maybe<boolean> | undefined;
1205
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1206
- useRevokeTokenMutation(baseOptions?: import("@apollo/client").MutationHookOptions<authSchema.IRevokeTokenMutation, authSchema.Exact<{
1207
- [key: string]: never;
1208
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<authSchema.IRevokeTokenMutation, authSchema.Exact<{
774
+ useRefreshTokenMutation(baseOptions?: import("@apollo/client").MutationHookOptions<authSchema.IRefreshTokenMutation, authSchema.IRefreshTokenMutationVariables>): import("@apollo/client").MutationTuple<authSchema.IRefreshTokenMutation, authSchema.Exact<{
775
+ refreshToken: authSchema.Scalars["String"];
776
+ showNsfw?: authSchema.Maybe<authSchema.Scalars["Boolean"]>;
777
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
778
+ useRevokeTokenMutation(baseOptions?: import("@apollo/client").MutationHookOptions<authSchema.IRevokeTokenMutation, authSchema.IRevokeTokenMutationVariables>): import("@apollo/client").MutationTuple<authSchema.IRevokeTokenMutation, authSchema.Exact<{
1209
779
  [key: string]: never;
1210
780
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1211
781
  RefreshTokenDocument: import("graphql").DocumentNode;
1212
782
  RevokeTokenDocument: import("graphql").DocumentNode;
1213
- useDislikeAssetMutation(baseOptions?: import("@apollo/client").MutationHookOptions<assetSchema.IDislikeAssetMutation, assetSchema.Exact<{
1214
- assetId: string;
1215
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<assetSchema.IDislikeAssetMutation, assetSchema.Exact<{
1216
- assetId: string;
783
+ useDislikeAssetMutation(baseOptions?: import("@apollo/client").MutationHookOptions<assetSchema.IDislikeAssetMutation, assetSchema.IDislikeAssetMutationVariables>): import("@apollo/client").MutationTuple<assetSchema.IDislikeAssetMutation, assetSchema.Exact<{
784
+ assetId: assetSchema.Scalars["String"];
1217
785
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1218
- useLikeAssetMutation(baseOptions?: import("@apollo/client").MutationHookOptions<assetSchema.ILikeAssetMutation, assetSchema.Exact<{
1219
- assetId: string;
1220
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<assetSchema.ILikeAssetMutation, assetSchema.Exact<{
1221
- assetId: string;
786
+ useLikeAssetMutation(baseOptions?: import("@apollo/client").MutationHookOptions<assetSchema.ILikeAssetMutation, assetSchema.ILikeAssetMutationVariables>): import("@apollo/client").MutationTuple<assetSchema.ILikeAssetMutation, assetSchema.Exact<{
787
+ assetId: assetSchema.Scalars["String"];
1222
788
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1223
789
  DislikeAssetDocument: import("graphql").DocumentNode;
1224
790
  LikeAssetDocument: import("graphql").DocumentNode;
1225
- useCreateTierMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.ICreateTierMutation, adminSchema.Exact<{
1226
- input: adminSchema.ITierInput;
1227
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.ICreateTierMutation, adminSchema.Exact<{
1228
- input: adminSchema.ITierInput;
791
+ useCreateReferralTypeMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.ICreateReferralTypeMutation, adminSchema.ICreateReferralTypeMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.ICreateReferralTypeMutation, adminSchema.Exact<{
792
+ input: adminSchema.IReferralTypeInput;
1229
793
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1230
- useTriggerOpportunityNotificationMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.ITriggerOpportunityNotificationMutation, adminSchema.Exact<{
1231
- opportunityId: string;
1232
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.ITriggerOpportunityNotificationMutation, adminSchema.Exact<{
1233
- opportunityId: string;
1234
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1235
- useUpdateInviteCodeUsagesLimitMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateInviteCodeUsagesLimitMutation, adminSchema.Exact<{
1236
- code: string;
1237
- usagesLimit: number;
1238
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IUpdateInviteCodeUsagesLimitMutation, adminSchema.Exact<{
1239
- code: string;
1240
- usagesLimit: number;
1241
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1242
- useUpdateOpportunityPushStatusMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateOpportunityPushStatusMutation, adminSchema.Exact<{
1243
- opportunityId: string;
1244
- isActive: boolean;
1245
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IUpdateOpportunityPushStatusMutation, adminSchema.Exact<{
1246
- opportunityId: string;
1247
- isActive: boolean;
1248
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1249
- useUpdateTierMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateTierMutation, adminSchema.Exact<{
1250
- id: string;
794
+ useCreateTierMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.ICreateTierMutation, adminSchema.ICreateTierMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.ICreateTierMutation, adminSchema.Exact<{
1251
795
  input: adminSchema.ITierInput;
1252
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IUpdateTierMutation, adminSchema.Exact<{
1253
- id: string;
796
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
797
+ useTriggerOpportunityNotificationMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.ITriggerOpportunityNotificationMutation, adminSchema.ITriggerOpportunityNotificationMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.ITriggerOpportunityNotificationMutation, adminSchema.Exact<{
798
+ opportunityId: adminSchema.Scalars["ID"];
799
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
800
+ useUpdateInviteCodeUsagesLimitMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateInviteCodeUsagesLimitMutation, adminSchema.IUpdateInviteCodeUsagesLimitMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IUpdateInviteCodeUsagesLimitMutation, adminSchema.Exact<{
801
+ code: adminSchema.Scalars["String"];
802
+ usagesLimit: adminSchema.Scalars["Int"];
803
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
804
+ useUpdateOpportunityPushStatusMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateOpportunityPushStatusMutation, adminSchema.IUpdateOpportunityPushStatusMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IUpdateOpportunityPushStatusMutation, adminSchema.Exact<{
805
+ opportunityId: adminSchema.Scalars["ID"];
806
+ isActive: adminSchema.Scalars["Boolean"];
807
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
808
+ useUpdateReferralTypeMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateReferralTypeMutation, adminSchema.IUpdateReferralTypeMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IUpdateReferralTypeMutation, adminSchema.Exact<{
809
+ id: adminSchema.Scalars["ID"];
810
+ input: adminSchema.IReferralTypeInput;
811
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
812
+ useUpdateReferralTypeArchivedStatusMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateReferralTypeArchivedStatusMutation, adminSchema.IUpdateReferralTypeArchivedStatusMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IUpdateReferralTypeArchivedStatusMutation, adminSchema.Exact<{
813
+ id: adminSchema.Scalars["ID"];
814
+ isArchived: adminSchema.Scalars["Boolean"];
815
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
816
+ useUpdateTierMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateTierMutation, adminSchema.IUpdateTierMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IUpdateTierMutation, adminSchema.Exact<{
817
+ id: adminSchema.Scalars["ID"];
1254
818
  input: adminSchema.ITierInput;
1255
819
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1256
- useUpdateTierArchivedStatusMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateTierArchivedStatusMutation, adminSchema.Exact<{
1257
- id: string;
1258
- isArchived: boolean;
1259
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IUpdateTierArchivedStatusMutation, adminSchema.Exact<{
1260
- id: string;
1261
- isArchived: boolean;
1262
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1263
- useChangeXpPointsMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IChangeXpPointsMutation, adminSchema.Exact<{
1264
- userId: string;
1265
- pointsDiff: number;
1266
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IChangeXpPointsMutation, adminSchema.Exact<{
1267
- userId: string;
1268
- pointsDiff: number;
1269
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1270
- useCreateCategoryMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.ICreateCategoryMutation, adminSchema.Exact<{
1271
- name: string;
1272
- matchingWords: string[];
1273
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.ICreateCategoryMutation, adminSchema.Exact<{
1274
- name: string;
1275
- matchingWords: string[];
1276
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1277
- useCreateBrandMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.ICreateBrandMutation, adminSchema.Exact<{
1278
- brand: adminSchema.IBrandInput;
1279
- file?: any;
1280
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.ICreateBrandMutation, adminSchema.Exact<{
820
+ useUpdateTierArchivedStatusMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateTierArchivedStatusMutation, adminSchema.IUpdateTierArchivedStatusMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IUpdateTierArchivedStatusMutation, adminSchema.Exact<{
821
+ id: adminSchema.Scalars["ID"];
822
+ isArchived: adminSchema.Scalars["Boolean"];
823
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
824
+ useChangeXpPointsMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IChangeXpPointsMutation, adminSchema.IChangeXpPointsMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IChangeXpPointsMutation, adminSchema.Exact<{
825
+ userId: adminSchema.Scalars["ID"];
826
+ pointsDiff: adminSchema.Scalars["Int"];
827
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
828
+ useCreateCategoryMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.ICreateCategoryMutation, adminSchema.ICreateCategoryMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.ICreateCategoryMutation, adminSchema.Exact<{
829
+ name: adminSchema.Scalars["String"];
830
+ matchingWords: Array<adminSchema.Scalars["String"]>;
831
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
832
+ useCreateBrandMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.ICreateBrandMutation, adminSchema.ICreateBrandMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.ICreateBrandMutation, adminSchema.Exact<{
1281
833
  brand: adminSchema.IBrandInput;
1282
- file?: any;
834
+ file?: adminSchema.Maybe<adminSchema.Scalars["Upload"]>;
1283
835
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1284
- useCreateAdminOpportunityMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.ICreateAdminOpportunityMutation, adminSchema.Exact<{
1285
- file?: any;
1286
- input: adminSchema.IAdminOpportunityInput;
1287
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.ICreateAdminOpportunityMutation, adminSchema.Exact<{
1288
- file?: any;
836
+ useCreateAdminOpportunityMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.ICreateAdminOpportunityMutation, adminSchema.ICreateAdminOpportunityMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.ICreateAdminOpportunityMutation, adminSchema.Exact<{
837
+ file?: adminSchema.Maybe<adminSchema.Scalars["Upload"]>;
1289
838
  input: adminSchema.IAdminOpportunityInput;
1290
839
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1291
- useAddInviteCodesMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IAddInviteCodesMutation, adminSchema.Exact<{
1292
- userId: string;
1293
- codesNum: number;
1294
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IAddInviteCodesMutation, adminSchema.Exact<{
1295
- userId: string;
1296
- codesNum: number;
840
+ useAddInviteCodesMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IAddInviteCodesMutation, adminSchema.IAddInviteCodesMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IAddInviteCodesMutation, adminSchema.Exact<{
841
+ userId: adminSchema.Scalars["String"];
842
+ codesNum: adminSchema.Scalars["Int"];
1297
843
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1298
- useRemoveInviteCodeMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IRemoveInviteCodeMutation, adminSchema.Exact<{
1299
- inviteCode: string;
1300
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IRemoveInviteCodeMutation, adminSchema.Exact<{
1301
- inviteCode: string;
844
+ useRemoveInviteCodeMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IRemoveInviteCodeMutation, adminSchema.IRemoveInviteCodeMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IRemoveInviteCodeMutation, adminSchema.Exact<{
845
+ inviteCode: adminSchema.Scalars["String"];
1302
846
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1303
- useUpdateBrandMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateBrandMutation, adminSchema.Exact<{
1304
- id: string;
1305
- input: adminSchema.IBrandInput;
1306
- file?: any;
1307
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IUpdateBrandMutation, adminSchema.Exact<{
1308
- id: string;
847
+ useUpdateBrandMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateBrandMutation, adminSchema.IUpdateBrandMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IUpdateBrandMutation, adminSchema.Exact<{
848
+ id: adminSchema.Scalars["ID"];
1309
849
  input: adminSchema.IBrandInput;
1310
- file?: any;
850
+ file?: adminSchema.Maybe<adminSchema.Scalars["Upload"]>;
1311
851
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1312
- useUpdateBrandArchivedStatusMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateBrandArchivedStatusMutation, adminSchema.Exact<{
1313
- id: string;
1314
- isArchived: boolean;
1315
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IUpdateBrandArchivedStatusMutation, adminSchema.Exact<{
1316
- id: string;
1317
- isArchived: boolean;
852
+ useUpdateBrandArchivedStatusMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateBrandArchivedStatusMutation, adminSchema.IUpdateBrandArchivedStatusMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IUpdateBrandArchivedStatusMutation, adminSchema.Exact<{
853
+ id: adminSchema.Scalars["ID"];
854
+ isArchived: adminSchema.Scalars["Boolean"];
1318
855
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1319
- useUpdateCategoryMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateCategoryMutation, adminSchema.Exact<{
1320
- id: string;
1321
- input: adminSchema.ICategoryInput;
1322
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IUpdateCategoryMutation, adminSchema.Exact<{
1323
- id: string;
856
+ useUpdateCategoryMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateCategoryMutation, adminSchema.IUpdateCategoryMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IUpdateCategoryMutation, adminSchema.Exact<{
857
+ id: adminSchema.Scalars["ID"];
1324
858
  input: adminSchema.ICategoryInput;
1325
859
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1326
- useUpdateCategoryArchivedStatusMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateCategoryArchivedStatusMutation, adminSchema.Exact<{
1327
- id: string;
1328
- isArchived: boolean;
1329
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IUpdateCategoryArchivedStatusMutation, adminSchema.Exact<{
1330
- id: string;
1331
- isArchived: boolean;
860
+ useUpdateCategoryArchivedStatusMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateCategoryArchivedStatusMutation, adminSchema.IUpdateCategoryArchivedStatusMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IUpdateCategoryArchivedStatusMutation, adminSchema.Exact<{
861
+ id: adminSchema.Scalars["ID"];
862
+ isArchived: adminSchema.Scalars["Boolean"];
1332
863
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1333
- useUpdateOpportunityMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateOpportunityMutation, adminSchema.Exact<{
1334
- id: string;
1335
- input: adminSchema.IAdminOpportunityInput;
1336
- file?: any;
1337
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IUpdateOpportunityMutation, adminSchema.Exact<{
1338
- id: string;
864
+ useUpdateOpportunityMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateOpportunityMutation, adminSchema.IUpdateOpportunityMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IUpdateOpportunityMutation, adminSchema.Exact<{
865
+ id: adminSchema.Scalars["ID"];
1339
866
  input: adminSchema.IAdminOpportunityInput;
1340
- file?: any;
1341
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1342
- useUpdateProfileStatusMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateProfileStatusMutation, adminSchema.Exact<{
1343
- userId: string;
1344
- isActive: boolean;
1345
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IUpdateProfileStatusMutation, adminSchema.Exact<{
1346
- userId: string;
1347
- isActive: boolean;
1348
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1349
- useCheckInviteCodeQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.ICheckInviteCodeQuery, adminSchema.Exact<{
1350
- code: string;
1351
- }>>): import("@apollo/client").QueryResult<adminSchema.ICheckInviteCodeQuery, adminSchema.Exact<{
1352
- code: string;
1353
- }>>;
1354
- useCheckInviteCodeLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.ICheckInviteCodeQuery, adminSchema.Exact<{
1355
- code: string;
1356
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.ICheckInviteCodeQuery, adminSchema.Exact<{
1357
- code: string;
1358
- }>>;
1359
- useFetchContactSupportPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchContactSupportPageQuery, adminSchema.Exact<{
1360
- filter: adminSchema.IContactSupportFilterInput;
1361
- sort: adminSchema.IContactSupportSortInput;
1362
- page: adminSchema.IAdminPageInput;
1363
- }>>): import("@apollo/client").QueryResult<adminSchema.IFetchContactSupportPageQuery, adminSchema.Exact<{
1364
- filter: adminSchema.IContactSupportFilterInput;
1365
- sort: adminSchema.IContactSupportSortInput;
1366
- page: adminSchema.IAdminPageInput;
867
+ file?: adminSchema.Maybe<adminSchema.Scalars["Upload"]>;
868
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
869
+ useUpdateProfileStatusMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateProfileStatusMutation, adminSchema.IUpdateProfileStatusMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IUpdateProfileStatusMutation, adminSchema.Exact<{
870
+ userId: adminSchema.Scalars["ID"];
871
+ isActive: adminSchema.Scalars["Boolean"];
872
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
873
+ useCheckInviteCodeQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.ICheckInviteCodeQuery, adminSchema.ICheckInviteCodeQueryVariables>): import("@apollo/client").QueryResult<adminSchema.ICheckInviteCodeQuery, adminSchema.Exact<{
874
+ code: adminSchema.Scalars["String"];
1367
875
  }>>;
1368
- useFetchContactSupportPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchContactSupportPageQuery, adminSchema.Exact<{
876
+ useCheckInviteCodeLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.ICheckInviteCodeQuery, adminSchema.ICheckInviteCodeQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.ICheckInviteCodeQuery, adminSchema.Exact<{
877
+ code: adminSchema.Scalars["String"];
878
+ }>>;
879
+ useFetchContactSupportPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchContactSupportPageQuery, adminSchema.IFetchContactSupportPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchContactSupportPageQuery, adminSchema.Exact<{
1369
880
  filter: adminSchema.IContactSupportFilterInput;
1370
881
  sort: adminSchema.IContactSupportSortInput;
1371
882
  page: adminSchema.IAdminPageInput;
1372
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchContactSupportPageQuery, adminSchema.Exact<{
883
+ }>>;
884
+ useFetchContactSupportPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchContactSupportPageQuery, adminSchema.IFetchContactSupportPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchContactSupportPageQuery, adminSchema.Exact<{
1373
885
  filter: adminSchema.IContactSupportFilterInput;
1374
886
  sort: adminSchema.IContactSupportSortInput;
1375
887
  page: adminSchema.IAdminPageInput;
1376
888
  }>>;
1377
- useFetchContentReportPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchContentReportPageQuery, adminSchema.Exact<{
1378
- filter: adminSchema.IContentReportFilterInput;
1379
- sort: adminSchema.IContentReportSortInput;
1380
- page: adminSchema.IAdminPageInput;
1381
- }>>): import("@apollo/client").QueryResult<adminSchema.IFetchContentReportPageQuery, adminSchema.Exact<{
889
+ useFetchContentReportPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchContentReportPageQuery, adminSchema.IFetchContentReportPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchContentReportPageQuery, adminSchema.Exact<{
1382
890
  filter: adminSchema.IContentReportFilterInput;
1383
891
  sort: adminSchema.IContentReportSortInput;
1384
892
  page: adminSchema.IAdminPageInput;
1385
893
  }>>;
1386
- useFetchContentReportPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchContentReportPageQuery, adminSchema.Exact<{
1387
- filter: adminSchema.IContentReportFilterInput;
1388
- sort: adminSchema.IContentReportSortInput;
1389
- page: adminSchema.IAdminPageInput;
1390
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchContentReportPageQuery, adminSchema.Exact<{
894
+ useFetchContentReportPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchContentReportPageQuery, adminSchema.IFetchContentReportPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchContentReportPageQuery, adminSchema.Exact<{
1391
895
  filter: adminSchema.IContentReportFilterInput;
1392
896
  sort: adminSchema.IContentReportSortInput;
1393
897
  page: adminSchema.IAdminPageInput;
1394
898
  }>>;
1395
- useFetchFormOpportunityPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchFormOpportunityPageQuery, adminSchema.Exact<{
1396
- filter: adminSchema.IFormOpportunityFilterInput;
1397
- sort: adminSchema.IFormOpportunitySortInput;
1398
- page: adminSchema.IAdminPageInput;
1399
- }>>): import("@apollo/client").QueryResult<adminSchema.IFetchFormOpportunityPageQuery, adminSchema.Exact<{
899
+ useFetchFormOpportunityPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchFormOpportunityPageQuery, adminSchema.IFetchFormOpportunityPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchFormOpportunityPageQuery, adminSchema.Exact<{
1400
900
  filter: adminSchema.IFormOpportunityFilterInput;
1401
901
  sort: adminSchema.IFormOpportunitySortInput;
1402
902
  page: adminSchema.IAdminPageInput;
1403
903
  }>>;
1404
- useFetchFormOpportunityPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchFormOpportunityPageQuery, adminSchema.Exact<{
1405
- filter: adminSchema.IFormOpportunityFilterInput;
1406
- sort: adminSchema.IFormOpportunitySortInput;
1407
- page: adminSchema.IAdminPageInput;
1408
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchFormOpportunityPageQuery, adminSchema.Exact<{
904
+ useFetchFormOpportunityPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchFormOpportunityPageQuery, adminSchema.IFetchFormOpportunityPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchFormOpportunityPageQuery, adminSchema.Exact<{
1409
905
  filter: adminSchema.IFormOpportunityFilterInput;
1410
906
  sort: adminSchema.IFormOpportunitySortInput;
1411
907
  page: adminSchema.IAdminPageInput;
1412
908
  }>>;
1413
- useFetchInvestorInquiryPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchInvestorInquiryPageQuery, adminSchema.Exact<{
1414
- filter: adminSchema.IInvestorInquiryFilterInput;
1415
- sort: adminSchema.IInvestorInquirySortInput;
1416
- page: adminSchema.IAdminPageInput;
1417
- }>>): import("@apollo/client").QueryResult<adminSchema.IFetchInvestorInquiryPageQuery, adminSchema.Exact<{
909
+ useFetchInvestorInquiryPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchInvestorInquiryPageQuery, adminSchema.IFetchInvestorInquiryPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchInvestorInquiryPageQuery, adminSchema.Exact<{
1418
910
  filter: adminSchema.IInvestorInquiryFilterInput;
1419
911
  sort: adminSchema.IInvestorInquirySortInput;
1420
912
  page: adminSchema.IAdminPageInput;
1421
913
  }>>;
1422
- useFetchInvestorInquiryPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchInvestorInquiryPageQuery, adminSchema.Exact<{
1423
- filter: adminSchema.IInvestorInquiryFilterInput;
1424
- sort: adminSchema.IInvestorInquirySortInput;
1425
- page: adminSchema.IAdminPageInput;
1426
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchInvestorInquiryPageQuery, adminSchema.Exact<{
914
+ useFetchInvestorInquiryPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchInvestorInquiryPageQuery, adminSchema.IFetchInvestorInquiryPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchInvestorInquiryPageQuery, adminSchema.Exact<{
1427
915
  filter: adminSchema.IInvestorInquiryFilterInput;
1428
916
  sort: adminSchema.IInvestorInquirySortInput;
1429
917
  page: adminSchema.IAdminPageInput;
1430
918
  }>>;
1431
- useFetchPartnershipInquiryPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchPartnershipInquiryPageQuery, adminSchema.Exact<{
1432
- filter: adminSchema.IPartnershipInquiryFilterInput;
1433
- sort: adminSchema.IPartnershipInquirySortInput;
1434
- page: adminSchema.IAdminPageInput;
1435
- }>>): import("@apollo/client").QueryResult<adminSchema.IFetchPartnershipInquiryPageQuery, adminSchema.Exact<{
919
+ useFetchPartnershipInquiryPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchPartnershipInquiryPageQuery, adminSchema.IFetchPartnershipInquiryPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchPartnershipInquiryPageQuery, adminSchema.Exact<{
1436
920
  filter: adminSchema.IPartnershipInquiryFilterInput;
1437
921
  sort: adminSchema.IPartnershipInquirySortInput;
1438
922
  page: adminSchema.IAdminPageInput;
1439
923
  }>>;
1440
- useFetchPartnershipInquiryPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchPartnershipInquiryPageQuery, adminSchema.Exact<{
1441
- filter: adminSchema.IPartnershipInquiryFilterInput;
1442
- sort: adminSchema.IPartnershipInquirySortInput;
1443
- page: adminSchema.IAdminPageInput;
1444
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchPartnershipInquiryPageQuery, adminSchema.Exact<{
924
+ useFetchPartnershipInquiryPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchPartnershipInquiryPageQuery, adminSchema.IFetchPartnershipInquiryPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchPartnershipInquiryPageQuery, adminSchema.Exact<{
1445
925
  filter: adminSchema.IPartnershipInquiryFilterInput;
1446
926
  sort: adminSchema.IPartnershipInquirySortInput;
1447
927
  page: adminSchema.IAdminPageInput;
1448
928
  }>>;
1449
- useFetchRegistrationInvitePageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchRegistrationInvitePageQuery, adminSchema.Exact<{
1450
- filter: adminSchema.IRegistrationInviteFilterInput;
1451
- sort: adminSchema.IRegistrationInviteSortInput;
929
+ useFetchReferralTypesQuery(baseOptions?: import("@apollo/client").QueryHookOptions<adminSchema.IFetchReferralTypesQuery, adminSchema.IFetchReferralTypesQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchReferralTypesQuery, adminSchema.Exact<{
930
+ [key: string]: never;
931
+ }>>;
932
+ useFetchReferralTypesLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchReferralTypesQuery, adminSchema.IFetchReferralTypesQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchReferralTypesQuery, adminSchema.Exact<{
933
+ [key: string]: never;
934
+ }>>;
935
+ useFetchReferralTypesPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchReferralTypesPageQuery, adminSchema.IFetchReferralTypesPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchReferralTypesPageQuery, adminSchema.Exact<{
936
+ filter: adminSchema.IReferralTypeFilterInput;
937
+ sort: adminSchema.IReferralTypeSortInput;
1452
938
  page: adminSchema.IAdminPageInput;
1453
- }>>): import("@apollo/client").QueryResult<adminSchema.IFetchRegistrationInvitePageQuery, adminSchema.Exact<{
1454
- filter: adminSchema.IRegistrationInviteFilterInput;
1455
- sort: adminSchema.IRegistrationInviteSortInput;
939
+ }>>;
940
+ useFetchReferralTypesPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchReferralTypesPageQuery, adminSchema.IFetchReferralTypesPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchReferralTypesPageQuery, adminSchema.Exact<{
941
+ filter: adminSchema.IReferralTypeFilterInput;
942
+ sort: adminSchema.IReferralTypeSortInput;
1456
943
  page: adminSchema.IAdminPageInput;
1457
944
  }>>;
1458
- useFetchRegistrationInvitePageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchRegistrationInvitePageQuery, adminSchema.Exact<{
945
+ useFetchRegistrationInvitePageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchRegistrationInvitePageQuery, adminSchema.IFetchRegistrationInvitePageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchRegistrationInvitePageQuery, adminSchema.Exact<{
1459
946
  filter: adminSchema.IRegistrationInviteFilterInput;
1460
947
  sort: adminSchema.IRegistrationInviteSortInput;
1461
948
  page: adminSchema.IAdminPageInput;
1462
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchRegistrationInvitePageQuery, adminSchema.Exact<{
949
+ }>>;
950
+ useFetchRegistrationInvitePageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchRegistrationInvitePageQuery, adminSchema.IFetchRegistrationInvitePageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchRegistrationInvitePageQuery, adminSchema.Exact<{
1463
951
  filter: adminSchema.IRegistrationInviteFilterInput;
1464
952
  sort: adminSchema.IRegistrationInviteSortInput;
1465
953
  page: adminSchema.IAdminPageInput;
1466
954
  }>>;
1467
- useFetchTiersQuery(baseOptions?: import("@apollo/client").QueryHookOptions<adminSchema.IFetchTiersQuery, adminSchema.Exact<{
1468
- [key: string]: never;
1469
- }>> | undefined): import("@apollo/client").QueryResult<adminSchema.IFetchTiersQuery, adminSchema.Exact<{
955
+ useFetchTiersQuery(baseOptions?: import("@apollo/client").QueryHookOptions<adminSchema.IFetchTiersQuery, adminSchema.IFetchTiersQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchTiersQuery, adminSchema.Exact<{
1470
956
  [key: string]: never;
1471
957
  }>>;
1472
- useFetchTiersLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchTiersQuery, adminSchema.Exact<{
1473
- [key: string]: never;
1474
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchTiersQuery, adminSchema.Exact<{
958
+ useFetchTiersLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchTiersQuery, adminSchema.IFetchTiersQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchTiersQuery, adminSchema.Exact<{
1475
959
  [key: string]: never;
1476
960
  }>>;
1477
- useFetchTiersPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchTiersPageQuery, adminSchema.Exact<{
1478
- filter: adminSchema.ITiersFilterInput;
1479
- sort: adminSchema.ITiersSortInput;
1480
- page: adminSchema.IAdminPageInput;
1481
- }>>): import("@apollo/client").QueryResult<adminSchema.IFetchTiersPageQuery, adminSchema.Exact<{
961
+ useFetchTiersPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchTiersPageQuery, adminSchema.IFetchTiersPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchTiersPageQuery, adminSchema.Exact<{
1482
962
  filter: adminSchema.ITiersFilterInput;
1483
963
  sort: adminSchema.ITiersSortInput;
1484
964
  page: adminSchema.IAdminPageInput;
1485
965
  }>>;
1486
- useFetchTiersPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchTiersPageQuery, adminSchema.Exact<{
1487
- filter: adminSchema.ITiersFilterInput;
1488
- sort: adminSchema.ITiersSortInput;
1489
- page: adminSchema.IAdminPageInput;
1490
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchTiersPageQuery, adminSchema.Exact<{
966
+ useFetchTiersPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchTiersPageQuery, adminSchema.IFetchTiersPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchTiersPageQuery, adminSchema.Exact<{
1491
967
  filter: adminSchema.ITiersFilterInput;
1492
968
  sort: adminSchema.ITiersSortInput;
1493
969
  page: adminSchema.IAdminPageInput;
1494
970
  }>>;
1495
- useFetchUserFeedbackPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchUserFeedbackPageQuery, adminSchema.Exact<{
1496
- filter: adminSchema.IUserFeedbackFilterInput;
1497
- sort: adminSchema.IUserFeedbackSortInput;
1498
- page: adminSchema.IAdminPageInput;
1499
- }>>): import("@apollo/client").QueryResult<adminSchema.IFetchUserFeedbackPageQuery, adminSchema.Exact<{
971
+ useFetchUserFeedbackPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchUserFeedbackPageQuery, adminSchema.IFetchUserFeedbackPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchUserFeedbackPageQuery, adminSchema.Exact<{
1500
972
  filter: adminSchema.IUserFeedbackFilterInput;
1501
973
  sort: adminSchema.IUserFeedbackSortInput;
1502
974
  page: adminSchema.IAdminPageInput;
1503
975
  }>>;
1504
- useFetchUserFeedbackPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchUserFeedbackPageQuery, adminSchema.Exact<{
1505
- filter: adminSchema.IUserFeedbackFilterInput;
1506
- sort: adminSchema.IUserFeedbackSortInput;
1507
- page: adminSchema.IAdminPageInput;
1508
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchUserFeedbackPageQuery, adminSchema.Exact<{
976
+ useFetchUserFeedbackPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchUserFeedbackPageQuery, adminSchema.IFetchUserFeedbackPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchUserFeedbackPageQuery, adminSchema.Exact<{
1509
977
  filter: adminSchema.IUserFeedbackFilterInput;
1510
978
  sort: adminSchema.IUserFeedbackSortInput;
1511
979
  page: adminSchema.IAdminPageInput;
1512
980
  }>>;
1513
- useFetchAdminBrandsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminBrandsQuery, adminSchema.Exact<{
1514
- [key: string]: never;
1515
- }>> | undefined): import("@apollo/client").QueryResult<adminSchema.IFetchAdminBrandsQuery, adminSchema.Exact<{
981
+ useFetchAdminBrandsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminBrandsQuery, adminSchema.IFetchAdminBrandsQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminBrandsQuery, adminSchema.Exact<{
1516
982
  [key: string]: never;
1517
983
  }>>;
1518
- useFetchAdminBrandsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminBrandsQuery, adminSchema.Exact<{
1519
- [key: string]: never;
1520
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminBrandsQuery, adminSchema.Exact<{
984
+ useFetchAdminBrandsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminBrandsQuery, adminSchema.IFetchAdminBrandsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminBrandsQuery, adminSchema.Exact<{
1521
985
  [key: string]: never;
1522
986
  }>>;
1523
- useFetchAdminBrandsPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminBrandsPageQuery, adminSchema.Exact<{
1524
- filter: adminSchema.IBrandsFilterInput;
1525
- sort: adminSchema.IBrandsSortInput;
1526
- page: adminSchema.IAdminPageInput;
1527
- }>>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminBrandsPageQuery, adminSchema.Exact<{
987
+ useFetchAdminBrandsPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminBrandsPageQuery, adminSchema.IFetchAdminBrandsPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminBrandsPageQuery, adminSchema.Exact<{
1528
988
  filter: adminSchema.IBrandsFilterInput;
1529
989
  sort: adminSchema.IBrandsSortInput;
1530
990
  page: adminSchema.IAdminPageInput;
1531
991
  }>>;
1532
- useFetchAdminBrandsPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminBrandsPageQuery, adminSchema.Exact<{
1533
- filter: adminSchema.IBrandsFilterInput;
1534
- sort: adminSchema.IBrandsSortInput;
1535
- page: adminSchema.IAdminPageInput;
1536
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminBrandsPageQuery, adminSchema.Exact<{
992
+ useFetchAdminBrandsPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminBrandsPageQuery, adminSchema.IFetchAdminBrandsPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminBrandsPageQuery, adminSchema.Exact<{
1537
993
  filter: adminSchema.IBrandsFilterInput;
1538
994
  sort: adminSchema.IBrandsSortInput;
1539
995
  page: adminSchema.IAdminPageInput;
1540
996
  }>>;
1541
- useFetchAdminCategoriesQuery(baseOptions?: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminCategoriesQuery, adminSchema.Exact<{
1542
- [key: string]: never;
1543
- }>> | undefined): import("@apollo/client").QueryResult<adminSchema.IFetchAdminCategoriesQuery, adminSchema.Exact<{
997
+ useFetchAdminCategoriesQuery(baseOptions?: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminCategoriesQuery, adminSchema.IFetchAdminCategoriesQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminCategoriesQuery, adminSchema.Exact<{
1544
998
  [key: string]: never;
1545
999
  }>>;
1546
- useFetchAdminCategoriesLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminCategoriesQuery, adminSchema.Exact<{
1547
- [key: string]: never;
1548
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminCategoriesQuery, adminSchema.Exact<{
1000
+ useFetchAdminCategoriesLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminCategoriesQuery, adminSchema.IFetchAdminCategoriesQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminCategoriesQuery, adminSchema.Exact<{
1549
1001
  [key: string]: never;
1550
1002
  }>>;
1551
- useFetchAdminCategoriesPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminCategoriesPageQuery, adminSchema.Exact<{
1552
- filter: adminSchema.ICategoriesFilterInput;
1553
- sort: adminSchema.ICategoriesSortInput;
1554
- page: adminSchema.IAdminPageInput;
1555
- }>>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminCategoriesPageQuery, adminSchema.Exact<{
1003
+ useFetchAdminCategoriesPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminCategoriesPageQuery, adminSchema.IFetchAdminCategoriesPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminCategoriesPageQuery, adminSchema.Exact<{
1556
1004
  filter: adminSchema.ICategoriesFilterInput;
1557
1005
  sort: adminSchema.ICategoriesSortInput;
1558
1006
  page: adminSchema.IAdminPageInput;
1559
1007
  }>>;
1560
- useFetchAdminCategoriesPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminCategoriesPageQuery, adminSchema.Exact<{
1561
- filter: adminSchema.ICategoriesFilterInput;
1562
- sort: adminSchema.ICategoriesSortInput;
1563
- page: adminSchema.IAdminPageInput;
1564
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminCategoriesPageQuery, adminSchema.Exact<{
1008
+ useFetchAdminCategoriesPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminCategoriesPageQuery, adminSchema.IFetchAdminCategoriesPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminCategoriesPageQuery, adminSchema.Exact<{
1565
1009
  filter: adminSchema.ICategoriesFilterInput;
1566
1010
  sort: adminSchema.ICategoriesSortInput;
1567
1011
  page: adminSchema.IAdminPageInput;
1568
1012
  }>>;
1569
- useFetchAdminInvitesPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminInvitesPageQuery, adminSchema.Exact<{
1570
- filter: adminSchema.IInvitesFilterInput;
1571
- sort: adminSchema.IInvitesSortInput;
1572
- page: adminSchema.IAdminPageInput;
1573
- }>>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminInvitesPageQuery, adminSchema.Exact<{
1013
+ useFetchAdminInvitesPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminInvitesPageQuery, adminSchema.IFetchAdminInvitesPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminInvitesPageQuery, adminSchema.Exact<{
1574
1014
  filter: adminSchema.IInvitesFilterInput;
1575
1015
  sort: adminSchema.IInvitesSortInput;
1576
1016
  page: adminSchema.IAdminPageInput;
1577
1017
  }>>;
1578
- useFetchAdminInvitesPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminInvitesPageQuery, adminSchema.Exact<{
1579
- filter: adminSchema.IInvitesFilterInput;
1580
- sort: adminSchema.IInvitesSortInput;
1581
- page: adminSchema.IAdminPageInput;
1582
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminInvitesPageQuery, adminSchema.Exact<{
1018
+ useFetchAdminInvitesPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminInvitesPageQuery, adminSchema.IFetchAdminInvitesPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminInvitesPageQuery, adminSchema.Exact<{
1583
1019
  filter: adminSchema.IInvitesFilterInput;
1584
1020
  sort: adminSchema.IInvitesSortInput;
1585
1021
  page: adminSchema.IAdminPageInput;
1586
1022
  }>>;
1587
- useFetchAdminOpportunitiesPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminOpportunitiesPageQuery, adminSchema.Exact<{
1588
- filter: adminSchema.IOpportunitiesFilterInput;
1589
- sort: adminSchema.IOpportunitiesSortInput;
1590
- page: adminSchema.IAdminPageInput;
1591
- }>>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminOpportunitiesPageQuery, adminSchema.Exact<{
1023
+ useFetchAdminOpportunitiesPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminOpportunitiesPageQuery, adminSchema.IFetchAdminOpportunitiesPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminOpportunitiesPageQuery, adminSchema.Exact<{
1592
1024
  filter: adminSchema.IOpportunitiesFilterInput;
1593
1025
  sort: adminSchema.IOpportunitiesSortInput;
1594
1026
  page: adminSchema.IAdminPageInput;
1595
1027
  }>>;
1596
- useFetchAdminOpportunitiesPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminOpportunitiesPageQuery, adminSchema.Exact<{
1597
- filter: adminSchema.IOpportunitiesFilterInput;
1598
- sort: adminSchema.IOpportunitiesSortInput;
1599
- page: adminSchema.IAdminPageInput;
1600
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminOpportunitiesPageQuery, adminSchema.Exact<{
1028
+ useFetchAdminOpportunitiesPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminOpportunitiesPageQuery, adminSchema.IFetchAdminOpportunitiesPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminOpportunitiesPageQuery, adminSchema.Exact<{
1601
1029
  filter: adminSchema.IOpportunitiesFilterInput;
1602
1030
  sort: adminSchema.IOpportunitiesSortInput;
1603
1031
  page: adminSchema.IAdminPageInput;
1604
1032
  }>>;
1605
- useFetchAdminReferralsPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminReferralsPageQuery, adminSchema.Exact<{
1606
- filter: adminSchema.IReferralsFilterInput;
1607
- sort: adminSchema.IReferralsSortInput;
1608
- page: adminSchema.IAdminPageInput;
1609
- }>>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminReferralsPageQuery, adminSchema.Exact<{
1033
+ useFetchAdminReferralsPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminReferralsPageQuery, adminSchema.IFetchAdminReferralsPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminReferralsPageQuery, adminSchema.Exact<{
1610
1034
  filter: adminSchema.IReferralsFilterInput;
1611
1035
  sort: adminSchema.IReferralsSortInput;
1612
1036
  page: adminSchema.IAdminPageInput;
1613
1037
  }>>;
1614
- useFetchAdminReferralsPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminReferralsPageQuery, adminSchema.Exact<{
1615
- filter: adminSchema.IReferralsFilterInput;
1616
- sort: adminSchema.IReferralsSortInput;
1617
- page: adminSchema.IAdminPageInput;
1618
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminReferralsPageQuery, adminSchema.Exact<{
1038
+ useFetchAdminReferralsPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminReferralsPageQuery, adminSchema.IFetchAdminReferralsPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminReferralsPageQuery, adminSchema.Exact<{
1619
1039
  filter: adminSchema.IReferralsFilterInput;
1620
1040
  sort: adminSchema.IReferralsSortInput;
1621
1041
  page: adminSchema.IAdminPageInput;
1622
1042
  }>>;
1623
- useFetchAdminUsersPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminUsersPageQuery, adminSchema.Exact<{
1624
- filter: adminSchema.IUsersFilterInput;
1625
- sort: adminSchema.IUsersSortInput;
1626
- page: adminSchema.IAdminPageInput;
1627
- }>>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminUsersPageQuery, adminSchema.Exact<{
1043
+ useFetchAdminUsersPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminUsersPageQuery, adminSchema.IFetchAdminUsersPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminUsersPageQuery, adminSchema.Exact<{
1628
1044
  filter: adminSchema.IUsersFilterInput;
1629
1045
  sort: adminSchema.IUsersSortInput;
1630
1046
  page: adminSchema.IAdminPageInput;
1631
1047
  }>>;
1632
- useFetchAdminUsersPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminUsersPageQuery, adminSchema.Exact<{
1633
- filter: adminSchema.IUsersFilterInput;
1634
- sort: adminSchema.IUsersSortInput;
1635
- page: adminSchema.IAdminPageInput;
1636
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminUsersPageQuery, adminSchema.Exact<{
1048
+ useFetchAdminUsersPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminUsersPageQuery, adminSchema.IFetchAdminUsersPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminUsersPageQuery, adminSchema.Exact<{
1637
1049
  filter: adminSchema.IUsersFilterInput;
1638
1050
  sort: adminSchema.IUsersSortInput;
1639
1051
  page: adminSchema.IAdminPageInput;
1640
1052
  }>>;
1641
- useFetchAdminXpPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminXpPageQuery, adminSchema.Exact<{
1642
- filter: adminSchema.IXpFilterInput;
1643
- sort: adminSchema.IXpSortInput;
1644
- page: adminSchema.IAdminPageInput;
1645
- }>>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminXpPageQuery, adminSchema.Exact<{
1053
+ useFetchAdminXpPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminXpPageQuery, adminSchema.IFetchAdminXpPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminXpPageQuery, adminSchema.Exact<{
1646
1054
  filter: adminSchema.IXpFilterInput;
1647
1055
  sort: adminSchema.IXpSortInput;
1648
1056
  page: adminSchema.IAdminPageInput;
1649
1057
  }>>;
1650
- useFetchAdminXpPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminXpPageQuery, adminSchema.Exact<{
1651
- filter: adminSchema.IXpFilterInput;
1652
- sort: adminSchema.IXpSortInput;
1653
- page: adminSchema.IAdminPageInput;
1654
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminXpPageQuery, adminSchema.Exact<{
1058
+ useFetchAdminXpPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminXpPageQuery, adminSchema.IFetchAdminXpPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminXpPageQuery, adminSchema.Exact<{
1655
1059
  filter: adminSchema.IXpFilterInput;
1656
1060
  sort: adminSchema.IXpSortInput;
1657
1061
  page: adminSchema.IAdminPageInput;
1658
1062
  }>>;
1659
- useFetchBlockchainsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<adminSchema.IFetchBlockchainsQuery, adminSchema.Exact<{
1660
- [key: string]: never;
1661
- }>> | undefined): import("@apollo/client").QueryResult<adminSchema.IFetchBlockchainsQuery, adminSchema.Exact<{
1063
+ useFetchBlockchainsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<adminSchema.IFetchBlockchainsQuery, adminSchema.IFetchBlockchainsQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchBlockchainsQuery, adminSchema.Exact<{
1662
1064
  [key: string]: never;
1663
1065
  }>>;
1664
- useFetchBlockchainsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchBlockchainsQuery, adminSchema.Exact<{
1665
- [key: string]: never;
1666
- }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchBlockchainsQuery, adminSchema.Exact<{
1066
+ useFetchBlockchainsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchBlockchainsQuery, adminSchema.IFetchBlockchainsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchBlockchainsQuery, adminSchema.Exact<{
1667
1067
  [key: string]: never;
1668
1068
  }>>;
1669
1069
  ISortDirection: typeof adminSchema.ISortDirection;
1070
+ CreateReferralTypeDocument: import("graphql").DocumentNode;
1670
1071
  CreateTierDocument: import("graphql").DocumentNode;
1671
1072
  TriggerOpportunityNotificationDocument: import("graphql").DocumentNode;
1672
1073
  UpdateInviteCodeUsagesLimitDocument: import("graphql").DocumentNode;
1673
1074
  UpdateOpportunityPushStatusDocument: import("graphql").DocumentNode;
1075
+ UpdateReferralTypeDocument: import("graphql").DocumentNode;
1076
+ UpdateReferralTypeArchivedStatusDocument: import("graphql").DocumentNode;
1674
1077
  UpdateTierDocument: import("graphql").DocumentNode;
1675
1078
  UpdateTierArchivedStatusDocument: import("graphql").DocumentNode;
1676
1079
  ChangeXpPointsDocument: import("graphql").DocumentNode;
@@ -1691,6 +1094,8 @@ declare const schema: {
1691
1094
  FetchFormOpportunityPageDocument: import("graphql").DocumentNode;
1692
1095
  FetchInvestorInquiryPageDocument: import("graphql").DocumentNode;
1693
1096
  FetchPartnershipInquiryPageDocument: import("graphql").DocumentNode;
1097
+ FetchReferralTypesDocument: import("graphql").DocumentNode;
1098
+ FetchReferralTypesPageDocument: import("graphql").DocumentNode;
1694
1099
  FetchRegistrationInvitePageDocument: import("graphql").DocumentNode;
1695
1100
  FetchTiersDocument: import("graphql").DocumentNode;
1696
1101
  FetchTiersPageDocument: import("graphql").DocumentNode;