@ludo.ninja/api 2.8.90 → 2.8.92

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