@ludo.ninja/api 2.8.95 → 2.8.97

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/build/config/index.js +3 -2
  2. package/build/cookies/index.d.ts +1 -1
  3. package/build/graphql_tools/__generated__/adminHost/schema.d.ts +34 -34
  4. package/build/graphql_tools/__generated__/adminHost/schema.js +68 -66
  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 +141 -63
  19. package/build/graphql_tools/__generated__/identityHost/schema.js +121 -31
  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 +7 -36
  25. package/build/graphql_tools/__generated__/opportunitiesHost/schema.js +11 -37
  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 +52 -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 +1238 -581
  33. package/package.json +1 -1
  34. package/src/graphql_tools/__generated__/identityHost/schema.ts +145 -11
  35. package/src/graphql_tools/__generated__/opportunitiesHost/schema.ts +0 -37
  36. package/src/graphql_tools/__generated__/searchHost/schema.ts +4 -0
  37. package/tsconfig.tsbuildinfo +1 -1
package/build/index.d.ts CHANGED
@@ -17,60 +17,87 @@ 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.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>): {
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
+ }>>): {
24
29
  restart(): void;
25
30
  loading: boolean;
26
31
  data?: notificationsSchema.IOnNotificationSubscription | undefined;
27
- error?: import("@apollo/client").ApolloError;
32
+ error?: import("@apollo/client").ApolloError | undefined;
28
33
  variables?: notificationsSchema.Exact<{
29
- authToken: notificationsSchema.Scalars["String"];
30
- notificationTypes: Array<notificationsSchema.INotificationType>;
34
+ authToken: string;
35
+ notificationTypes: notificationsSchema.INotificationType[];
31
36
  }> | undefined;
32
37
  };
33
38
  IEventType: typeof notificationsSchema.IEventType;
34
39
  INotificationType: typeof notificationsSchema.INotificationType;
35
40
  ReadNotificationDocument: import("graphql").DocumentNode;
36
41
  OnNotificationDocument: import("graphql").DocumentNode;
37
- useClaimFarmingRewardMutation(baseOptions?: import("@apollo/client").MutationHookOptions<tapsSchema.IClaimFarmingRewardMutation, tapsSchema.IClaimFarmingRewardMutationVariables>): import("@apollo/client").MutationTuple<tapsSchema.IClaimFarmingRewardMutation, tapsSchema.Exact<{
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<{
38
45
  [key: string]: never;
39
46
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
40
- useConfirmStreakNotificationHasBeenReadMutation(baseOptions?: import("@apollo/client").MutationHookOptions<tapsSchema.IConfirmStreakNotificationHasBeenReadMutation, tapsSchema.IConfirmStreakNotificationHasBeenReadMutationVariables>): import("@apollo/client").MutationTuple<tapsSchema.IConfirmStreakNotificationHasBeenReadMutation, tapsSchema.Exact<{
41
- streakId: tapsSchema.Scalars["ID"];
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;
42
51
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
43
- useMarkNotificationAsNewMutation(baseOptions?: import("@apollo/client").MutationHookOptions<tapsSchema.IMarkNotificationAsNewMutation, tapsSchema.IMarkNotificationAsNewMutationVariables>): import("@apollo/client").MutationTuple<tapsSchema.IMarkNotificationAsNewMutation, tapsSchema.Exact<{
44
- notificationId: tapsSchema.Scalars["ID"];
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;
45
56
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
46
- useMarkNotificationAsReadMutation(baseOptions?: import("@apollo/client").MutationHookOptions<tapsSchema.IMarkNotificationAsReadMutation, tapsSchema.IMarkNotificationAsReadMutationVariables>): import("@apollo/client").MutationTuple<tapsSchema.IMarkNotificationAsReadMutation, tapsSchema.Exact<{
47
- notificationId: tapsSchema.Scalars["ID"];
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;
48
61
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
49
- useMarkNotificationAsShownMutation(baseOptions?: import("@apollo/client").MutationHookOptions<tapsSchema.IMarkNotificationAsShownMutation, tapsSchema.IMarkNotificationAsShownMutationVariables>): import("@apollo/client").MutationTuple<tapsSchema.IMarkNotificationAsShownMutation, tapsSchema.Exact<{
50
- notificationId: tapsSchema.Scalars["ID"];
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;
51
66
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
52
- useStartFarmingMutation(baseOptions?: import("@apollo/client").MutationHookOptions<tapsSchema.IStartFarmingMutation, tapsSchema.IStartFarmingMutationVariables>): import("@apollo/client").MutationTuple<tapsSchema.IStartFarmingMutation, tapsSchema.Exact<{
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<{
53
70
  [key: string]: never;
54
71
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
55
- useFetchFrensDataQuery(baseOptions?: import("@apollo/client").QueryHookOptions<tapsSchema.IFetchFrensDataQuery, tapsSchema.IFetchFrensDataQueryVariables>): import("@apollo/client").QueryResult<tapsSchema.IFetchFrensDataQuery, tapsSchema.Exact<{
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<{
56
75
  [key: string]: never;
57
76
  }>>;
58
- useFetchFrensDataLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<tapsSchema.IFetchFrensDataQuery, tapsSchema.IFetchFrensDataQueryVariables>): import("@apollo/client").LazyQueryResultTuple<tapsSchema.IFetchFrensDataQuery, tapsSchema.Exact<{
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<{
59
80
  [key: string]: never;
60
81
  }>>;
61
- useFetchPlayerStateQuery(baseOptions?: import("@apollo/client").QueryHookOptions<tapsSchema.IFetchPlayerStateQuery, tapsSchema.IFetchPlayerStateQueryVariables>): import("@apollo/client").QueryResult<tapsSchema.IFetchPlayerStateQuery, tapsSchema.Exact<{
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<{
62
85
  [key: string]: never;
63
86
  }>>;
64
- useFetchPlayerStateLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<tapsSchema.IFetchPlayerStateQuery, tapsSchema.IFetchPlayerStateQueryVariables>): import("@apollo/client").LazyQueryResultTuple<tapsSchema.IFetchPlayerStateQuery, tapsSchema.Exact<{
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<{
65
90
  [key: string]: never;
66
91
  }>>;
67
- useOnPlayerStateUpdatedSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<tapsSchema.IOnPlayerStateUpdatedSubscription, tapsSchema.IOnPlayerStateUpdatedSubscriptionVariables>): {
92
+ useOnPlayerStateUpdatedSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<tapsSchema.IOnPlayerStateUpdatedSubscription, tapsSchema.Exact<{
93
+ authToken: string;
94
+ }>>): {
68
95
  restart(): void;
69
96
  loading: boolean;
70
97
  data?: tapsSchema.IOnPlayerStateUpdatedSubscription | undefined;
71
- error?: import("@apollo/client").ApolloError;
98
+ error?: import("@apollo/client").ApolloError | undefined;
72
99
  variables?: tapsSchema.Exact<{
73
- authToken: tapsSchema.Scalars["String"];
100
+ authToken: string;
74
101
  }> | undefined;
75
102
  };
76
103
  IFarmingStatus: typeof tapsSchema.IFarmingStatus;
@@ -86,25 +113,39 @@ declare const schema: {
86
113
  FetchFrensDataDocument: import("graphql").DocumentNode;
87
114
  FetchPlayerStateDocument: import("graphql").DocumentNode;
88
115
  OnPlayerStateUpdatedDocument: import("graphql").DocumentNode;
89
- useSubmitContactSupportMutation(baseOptions?: import("@apollo/client").MutationHookOptions<formsSchema.ISubmitContactSupportMutation, formsSchema.ISubmitContactSupportMutationVariables>): import("@apollo/client").MutationTuple<formsSchema.ISubmitContactSupportMutation, formsSchema.Exact<{
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<{
90
119
  input: formsSchema.IContactSupportInput;
91
120
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
92
- useSubmitContentReportMutation(baseOptions?: import("@apollo/client").MutationHookOptions<formsSchema.ISubmitContentReportMutation, formsSchema.ISubmitContentReportMutationVariables>): import("@apollo/client").MutationTuple<formsSchema.ISubmitContentReportMutation, formsSchema.Exact<{
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<{
93
124
  input: formsSchema.IContentReportInput;
94
125
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
95
- useSubmitInvestorInquiryMutation(baseOptions?: import("@apollo/client").MutationHookOptions<formsSchema.ISubmitInvestorInquiryMutation, formsSchema.ISubmitInvestorInquiryMutationVariables>): import("@apollo/client").MutationTuple<formsSchema.ISubmitInvestorInquiryMutation, formsSchema.Exact<{
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<{
96
129
  input: formsSchema.IInvestorInquiryInput;
97
130
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
98
- useSubmitOpportunityMutation(baseOptions?: import("@apollo/client").MutationHookOptions<formsSchema.ISubmitOpportunityMutation, formsSchema.ISubmitOpportunityMutationVariables>): import("@apollo/client").MutationTuple<formsSchema.ISubmitOpportunityMutation, formsSchema.Exact<{
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<{
99
134
  input: formsSchema.IOpportunityInput;
100
135
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
101
- useSubmitPartnershipInquiryMutation(baseOptions?: import("@apollo/client").MutationHookOptions<formsSchema.ISubmitPartnershipInquiryMutation, formsSchema.ISubmitPartnershipInquiryMutationVariables>): import("@apollo/client").MutationTuple<formsSchema.ISubmitPartnershipInquiryMutation, formsSchema.Exact<{
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<{
102
139
  input: formsSchema.IPartnershipInquiryInput;
103
140
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
104
- useSubmitRegistrationInviteMutation(baseOptions?: import("@apollo/client").MutationHookOptions<formsSchema.ISubmitRegistrationInviteMutation, formsSchema.ISubmitRegistrationInviteMutationVariables>): import("@apollo/client").MutationTuple<formsSchema.ISubmitRegistrationInviteMutation, formsSchema.Exact<{
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<{
105
144
  input: formsSchema.IRegistrationInviteInput;
106
145
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
107
- useSubmitUserFeedbackMutation(baseOptions?: import("@apollo/client").MutationHookOptions<formsSchema.ISubmitUserFeedbackMutation, formsSchema.ISubmitUserFeedbackMutationVariables>): import("@apollo/client").MutationTuple<formsSchema.ISubmitUserFeedbackMutation, formsSchema.Exact<{
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<{
108
149
  input: formsSchema.IUserFeedbackInput;
109
150
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
110
151
  SubmitContactSupportDocument: import("graphql").DocumentNode;
@@ -114,125 +155,213 @@ declare const schema: {
114
155
  SubmitPartnershipInquiryDocument: import("graphql").DocumentNode;
115
156
  SubmitRegistrationInviteDocument: import("graphql").DocumentNode;
116
157
  SubmitUserFeedbackDocument: import("graphql").DocumentNode;
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>;
119
- }>>;
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"];
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;
149
212
  input: searchSchema.ICollectionFilterInput;
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"];
213
+ page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
214
+ }>>): import("@apollo/client").QueryResult<searchSchema.IFindCollectionsQuery, searchSchema.Exact<{
215
+ term: string;
154
216
  input: searchSchema.ICollectionFilterInput;
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"]>;
217
+ page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
159
218
  }>>;
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"];
176
- }>>;
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<{
219
+ useFindCollectionsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFindCollectionsQuery, searchSchema.Exact<{
220
+ term: string;
221
+ input: searchSchema.ICollectionFilterInput;
222
+ page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
223
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFindCollectionsQuery, searchSchema.Exact<{
224
+ term: string;
225
+ 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<{
184
273
  input: searchSchema.IDynamicCollectionDataInput;
185
- }>>;
186
- useFetchDynamicCollectionDataLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFetchDynamicCollectionDataQuery, searchSchema.IFetchDynamicCollectionDataQueryVariables>): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFetchDynamicCollectionDataQuery, searchSchema.Exact<{
274
+ }>>): import("@apollo/client").QueryResult<searchSchema.IFetchDynamicCollectionDataQuery, searchSchema.Exact<{
187
275
  input: searchSchema.IDynamicCollectionDataInput;
188
276
  }>>;
189
- useFetchDynamicCollectionsDataQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFetchDynamicCollectionsDataQuery, searchSchema.IFetchDynamicCollectionsDataQueryVariables>): import("@apollo/client").QueryResult<searchSchema.IFetchDynamicCollectionsDataQuery, searchSchema.Exact<{
190
- input: Array<searchSchema.IDynamicCollectionDataInput>;
191
- }>>;
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"];
277
+ useFetchDynamicCollectionDataLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFetchDynamicCollectionDataQuery, searchSchema.Exact<{
278
+ input: searchSchema.IDynamicCollectionDataInput;
279
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFetchDynamicCollectionDataQuery, searchSchema.Exact<{
280
+ input: searchSchema.IDynamicCollectionDataInput;
208
281
  }>>;
209
- useFindCreationsQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFindCreationsQuery, searchSchema.IFindCreationsQueryVariables>): import("@apollo/client").QueryResult<searchSchema.IFindCreationsQuery, searchSchema.Exact<{
210
- term: searchSchema.Scalars["String"];
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;
211
318
  input: searchSchema.ICreationFilterInput;
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"];
319
+ page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
320
+ }>>): import("@apollo/client").QueryResult<searchSchema.IFindCreationsQuery, searchSchema.Exact<{
321
+ term: string;
216
322
  input: searchSchema.ICreationFilterInput;
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>;
222
- }>>;
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>;
323
+ page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
226
324
  }>>;
227
- useFindUserCreationsQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFindUserCreationsQuery, searchSchema.IFindUserCreationsQueryVariables>): import("@apollo/client").QueryResult<searchSchema.IFindUserCreationsQuery, searchSchema.Exact<{
228
- ownerId: searchSchema.Scalars["String"];
325
+ useFindCreationsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFindCreationsQuery, searchSchema.Exact<{
326
+ term: string;
229
327
  input: searchSchema.ICreationFilterInput;
230
- page?: searchSchema.Maybe<searchSchema.IPageInput>;
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;
350
+ input: searchSchema.ICreationFilterInput;
351
+ page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
352
+ }>>): import("@apollo/client").QueryResult<searchSchema.IFindUserCreationsQuery, searchSchema.Exact<{
353
+ ownerId: string;
354
+ input: searchSchema.ICreationFilterInput;
355
+ page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
231
356
  }>>;
232
- useFindUserCreationsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFindUserCreationsQuery, searchSchema.IFindUserCreationsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFindUserCreationsQuery, searchSchema.Exact<{
233
- ownerId: searchSchema.Scalars["String"];
357
+ useFindUserCreationsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFindUserCreationsQuery, searchSchema.Exact<{
358
+ ownerId: string;
359
+ input: searchSchema.ICreationFilterInput;
360
+ page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
361
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFindUserCreationsQuery, searchSchema.Exact<{
362
+ ownerId: string;
234
363
  input: searchSchema.ICreationFilterInput;
235
- page?: searchSchema.Maybe<searchSchema.IPageInput>;
364
+ page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
236
365
  }>>;
237
366
  FetchAllCreationsDocument: import("graphql").DocumentNode;
238
367
  FetchAssetByBlockchainDocument: import("graphql").DocumentNode;
@@ -250,70 +379,114 @@ declare const schema: {
250
379
  FindCreationsDocument: import("graphql").DocumentNode;
251
380
  FindProfilesByNameDocument: import("graphql").DocumentNode;
252
381
  FindUserCreationsDocument: import("graphql").DocumentNode;
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"]>>;
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>[];
255
386
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
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"]>>;
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>[];
258
391
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
259
- useFetchExpectationsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<preferencesSchema.IFetchExpectationsQuery, preferencesSchema.IFetchExpectationsQueryVariables>): import("@apollo/client").QueryResult<preferencesSchema.IFetchExpectationsQuery, preferencesSchema.Exact<{
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<{
260
395
  [key: string]: never;
261
396
  }>>;
262
- useFetchExpectationsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<preferencesSchema.IFetchExpectationsQuery, preferencesSchema.IFetchExpectationsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<preferencesSchema.IFetchExpectationsQuery, preferencesSchema.Exact<{
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<{
263
400
  [key: string]: never;
264
401
  }>>;
265
- useFetchInterestsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<preferencesSchema.IFetchInterestsQuery, preferencesSchema.IFetchInterestsQueryVariables>): import("@apollo/client").QueryResult<preferencesSchema.IFetchInterestsQuery, preferencesSchema.Exact<{
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<{
266
405
  [key: string]: never;
267
406
  }>>;
268
- useFetchInterestsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<preferencesSchema.IFetchInterestsQuery, preferencesSchema.IFetchInterestsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<preferencesSchema.IFetchInterestsQuery, preferencesSchema.Exact<{
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<{
269
410
  [key: string]: never;
270
411
  }>>;
271
- useFetchSearchResultSelectionsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<preferencesSchema.IFetchSearchResultSelectionsQuery, preferencesSchema.IFetchSearchResultSelectionsQueryVariables>): import("@apollo/client").QueryResult<preferencesSchema.IFetchSearchResultSelectionsQuery, preferencesSchema.Exact<{
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<{
272
415
  [key: string]: never;
273
416
  }>>;
274
- useFetchSearchResultSelectionsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<preferencesSchema.IFetchSearchResultSelectionsQuery, preferencesSchema.IFetchSearchResultSelectionsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<preferencesSchema.IFetchSearchResultSelectionsQuery, preferencesSchema.Exact<{
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<{
275
420
  [key: string]: never;
276
421
  }>>;
277
- useFetchSearchResultTimeSelectionsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<preferencesSchema.IFetchSearchResultTimeSelectionsQuery, preferencesSchema.IFetchSearchResultTimeSelectionsQueryVariables>): import("@apollo/client").QueryResult<preferencesSchema.IFetchSearchResultTimeSelectionsQuery, preferencesSchema.Exact<{
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<{
278
425
  [key: string]: never;
279
426
  }>>;
280
- useFetchSearchResultTimeSelectionsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<preferencesSchema.IFetchSearchResultTimeSelectionsQuery, preferencesSchema.IFetchSearchResultTimeSelectionsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<preferencesSchema.IFetchSearchResultTimeSelectionsQuery, preferencesSchema.Exact<{
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<{
281
430
  [key: string]: never;
282
431
  }>>;
283
- useFetchUserExpectationsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<preferencesSchema.IFetchUserExpectationsQuery, preferencesSchema.IFetchUserExpectationsQueryVariables>): import("@apollo/client").QueryResult<preferencesSchema.IFetchUserExpectationsQuery, preferencesSchema.Exact<{
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<{
284
435
  [key: string]: never;
285
436
  }>>;
286
- useFetchUserExpectationsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<preferencesSchema.IFetchUserExpectationsQuery, preferencesSchema.IFetchUserExpectationsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<preferencesSchema.IFetchUserExpectationsQuery, preferencesSchema.Exact<{
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<{
287
440
  [key: string]: never;
288
441
  }>>;
289
- useFetchUserInterestsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<preferencesSchema.IFetchUserInterestsQuery, preferencesSchema.IFetchUserInterestsQueryVariables>): import("@apollo/client").QueryResult<preferencesSchema.IFetchUserInterestsQuery, preferencesSchema.Exact<{
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<{
290
445
  [key: string]: never;
291
446
  }>>;
292
- useFetchUserInterestsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<preferencesSchema.IFetchUserInterestsQuery, preferencesSchema.IFetchUserInterestsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<preferencesSchema.IFetchUserInterestsQuery, preferencesSchema.Exact<{
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<{
293
450
  [key: string]: never;
294
451
  }>>;
295
- useFetchSearchResultBlockchainSelectionsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<preferencesSchema.IFetchSearchResultBlockchainSelectionsQuery, preferencesSchema.IFetchSearchResultBlockchainSelectionsQueryVariables>): import("@apollo/client").QueryResult<preferencesSchema.IFetchSearchResultBlockchainSelectionsQuery, preferencesSchema.Exact<{
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<{
296
455
  [key: string]: never;
297
456
  }>>;
298
- useFetchSearchResultBlockchainSelectionsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<preferencesSchema.IFetchSearchResultBlockchainSelectionsQuery, preferencesSchema.IFetchSearchResultBlockchainSelectionsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<preferencesSchema.IFetchSearchResultBlockchainSelectionsQuery, preferencesSchema.Exact<{
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<{
299
460
  [key: string]: never;
300
461
  }>>;
301
- useFetchSearchResultCategorySelectionsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<preferencesSchema.IFetchSearchResultCategorySelectionsQuery, preferencesSchema.IFetchSearchResultCategorySelectionsQueryVariables>): import("@apollo/client").QueryResult<preferencesSchema.IFetchSearchResultCategorySelectionsQuery, preferencesSchema.Exact<{
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<{
302
465
  [key: string]: never;
303
466
  }>>;
304
- useFetchSearchResultCategorySelectionsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<preferencesSchema.IFetchSearchResultCategorySelectionsQuery, preferencesSchema.IFetchSearchResultCategorySelectionsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<preferencesSchema.IFetchSearchResultCategorySelectionsQuery, preferencesSchema.Exact<{
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<{
305
470
  [key: string]: never;
306
471
  }>>;
307
- useFetchSearchResultStatusSelectionsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<preferencesSchema.IFetchSearchResultStatusSelectionsQuery, preferencesSchema.IFetchSearchResultStatusSelectionsQueryVariables>): import("@apollo/client").QueryResult<preferencesSchema.IFetchSearchResultStatusSelectionsQuery, preferencesSchema.Exact<{
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<{
308
475
  [key: string]: never;
309
476
  }>>;
310
- useFetchSearchResultStatusSelectionsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<preferencesSchema.IFetchSearchResultStatusSelectionsQuery, preferencesSchema.IFetchSearchResultStatusSelectionsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<preferencesSchema.IFetchSearchResultStatusSelectionsQuery, preferencesSchema.Exact<{
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<{
311
480
  [key: string]: never;
312
481
  }>>;
313
- useFetchSetsSearchResultTypeSelectionsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<preferencesSchema.IFetchSetsSearchResultTypeSelectionsQuery, preferencesSchema.IFetchSetsSearchResultTypeSelectionsQueryVariables>): import("@apollo/client").QueryResult<preferencesSchema.IFetchSetsSearchResultTypeSelectionsQuery, preferencesSchema.Exact<{
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<{
314
485
  [key: string]: never;
315
486
  }>>;
316
- useFetchSetsSearchResultTypeSelectionsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<preferencesSchema.IFetchSetsSearchResultTypeSelectionsQuery, preferencesSchema.IFetchSetsSearchResultTypeSelectionsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<preferencesSchema.IFetchSetsSearchResultTypeSelectionsQuery, preferencesSchema.Exact<{
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<{
317
490
  [key: string]: never;
318
491
  }>>;
319
492
  SaveUserExpectationsDocument: import("graphql").DocumentNode;
@@ -328,181 +501,305 @@ declare const schema: {
328
501
  FetchSearchResultCategorySelectionsDocument: import("graphql").DocumentNode;
329
502
  FetchSearchResultStatusSelectionsDocument: import("graphql").DocumentNode;
330
503
  FetchSetsSearchResultTypeSelectionsDocument: import("graphql").DocumentNode;
331
- useDislikeOpportunityMutation(baseOptions?: import("@apollo/client").MutationHookOptions<opportunitiesSchema.IDislikeOpportunityMutation, opportunitiesSchema.IDislikeOpportunityMutationVariables>): import("@apollo/client").MutationTuple<opportunitiesSchema.IDislikeOpportunityMutation, opportunitiesSchema.Exact<{
332
- opportunityId: opportunitiesSchema.Scalars["String"];
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;
333
508
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
334
- useLikeOpportunityMutation(baseOptions?: import("@apollo/client").MutationHookOptions<opportunitiesSchema.ILikeOpportunityMutation, opportunitiesSchema.ILikeOpportunityMutationVariables>): import("@apollo/client").MutationTuple<opportunitiesSchema.ILikeOpportunityMutation, opportunitiesSchema.Exact<{
335
- opportunityId: opportunitiesSchema.Scalars["String"];
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;
336
513
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
337
- useCreateOpportunityMutation(baseOptions?: import("@apollo/client").MutationHookOptions<opportunitiesSchema.ICreateOpportunityMutation, opportunitiesSchema.ICreateOpportunityMutationVariables>): import("@apollo/client").MutationTuple<opportunitiesSchema.ICreateOpportunityMutation, opportunitiesSchema.Exact<{
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<{
338
517
  input: opportunitiesSchema.IOpportunityInput;
339
518
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
340
- useHideOpportunityMutation(baseOptions?: import("@apollo/client").MutationHookOptions<opportunitiesSchema.IHideOpportunityMutation, opportunitiesSchema.IHideOpportunityMutationVariables>): import("@apollo/client").MutationTuple<opportunitiesSchema.IHideOpportunityMutation, opportunitiesSchema.Exact<{
341
- opportunityId: opportunitiesSchema.Scalars["ID"];
342
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
343
- useOpenOpportunityMutation(baseOptions?: import("@apollo/client").MutationHookOptions<opportunitiesSchema.IOpenOpportunityMutation, opportunitiesSchema.IOpenOpportunityMutationVariables>): import("@apollo/client").MutationTuple<opportunitiesSchema.IOpenOpportunityMutation, opportunitiesSchema.Exact<{
344
- opportunityId: opportunitiesSchema.Scalars["ID"];
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;
345
523
  }>, 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"]>;
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[];
348
528
  }>>;
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"]>;
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[];
351
533
  }>>;
352
- useFetchOpportunitiesForProfileQuery(baseOptions?: import("@apollo/client").QueryHookOptions<opportunitiesSchema.IFetchOpportunitiesForProfileQuery, opportunitiesSchema.IFetchOpportunitiesForProfileQueryVariables>): import("@apollo/client").QueryResult<opportunitiesSchema.IFetchOpportunitiesForProfileQuery, opportunitiesSchema.Exact<{
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<{
353
537
  [key: string]: never;
354
538
  }>>;
355
- useFetchOpportunitiesForProfileLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<opportunitiesSchema.IFetchOpportunitiesForProfileQuery, opportunitiesSchema.IFetchOpportunitiesForProfileQueryVariables>): import("@apollo/client").LazyQueryResultTuple<opportunitiesSchema.IFetchOpportunitiesForProfileQuery, opportunitiesSchema.Exact<{
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<{
356
542
  [key: string]: never;
357
543
  }>>;
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"]>;
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;
360
548
  }>>;
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"]>;
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;
363
553
  }>>;
364
554
  DislikeOpportunityDocument: import("graphql").DocumentNode;
365
555
  LikeOpportunityDocument: import("graphql").DocumentNode;
366
556
  CreateOpportunityDocument: import("graphql").DocumentNode;
367
- HideOpportunityDocument: import("graphql").DocumentNode;
368
557
  OpenOpportunityDocument: import("graphql").DocumentNode;
369
558
  FetchOpportunitiesByIdsDocument: import("graphql").DocumentNode;
370
559
  FetchOpportunitiesForProfileDocument: import("graphql").DocumentNode;
371
560
  FetchOpportunitiesDocument: import("graphql").DocumentNode;
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"];
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;
384
582
  }>>;
385
583
  DeleteGalleryBannerDocument: import("graphql").DocumentNode;
386
584
  UploadGalleryBannerDocument: import("graphql").DocumentNode;
387
585
  FetchUserpicDocument: import("graphql").DocumentNode;
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<{
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<{
410
626
  request: identitySchema.ICheckTonProofRequest;
411
627
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
412
- useCreateEvmNonceMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.ICreateEvmNonceMutation, identitySchema.ICreateEvmNonceMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.ICreateEvmNonceMutation, identitySchema.Exact<{
628
+ useCreateEvmNonceMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.ICreateEvmNonceMutation, identitySchema.Exact<{
413
629
  [key: string]: never;
414
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
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"]>;
419
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
420
- useCreateTonNonceMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.ICreateTonNonceMutation, identitySchema.ICreateTonNonceMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.ICreateTonNonceMutation, identitySchema.Exact<{
630
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<identitySchema.ICreateEvmNonceMutation, identitySchema.Exact<{
421
631
  [key: string]: never;
422
632
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
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"]>;
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;
442
641
  }>, 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"];
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<{
645
+ [key: string]: never;
468
646
  }>, 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<{
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<{
470
729
  request: identitySchema.ICheckTonProofRequest;
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"];
487
- }>>;
488
- useFetchMyProfileV2Query(baseOptions?: import("@apollo/client").QueryHookOptions<identitySchema.IFetchMyProfileV2Query, identitySchema.IFetchMyProfileV2QueryVariables>): import("@apollo/client").QueryResult<identitySchema.IFetchMyProfileV2Query, identitySchema.Exact<{
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<{
732
+ 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
+ useFetchAggregatedMultiversxAuditQuery(baseOptions: import("@apollo/client").QueryHookOptions<identitySchema.IFetchAggregatedMultiversxAuditQuery, identitySchema.Exact<{
753
+ userId: string;
754
+ }>>): import("@apollo/client").QueryResult<identitySchema.IFetchAggregatedMultiversxAuditQuery, identitySchema.Exact<{
755
+ userId: string;
756
+ }>>;
757
+ useFetchAggregatedMultiversxAuditLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<identitySchema.IFetchAggregatedMultiversxAuditQuery, identitySchema.Exact<{
758
+ userId: string;
759
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<identitySchema.IFetchAggregatedMultiversxAuditQuery, identitySchema.Exact<{
760
+ userId: string;
761
+ }>>;
762
+ useFetchMultiversXAuditQuery(baseOptions: import("@apollo/client").QueryHookOptions<identitySchema.IFetchMultiversXAuditQuery, identitySchema.Exact<{
763
+ wallet: string;
764
+ }>>): import("@apollo/client").QueryResult<identitySchema.IFetchMultiversXAuditQuery, identitySchema.Exact<{
765
+ wallet: string;
766
+ }>>;
767
+ useFetchMultiversXAuditLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<identitySchema.IFetchMultiversXAuditQuery, identitySchema.Exact<{
768
+ wallet: string;
769
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<identitySchema.IFetchMultiversXAuditQuery, identitySchema.Exact<{
770
+ wallet: string;
771
+ }>>;
772
+ useFetchMyProfileV2Query(baseOptions?: import("@apollo/client").QueryHookOptions<identitySchema.IFetchMyProfileV2Query, identitySchema.Exact<{
773
+ [key: string]: never;
774
+ }>> | undefined): import("@apollo/client").QueryResult<identitySchema.IFetchMyProfileV2Query, identitySchema.Exact<{
489
775
  [key: string]: never;
490
776
  }>>;
491
- useFetchMyProfileV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<identitySchema.IFetchMyProfileV2Query, identitySchema.IFetchMyProfileV2QueryVariables>): import("@apollo/client").LazyQueryResultTuple<identitySchema.IFetchMyProfileV2Query, identitySchema.Exact<{
777
+ useFetchMyProfileV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<identitySchema.IFetchMyProfileV2Query, identitySchema.Exact<{
778
+ [key: string]: never;
779
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<identitySchema.IFetchMyProfileV2Query, identitySchema.Exact<{
492
780
  [key: string]: never;
493
781
  }>>;
494
- useFetchProfileQuery(baseOptions: import("@apollo/client").QueryHookOptions<identitySchema.IFetchProfileQuery, identitySchema.IFetchProfileQueryVariables>): import("@apollo/client").QueryResult<identitySchema.IFetchProfileQuery, identitySchema.Exact<{
495
- userId: identitySchema.Scalars["ID"];
782
+ useFetchProfileQuery(baseOptions: import("@apollo/client").QueryHookOptions<identitySchema.IFetchProfileQuery, identitySchema.Exact<{
783
+ userId: string;
784
+ }>>): import("@apollo/client").QueryResult<identitySchema.IFetchProfileQuery, identitySchema.Exact<{
785
+ userId: string;
496
786
  }>>;
497
- useFetchProfileLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<identitySchema.IFetchProfileQuery, identitySchema.IFetchProfileQueryVariables>): import("@apollo/client").LazyQueryResultTuple<identitySchema.IFetchProfileQuery, identitySchema.Exact<{
498
- userId: identitySchema.Scalars["ID"];
787
+ useFetchProfileLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<identitySchema.IFetchProfileQuery, identitySchema.Exact<{
788
+ userId: string;
789
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<identitySchema.IFetchProfileQuery, identitySchema.Exact<{
790
+ userId: string;
499
791
  }>>;
500
- useFetchUserWalletsQuery(baseOptions: import("@apollo/client").QueryHookOptions<identitySchema.IFetchUserWalletsQuery, identitySchema.IFetchUserWalletsQueryVariables>): import("@apollo/client").QueryResult<identitySchema.IFetchUserWalletsQuery, identitySchema.Exact<{
501
- userId: identitySchema.Scalars["ID"];
792
+ useFetchUserWalletsQuery(baseOptions: import("@apollo/client").QueryHookOptions<identitySchema.IFetchUserWalletsQuery, identitySchema.Exact<{
793
+ userId: string;
794
+ }>>): import("@apollo/client").QueryResult<identitySchema.IFetchUserWalletsQuery, identitySchema.Exact<{
795
+ userId: string;
502
796
  }>>;
503
- useFetchUserWalletsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<identitySchema.IFetchUserWalletsQuery, identitySchema.IFetchUserWalletsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<identitySchema.IFetchUserWalletsQuery, identitySchema.Exact<{
504
- userId: identitySchema.Scalars["ID"];
797
+ useFetchUserWalletsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<identitySchema.IFetchUserWalletsQuery, identitySchema.Exact<{
798
+ userId: string;
799
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<identitySchema.IFetchUserWalletsQuery, identitySchema.Exact<{
800
+ userId: string;
505
801
  }>>;
802
+ IReftypeColor: typeof identitySchema.IReftypeColor;
506
803
  IRole: typeof identitySchema.IRole;
507
804
  AddWalletElrondDocument: import("graphql").DocumentNode;
508
805
  AddWalletFlowDocument: import("graphql").DocumentNode;
@@ -526,95 +823,162 @@ declare const schema: {
526
823
  SignInTezosDocument: import("graphql").DocumentNode;
527
824
  SignInTonDocument: import("graphql").DocumentNode;
528
825
  UpdateProfileDocument: import("graphql").DocumentNode;
826
+ FetchAggregatedMultiversxAuditDocument: import("graphql").DocumentNode;
529
827
  FetchMultiversXAuditDocument: import("graphql").DocumentNode;
530
828
  FetchMyProfileV2Document: import("graphql").DocumentNode;
531
829
  FetchProfileDocument: import("graphql").DocumentNode;
532
830
  FetchUserWalletsDocument: import("graphql").DocumentNode;
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"]>;
831
+ useAddAssetsToGalleryV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IAddAssetsToGalleryV2Mutation, galleriesSchema.Exact<{
832
+ galleryId: string;
833
+ assetIds: string[];
834
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<galleriesSchema.IAddAssetsToGalleryV2Mutation, galleriesSchema.Exact<{
835
+ galleryId: string;
836
+ assetIds: string[];
837
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
838
+ useAddCollectionsToGalleryV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IAddCollectionsToGalleryV2Mutation, galleriesSchema.Exact<{
839
+ galleryId: string;
840
+ collectionIds: string[];
841
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<galleriesSchema.IAddCollectionsToGalleryV2Mutation, galleriesSchema.Exact<{
842
+ galleryId: string;
843
+ collectionIds: string[];
844
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
845
+ useAddCreationsToGalleryV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IAddCreationsToGalleryV2Mutation, galleriesSchema.Exact<{
846
+ galleryId: string;
847
+ creationIds: string[];
848
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<galleriesSchema.IAddCreationsToGalleryV2Mutation, galleriesSchema.Exact<{
849
+ galleryId: string;
850
+ creationIds: string[];
851
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
852
+ useCreateFavoriteListV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.ICreateFavoriteListV2Mutation, galleriesSchema.Exact<{
853
+ name: string;
854
+ description?: galleriesSchema.Maybe<string> | undefined;
855
+ publicAccessible?: galleriesSchema.Maybe<boolean> | undefined;
856
+ creationIds?: galleriesSchema.Maybe<galleriesSchema.Maybe<string>[]> | undefined;
857
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<galleriesSchema.ICreateFavoriteListV2Mutation, galleriesSchema.Exact<{
858
+ name: string;
859
+ description?: galleriesSchema.Maybe<string> | undefined;
860
+ publicAccessible?: galleriesSchema.Maybe<boolean> | undefined;
861
+ creationIds?: galleriesSchema.Maybe<galleriesSchema.Maybe<string>[]> | undefined;
862
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
863
+ useCreateGalleryV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.ICreateGalleryV2Mutation, galleriesSchema.Exact<{
864
+ name: string;
865
+ description?: galleriesSchema.Maybe<string> | undefined;
866
+ publicAccessible?: galleriesSchema.Maybe<boolean> | undefined;
867
+ creationIds?: galleriesSchema.Maybe<galleriesSchema.Maybe<string>[]> | undefined;
868
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<galleriesSchema.ICreateGalleryV2Mutation, galleriesSchema.Exact<{
869
+ name: string;
870
+ description?: galleriesSchema.Maybe<string> | undefined;
871
+ publicAccessible?: galleriesSchema.Maybe<boolean> | undefined;
872
+ creationIds?: galleriesSchema.Maybe<galleriesSchema.Maybe<string>[]> | undefined;
873
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
874
+ useDeleteGalleryMutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IDeleteGalleryMutation, galleriesSchema.Exact<{
875
+ galleryId: string;
876
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<galleriesSchema.IDeleteGalleryMutation, galleriesSchema.Exact<{
877
+ galleryId: string;
878
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
879
+ useEditGalleryMutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IEditGalleryMutation, galleriesSchema.Exact<{
880
+ galleryId: string;
881
+ name?: galleriesSchema.Maybe<string> | undefined;
882
+ description?: galleriesSchema.Maybe<string> | undefined;
883
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<galleriesSchema.IEditGalleryMutation, galleriesSchema.Exact<{
884
+ galleryId: string;
885
+ name?: galleriesSchema.Maybe<string> | undefined;
886
+ description?: galleriesSchema.Maybe<string> | undefined;
887
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
888
+ useRemoveAssetFromGalleryV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IRemoveAssetFromGalleryV2Mutation, galleriesSchema.Exact<{
889
+ galleryId: string;
890
+ assetId: string;
891
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<galleriesSchema.IRemoveAssetFromGalleryV2Mutation, galleriesSchema.Exact<{
892
+ galleryId: string;
893
+ assetId: string;
894
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
895
+ useRemoveCollectionFromGalleryV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IRemoveCollectionFromGalleryV2Mutation, galleriesSchema.Exact<{
896
+ galleryId: string;
897
+ collectionId: string;
898
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<galleriesSchema.IRemoveCollectionFromGalleryV2Mutation, galleriesSchema.Exact<{
899
+ galleryId: string;
900
+ collectionId: string;
901
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
902
+ useRemoveCreationFromGalleryV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IRemoveCreationFromGalleryV2Mutation, galleriesSchema.Exact<{
903
+ galleryId: string;
904
+ creationId: string;
905
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<galleriesSchema.IRemoveCreationFromGalleryV2Mutation, galleriesSchema.Exact<{
906
+ galleryId: string;
907
+ creationId: string;
908
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
909
+ useFetchGalleryV2Query(baseOptions: import("@apollo/client").QueryHookOptions<galleriesSchema.IFetchGalleryV2Query, galleriesSchema.Exact<{
910
+ galleryId: string;
911
+ }>>): import("@apollo/client").QueryResult<galleriesSchema.IFetchGalleryV2Query, galleriesSchema.Exact<{
912
+ galleryId: string;
913
+ }>>;
914
+ useFetchGalleryV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<galleriesSchema.IFetchGalleryV2Query, galleriesSchema.Exact<{
915
+ galleryId: string;
916
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<galleriesSchema.IFetchGalleryV2Query, galleriesSchema.Exact<{
917
+ galleryId: string;
918
+ }>>;
919
+ useFetchMyFavoritesV2Query(baseOptions: import("@apollo/client").QueryHookOptions<galleriesSchema.IFetchMyFavoritesV2Query, galleriesSchema.Exact<{
920
+ pageSize: number;
921
+ pageToken?: galleriesSchema.Maybe<string> | undefined;
922
+ }>>): import("@apollo/client").QueryResult<galleriesSchema.IFetchMyFavoritesV2Query, galleriesSchema.Exact<{
923
+ pageSize: number;
924
+ pageToken?: galleriesSchema.Maybe<string> | undefined;
925
+ }>>;
926
+ useFetchMyFavoritesV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<galleriesSchema.IFetchMyFavoritesV2Query, galleriesSchema.Exact<{
927
+ pageSize: number;
928
+ pageToken?: galleriesSchema.Maybe<string> | undefined;
929
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<galleriesSchema.IFetchMyFavoritesV2Query, galleriesSchema.Exact<{
930
+ pageSize: number;
931
+ pageToken?: galleriesSchema.Maybe<string> | undefined;
932
+ }>>;
933
+ useFetchMyGalleriesV2Query(baseOptions: import("@apollo/client").QueryHookOptions<galleriesSchema.IFetchMyGalleriesV2Query, galleriesSchema.Exact<{
934
+ pageSize: number;
935
+ pageToken?: galleriesSchema.Maybe<string> | undefined;
936
+ }>>): import("@apollo/client").QueryResult<galleriesSchema.IFetchMyGalleriesV2Query, galleriesSchema.Exact<{
937
+ pageSize: number;
938
+ pageToken?: galleriesSchema.Maybe<string> | undefined;
939
+ }>>;
940
+ useFetchMyGalleriesV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<galleriesSchema.IFetchMyGalleriesV2Query, galleriesSchema.Exact<{
941
+ pageSize: number;
942
+ pageToken?: galleriesSchema.Maybe<string> | undefined;
943
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<galleriesSchema.IFetchMyGalleriesV2Query, galleriesSchema.Exact<{
944
+ pageSize: number;
945
+ pageToken?: galleriesSchema.Maybe<string> | undefined;
946
+ }>>;
947
+ useFetchUserFavoritesV2Query(baseOptions: import("@apollo/client").QueryHookOptions<galleriesSchema.IFetchUserFavoritesV2Query, galleriesSchema.Exact<{
948
+ userId: string;
949
+ pageSize: number;
950
+ pageToken?: galleriesSchema.Maybe<string> | undefined;
951
+ }>>): import("@apollo/client").QueryResult<galleriesSchema.IFetchUserFavoritesV2Query, galleriesSchema.Exact<{
952
+ userId: string;
953
+ pageSize: number;
954
+ pageToken?: galleriesSchema.Maybe<string> | undefined;
955
+ }>>;
956
+ useFetchUserFavoritesV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<galleriesSchema.IFetchUserFavoritesV2Query, galleriesSchema.Exact<{
957
+ userId: string;
958
+ pageSize: number;
959
+ pageToken?: galleriesSchema.Maybe<string> | undefined;
960
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<galleriesSchema.IFetchUserFavoritesV2Query, galleriesSchema.Exact<{
961
+ userId: string;
962
+ pageSize: number;
963
+ pageToken?: galleriesSchema.Maybe<string> | undefined;
964
+ }>>;
965
+ useFetchUserGalleriesV2Query(baseOptions: import("@apollo/client").QueryHookOptions<galleriesSchema.IFetchUserGalleriesV2Query, galleriesSchema.Exact<{
966
+ userId: string;
967
+ pageSize: number;
968
+ pageToken?: galleriesSchema.Maybe<string> | undefined;
969
+ }>>): import("@apollo/client").QueryResult<galleriesSchema.IFetchUserGalleriesV2Query, galleriesSchema.Exact<{
970
+ userId: string;
971
+ pageSize: number;
972
+ pageToken?: galleriesSchema.Maybe<string> | undefined;
973
+ }>>;
974
+ useFetchUserGalleriesV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<galleriesSchema.IFetchUserGalleriesV2Query, galleriesSchema.Exact<{
975
+ userId: string;
976
+ pageSize: number;
977
+ pageToken?: galleriesSchema.Maybe<string> | undefined;
978
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<galleriesSchema.IFetchUserGalleriesV2Query, galleriesSchema.Exact<{
979
+ userId: string;
980
+ pageSize: number;
981
+ pageToken?: galleriesSchema.Maybe<string> | undefined;
618
982
  }>>;
619
983
  AddAssetsToGalleryV2Document: import("graphql").DocumentNode;
620
984
  AddCollectionsToGalleryV2Document: import("graphql").DocumentNode;
@@ -631,71 +995,120 @@ declare const schema: {
631
995
  FetchMyGalleriesV2Document: import("graphql").DocumentNode;
632
996
  FetchUserFavoritesV2Document: import("graphql").DocumentNode;
633
997
  FetchUserGalleriesV2Document: import("graphql").DocumentNode;
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>;
650
- }>>;
651
- useFetchCollectionRanksLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchCollectionRanksQuery, extensionSchema.IFetchCollectionRanksQueryVariables>): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchCollectionRanksQuery, extensionSchema.Exact<{
652
- collectionKeys: Array<extensionSchema.ICollectionKey>;
653
- }>>;
654
- useFetchExtensionBrandsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<extensionSchema.IFetchExtensionBrandsQuery, extensionSchema.IFetchExtensionBrandsQueryVariables>): import("@apollo/client").QueryResult<extensionSchema.IFetchExtensionBrandsQuery, extensionSchema.Exact<{
998
+ useHideOpportunityV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<extensionSchema.IHideOpportunityV2Mutation, extensionSchema.Exact<{
999
+ opportunityId: string;
1000
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<extensionSchema.IHideOpportunityV2Mutation, extensionSchema.Exact<{
1001
+ opportunityId: string;
1002
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1003
+ useOpenOpportunityV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<extensionSchema.IOpenOpportunityV2Mutation, extensionSchema.Exact<{
1004
+ opportunityId: string;
1005
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<extensionSchema.IOpenOpportunityV2Mutation, extensionSchema.Exact<{
1006
+ opportunityId: string;
1007
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1008
+ useVisitPageV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<extensionSchema.IVisitPageV2Mutation, extensionSchema.Exact<{
1009
+ domain: string;
1010
+ title: string;
1011
+ description?: extensionSchema.Maybe<string> | undefined;
1012
+ tags?: extensionSchema.Maybe<extensionSchema.Maybe<string>[]> | undefined;
1013
+ brandId?: extensionSchema.Maybe<string> | undefined;
1014
+ categoryId?: extensionSchema.Maybe<string> | undefined;
1015
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<extensionSchema.IVisitPageV2Mutation, extensionSchema.Exact<{
1016
+ domain: string;
1017
+ title: string;
1018
+ description?: extensionSchema.Maybe<string> | undefined;
1019
+ tags?: extensionSchema.Maybe<extensionSchema.Maybe<string>[]> | undefined;
1020
+ brandId?: extensionSchema.Maybe<string> | undefined;
1021
+ categoryId?: extensionSchema.Maybe<string> | undefined;
1022
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1023
+ useFetchCollectionRanksQuery(baseOptions: import("@apollo/client").QueryHookOptions<extensionSchema.IFetchCollectionRanksQuery, extensionSchema.Exact<{
1024
+ collectionKeys: extensionSchema.ICollectionKey[];
1025
+ }>>): import("@apollo/client").QueryResult<extensionSchema.IFetchCollectionRanksQuery, extensionSchema.Exact<{
1026
+ collectionKeys: extensionSchema.ICollectionKey[];
1027
+ }>>;
1028
+ useFetchCollectionRanksLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchCollectionRanksQuery, extensionSchema.Exact<{
1029
+ collectionKeys: extensionSchema.ICollectionKey[];
1030
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchCollectionRanksQuery, extensionSchema.Exact<{
1031
+ collectionKeys: extensionSchema.ICollectionKey[];
1032
+ }>>;
1033
+ useFetchExtensionBrandsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<extensionSchema.IFetchExtensionBrandsQuery, extensionSchema.Exact<{
655
1034
  [key: string]: never;
656
- }>>;
657
- useFetchExtensionBrandsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchExtensionBrandsQuery, extensionSchema.IFetchExtensionBrandsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchExtensionBrandsQuery, extensionSchema.Exact<{
1035
+ }>> | undefined): import("@apollo/client").QueryResult<extensionSchema.IFetchExtensionBrandsQuery, extensionSchema.Exact<{
658
1036
  [key: string]: never;
659
1037
  }>>;
660
- useFetchExtensionCategoriesQuery(baseOptions?: import("@apollo/client").QueryHookOptions<extensionSchema.IFetchExtensionCategoriesQuery, extensionSchema.IFetchExtensionCategoriesQueryVariables>): import("@apollo/client").QueryResult<extensionSchema.IFetchExtensionCategoriesQuery, extensionSchema.Exact<{
1038
+ useFetchExtensionBrandsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchExtensionBrandsQuery, extensionSchema.Exact<{
661
1039
  [key: string]: never;
662
- }>>;
663
- useFetchExtensionCategoriesLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchExtensionCategoriesQuery, extensionSchema.IFetchExtensionCategoriesQueryVariables>): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchExtensionCategoriesQuery, extensionSchema.Exact<{
1040
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchExtensionBrandsQuery, extensionSchema.Exact<{
664
1041
  [key: string]: never;
665
1042
  }>>;
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>;
1043
+ useFetchExtensionCategoriesQuery(baseOptions?: import("@apollo/client").QueryHookOptions<extensionSchema.IFetchExtensionCategoriesQuery, extensionSchema.Exact<{
1044
+ [key: string]: never;
1045
+ }>> | undefined): import("@apollo/client").QueryResult<extensionSchema.IFetchExtensionCategoriesQuery, extensionSchema.Exact<{
1046
+ [key: string]: never;
693
1047
  }>>;
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"]>;
1048
+ useFetchExtensionCategoriesLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchExtensionCategoriesQuery, extensionSchema.Exact<{
1049
+ [key: string]: never;
1050
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchExtensionCategoriesQuery, extensionSchema.Exact<{
1051
+ [key: string]: never;
696
1052
  }>>;
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"]>;
1053
+ useFetchExtensionOpportunitiesV2Query(baseOptions: import("@apollo/client").QueryHookOptions<extensionSchema.IFetchExtensionOpportunitiesV2Query, extensionSchema.Exact<{
1054
+ domain: string;
1055
+ brandId?: extensionSchema.Maybe<string> | undefined;
1056
+ categoryId?: extensionSchema.Maybe<string> | undefined;
1057
+ }>>): import("@apollo/client").QueryResult<extensionSchema.IFetchExtensionOpportunitiesV2Query, extensionSchema.Exact<{
1058
+ domain: string;
1059
+ brandId?: extensionSchema.Maybe<string> | undefined;
1060
+ categoryId?: extensionSchema.Maybe<string> | undefined;
1061
+ }>>;
1062
+ useFetchExtensionOpportunitiesV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchExtensionOpportunitiesV2Query, extensionSchema.Exact<{
1063
+ domain: string;
1064
+ brandId?: extensionSchema.Maybe<string> | undefined;
1065
+ categoryId?: extensionSchema.Maybe<string> | undefined;
1066
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchExtensionOpportunitiesV2Query, extensionSchema.Exact<{
1067
+ domain: string;
1068
+ brandId?: extensionSchema.Maybe<string> | undefined;
1069
+ categoryId?: extensionSchema.Maybe<string> | undefined;
1070
+ }>>;
1071
+ useFetchNftDataQuery(baseOptions: import("@apollo/client").QueryHookOptions<extensionSchema.IFetchNftDataQuery, extensionSchema.Exact<{
1072
+ blockchain: string;
1073
+ contractAddress?: extensionSchema.Maybe<string> | undefined;
1074
+ tokenId?: extensionSchema.Maybe<string> | undefined;
1075
+ elrondId?: extensionSchema.Maybe<string> | undefined;
1076
+ }>>): import("@apollo/client").QueryResult<extensionSchema.IFetchNftDataQuery, extensionSchema.Exact<{
1077
+ blockchain: string;
1078
+ contractAddress?: extensionSchema.Maybe<string> | undefined;
1079
+ tokenId?: extensionSchema.Maybe<string> | undefined;
1080
+ elrondId?: extensionSchema.Maybe<string> | undefined;
1081
+ }>>;
1082
+ useFetchNftDataLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchNftDataQuery, extensionSchema.Exact<{
1083
+ blockchain: string;
1084
+ contractAddress?: extensionSchema.Maybe<string> | undefined;
1085
+ tokenId?: extensionSchema.Maybe<string> | undefined;
1086
+ elrondId?: extensionSchema.Maybe<string> | undefined;
1087
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchNftDataQuery, extensionSchema.Exact<{
1088
+ blockchain: string;
1089
+ contractAddress?: extensionSchema.Maybe<string> | undefined;
1090
+ tokenId?: extensionSchema.Maybe<string> | undefined;
1091
+ elrondId?: extensionSchema.Maybe<string> | undefined;
1092
+ }>>;
1093
+ useFetchNftRanksQuery(baseOptions: import("@apollo/client").QueryHookOptions<extensionSchema.IFetchNftRanksQuery, extensionSchema.Exact<{
1094
+ nftKeys: extensionSchema.INftKey[];
1095
+ }>>): import("@apollo/client").QueryResult<extensionSchema.IFetchNftRanksQuery, extensionSchema.Exact<{
1096
+ nftKeys: extensionSchema.INftKey[];
1097
+ }>>;
1098
+ useFetchNftRanksLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchNftRanksQuery, extensionSchema.Exact<{
1099
+ nftKeys: extensionSchema.INftKey[];
1100
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchNftRanksQuery, extensionSchema.Exact<{
1101
+ nftKeys: extensionSchema.INftKey[];
1102
+ }>>;
1103
+ useFetchWalletRanksQuery(baseOptions: import("@apollo/client").QueryHookOptions<extensionSchema.IFetchWalletRanksQuery, extensionSchema.Exact<{
1104
+ wallets: string[];
1105
+ }>>): import("@apollo/client").QueryResult<extensionSchema.IFetchWalletRanksQuery, extensionSchema.Exact<{
1106
+ wallets: string[];
1107
+ }>>;
1108
+ useFetchWalletRanksLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchWalletRanksQuery, extensionSchema.Exact<{
1109
+ wallets: string[];
1110
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchWalletRanksQuery, extensionSchema.Exact<{
1111
+ wallets: string[];
699
1112
  }>>;
700
1113
  HideOpportunityV2Document: import("graphql").DocumentNode;
701
1114
  OpenOpportunityV2Document: import("graphql").DocumentNode;
@@ -707,61 +1120,79 @@ declare const schema: {
707
1120
  FetchNftDataDocument: import("graphql").DocumentNode;
708
1121
  FetchNftRanksDocument: import("graphql").DocumentNode;
709
1122
  FetchWalletRanksDocument: import("graphql").DocumentNode;
710
- useFetchMyExperienceV2Query(baseOptions?: import("@apollo/client").QueryHookOptions<experiencesSchema.IFetchMyExperienceV2Query, experiencesSchema.IFetchMyExperienceV2QueryVariables>): import("@apollo/client").QueryResult<experiencesSchema.IFetchMyExperienceV2Query, experiencesSchema.Exact<{
1123
+ useFetchMyExperienceV2Query(baseOptions?: import("@apollo/client").QueryHookOptions<experiencesSchema.IFetchMyExperienceV2Query, experiencesSchema.Exact<{
1124
+ [key: string]: never;
1125
+ }>> | undefined): import("@apollo/client").QueryResult<experiencesSchema.IFetchMyExperienceV2Query, experiencesSchema.Exact<{
711
1126
  [key: string]: never;
712
1127
  }>>;
713
- useFetchMyExperienceV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<experiencesSchema.IFetchMyExperienceV2Query, experiencesSchema.IFetchMyExperienceV2QueryVariables>): import("@apollo/client").LazyQueryResultTuple<experiencesSchema.IFetchMyExperienceV2Query, experiencesSchema.Exact<{
1128
+ useFetchMyExperienceV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<experiencesSchema.IFetchMyExperienceV2Query, experiencesSchema.Exact<{
1129
+ [key: string]: never;
1130
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<experiencesSchema.IFetchMyExperienceV2Query, experiencesSchema.Exact<{
714
1131
  [key: string]: never;
715
1132
  }>>;
716
- useFetchMyTasksQuery(baseOptions?: import("@apollo/client").QueryHookOptions<experiencesSchema.IFetchMyTasksQuery, experiencesSchema.IFetchMyTasksQueryVariables>): import("@apollo/client").QueryResult<experiencesSchema.IFetchMyTasksQuery, experiencesSchema.Exact<{
1133
+ useFetchMyTasksQuery(baseOptions?: import("@apollo/client").QueryHookOptions<experiencesSchema.IFetchMyTasksQuery, experiencesSchema.Exact<{
1134
+ [key: string]: never;
1135
+ }>> | undefined): import("@apollo/client").QueryResult<experiencesSchema.IFetchMyTasksQuery, experiencesSchema.Exact<{
717
1136
  [key: string]: never;
718
1137
  }>>;
719
- useFetchMyTasksLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<experiencesSchema.IFetchMyTasksQuery, experiencesSchema.IFetchMyTasksQueryVariables>): import("@apollo/client").LazyQueryResultTuple<experiencesSchema.IFetchMyTasksQuery, experiencesSchema.Exact<{
1138
+ useFetchMyTasksLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<experiencesSchema.IFetchMyTasksQuery, experiencesSchema.Exact<{
1139
+ [key: string]: never;
1140
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<experiencesSchema.IFetchMyTasksQuery, experiencesSchema.Exact<{
720
1141
  [key: string]: never;
721
1142
  }>>;
722
- useOnCommonOpportunityNotificationSubscription(baseOptions?: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnCommonOpportunityNotificationSubscription, experiencesSchema.IOnCommonOpportunityNotificationSubscriptionVariables>): {
1143
+ useOnCommonOpportunityNotificationSubscription(baseOptions?: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnCommonOpportunityNotificationSubscription, experiencesSchema.Exact<{
1144
+ [key: string]: never;
1145
+ }>> | undefined): {
723
1146
  restart(): void;
724
1147
  loading: boolean;
725
1148
  data?: experiencesSchema.IOnCommonOpportunityNotificationSubscription | undefined;
726
- error?: import("@apollo/client").ApolloError;
1149
+ error?: import("@apollo/client").ApolloError | undefined;
727
1150
  variables?: experiencesSchema.Exact<{
728
1151
  [key: string]: never;
729
1152
  }> | undefined;
730
1153
  };
731
- useOnInviteCodeUsedSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnInviteCodeUsedSubscription, experiencesSchema.IOnInviteCodeUsedSubscriptionVariables>): {
1154
+ useOnInviteCodeUsedSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnInviteCodeUsedSubscription, experiencesSchema.Exact<{
1155
+ authToken: string;
1156
+ }>>): {
732
1157
  restart(): void;
733
1158
  loading: boolean;
734
1159
  data?: experiencesSchema.IOnInviteCodeUsedSubscription | undefined;
735
- error?: import("@apollo/client").ApolloError;
1160
+ error?: import("@apollo/client").ApolloError | undefined;
736
1161
  variables?: experiencesSchema.Exact<{
737
- authToken: experiencesSchema.Scalars["String"];
1162
+ authToken: string;
738
1163
  }> | undefined;
739
1164
  };
740
- useOnMyExperienceIncrementedSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnMyExperienceIncrementedSubscription, experiencesSchema.IOnMyExperienceIncrementedSubscriptionVariables>): {
1165
+ useOnMyExperienceIncrementedSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnMyExperienceIncrementedSubscription, experiencesSchema.Exact<{
1166
+ authToken: string;
1167
+ }>>): {
741
1168
  restart(): void;
742
1169
  loading: boolean;
743
1170
  data?: experiencesSchema.IOnMyExperienceIncrementedSubscription | undefined;
744
- error?: import("@apollo/client").ApolloError;
1171
+ error?: import("@apollo/client").ApolloError | undefined;
745
1172
  variables?: experiencesSchema.Exact<{
746
- authToken: experiencesSchema.Scalars["String"];
1173
+ authToken: string;
747
1174
  }> | undefined;
748
1175
  };
749
- useOnMyExperienceUpdatedSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnMyExperienceUpdatedSubscription, experiencesSchema.IOnMyExperienceUpdatedSubscriptionVariables>): {
1176
+ useOnMyExperienceUpdatedSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnMyExperienceUpdatedSubscription, experiencesSchema.Exact<{
1177
+ authToken: string;
1178
+ }>>): {
750
1179
  restart(): void;
751
1180
  loading: boolean;
752
1181
  data?: experiencesSchema.IOnMyExperienceUpdatedSubscription | undefined;
753
- error?: import("@apollo/client").ApolloError;
1182
+ error?: import("@apollo/client").ApolloError | undefined;
754
1183
  variables?: experiencesSchema.Exact<{
755
- authToken: experiencesSchema.Scalars["String"];
1184
+ authToken: string;
756
1185
  }> | undefined;
757
1186
  };
758
- useOnUserOpportunityNotificationSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnUserOpportunityNotificationSubscription, experiencesSchema.IOnUserOpportunityNotificationSubscriptionVariables>): {
1187
+ useOnUserOpportunityNotificationSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnUserOpportunityNotificationSubscription, experiencesSchema.Exact<{
1188
+ authToken: string;
1189
+ }>>): {
759
1190
  restart(): void;
760
1191
  loading: boolean;
761
1192
  data?: experiencesSchema.IOnUserOpportunityNotificationSubscription | undefined;
762
- error?: import("@apollo/client").ApolloError;
1193
+ error?: import("@apollo/client").ApolloError | undefined;
763
1194
  variables?: experiencesSchema.Exact<{
764
- authToken: experiencesSchema.Scalars["String"];
1195
+ authToken: string;
765
1196
  }> | undefined;
766
1197
  };
767
1198
  FetchMyExperienceV2Document: import("graphql").DocumentNode;
@@ -771,311 +1202,537 @@ declare const schema: {
771
1202
  OnMyExperienceIncrementedDocument: import("graphql").DocumentNode;
772
1203
  OnMyExperienceUpdatedDocument: import("graphql").DocumentNode;
773
1204
  OnUserOpportunityNotificationDocument: import("graphql").DocumentNode;
774
- useDislikeCollectionMutation(baseOptions?: import("@apollo/client").MutationHookOptions<collectionsSchema.IDislikeCollectionMutation, collectionsSchema.IDislikeCollectionMutationVariables>): import("@apollo/client").MutationTuple<collectionsSchema.IDislikeCollectionMutation, collectionsSchema.Exact<{
775
- collectionId: collectionsSchema.Scalars["String"];
1205
+ useDislikeCollectionMutation(baseOptions?: import("@apollo/client").MutationHookOptions<collectionsSchema.IDislikeCollectionMutation, collectionsSchema.Exact<{
1206
+ collectionId: string;
1207
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<collectionsSchema.IDislikeCollectionMutation, collectionsSchema.Exact<{
1208
+ collectionId: string;
776
1209
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
777
- useLikeCollectionMutation(baseOptions?: import("@apollo/client").MutationHookOptions<collectionsSchema.ILikeCollectionMutation, collectionsSchema.ILikeCollectionMutationVariables>): import("@apollo/client").MutationTuple<collectionsSchema.ILikeCollectionMutation, collectionsSchema.Exact<{
778
- collectionId: collectionsSchema.Scalars["String"];
1210
+ useLikeCollectionMutation(baseOptions?: import("@apollo/client").MutationHookOptions<collectionsSchema.ILikeCollectionMutation, collectionsSchema.Exact<{
1211
+ collectionId: string;
1212
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<collectionsSchema.ILikeCollectionMutation, collectionsSchema.Exact<{
1213
+ collectionId: string;
779
1214
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
780
1215
  DislikeCollectionDocument: import("graphql").DocumentNode;
781
1216
  LikeCollectionDocument: import("graphql").DocumentNode;
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<{
1217
+ useRefreshTokenMutation(baseOptions?: import("@apollo/client").MutationHookOptions<authSchema.IRefreshTokenMutation, authSchema.Exact<{
1218
+ refreshToken: string;
1219
+ showNsfw?: authSchema.Maybe<boolean> | undefined;
1220
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<authSchema.IRefreshTokenMutation, authSchema.Exact<{
1221
+ refreshToken: string;
1222
+ showNsfw?: authSchema.Maybe<boolean> | undefined;
1223
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1224
+ useRevokeTokenMutation(baseOptions?: import("@apollo/client").MutationHookOptions<authSchema.IRevokeTokenMutation, authSchema.Exact<{
1225
+ [key: string]: never;
1226
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<authSchema.IRevokeTokenMutation, authSchema.Exact<{
787
1227
  [key: string]: never;
788
1228
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
789
1229
  RefreshTokenDocument: import("graphql").DocumentNode;
790
1230
  RevokeTokenDocument: import("graphql").DocumentNode;
791
- useDislikeAssetMutation(baseOptions?: import("@apollo/client").MutationHookOptions<assetSchema.IDislikeAssetMutation, assetSchema.IDislikeAssetMutationVariables>): import("@apollo/client").MutationTuple<assetSchema.IDislikeAssetMutation, assetSchema.Exact<{
792
- assetId: assetSchema.Scalars["String"];
1231
+ useDislikeAssetMutation(baseOptions?: import("@apollo/client").MutationHookOptions<assetSchema.IDislikeAssetMutation, assetSchema.Exact<{
1232
+ assetId: string;
1233
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<assetSchema.IDislikeAssetMutation, assetSchema.Exact<{
1234
+ assetId: string;
793
1235
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
794
- useLikeAssetMutation(baseOptions?: import("@apollo/client").MutationHookOptions<assetSchema.ILikeAssetMutation, assetSchema.ILikeAssetMutationVariables>): import("@apollo/client").MutationTuple<assetSchema.ILikeAssetMutation, assetSchema.Exact<{
795
- assetId: assetSchema.Scalars["String"];
1236
+ useLikeAssetMutation(baseOptions?: import("@apollo/client").MutationHookOptions<assetSchema.ILikeAssetMutation, assetSchema.Exact<{
1237
+ assetId: string;
1238
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<assetSchema.ILikeAssetMutation, assetSchema.Exact<{
1239
+ assetId: string;
796
1240
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
797
1241
  DislikeAssetDocument: import("graphql").DocumentNode;
798
1242
  LikeAssetDocument: import("graphql").DocumentNode;
799
- useCreateReferralTypeMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.ICreateReferralTypeMutation, adminSchema.ICreateReferralTypeMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.ICreateReferralTypeMutation, adminSchema.Exact<{
1243
+ useCreateReferralTypeMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.ICreateReferralTypeMutation, adminSchema.Exact<{
1244
+ input: adminSchema.IReferralTypeInput;
1245
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.ICreateReferralTypeMutation, adminSchema.Exact<{
800
1246
  input: adminSchema.IReferralTypeInput;
801
1247
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
802
- useCreateTierMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.ICreateTierMutation, adminSchema.ICreateTierMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.ICreateTierMutation, adminSchema.Exact<{
1248
+ useCreateTierMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.ICreateTierMutation, adminSchema.Exact<{
1249
+ input: adminSchema.ITierInput;
1250
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.ICreateTierMutation, adminSchema.Exact<{
803
1251
  input: adminSchema.ITierInput;
804
1252
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
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"];
1253
+ useTriggerOpportunityNotificationMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.ITriggerOpportunityNotificationMutation, adminSchema.Exact<{
1254
+ opportunityId: string;
1255
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.ITriggerOpportunityNotificationMutation, adminSchema.Exact<{
1256
+ opportunityId: string;
1257
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1258
+ useUpdateInviteCodeUsagesLimitMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateInviteCodeUsagesLimitMutation, adminSchema.Exact<{
1259
+ code: string;
1260
+ usagesLimit: number;
1261
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IUpdateInviteCodeUsagesLimitMutation, adminSchema.Exact<{
1262
+ code: string;
1263
+ usagesLimit: number;
1264
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1265
+ useUpdateOpportunityPushStatusMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateOpportunityPushStatusMutation, adminSchema.Exact<{
1266
+ opportunityId: string;
1267
+ isActive: boolean;
1268
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IUpdateOpportunityPushStatusMutation, adminSchema.Exact<{
1269
+ opportunityId: string;
1270
+ isActive: boolean;
1271
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1272
+ useUpdateReferralTypeMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateReferralTypeMutation, adminSchema.Exact<{
1273
+ id: string;
1274
+ input: adminSchema.IReferralTypeInput;
1275
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IUpdateReferralTypeMutation, adminSchema.Exact<{
1276
+ id: string;
818
1277
  input: adminSchema.IReferralTypeInput;
819
1278
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
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"];
1279
+ useUpdateReferralTypeArchivedStatusMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateReferralTypeArchivedStatusMutation, adminSchema.Exact<{
1280
+ id: string;
1281
+ isArchived: boolean;
1282
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IUpdateReferralTypeArchivedStatusMutation, adminSchema.Exact<{
1283
+ id: string;
1284
+ isArchived: boolean;
823
1285
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
824
- useUpdateTierMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateTierMutation, adminSchema.IUpdateTierMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IUpdateTierMutation, adminSchema.Exact<{
825
- id: adminSchema.Scalars["ID"];
1286
+ useUpdateTierMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateTierMutation, adminSchema.Exact<{
1287
+ id: string;
1288
+ input: adminSchema.ITierInput;
1289
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IUpdateTierMutation, adminSchema.Exact<{
1290
+ id: string;
826
1291
  input: adminSchema.ITierInput;
827
1292
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
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<{
1293
+ useUpdateTierArchivedStatusMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateTierArchivedStatusMutation, adminSchema.Exact<{
1294
+ id: string;
1295
+ isArchived: boolean;
1296
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IUpdateTierArchivedStatusMutation, adminSchema.Exact<{
1297
+ id: string;
1298
+ isArchived: boolean;
1299
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1300
+ useChangeXpPointsMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IChangeXpPointsMutation, adminSchema.Exact<{
1301
+ userId: string;
1302
+ pointsDiff: number;
1303
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IChangeXpPointsMutation, adminSchema.Exact<{
1304
+ userId: string;
1305
+ pointsDiff: number;
1306
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1307
+ useCreateCategoryMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.ICreateCategoryMutation, adminSchema.Exact<{
1308
+ name: string;
1309
+ matchingWords: string[];
1310
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.ICreateCategoryMutation, adminSchema.Exact<{
1311
+ name: string;
1312
+ matchingWords: string[];
1313
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1314
+ useCreateBrandMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.ICreateBrandMutation, adminSchema.Exact<{
841
1315
  brand: adminSchema.IBrandInput;
842
- file?: adminSchema.Maybe<adminSchema.Scalars["Upload"]>;
1316
+ file?: any;
1317
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.ICreateBrandMutation, adminSchema.Exact<{
1318
+ brand: adminSchema.IBrandInput;
1319
+ file?: any;
843
1320
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<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"]>;
1321
+ useCreateAdminOpportunityMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.ICreateAdminOpportunityMutation, adminSchema.Exact<{
1322
+ file?: any;
1323
+ input: adminSchema.IAdminOpportunityInput;
1324
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.ICreateAdminOpportunityMutation, adminSchema.Exact<{
1325
+ file?: any;
846
1326
  input: adminSchema.IAdminOpportunityInput;
847
1327
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
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"];
851
- reftypeId?: adminSchema.Maybe<adminSchema.Scalars["String"]>;
852
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
853
- useRemoveInviteCodeMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IRemoveInviteCodeMutation, adminSchema.IRemoveInviteCodeMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IRemoveInviteCodeMutation, adminSchema.Exact<{
854
- inviteCode: adminSchema.Scalars["String"];
855
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
856
- useUpdateBrandMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateBrandMutation, adminSchema.IUpdateBrandMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IUpdateBrandMutation, adminSchema.Exact<{
857
- id: adminSchema.Scalars["ID"];
1328
+ useAddInviteCodesMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IAddInviteCodesMutation, adminSchema.Exact<{
1329
+ userId: string;
1330
+ codesNum: number;
1331
+ reftypeId?: adminSchema.Maybe<string> | undefined;
1332
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IAddInviteCodesMutation, adminSchema.Exact<{
1333
+ userId: string;
1334
+ codesNum: number;
1335
+ reftypeId?: adminSchema.Maybe<string> | undefined;
1336
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1337
+ useRemoveInviteCodeMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IRemoveInviteCodeMutation, adminSchema.Exact<{
1338
+ inviteCode: string;
1339
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IRemoveInviteCodeMutation, adminSchema.Exact<{
1340
+ inviteCode: string;
1341
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1342
+ useUpdateBrandMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateBrandMutation, adminSchema.Exact<{
1343
+ id: string;
858
1344
  input: adminSchema.IBrandInput;
859
- file?: adminSchema.Maybe<adminSchema.Scalars["Upload"]>;
1345
+ file?: any;
1346
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IUpdateBrandMutation, adminSchema.Exact<{
1347
+ id: string;
1348
+ input: adminSchema.IBrandInput;
1349
+ file?: any;
860
1350
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
861
- useUpdateBrandArchivedStatusMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateBrandArchivedStatusMutation, adminSchema.IUpdateBrandArchivedStatusMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IUpdateBrandArchivedStatusMutation, adminSchema.Exact<{
862
- id: adminSchema.Scalars["ID"];
863
- isArchived: adminSchema.Scalars["Boolean"];
1351
+ useUpdateBrandArchivedStatusMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateBrandArchivedStatusMutation, adminSchema.Exact<{
1352
+ id: string;
1353
+ isArchived: boolean;
1354
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IUpdateBrandArchivedStatusMutation, adminSchema.Exact<{
1355
+ id: string;
1356
+ isArchived: boolean;
864
1357
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
865
- useUpdateCategoryMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateCategoryMutation, adminSchema.IUpdateCategoryMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IUpdateCategoryMutation, adminSchema.Exact<{
866
- id: adminSchema.Scalars["ID"];
1358
+ useUpdateCategoryMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateCategoryMutation, adminSchema.Exact<{
1359
+ id: string;
1360
+ input: adminSchema.ICategoryInput;
1361
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IUpdateCategoryMutation, adminSchema.Exact<{
1362
+ id: string;
867
1363
  input: adminSchema.ICategoryInput;
868
1364
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
869
- useUpdateCategoryArchivedStatusMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateCategoryArchivedStatusMutation, adminSchema.IUpdateCategoryArchivedStatusMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IUpdateCategoryArchivedStatusMutation, adminSchema.Exact<{
870
- id: adminSchema.Scalars["ID"];
871
- isArchived: adminSchema.Scalars["Boolean"];
1365
+ useUpdateCategoryArchivedStatusMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateCategoryArchivedStatusMutation, adminSchema.Exact<{
1366
+ id: string;
1367
+ isArchived: boolean;
1368
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IUpdateCategoryArchivedStatusMutation, adminSchema.Exact<{
1369
+ id: string;
1370
+ isArchived: boolean;
872
1371
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
873
- useUpdateOpportunityMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateOpportunityMutation, adminSchema.IUpdateOpportunityMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IUpdateOpportunityMutation, adminSchema.Exact<{
874
- id: adminSchema.Scalars["ID"];
1372
+ useUpdateOpportunityMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateOpportunityMutation, adminSchema.Exact<{
1373
+ id: string;
875
1374
  input: adminSchema.IAdminOpportunityInput;
876
- file?: adminSchema.Maybe<adminSchema.Scalars["Upload"]>;
877
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
878
- useUpdateProfileStatusMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateProfileStatusMutation, adminSchema.IUpdateProfileStatusMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IUpdateProfileStatusMutation, adminSchema.Exact<{
879
- userId: adminSchema.Scalars["ID"];
880
- isActive: adminSchema.Scalars["Boolean"];
881
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
882
- useCheckInviteCodeQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.ICheckInviteCodeQuery, adminSchema.ICheckInviteCodeQueryVariables>): import("@apollo/client").QueryResult<adminSchema.ICheckInviteCodeQuery, adminSchema.Exact<{
883
- code: adminSchema.Scalars["String"];
884
- }>>;
885
- useCheckInviteCodeLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.ICheckInviteCodeQuery, adminSchema.ICheckInviteCodeQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.ICheckInviteCodeQuery, adminSchema.Exact<{
886
- code: adminSchema.Scalars["String"];
887
- }>>;
888
- useFetchContactSupportPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchContactSupportPageQuery, adminSchema.IFetchContactSupportPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchContactSupportPageQuery, adminSchema.Exact<{
1375
+ file?: any;
1376
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IUpdateOpportunityMutation, adminSchema.Exact<{
1377
+ id: string;
1378
+ input: adminSchema.IAdminOpportunityInput;
1379
+ file?: any;
1380
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1381
+ useUpdateProfileStatusMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateProfileStatusMutation, adminSchema.Exact<{
1382
+ userId: string;
1383
+ isActive: boolean;
1384
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IUpdateProfileStatusMutation, adminSchema.Exact<{
1385
+ userId: string;
1386
+ isActive: boolean;
1387
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1388
+ useCheckInviteCodeQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.ICheckInviteCodeQuery, adminSchema.Exact<{
1389
+ code: string;
1390
+ }>>): import("@apollo/client").QueryResult<adminSchema.ICheckInviteCodeQuery, adminSchema.Exact<{
1391
+ code: string;
1392
+ }>>;
1393
+ useCheckInviteCodeLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.ICheckInviteCodeQuery, adminSchema.Exact<{
1394
+ code: string;
1395
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.ICheckInviteCodeQuery, adminSchema.Exact<{
1396
+ code: string;
1397
+ }>>;
1398
+ useFetchContactSupportPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchContactSupportPageQuery, adminSchema.Exact<{
1399
+ filter: adminSchema.IContactSupportFilterInput;
1400
+ sort: adminSchema.IContactSupportSortInput;
1401
+ page: adminSchema.IAdminPageInput;
1402
+ }>>): import("@apollo/client").QueryResult<adminSchema.IFetchContactSupportPageQuery, adminSchema.Exact<{
889
1403
  filter: adminSchema.IContactSupportFilterInput;
890
1404
  sort: adminSchema.IContactSupportSortInput;
891
1405
  page: adminSchema.IAdminPageInput;
892
1406
  }>>;
893
- useFetchContactSupportPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchContactSupportPageQuery, adminSchema.IFetchContactSupportPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchContactSupportPageQuery, adminSchema.Exact<{
1407
+ useFetchContactSupportPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchContactSupportPageQuery, adminSchema.Exact<{
1408
+ filter: adminSchema.IContactSupportFilterInput;
1409
+ sort: adminSchema.IContactSupportSortInput;
1410
+ page: adminSchema.IAdminPageInput;
1411
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchContactSupportPageQuery, adminSchema.Exact<{
894
1412
  filter: adminSchema.IContactSupportFilterInput;
895
1413
  sort: adminSchema.IContactSupportSortInput;
896
1414
  page: adminSchema.IAdminPageInput;
897
1415
  }>>;
898
- useFetchContentReportPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchContentReportPageQuery, adminSchema.IFetchContentReportPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchContentReportPageQuery, adminSchema.Exact<{
1416
+ useFetchContentReportPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchContentReportPageQuery, adminSchema.Exact<{
1417
+ filter: adminSchema.IContentReportFilterInput;
1418
+ sort: adminSchema.IContentReportSortInput;
1419
+ page: adminSchema.IAdminPageInput;
1420
+ }>>): import("@apollo/client").QueryResult<adminSchema.IFetchContentReportPageQuery, adminSchema.Exact<{
899
1421
  filter: adminSchema.IContentReportFilterInput;
900
1422
  sort: adminSchema.IContentReportSortInput;
901
1423
  page: adminSchema.IAdminPageInput;
902
1424
  }>>;
903
- useFetchContentReportPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchContentReportPageQuery, adminSchema.IFetchContentReportPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchContentReportPageQuery, adminSchema.Exact<{
1425
+ useFetchContentReportPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchContentReportPageQuery, adminSchema.Exact<{
1426
+ filter: adminSchema.IContentReportFilterInput;
1427
+ sort: adminSchema.IContentReportSortInput;
1428
+ page: adminSchema.IAdminPageInput;
1429
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchContentReportPageQuery, adminSchema.Exact<{
904
1430
  filter: adminSchema.IContentReportFilterInput;
905
1431
  sort: adminSchema.IContentReportSortInput;
906
1432
  page: adminSchema.IAdminPageInput;
907
1433
  }>>;
908
- useFetchFormOpportunityPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchFormOpportunityPageQuery, adminSchema.IFetchFormOpportunityPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchFormOpportunityPageQuery, adminSchema.Exact<{
1434
+ useFetchFormOpportunityPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchFormOpportunityPageQuery, adminSchema.Exact<{
1435
+ filter: adminSchema.IFormOpportunityFilterInput;
1436
+ sort: adminSchema.IFormOpportunitySortInput;
1437
+ page: adminSchema.IAdminPageInput;
1438
+ }>>): import("@apollo/client").QueryResult<adminSchema.IFetchFormOpportunityPageQuery, adminSchema.Exact<{
909
1439
  filter: adminSchema.IFormOpportunityFilterInput;
910
1440
  sort: adminSchema.IFormOpportunitySortInput;
911
1441
  page: adminSchema.IAdminPageInput;
912
1442
  }>>;
913
- useFetchFormOpportunityPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchFormOpportunityPageQuery, adminSchema.IFetchFormOpportunityPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchFormOpportunityPageQuery, adminSchema.Exact<{
1443
+ useFetchFormOpportunityPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchFormOpportunityPageQuery, adminSchema.Exact<{
1444
+ filter: adminSchema.IFormOpportunityFilterInput;
1445
+ sort: adminSchema.IFormOpportunitySortInput;
1446
+ page: adminSchema.IAdminPageInput;
1447
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchFormOpportunityPageQuery, adminSchema.Exact<{
914
1448
  filter: adminSchema.IFormOpportunityFilterInput;
915
1449
  sort: adminSchema.IFormOpportunitySortInput;
916
1450
  page: adminSchema.IAdminPageInput;
917
1451
  }>>;
918
- useFetchInvestorInquiryPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchInvestorInquiryPageQuery, adminSchema.IFetchInvestorInquiryPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchInvestorInquiryPageQuery, adminSchema.Exact<{
1452
+ useFetchInvestorInquiryPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchInvestorInquiryPageQuery, adminSchema.Exact<{
1453
+ filter: adminSchema.IInvestorInquiryFilterInput;
1454
+ sort: adminSchema.IInvestorInquirySortInput;
1455
+ page: adminSchema.IAdminPageInput;
1456
+ }>>): import("@apollo/client").QueryResult<adminSchema.IFetchInvestorInquiryPageQuery, adminSchema.Exact<{
919
1457
  filter: adminSchema.IInvestorInquiryFilterInput;
920
1458
  sort: adminSchema.IInvestorInquirySortInput;
921
1459
  page: adminSchema.IAdminPageInput;
922
1460
  }>>;
923
- useFetchInvestorInquiryPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchInvestorInquiryPageQuery, adminSchema.IFetchInvestorInquiryPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchInvestorInquiryPageQuery, adminSchema.Exact<{
1461
+ useFetchInvestorInquiryPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchInvestorInquiryPageQuery, adminSchema.Exact<{
1462
+ filter: adminSchema.IInvestorInquiryFilterInput;
1463
+ sort: adminSchema.IInvestorInquirySortInput;
1464
+ page: adminSchema.IAdminPageInput;
1465
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchInvestorInquiryPageQuery, adminSchema.Exact<{
924
1466
  filter: adminSchema.IInvestorInquiryFilterInput;
925
1467
  sort: adminSchema.IInvestorInquirySortInput;
926
1468
  page: adminSchema.IAdminPageInput;
927
1469
  }>>;
928
- useFetchPartnershipInquiryPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchPartnershipInquiryPageQuery, adminSchema.IFetchPartnershipInquiryPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchPartnershipInquiryPageQuery, adminSchema.Exact<{
1470
+ useFetchPartnershipInquiryPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchPartnershipInquiryPageQuery, adminSchema.Exact<{
1471
+ filter: adminSchema.IPartnershipInquiryFilterInput;
1472
+ sort: adminSchema.IPartnershipInquirySortInput;
1473
+ page: adminSchema.IAdminPageInput;
1474
+ }>>): import("@apollo/client").QueryResult<adminSchema.IFetchPartnershipInquiryPageQuery, adminSchema.Exact<{
929
1475
  filter: adminSchema.IPartnershipInquiryFilterInput;
930
1476
  sort: adminSchema.IPartnershipInquirySortInput;
931
1477
  page: adminSchema.IAdminPageInput;
932
1478
  }>>;
933
- useFetchPartnershipInquiryPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchPartnershipInquiryPageQuery, adminSchema.IFetchPartnershipInquiryPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchPartnershipInquiryPageQuery, adminSchema.Exact<{
1479
+ useFetchPartnershipInquiryPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchPartnershipInquiryPageQuery, adminSchema.Exact<{
1480
+ filter: adminSchema.IPartnershipInquiryFilterInput;
1481
+ sort: adminSchema.IPartnershipInquirySortInput;
1482
+ page: adminSchema.IAdminPageInput;
1483
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchPartnershipInquiryPageQuery, adminSchema.Exact<{
934
1484
  filter: adminSchema.IPartnershipInquiryFilterInput;
935
1485
  sort: adminSchema.IPartnershipInquirySortInput;
936
1486
  page: adminSchema.IAdminPageInput;
937
1487
  }>>;
938
- useFetchUnarchivedReferralTypesQuery(baseOptions?: import("@apollo/client").QueryHookOptions<adminSchema.IFetchUnarchivedReferralTypesQuery, adminSchema.IFetchUnarchivedReferralTypesQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchUnarchivedReferralTypesQuery, adminSchema.Exact<{
1488
+ useFetchUnarchivedReferralTypesQuery(baseOptions?: import("@apollo/client").QueryHookOptions<adminSchema.IFetchUnarchivedReferralTypesQuery, adminSchema.Exact<{
1489
+ [key: string]: never;
1490
+ }>> | undefined): import("@apollo/client").QueryResult<adminSchema.IFetchUnarchivedReferralTypesQuery, adminSchema.Exact<{
939
1491
  [key: string]: never;
940
1492
  }>>;
941
- useFetchUnarchivedReferralTypesLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchUnarchivedReferralTypesQuery, adminSchema.IFetchUnarchivedReferralTypesQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchUnarchivedReferralTypesQuery, adminSchema.Exact<{
1493
+ useFetchUnarchivedReferralTypesLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchUnarchivedReferralTypesQuery, adminSchema.Exact<{
1494
+ [key: string]: never;
1495
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchUnarchivedReferralTypesQuery, adminSchema.Exact<{
942
1496
  [key: string]: never;
943
1497
  }>>;
944
- useFetchReferralTypesPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchReferralTypesPageQuery, adminSchema.IFetchReferralTypesPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchReferralTypesPageQuery, adminSchema.Exact<{
1498
+ useFetchReferralTypesPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchReferralTypesPageQuery, adminSchema.Exact<{
1499
+ filter: adminSchema.IReferralTypeFilterInput;
1500
+ sort: adminSchema.IReferralTypeSortInput;
1501
+ page: adminSchema.IAdminPageInput;
1502
+ }>>): import("@apollo/client").QueryResult<adminSchema.IFetchReferralTypesPageQuery, adminSchema.Exact<{
945
1503
  filter: adminSchema.IReferralTypeFilterInput;
946
1504
  sort: adminSchema.IReferralTypeSortInput;
947
1505
  page: adminSchema.IAdminPageInput;
948
1506
  }>>;
949
- useFetchReferralTypesPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchReferralTypesPageQuery, adminSchema.IFetchReferralTypesPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchReferralTypesPageQuery, adminSchema.Exact<{
1507
+ useFetchReferralTypesPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchReferralTypesPageQuery, adminSchema.Exact<{
1508
+ filter: adminSchema.IReferralTypeFilterInput;
1509
+ sort: adminSchema.IReferralTypeSortInput;
1510
+ page: adminSchema.IAdminPageInput;
1511
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchReferralTypesPageQuery, adminSchema.Exact<{
950
1512
  filter: adminSchema.IReferralTypeFilterInput;
951
1513
  sort: adminSchema.IReferralTypeSortInput;
952
1514
  page: adminSchema.IAdminPageInput;
953
1515
  }>>;
954
- useFetchRegistrationInvitePageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchRegistrationInvitePageQuery, adminSchema.IFetchRegistrationInvitePageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchRegistrationInvitePageQuery, adminSchema.Exact<{
1516
+ useFetchRegistrationInvitePageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchRegistrationInvitePageQuery, adminSchema.Exact<{
1517
+ filter: adminSchema.IRegistrationInviteFilterInput;
1518
+ sort: adminSchema.IRegistrationInviteSortInput;
1519
+ page: adminSchema.IAdminPageInput;
1520
+ }>>): import("@apollo/client").QueryResult<adminSchema.IFetchRegistrationInvitePageQuery, adminSchema.Exact<{
955
1521
  filter: adminSchema.IRegistrationInviteFilterInput;
956
1522
  sort: adminSchema.IRegistrationInviteSortInput;
957
1523
  page: adminSchema.IAdminPageInput;
958
1524
  }>>;
959
- useFetchRegistrationInvitePageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchRegistrationInvitePageQuery, adminSchema.IFetchRegistrationInvitePageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchRegistrationInvitePageQuery, adminSchema.Exact<{
1525
+ useFetchRegistrationInvitePageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchRegistrationInvitePageQuery, adminSchema.Exact<{
1526
+ filter: adminSchema.IRegistrationInviteFilterInput;
1527
+ sort: adminSchema.IRegistrationInviteSortInput;
1528
+ page: adminSchema.IAdminPageInput;
1529
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchRegistrationInvitePageQuery, adminSchema.Exact<{
960
1530
  filter: adminSchema.IRegistrationInviteFilterInput;
961
1531
  sort: adminSchema.IRegistrationInviteSortInput;
962
1532
  page: adminSchema.IAdminPageInput;
963
1533
  }>>;
964
- useFetchTiersQuery(baseOptions?: import("@apollo/client").QueryHookOptions<adminSchema.IFetchTiersQuery, adminSchema.IFetchTiersQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchTiersQuery, adminSchema.Exact<{
1534
+ useFetchTiersQuery(baseOptions?: import("@apollo/client").QueryHookOptions<adminSchema.IFetchTiersQuery, adminSchema.Exact<{
1535
+ [key: string]: never;
1536
+ }>> | undefined): import("@apollo/client").QueryResult<adminSchema.IFetchTiersQuery, adminSchema.Exact<{
965
1537
  [key: string]: never;
966
1538
  }>>;
967
- useFetchTiersLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchTiersQuery, adminSchema.IFetchTiersQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchTiersQuery, adminSchema.Exact<{
1539
+ useFetchTiersLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchTiersQuery, adminSchema.Exact<{
1540
+ [key: string]: never;
1541
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchTiersQuery, adminSchema.Exact<{
968
1542
  [key: string]: never;
969
1543
  }>>;
970
- useFetchTiersPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchTiersPageQuery, adminSchema.IFetchTiersPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchTiersPageQuery, adminSchema.Exact<{
1544
+ useFetchTiersPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchTiersPageQuery, adminSchema.Exact<{
1545
+ filter: adminSchema.ITiersFilterInput;
1546
+ sort: adminSchema.ITiersSortInput;
1547
+ page: adminSchema.IAdminPageInput;
1548
+ }>>): import("@apollo/client").QueryResult<adminSchema.IFetchTiersPageQuery, adminSchema.Exact<{
971
1549
  filter: adminSchema.ITiersFilterInput;
972
1550
  sort: adminSchema.ITiersSortInput;
973
1551
  page: adminSchema.IAdminPageInput;
974
1552
  }>>;
975
- useFetchTiersPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchTiersPageQuery, adminSchema.IFetchTiersPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchTiersPageQuery, adminSchema.Exact<{
1553
+ useFetchTiersPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchTiersPageQuery, adminSchema.Exact<{
1554
+ filter: adminSchema.ITiersFilterInput;
1555
+ sort: adminSchema.ITiersSortInput;
1556
+ page: adminSchema.IAdminPageInput;
1557
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchTiersPageQuery, adminSchema.Exact<{
976
1558
  filter: adminSchema.ITiersFilterInput;
977
1559
  sort: adminSchema.ITiersSortInput;
978
1560
  page: adminSchema.IAdminPageInput;
979
1561
  }>>;
980
- useFetchUserFeedbackPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchUserFeedbackPageQuery, adminSchema.IFetchUserFeedbackPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchUserFeedbackPageQuery, adminSchema.Exact<{
1562
+ useFetchUserFeedbackPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchUserFeedbackPageQuery, adminSchema.Exact<{
1563
+ filter: adminSchema.IUserFeedbackFilterInput;
1564
+ sort: adminSchema.IUserFeedbackSortInput;
1565
+ page: adminSchema.IAdminPageInput;
1566
+ }>>): import("@apollo/client").QueryResult<adminSchema.IFetchUserFeedbackPageQuery, adminSchema.Exact<{
981
1567
  filter: adminSchema.IUserFeedbackFilterInput;
982
1568
  sort: adminSchema.IUserFeedbackSortInput;
983
1569
  page: adminSchema.IAdminPageInput;
984
1570
  }>>;
985
- useFetchUserFeedbackPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchUserFeedbackPageQuery, adminSchema.IFetchUserFeedbackPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchUserFeedbackPageQuery, adminSchema.Exact<{
1571
+ useFetchUserFeedbackPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchUserFeedbackPageQuery, adminSchema.Exact<{
1572
+ filter: adminSchema.IUserFeedbackFilterInput;
1573
+ sort: adminSchema.IUserFeedbackSortInput;
1574
+ page: adminSchema.IAdminPageInput;
1575
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchUserFeedbackPageQuery, adminSchema.Exact<{
986
1576
  filter: adminSchema.IUserFeedbackFilterInput;
987
1577
  sort: adminSchema.IUserFeedbackSortInput;
988
1578
  page: adminSchema.IAdminPageInput;
989
1579
  }>>;
990
- useFetchAdminBrandsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminBrandsQuery, adminSchema.IFetchAdminBrandsQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminBrandsQuery, adminSchema.Exact<{
1580
+ useFetchAdminBrandsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminBrandsQuery, adminSchema.Exact<{
1581
+ [key: string]: never;
1582
+ }>> | undefined): import("@apollo/client").QueryResult<adminSchema.IFetchAdminBrandsQuery, adminSchema.Exact<{
991
1583
  [key: string]: never;
992
1584
  }>>;
993
- useFetchAdminBrandsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminBrandsQuery, adminSchema.IFetchAdminBrandsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminBrandsQuery, adminSchema.Exact<{
1585
+ useFetchAdminBrandsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminBrandsQuery, adminSchema.Exact<{
1586
+ [key: string]: never;
1587
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminBrandsQuery, adminSchema.Exact<{
994
1588
  [key: string]: never;
995
1589
  }>>;
996
- useFetchAdminBrandsPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminBrandsPageQuery, adminSchema.IFetchAdminBrandsPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminBrandsPageQuery, adminSchema.Exact<{
1590
+ useFetchAdminBrandsPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminBrandsPageQuery, adminSchema.Exact<{
1591
+ filter: adminSchema.IBrandsFilterInput;
1592
+ sort: adminSchema.IBrandsSortInput;
1593
+ page: adminSchema.IAdminPageInput;
1594
+ }>>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminBrandsPageQuery, adminSchema.Exact<{
997
1595
  filter: adminSchema.IBrandsFilterInput;
998
1596
  sort: adminSchema.IBrandsSortInput;
999
1597
  page: adminSchema.IAdminPageInput;
1000
1598
  }>>;
1001
- useFetchAdminBrandsPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminBrandsPageQuery, adminSchema.IFetchAdminBrandsPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminBrandsPageQuery, adminSchema.Exact<{
1599
+ useFetchAdminBrandsPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminBrandsPageQuery, adminSchema.Exact<{
1600
+ filter: adminSchema.IBrandsFilterInput;
1601
+ sort: adminSchema.IBrandsSortInput;
1602
+ page: adminSchema.IAdminPageInput;
1603
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminBrandsPageQuery, adminSchema.Exact<{
1002
1604
  filter: adminSchema.IBrandsFilterInput;
1003
1605
  sort: adminSchema.IBrandsSortInput;
1004
1606
  page: adminSchema.IAdminPageInput;
1005
1607
  }>>;
1006
- useFetchAdminCategoriesQuery(baseOptions?: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminCategoriesQuery, adminSchema.IFetchAdminCategoriesQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminCategoriesQuery, adminSchema.Exact<{
1608
+ useFetchAdminCategoriesQuery(baseOptions?: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminCategoriesQuery, adminSchema.Exact<{
1609
+ [key: string]: never;
1610
+ }>> | undefined): import("@apollo/client").QueryResult<adminSchema.IFetchAdminCategoriesQuery, adminSchema.Exact<{
1007
1611
  [key: string]: never;
1008
1612
  }>>;
1009
- useFetchAdminCategoriesLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminCategoriesQuery, adminSchema.IFetchAdminCategoriesQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminCategoriesQuery, adminSchema.Exact<{
1613
+ useFetchAdminCategoriesLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminCategoriesQuery, adminSchema.Exact<{
1614
+ [key: string]: never;
1615
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminCategoriesQuery, adminSchema.Exact<{
1010
1616
  [key: string]: never;
1011
1617
  }>>;
1012
- useFetchAdminCategoriesPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminCategoriesPageQuery, adminSchema.IFetchAdminCategoriesPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminCategoriesPageQuery, adminSchema.Exact<{
1618
+ useFetchAdminCategoriesPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminCategoriesPageQuery, adminSchema.Exact<{
1619
+ filter: adminSchema.ICategoriesFilterInput;
1620
+ sort: adminSchema.ICategoriesSortInput;
1621
+ page: adminSchema.IAdminPageInput;
1622
+ }>>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminCategoriesPageQuery, adminSchema.Exact<{
1013
1623
  filter: adminSchema.ICategoriesFilterInput;
1014
1624
  sort: adminSchema.ICategoriesSortInput;
1015
1625
  page: adminSchema.IAdminPageInput;
1016
1626
  }>>;
1017
- useFetchAdminCategoriesPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminCategoriesPageQuery, adminSchema.IFetchAdminCategoriesPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminCategoriesPageQuery, adminSchema.Exact<{
1627
+ useFetchAdminCategoriesPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminCategoriesPageQuery, adminSchema.Exact<{
1628
+ filter: adminSchema.ICategoriesFilterInput;
1629
+ sort: adminSchema.ICategoriesSortInput;
1630
+ page: adminSchema.IAdminPageInput;
1631
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminCategoriesPageQuery, adminSchema.Exact<{
1018
1632
  filter: adminSchema.ICategoriesFilterInput;
1019
1633
  sort: adminSchema.ICategoriesSortInput;
1020
1634
  page: adminSchema.IAdminPageInput;
1021
1635
  }>>;
1022
- useFetchAdminInvitesPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminInvitesPageQuery, adminSchema.IFetchAdminInvitesPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminInvitesPageQuery, adminSchema.Exact<{
1636
+ useFetchAdminInvitesPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminInvitesPageQuery, adminSchema.Exact<{
1637
+ filter: adminSchema.IInvitesFilterInput;
1638
+ sort: adminSchema.IInvitesSortInput;
1639
+ page: adminSchema.IAdminPageInput;
1640
+ }>>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminInvitesPageQuery, adminSchema.Exact<{
1023
1641
  filter: adminSchema.IInvitesFilterInput;
1024
1642
  sort: adminSchema.IInvitesSortInput;
1025
1643
  page: adminSchema.IAdminPageInput;
1026
1644
  }>>;
1027
- useFetchAdminInvitesPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminInvitesPageQuery, adminSchema.IFetchAdminInvitesPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminInvitesPageQuery, adminSchema.Exact<{
1645
+ useFetchAdminInvitesPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminInvitesPageQuery, adminSchema.Exact<{
1646
+ filter: adminSchema.IInvitesFilterInput;
1647
+ sort: adminSchema.IInvitesSortInput;
1648
+ page: adminSchema.IAdminPageInput;
1649
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminInvitesPageQuery, adminSchema.Exact<{
1028
1650
  filter: adminSchema.IInvitesFilterInput;
1029
1651
  sort: adminSchema.IInvitesSortInput;
1030
1652
  page: adminSchema.IAdminPageInput;
1031
1653
  }>>;
1032
- useFetchAdminOpportunitiesPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminOpportunitiesPageQuery, adminSchema.IFetchAdminOpportunitiesPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminOpportunitiesPageQuery, adminSchema.Exact<{
1654
+ useFetchAdminOpportunitiesPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminOpportunitiesPageQuery, adminSchema.Exact<{
1655
+ filter: adminSchema.IOpportunitiesFilterInput;
1656
+ sort: adminSchema.IOpportunitiesSortInput;
1657
+ page: adminSchema.IAdminPageInput;
1658
+ }>>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminOpportunitiesPageQuery, adminSchema.Exact<{
1033
1659
  filter: adminSchema.IOpportunitiesFilterInput;
1034
1660
  sort: adminSchema.IOpportunitiesSortInput;
1035
1661
  page: adminSchema.IAdminPageInput;
1036
1662
  }>>;
1037
- useFetchAdminOpportunitiesPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminOpportunitiesPageQuery, adminSchema.IFetchAdminOpportunitiesPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminOpportunitiesPageQuery, adminSchema.Exact<{
1663
+ useFetchAdminOpportunitiesPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminOpportunitiesPageQuery, adminSchema.Exact<{
1664
+ filter: adminSchema.IOpportunitiesFilterInput;
1665
+ sort: adminSchema.IOpportunitiesSortInput;
1666
+ page: adminSchema.IAdminPageInput;
1667
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminOpportunitiesPageQuery, adminSchema.Exact<{
1038
1668
  filter: adminSchema.IOpportunitiesFilterInput;
1039
1669
  sort: adminSchema.IOpportunitiesSortInput;
1040
1670
  page: adminSchema.IAdminPageInput;
1041
1671
  }>>;
1042
- useFetchAdminReferralsPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminReferralsPageQuery, adminSchema.IFetchAdminReferralsPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminReferralsPageQuery, adminSchema.Exact<{
1672
+ useFetchAdminReferralsPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminReferralsPageQuery, adminSchema.Exact<{
1673
+ filter: adminSchema.IReferralsFilterInput;
1674
+ sort: adminSchema.IReferralsSortInput;
1675
+ page: adminSchema.IAdminPageInput;
1676
+ }>>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminReferralsPageQuery, adminSchema.Exact<{
1043
1677
  filter: adminSchema.IReferralsFilterInput;
1044
1678
  sort: adminSchema.IReferralsSortInput;
1045
1679
  page: adminSchema.IAdminPageInput;
1046
1680
  }>>;
1047
- useFetchAdminReferralsPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminReferralsPageQuery, adminSchema.IFetchAdminReferralsPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminReferralsPageQuery, adminSchema.Exact<{
1681
+ useFetchAdminReferralsPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminReferralsPageQuery, adminSchema.Exact<{
1682
+ filter: adminSchema.IReferralsFilterInput;
1683
+ sort: adminSchema.IReferralsSortInput;
1684
+ page: adminSchema.IAdminPageInput;
1685
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminReferralsPageQuery, adminSchema.Exact<{
1048
1686
  filter: adminSchema.IReferralsFilterInput;
1049
1687
  sort: adminSchema.IReferralsSortInput;
1050
1688
  page: adminSchema.IAdminPageInput;
1051
1689
  }>>;
1052
- useFetchAdminUsersPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminUsersPageQuery, adminSchema.IFetchAdminUsersPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminUsersPageQuery, adminSchema.Exact<{
1690
+ useFetchAdminUsersPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminUsersPageQuery, adminSchema.Exact<{
1691
+ filter: adminSchema.IUsersFilterInput;
1692
+ sort: adminSchema.IUsersSortInput;
1693
+ page: adminSchema.IAdminPageInput;
1694
+ }>>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminUsersPageQuery, adminSchema.Exact<{
1053
1695
  filter: adminSchema.IUsersFilterInput;
1054
1696
  sort: adminSchema.IUsersSortInput;
1055
1697
  page: adminSchema.IAdminPageInput;
1056
1698
  }>>;
1057
- useFetchAdminUsersPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminUsersPageQuery, adminSchema.IFetchAdminUsersPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminUsersPageQuery, adminSchema.Exact<{
1699
+ useFetchAdminUsersPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminUsersPageQuery, adminSchema.Exact<{
1700
+ filter: adminSchema.IUsersFilterInput;
1701
+ sort: adminSchema.IUsersSortInput;
1702
+ page: adminSchema.IAdminPageInput;
1703
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminUsersPageQuery, adminSchema.Exact<{
1058
1704
  filter: adminSchema.IUsersFilterInput;
1059
1705
  sort: adminSchema.IUsersSortInput;
1060
1706
  page: adminSchema.IAdminPageInput;
1061
1707
  }>>;
1062
- useFetchAdminXpPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminXpPageQuery, adminSchema.IFetchAdminXpPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminXpPageQuery, adminSchema.Exact<{
1708
+ useFetchAdminXpPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminXpPageQuery, adminSchema.Exact<{
1709
+ filter: adminSchema.IXpFilterInput;
1710
+ sort: adminSchema.IXpSortInput;
1711
+ page: adminSchema.IAdminPageInput;
1712
+ }>>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminXpPageQuery, adminSchema.Exact<{
1063
1713
  filter: adminSchema.IXpFilterInput;
1064
1714
  sort: adminSchema.IXpSortInput;
1065
1715
  page: adminSchema.IAdminPageInput;
1066
1716
  }>>;
1067
- useFetchAdminXpPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminXpPageQuery, adminSchema.IFetchAdminXpPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminXpPageQuery, adminSchema.Exact<{
1717
+ useFetchAdminXpPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminXpPageQuery, adminSchema.Exact<{
1718
+ filter: adminSchema.IXpFilterInput;
1719
+ sort: adminSchema.IXpSortInput;
1720
+ page: adminSchema.IAdminPageInput;
1721
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminXpPageQuery, adminSchema.Exact<{
1068
1722
  filter: adminSchema.IXpFilterInput;
1069
1723
  sort: adminSchema.IXpSortInput;
1070
1724
  page: adminSchema.IAdminPageInput;
1071
1725
  }>>;
1072
- useFetchBlockchainsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<adminSchema.IFetchBlockchainsQuery, adminSchema.IFetchBlockchainsQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchBlockchainsQuery, adminSchema.Exact<{
1726
+ useFetchBlockchainsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<adminSchema.IFetchBlockchainsQuery, adminSchema.Exact<{
1727
+ [key: string]: never;
1728
+ }>> | undefined): import("@apollo/client").QueryResult<adminSchema.IFetchBlockchainsQuery, adminSchema.Exact<{
1073
1729
  [key: string]: never;
1074
1730
  }>>;
1075
- useFetchBlockchainsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchBlockchainsQuery, adminSchema.IFetchBlockchainsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchBlockchainsQuery, adminSchema.Exact<{
1731
+ useFetchBlockchainsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchBlockchainsQuery, adminSchema.Exact<{
1732
+ [key: string]: never;
1733
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchBlockchainsQuery, adminSchema.Exact<{
1076
1734
  [key: string]: never;
1077
1735
  }>>;
1078
- IReftypeColor: typeof adminSchema.IReftypeColor;
1079
1736
  ISortDirection: typeof adminSchema.ISortDirection;
1080
1737
  CreateReferralTypeDocument: import("graphql").DocumentNode;
1081
1738
  CreateTierDocument: import("graphql").DocumentNode;