@ludo.ninja/api 2.8.87 → 2.8.89

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 (38) 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 +33 -33
  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 +52 -52
  19. package/build/graphql_tools/__generated__/identityHost/schema.js +32 -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 -7
  25. package/build/graphql_tools/__generated__/opportunitiesHost/schema.js +11 -11
  26. package/build/graphql_tools/__generated__/preferencesHost/schema.d.ts +2 -2
  27. package/build/graphql_tools/__generated__/preferencesHost/schema.js +23 -23
  28. package/build/graphql_tools/__generated__/searchHost/schema.d.ts +48 -48
  29. package/build/graphql_tools/__generated__/searchHost/schema.js +33 -33
  30. package/build/graphql_tools/__generated__/tapHost/schema.d.ts +14 -8
  31. package/build/graphql_tools/__generated__/tapHost/schema.js +18 -12
  32. package/build/hosts/index.d.ts +1 -1
  33. package/build/hosts/index.js +1 -1
  34. package/build/index.d.ts +1222 -573
  35. package/package.json +1 -1
  36. package/src/graphql_tools/__generated__/tapHost/schema.ts +14 -2
  37. package/src/hosts/index.ts +1 -1
  38. 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"]>;
159
- }>>;
160
- useFetchCollectionsByIdsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFetchCollectionsByIdsQuery, searchSchema.IFetchCollectionsByIdsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFetchCollectionsByIdsQuery, searchSchema.Exact<{
161
- collectionIds: Array<searchSchema.Scalars["String"]>;
162
- }>>;
163
- useFetchCreationsByTypeQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFetchCreationsByTypeQuery, searchSchema.IFetchCreationsByTypeQueryVariables>): import("@apollo/client").QueryResult<searchSchema.IFetchCreationsByTypeQuery, searchSchema.Exact<{
164
- itemType: searchSchema.Scalars["String"];
165
- page?: searchSchema.Maybe<searchSchema.IPageInput>;
166
- }>>;
167
- useFetchCreationsByTypeLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFetchCreationsByTypeQuery, searchSchema.IFetchCreationsByTypeQueryVariables>): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFetchCreationsByTypeQuery, searchSchema.Exact<{
168
- itemType: searchSchema.Scalars["String"];
169
- page?: searchSchema.Maybe<searchSchema.IPageInput>;
170
- }>>;
171
- useFetchDynamicAssetLikesQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFetchDynamicAssetLikesQuery, searchSchema.IFetchDynamicAssetLikesQueryVariables>): import("@apollo/client").QueryResult<searchSchema.IFetchDynamicAssetLikesQuery, searchSchema.Exact<{
172
- assetId: searchSchema.Scalars["String"];
173
- }>>;
174
- useFetchDynamicAssetLikesLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFetchDynamicAssetLikesQuery, searchSchema.IFetchDynamicAssetLikesQueryVariables>): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFetchDynamicAssetLikesQuery, searchSchema.Exact<{
175
- assetId: searchSchema.Scalars["String"];
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"]>;
217
+ page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
182
218
  }>>;
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>;
323
+ page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
222
324
  }>>;
223
- useFindProfilesByNameLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFindProfilesByNameQuery, searchSchema.IFindProfilesByNameQueryVariables>): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFindProfilesByNameQuery, searchSchema.Exact<{
224
- name: searchSchema.Scalars["String"];
225
- page?: searchSchema.Maybe<searchSchema.IPageInput>;
226
- }>>;
227
- useFindUserCreationsQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFindUserCreationsQuery, searchSchema.IFindUserCreationsQueryVariables>): import("@apollo/client").QueryResult<searchSchema.IFindUserCreationsQuery, searchSchema.Exact<{
228
- ownerId: searchSchema.Scalars["String"];
325
+ useFindCreationsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFindCreationsQuery, searchSchema.Exact<{
326
+ term: string;
327
+ input: searchSchema.ICreationFilterInput;
328
+ page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
329
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFindCreationsQuery, searchSchema.Exact<{
330
+ term: string;
331
+ input: searchSchema.ICreationFilterInput;
332
+ page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
333
+ }>>;
334
+ useFindProfilesByNameQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFindProfilesByNameQuery, searchSchema.Exact<{
335
+ name: string;
336
+ page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
337
+ }>>): import("@apollo/client").QueryResult<searchSchema.IFindProfilesByNameQuery, searchSchema.Exact<{
338
+ name: string;
339
+ page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
340
+ }>>;
341
+ useFindProfilesByNameLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<searchSchema.IFindProfilesByNameQuery, searchSchema.Exact<{
342
+ name: string;
343
+ page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
344
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFindProfilesByNameQuery, searchSchema.Exact<{
345
+ name: string;
346
+ page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
347
+ }>>;
348
+ useFindUserCreationsQuery(baseOptions: import("@apollo/client").QueryHookOptions<searchSchema.IFindUserCreationsQuery, searchSchema.Exact<{
349
+ ownerId: string;
350
+ input: searchSchema.ICreationFilterInput;
351
+ page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
352
+ }>>): import("@apollo/client").QueryResult<searchSchema.IFindUserCreationsQuery, searchSchema.Exact<{
353
+ ownerId: string;
229
354
  input: searchSchema.ICreationFilterInput;
230
- page?: searchSchema.Maybe<searchSchema.IPageInput>;
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;
234
359
  input: searchSchema.ICreationFilterInput;
235
- page?: searchSchema.Maybe<searchSchema.IPageInput>;
360
+ page?: searchSchema.Maybe<searchSchema.IPageInput> | undefined;
361
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<searchSchema.IFindUserCreationsQuery, searchSchema.Exact<{
362
+ ownerId: string;
363
+ input: searchSchema.ICreationFilterInput;
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,35 +501,55 @@ 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
- useOpenOpportunityMutation(baseOptions?: import("@apollo/client").MutationHookOptions<opportunitiesSchema.IOpenOpportunityMutation, opportunitiesSchema.IOpenOpportunityMutationVariables>): import("@apollo/client").MutationTuple<opportunitiesSchema.IOpenOpportunityMutation, opportunitiesSchema.Exact<{
341
- 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;
342
523
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
343
- useFetchOpportunitiesByIdsQuery(baseOptions: import("@apollo/client").QueryHookOptions<opportunitiesSchema.IFetchOpportunitiesByIdsQuery, opportunitiesSchema.IFetchOpportunitiesByIdsQueryVariables>): import("@apollo/client").QueryResult<opportunitiesSchema.IFetchOpportunitiesByIdsQuery, opportunitiesSchema.Exact<{
344
- 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[];
345
528
  }>>;
346
- useFetchOpportunitiesByIdsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<opportunitiesSchema.IFetchOpportunitiesByIdsQuery, opportunitiesSchema.IFetchOpportunitiesByIdsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<opportunitiesSchema.IFetchOpportunitiesByIdsQuery, opportunitiesSchema.Exact<{
347
- 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[];
348
533
  }>>;
349
- 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<{
350
537
  [key: string]: never;
351
538
  }>>;
352
- 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<{
353
542
  [key: string]: never;
354
543
  }>>;
355
- useFetchOpportunitiesQuery(baseOptions?: import("@apollo/client").QueryHookOptions<opportunitiesSchema.IFetchOpportunitiesQuery, opportunitiesSchema.IFetchOpportunitiesQueryVariables>): import("@apollo/client").QueryResult<opportunitiesSchema.IFetchOpportunitiesQuery, opportunitiesSchema.Exact<{
356
- 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;
357
548
  }>>;
358
- useFetchOpportunitiesLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<opportunitiesSchema.IFetchOpportunitiesQuery, opportunitiesSchema.IFetchOpportunitiesQueryVariables>): import("@apollo/client").LazyQueryResultTuple<opportunitiesSchema.IFetchOpportunitiesQuery, opportunitiesSchema.Exact<{
359
- 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;
360
553
  }>>;
361
554
  DislikeOpportunityDocument: import("graphql").DocumentNode;
362
555
  LikeOpportunityDocument: import("graphql").DocumentNode;
@@ -365,139 +558,236 @@ declare const schema: {
365
558
  FetchOpportunitiesByIdsDocument: import("graphql").DocumentNode;
366
559
  FetchOpportunitiesForProfileDocument: import("graphql").DocumentNode;
367
560
  FetchOpportunitiesDocument: import("graphql").DocumentNode;
368
- useDeleteGalleryBannerMutation(baseOptions?: import("@apollo/client").MutationHookOptions<mediasSchema.IDeleteGalleryBannerMutation, mediasSchema.IDeleteGalleryBannerMutationVariables>): import("@apollo/client").MutationTuple<mediasSchema.IDeleteGalleryBannerMutation, mediasSchema.Exact<{
369
- galleryId: mediasSchema.Scalars["ID"];
370
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
371
- useUploadGalleryBannerMutation(baseOptions?: import("@apollo/client").MutationHookOptions<mediasSchema.IUploadGalleryBannerMutation, mediasSchema.IUploadGalleryBannerMutationVariables>): import("@apollo/client").MutationTuple<mediasSchema.IUploadGalleryBannerMutation, mediasSchema.Exact<{
372
- galleryId: mediasSchema.Scalars["ID"];
373
- file: mediasSchema.Scalars["Upload"];
374
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
375
- useFetchUserpicQuery(baseOptions: import("@apollo/client").QueryHookOptions<mediasSchema.IFetchUserpicQuery, mediasSchema.IFetchUserpicQueryVariables>): import("@apollo/client").QueryResult<mediasSchema.IFetchUserpicQuery, mediasSchema.Exact<{
376
- userId: mediasSchema.Scalars["ID"];
377
- }>>;
378
- useFetchUserpicLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<mediasSchema.IFetchUserpicQuery, mediasSchema.IFetchUserpicQueryVariables>): import("@apollo/client").LazyQueryResultTuple<mediasSchema.IFetchUserpicQuery, mediasSchema.Exact<{
379
- 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;
380
582
  }>>;
381
583
  DeleteGalleryBannerDocument: import("graphql").DocumentNode;
382
584
  UploadGalleryBannerDocument: import("graphql").DocumentNode;
383
585
  FetchUserpicDocument: import("graphql").DocumentNode;
384
- useAddWalletElrondMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.IAddWalletElrondMutation, identitySchema.IAddWalletElrondMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.IAddWalletElrondMutation, identitySchema.Exact<{
385
- signature: identitySchema.Scalars["String"];
386
- address: identitySchema.Scalars["String"];
387
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
388
- useAddWalletFlowMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.IAddWalletFlowMutation, identitySchema.IAddWalletFlowMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.IAddWalletFlowMutation, identitySchema.Exact<{
389
- signature: identitySchema.Scalars["String"];
390
- address: identitySchema.Scalars["String"];
391
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
392
- useAddWalletMetamaskMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.IAddWalletMetamaskMutation, identitySchema.IAddWalletMetamaskMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.IAddWalletMetamaskMutation, identitySchema.Exact<{
393
- signature: identitySchema.Scalars["String"];
394
- address: identitySchema.Scalars["String"];
395
- chainId: identitySchema.Scalars["String"];
396
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
397
- useAddWalletSolanaMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.IAddWalletSolanaMutation, identitySchema.IAddWalletSolanaMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.IAddWalletSolanaMutation, identitySchema.Exact<{
398
- signature: identitySchema.Scalars["String"];
399
- pubkey: identitySchema.Scalars["String"];
400
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
401
- useAddWalletTezosMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.IAddWalletTezosMutation, identitySchema.IAddWalletTezosMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.IAddWalletTezosMutation, identitySchema.Exact<{
402
- signature: identitySchema.Scalars["String"];
403
- pubkey: identitySchema.Scalars["String"];
404
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
405
- 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<{
406
626
  request: identitySchema.ICheckTonProofRequest;
407
627
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
408
- 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<{
409
629
  [key: string]: never;
410
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
411
- useCreateNonceMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.ICreateNonceMutation, identitySchema.ICreateNonceMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.ICreateNonceMutation, identitySchema.Exact<{
412
- address: identitySchema.Scalars["String"];
413
- blockchain: identitySchema.Scalars["String"];
414
- chainId?: identitySchema.Maybe<identitySchema.Scalars["String"]>;
415
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
416
- 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<{
417
631
  [key: string]: never;
418
632
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
419
- useGenerateNewInviteCodesMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.IGenerateNewInviteCodesMutation, identitySchema.IGenerateNewInviteCodesMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.IGenerateNewInviteCodesMutation, identitySchema.Exact<{
420
- codesNum: identitySchema.Scalars["Int"];
421
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
422
- useUseInviteCodeMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.IUseInviteCodeMutation, identitySchema.IUseInviteCodeMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.IUseInviteCodeMutation, identitySchema.Exact<{
423
- inviteCode: identitySchema.Scalars["String"];
424
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
425
- useRemoveWalletMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.IRemoveWalletMutation, identitySchema.IRemoveWalletMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.IRemoveWalletMutation, identitySchema.Exact<{
426
- blockchain: identitySchema.Scalars["String"];
427
- address: identitySchema.Scalars["String"];
428
- chainId?: identitySchema.Maybe<identitySchema.Scalars["String"]>;
429
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
430
- useSaveEmailOfJoinerMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.ISaveEmailOfJoinerMutation, identitySchema.ISaveEmailOfJoinerMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.ISaveEmailOfJoinerMutation, identitySchema.Exact<{
431
- email: identitySchema.Scalars["String"];
432
- isSubscribed: identitySchema.Scalars["Boolean"];
433
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
434
- useSetMainWalletMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.ISetMainWalletMutation, identitySchema.ISetMainWalletMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.ISetMainWalletMutation, identitySchema.Exact<{
435
- blockchain: identitySchema.Scalars["String"];
436
- address: identitySchema.Scalars["String"];
437
- 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;
438
641
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
439
- useSignInAdminMetamaskMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.ISignInAdminMetamaskMutation, identitySchema.ISignInAdminMetamaskMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.ISignInAdminMetamaskMutation, identitySchema.Exact<{
440
- signature: identitySchema.Scalars["String"];
441
- address: identitySchema.Scalars["String"];
442
- chainId: identitySchema.Scalars["String"];
443
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
444
- useSignInElrondMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.ISignInElrondMutation, identitySchema.ISignInElrondMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.ISignInElrondMutation, identitySchema.Exact<{
445
- signature: identitySchema.Scalars["String"];
446
- address: identitySchema.Scalars["String"];
447
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
448
- useSignInFlowMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.ISignInFlowMutation, identitySchema.ISignInFlowMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.ISignInFlowMutation, identitySchema.Exact<{
449
- signature: identitySchema.Scalars["String"];
450
- address: identitySchema.Scalars["String"];
451
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
452
- useSignInMetamaskMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.ISignInMetamaskMutation, identitySchema.ISignInMetamaskMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.ISignInMetamaskMutation, identitySchema.Exact<{
453
- signature: identitySchema.Scalars["String"];
454
- address: identitySchema.Scalars["String"];
455
- chainId: identitySchema.Scalars["String"];
456
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
457
- useSignInSolanaMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.ISignInSolanaMutation, identitySchema.ISignInSolanaMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.ISignInSolanaMutation, identitySchema.Exact<{
458
- signature: identitySchema.Scalars["String"];
459
- pubkey: identitySchema.Scalars["String"];
460
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
461
- useSignInTezosMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.ISignInTezosMutation, identitySchema.ISignInTezosMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.ISignInTezosMutation, identitySchema.Exact<{
462
- signature: identitySchema.Scalars["String"];
463
- 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;
464
646
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
465
- 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<{
466
729
  request: identitySchema.ICheckTonProofRequest;
467
- restore?: identitySchema.Maybe<identitySchema.Scalars["Boolean"]>;
468
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
469
- useUpdateProfileMutation(baseOptions?: import("@apollo/client").MutationHookOptions<identitySchema.IUpdateProfileMutation, identitySchema.IUpdateProfileMutationVariables>): import("@apollo/client").MutationTuple<identitySchema.IUpdateProfileMutation, identitySchema.Exact<{
470
- username?: identitySchema.Maybe<identitySchema.Scalars["String"]>;
471
- about?: identitySchema.Maybe<identitySchema.Scalars["String"]>;
472
- facebook?: identitySchema.Maybe<identitySchema.Scalars["String"]>;
473
- twitter?: identitySchema.Maybe<identitySchema.Scalars["String"]>;
474
- instagram?: identitySchema.Maybe<identitySchema.Scalars["String"]>;
475
- website?: identitySchema.Maybe<identitySchema.Scalars["String"]>;
476
- showNsfw?: identitySchema.Maybe<identitySchema.Scalars["Boolean"]>;
477
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
478
- useFetchMultiversXAuditQuery(baseOptions: import("@apollo/client").QueryHookOptions<identitySchema.IFetchMultiversXAuditQuery, identitySchema.IFetchMultiversXAuditQueryVariables>): import("@apollo/client").QueryResult<identitySchema.IFetchMultiversXAuditQuery, identitySchema.Exact<{
479
- wallet: identitySchema.Scalars["String"];
480
- }>>;
481
- useFetchMultiversXAuditLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<identitySchema.IFetchMultiversXAuditQuery, identitySchema.IFetchMultiversXAuditQueryVariables>): import("@apollo/client").LazyQueryResultTuple<identitySchema.IFetchMultiversXAuditQuery, identitySchema.Exact<{
482
- wallet: identitySchema.Scalars["String"];
483
- }>>;
484
- 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
+ useFetchMultiversXAuditQuery(baseOptions: import("@apollo/client").QueryHookOptions<identitySchema.IFetchMultiversXAuditQuery, identitySchema.Exact<{
753
+ wallet: string;
754
+ }>>): import("@apollo/client").QueryResult<identitySchema.IFetchMultiversXAuditQuery, identitySchema.Exact<{
755
+ wallet: string;
756
+ }>>;
757
+ useFetchMultiversXAuditLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<identitySchema.IFetchMultiversXAuditQuery, identitySchema.Exact<{
758
+ wallet: string;
759
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<identitySchema.IFetchMultiversXAuditQuery, identitySchema.Exact<{
760
+ wallet: string;
761
+ }>>;
762
+ useFetchMyProfileV2Query(baseOptions?: import("@apollo/client").QueryHookOptions<identitySchema.IFetchMyProfileV2Query, identitySchema.Exact<{
763
+ [key: string]: never;
764
+ }>> | undefined): import("@apollo/client").QueryResult<identitySchema.IFetchMyProfileV2Query, identitySchema.Exact<{
485
765
  [key: string]: never;
486
766
  }>>;
487
- useFetchMyProfileV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<identitySchema.IFetchMyProfileV2Query, identitySchema.IFetchMyProfileV2QueryVariables>): import("@apollo/client").LazyQueryResultTuple<identitySchema.IFetchMyProfileV2Query, identitySchema.Exact<{
767
+ useFetchMyProfileV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<identitySchema.IFetchMyProfileV2Query, identitySchema.Exact<{
768
+ [key: string]: never;
769
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<identitySchema.IFetchMyProfileV2Query, identitySchema.Exact<{
488
770
  [key: string]: never;
489
771
  }>>;
490
- useFetchProfileQuery(baseOptions: import("@apollo/client").QueryHookOptions<identitySchema.IFetchProfileQuery, identitySchema.IFetchProfileQueryVariables>): import("@apollo/client").QueryResult<identitySchema.IFetchProfileQuery, identitySchema.Exact<{
491
- userId: identitySchema.Scalars["ID"];
772
+ useFetchProfileQuery(baseOptions: import("@apollo/client").QueryHookOptions<identitySchema.IFetchProfileQuery, identitySchema.Exact<{
773
+ userId: string;
774
+ }>>): import("@apollo/client").QueryResult<identitySchema.IFetchProfileQuery, identitySchema.Exact<{
775
+ userId: string;
492
776
  }>>;
493
- useFetchProfileLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<identitySchema.IFetchProfileQuery, identitySchema.IFetchProfileQueryVariables>): import("@apollo/client").LazyQueryResultTuple<identitySchema.IFetchProfileQuery, identitySchema.Exact<{
494
- userId: identitySchema.Scalars["ID"];
777
+ useFetchProfileLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<identitySchema.IFetchProfileQuery, identitySchema.Exact<{
778
+ userId: string;
779
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<identitySchema.IFetchProfileQuery, identitySchema.Exact<{
780
+ userId: string;
495
781
  }>>;
496
- useFetchUserWalletsQuery(baseOptions: import("@apollo/client").QueryHookOptions<identitySchema.IFetchUserWalletsQuery, identitySchema.IFetchUserWalletsQueryVariables>): import("@apollo/client").QueryResult<identitySchema.IFetchUserWalletsQuery, identitySchema.Exact<{
497
- userId: identitySchema.Scalars["ID"];
782
+ useFetchUserWalletsQuery(baseOptions: import("@apollo/client").QueryHookOptions<identitySchema.IFetchUserWalletsQuery, identitySchema.Exact<{
783
+ userId: string;
784
+ }>>): import("@apollo/client").QueryResult<identitySchema.IFetchUserWalletsQuery, identitySchema.Exact<{
785
+ userId: string;
498
786
  }>>;
499
- useFetchUserWalletsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<identitySchema.IFetchUserWalletsQuery, identitySchema.IFetchUserWalletsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<identitySchema.IFetchUserWalletsQuery, identitySchema.Exact<{
500
- userId: identitySchema.Scalars["ID"];
787
+ useFetchUserWalletsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<identitySchema.IFetchUserWalletsQuery, identitySchema.Exact<{
788
+ userId: string;
789
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<identitySchema.IFetchUserWalletsQuery, identitySchema.Exact<{
790
+ userId: string;
501
791
  }>>;
502
792
  IRole: typeof identitySchema.IRole;
503
793
  AddWalletElrondDocument: import("graphql").DocumentNode;
@@ -526,91 +816,157 @@ declare const schema: {
526
816
  FetchMyProfileV2Document: import("graphql").DocumentNode;
527
817
  FetchProfileDocument: import("graphql").DocumentNode;
528
818
  FetchUserWalletsDocument: import("graphql").DocumentNode;
529
- useAddAssetsToGalleryV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IAddAssetsToGalleryV2Mutation, galleriesSchema.IAddAssetsToGalleryV2MutationVariables>): import("@apollo/client").MutationTuple<galleriesSchema.IAddAssetsToGalleryV2Mutation, galleriesSchema.Exact<{
530
- galleryId: galleriesSchema.Scalars["ID"];
531
- assetIds: Array<galleriesSchema.Scalars["String"]>;
532
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
533
- useAddCollectionsToGalleryV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IAddCollectionsToGalleryV2Mutation, galleriesSchema.IAddCollectionsToGalleryV2MutationVariables>): import("@apollo/client").MutationTuple<galleriesSchema.IAddCollectionsToGalleryV2Mutation, galleriesSchema.Exact<{
534
- galleryId: galleriesSchema.Scalars["ID"];
535
- collectionIds: Array<galleriesSchema.Scalars["String"]>;
536
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
537
- useAddCreationsToGalleryV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IAddCreationsToGalleryV2Mutation, galleriesSchema.IAddCreationsToGalleryV2MutationVariables>): import("@apollo/client").MutationTuple<galleriesSchema.IAddCreationsToGalleryV2Mutation, galleriesSchema.Exact<{
538
- galleryId: galleriesSchema.Scalars["ID"];
539
- creationIds: Array<galleriesSchema.Scalars["String"]>;
540
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
541
- useCreateFavoriteListV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.ICreateFavoriteListV2Mutation, galleriesSchema.ICreateFavoriteListV2MutationVariables>): import("@apollo/client").MutationTuple<galleriesSchema.ICreateFavoriteListV2Mutation, galleriesSchema.Exact<{
542
- name: galleriesSchema.Scalars["String"];
543
- description?: galleriesSchema.Maybe<galleriesSchema.Scalars["String"]>;
544
- publicAccessible?: galleriesSchema.Maybe<galleriesSchema.Scalars["Boolean"]>;
545
- creationIds?: galleriesSchema.Maybe<Array<galleriesSchema.Maybe<galleriesSchema.Scalars["String"]>>>;
546
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
547
- useCreateGalleryV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.ICreateGalleryV2Mutation, galleriesSchema.ICreateGalleryV2MutationVariables>): import("@apollo/client").MutationTuple<galleriesSchema.ICreateGalleryV2Mutation, galleriesSchema.Exact<{
548
- name: galleriesSchema.Scalars["String"];
549
- description?: galleriesSchema.Maybe<galleriesSchema.Scalars["String"]>;
550
- publicAccessible?: galleriesSchema.Maybe<galleriesSchema.Scalars["Boolean"]>;
551
- creationIds?: galleriesSchema.Maybe<Array<galleriesSchema.Maybe<galleriesSchema.Scalars["String"]>>>;
552
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
553
- useDeleteGalleryMutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IDeleteGalleryMutation, galleriesSchema.IDeleteGalleryMutationVariables>): import("@apollo/client").MutationTuple<galleriesSchema.IDeleteGalleryMutation, galleriesSchema.Exact<{
554
- galleryId: galleriesSchema.Scalars["ID"];
555
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
556
- useEditGalleryMutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IEditGalleryMutation, galleriesSchema.IEditGalleryMutationVariables>): import("@apollo/client").MutationTuple<galleriesSchema.IEditGalleryMutation, galleriesSchema.Exact<{
557
- galleryId: galleriesSchema.Scalars["ID"];
558
- name?: galleriesSchema.Maybe<galleriesSchema.Scalars["String"]>;
559
- description?: galleriesSchema.Maybe<galleriesSchema.Scalars["String"]>;
560
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
561
- useRemoveAssetFromGalleryV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IRemoveAssetFromGalleryV2Mutation, galleriesSchema.IRemoveAssetFromGalleryV2MutationVariables>): import("@apollo/client").MutationTuple<galleriesSchema.IRemoveAssetFromGalleryV2Mutation, galleriesSchema.Exact<{
562
- galleryId: galleriesSchema.Scalars["ID"];
563
- assetId: galleriesSchema.Scalars["String"];
564
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
565
- useRemoveCollectionFromGalleryV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IRemoveCollectionFromGalleryV2Mutation, galleriesSchema.IRemoveCollectionFromGalleryV2MutationVariables>): import("@apollo/client").MutationTuple<galleriesSchema.IRemoveCollectionFromGalleryV2Mutation, galleriesSchema.Exact<{
566
- galleryId: galleriesSchema.Scalars["ID"];
567
- collectionId: galleriesSchema.Scalars["String"];
568
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
569
- useRemoveCreationFromGalleryV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IRemoveCreationFromGalleryV2Mutation, galleriesSchema.IRemoveCreationFromGalleryV2MutationVariables>): import("@apollo/client").MutationTuple<galleriesSchema.IRemoveCreationFromGalleryV2Mutation, galleriesSchema.Exact<{
570
- galleryId: galleriesSchema.Scalars["ID"];
571
- creationId: galleriesSchema.Scalars["String"];
572
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
573
- useFetchGalleryV2Query(baseOptions: import("@apollo/client").QueryHookOptions<galleriesSchema.IFetchGalleryV2Query, galleriesSchema.IFetchGalleryV2QueryVariables>): import("@apollo/client").QueryResult<galleriesSchema.IFetchGalleryV2Query, galleriesSchema.Exact<{
574
- galleryId: galleriesSchema.Scalars["String"];
575
- }>>;
576
- useFetchGalleryV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<galleriesSchema.IFetchGalleryV2Query, galleriesSchema.IFetchGalleryV2QueryVariables>): import("@apollo/client").LazyQueryResultTuple<galleriesSchema.IFetchGalleryV2Query, galleriesSchema.Exact<{
577
- galleryId: galleriesSchema.Scalars["String"];
578
- }>>;
579
- useFetchMyFavoritesV2Query(baseOptions: import("@apollo/client").QueryHookOptions<galleriesSchema.IFetchMyFavoritesV2Query, galleriesSchema.IFetchMyFavoritesV2QueryVariables>): import("@apollo/client").QueryResult<galleriesSchema.IFetchMyFavoritesV2Query, galleriesSchema.Exact<{
580
- pageSize: galleriesSchema.Scalars["Int"];
581
- pageToken?: galleriesSchema.Maybe<galleriesSchema.Scalars["String"]>;
582
- }>>;
583
- useFetchMyFavoritesV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<galleriesSchema.IFetchMyFavoritesV2Query, galleriesSchema.IFetchMyFavoritesV2QueryVariables>): import("@apollo/client").LazyQueryResultTuple<galleriesSchema.IFetchMyFavoritesV2Query, galleriesSchema.Exact<{
584
- pageSize: galleriesSchema.Scalars["Int"];
585
- pageToken?: galleriesSchema.Maybe<galleriesSchema.Scalars["String"]>;
586
- }>>;
587
- useFetchMyGalleriesV2Query(baseOptions: import("@apollo/client").QueryHookOptions<galleriesSchema.IFetchMyGalleriesV2Query, galleriesSchema.IFetchMyGalleriesV2QueryVariables>): import("@apollo/client").QueryResult<galleriesSchema.IFetchMyGalleriesV2Query, galleriesSchema.Exact<{
588
- pageSize: galleriesSchema.Scalars["Int"];
589
- pageToken?: galleriesSchema.Maybe<galleriesSchema.Scalars["String"]>;
590
- }>>;
591
- useFetchMyGalleriesV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<galleriesSchema.IFetchMyGalleriesV2Query, galleriesSchema.IFetchMyGalleriesV2QueryVariables>): import("@apollo/client").LazyQueryResultTuple<galleriesSchema.IFetchMyGalleriesV2Query, galleriesSchema.Exact<{
592
- pageSize: galleriesSchema.Scalars["Int"];
593
- pageToken?: galleriesSchema.Maybe<galleriesSchema.Scalars["String"]>;
594
- }>>;
595
- useFetchUserFavoritesV2Query(baseOptions: import("@apollo/client").QueryHookOptions<galleriesSchema.IFetchUserFavoritesV2Query, galleriesSchema.IFetchUserFavoritesV2QueryVariables>): import("@apollo/client").QueryResult<galleriesSchema.IFetchUserFavoritesV2Query, galleriesSchema.Exact<{
596
- userId: galleriesSchema.Scalars["ID"];
597
- pageSize: galleriesSchema.Scalars["Int"];
598
- pageToken?: galleriesSchema.Maybe<galleriesSchema.Scalars["String"]>;
599
- }>>;
600
- useFetchUserFavoritesV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<galleriesSchema.IFetchUserFavoritesV2Query, galleriesSchema.IFetchUserFavoritesV2QueryVariables>): import("@apollo/client").LazyQueryResultTuple<galleriesSchema.IFetchUserFavoritesV2Query, galleriesSchema.Exact<{
601
- userId: galleriesSchema.Scalars["ID"];
602
- pageSize: galleriesSchema.Scalars["Int"];
603
- pageToken?: galleriesSchema.Maybe<galleriesSchema.Scalars["String"]>;
604
- }>>;
605
- useFetchUserGalleriesV2Query(baseOptions: import("@apollo/client").QueryHookOptions<galleriesSchema.IFetchUserGalleriesV2Query, galleriesSchema.IFetchUserGalleriesV2QueryVariables>): import("@apollo/client").QueryResult<galleriesSchema.IFetchUserGalleriesV2Query, galleriesSchema.Exact<{
606
- userId: galleriesSchema.Scalars["ID"];
607
- pageSize: galleriesSchema.Scalars["Int"];
608
- pageToken?: galleriesSchema.Maybe<galleriesSchema.Scalars["String"]>;
609
- }>>;
610
- useFetchUserGalleriesV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<galleriesSchema.IFetchUserGalleriesV2Query, galleriesSchema.IFetchUserGalleriesV2QueryVariables>): import("@apollo/client").LazyQueryResultTuple<galleriesSchema.IFetchUserGalleriesV2Query, galleriesSchema.Exact<{
611
- userId: galleriesSchema.Scalars["ID"];
612
- pageSize: galleriesSchema.Scalars["Int"];
613
- pageToken?: galleriesSchema.Maybe<galleriesSchema.Scalars["String"]>;
819
+ useAddAssetsToGalleryV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IAddAssetsToGalleryV2Mutation, galleriesSchema.Exact<{
820
+ galleryId: string;
821
+ assetIds: string[];
822
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<galleriesSchema.IAddAssetsToGalleryV2Mutation, galleriesSchema.Exact<{
823
+ galleryId: string;
824
+ assetIds: string[];
825
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
826
+ useAddCollectionsToGalleryV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IAddCollectionsToGalleryV2Mutation, galleriesSchema.Exact<{
827
+ galleryId: string;
828
+ collectionIds: string[];
829
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<galleriesSchema.IAddCollectionsToGalleryV2Mutation, galleriesSchema.Exact<{
830
+ galleryId: string;
831
+ collectionIds: string[];
832
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
833
+ useAddCreationsToGalleryV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IAddCreationsToGalleryV2Mutation, galleriesSchema.Exact<{
834
+ galleryId: string;
835
+ creationIds: string[];
836
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<galleriesSchema.IAddCreationsToGalleryV2Mutation, galleriesSchema.Exact<{
837
+ galleryId: string;
838
+ creationIds: string[];
839
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
840
+ useCreateFavoriteListV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.ICreateFavoriteListV2Mutation, galleriesSchema.Exact<{
841
+ name: string;
842
+ description?: galleriesSchema.Maybe<string> | undefined;
843
+ publicAccessible?: galleriesSchema.Maybe<boolean> | undefined;
844
+ creationIds?: galleriesSchema.Maybe<galleriesSchema.Maybe<string>[]> | undefined;
845
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<galleriesSchema.ICreateFavoriteListV2Mutation, galleriesSchema.Exact<{
846
+ name: string;
847
+ description?: galleriesSchema.Maybe<string> | undefined;
848
+ publicAccessible?: galleriesSchema.Maybe<boolean> | undefined;
849
+ creationIds?: galleriesSchema.Maybe<galleriesSchema.Maybe<string>[]> | undefined;
850
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
851
+ useCreateGalleryV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.ICreateGalleryV2Mutation, galleriesSchema.Exact<{
852
+ name: string;
853
+ description?: galleriesSchema.Maybe<string> | undefined;
854
+ publicAccessible?: galleriesSchema.Maybe<boolean> | undefined;
855
+ creationIds?: galleriesSchema.Maybe<galleriesSchema.Maybe<string>[]> | undefined;
856
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<galleriesSchema.ICreateGalleryV2Mutation, galleriesSchema.Exact<{
857
+ name: string;
858
+ description?: galleriesSchema.Maybe<string> | undefined;
859
+ publicAccessible?: galleriesSchema.Maybe<boolean> | undefined;
860
+ creationIds?: galleriesSchema.Maybe<galleriesSchema.Maybe<string>[]> | undefined;
861
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
862
+ useDeleteGalleryMutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IDeleteGalleryMutation, galleriesSchema.Exact<{
863
+ galleryId: string;
864
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<galleriesSchema.IDeleteGalleryMutation, galleriesSchema.Exact<{
865
+ galleryId: string;
866
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
867
+ useEditGalleryMutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IEditGalleryMutation, galleriesSchema.Exact<{
868
+ galleryId: string;
869
+ name?: galleriesSchema.Maybe<string> | undefined;
870
+ description?: galleriesSchema.Maybe<string> | undefined;
871
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<galleriesSchema.IEditGalleryMutation, galleriesSchema.Exact<{
872
+ galleryId: string;
873
+ name?: galleriesSchema.Maybe<string> | undefined;
874
+ description?: galleriesSchema.Maybe<string> | undefined;
875
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
876
+ useRemoveAssetFromGalleryV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IRemoveAssetFromGalleryV2Mutation, galleriesSchema.Exact<{
877
+ galleryId: string;
878
+ assetId: string;
879
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<galleriesSchema.IRemoveAssetFromGalleryV2Mutation, galleriesSchema.Exact<{
880
+ galleryId: string;
881
+ assetId: string;
882
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
883
+ useRemoveCollectionFromGalleryV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IRemoveCollectionFromGalleryV2Mutation, galleriesSchema.Exact<{
884
+ galleryId: string;
885
+ collectionId: string;
886
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<galleriesSchema.IRemoveCollectionFromGalleryV2Mutation, galleriesSchema.Exact<{
887
+ galleryId: string;
888
+ collectionId: string;
889
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
890
+ useRemoveCreationFromGalleryV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<galleriesSchema.IRemoveCreationFromGalleryV2Mutation, galleriesSchema.Exact<{
891
+ galleryId: string;
892
+ creationId: string;
893
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<galleriesSchema.IRemoveCreationFromGalleryV2Mutation, galleriesSchema.Exact<{
894
+ galleryId: string;
895
+ creationId: string;
896
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
897
+ useFetchGalleryV2Query(baseOptions: import("@apollo/client").QueryHookOptions<galleriesSchema.IFetchGalleryV2Query, galleriesSchema.Exact<{
898
+ galleryId: string;
899
+ }>>): import("@apollo/client").QueryResult<galleriesSchema.IFetchGalleryV2Query, galleriesSchema.Exact<{
900
+ galleryId: string;
901
+ }>>;
902
+ useFetchGalleryV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<galleriesSchema.IFetchGalleryV2Query, galleriesSchema.Exact<{
903
+ galleryId: string;
904
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<galleriesSchema.IFetchGalleryV2Query, galleriesSchema.Exact<{
905
+ galleryId: string;
906
+ }>>;
907
+ useFetchMyFavoritesV2Query(baseOptions: import("@apollo/client").QueryHookOptions<galleriesSchema.IFetchMyFavoritesV2Query, galleriesSchema.Exact<{
908
+ pageSize: number;
909
+ pageToken?: galleriesSchema.Maybe<string> | undefined;
910
+ }>>): import("@apollo/client").QueryResult<galleriesSchema.IFetchMyFavoritesV2Query, galleriesSchema.Exact<{
911
+ pageSize: number;
912
+ pageToken?: galleriesSchema.Maybe<string> | undefined;
913
+ }>>;
914
+ useFetchMyFavoritesV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<galleriesSchema.IFetchMyFavoritesV2Query, galleriesSchema.Exact<{
915
+ pageSize: number;
916
+ pageToken?: galleriesSchema.Maybe<string> | undefined;
917
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<galleriesSchema.IFetchMyFavoritesV2Query, galleriesSchema.Exact<{
918
+ pageSize: number;
919
+ pageToken?: galleriesSchema.Maybe<string> | undefined;
920
+ }>>;
921
+ useFetchMyGalleriesV2Query(baseOptions: import("@apollo/client").QueryHookOptions<galleriesSchema.IFetchMyGalleriesV2Query, galleriesSchema.Exact<{
922
+ pageSize: number;
923
+ pageToken?: galleriesSchema.Maybe<string> | undefined;
924
+ }>>): import("@apollo/client").QueryResult<galleriesSchema.IFetchMyGalleriesV2Query, galleriesSchema.Exact<{
925
+ pageSize: number;
926
+ pageToken?: galleriesSchema.Maybe<string> | undefined;
927
+ }>>;
928
+ useFetchMyGalleriesV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<galleriesSchema.IFetchMyGalleriesV2Query, galleriesSchema.Exact<{
929
+ pageSize: number;
930
+ pageToken?: galleriesSchema.Maybe<string> | undefined;
931
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<galleriesSchema.IFetchMyGalleriesV2Query, galleriesSchema.Exact<{
932
+ pageSize: number;
933
+ pageToken?: galleriesSchema.Maybe<string> | undefined;
934
+ }>>;
935
+ useFetchUserFavoritesV2Query(baseOptions: import("@apollo/client").QueryHookOptions<galleriesSchema.IFetchUserFavoritesV2Query, galleriesSchema.Exact<{
936
+ userId: string;
937
+ pageSize: number;
938
+ pageToken?: galleriesSchema.Maybe<string> | undefined;
939
+ }>>): import("@apollo/client").QueryResult<galleriesSchema.IFetchUserFavoritesV2Query, galleriesSchema.Exact<{
940
+ userId: string;
941
+ pageSize: number;
942
+ pageToken?: galleriesSchema.Maybe<string> | undefined;
943
+ }>>;
944
+ useFetchUserFavoritesV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<galleriesSchema.IFetchUserFavoritesV2Query, galleriesSchema.Exact<{
945
+ userId: string;
946
+ pageSize: number;
947
+ pageToken?: galleriesSchema.Maybe<string> | undefined;
948
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<galleriesSchema.IFetchUserFavoritesV2Query, galleriesSchema.Exact<{
949
+ userId: string;
950
+ pageSize: number;
951
+ pageToken?: galleriesSchema.Maybe<string> | undefined;
952
+ }>>;
953
+ useFetchUserGalleriesV2Query(baseOptions: import("@apollo/client").QueryHookOptions<galleriesSchema.IFetchUserGalleriesV2Query, galleriesSchema.Exact<{
954
+ userId: string;
955
+ pageSize: number;
956
+ pageToken?: galleriesSchema.Maybe<string> | undefined;
957
+ }>>): import("@apollo/client").QueryResult<galleriesSchema.IFetchUserGalleriesV2Query, galleriesSchema.Exact<{
958
+ userId: string;
959
+ pageSize: number;
960
+ pageToken?: galleriesSchema.Maybe<string> | undefined;
961
+ }>>;
962
+ useFetchUserGalleriesV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<galleriesSchema.IFetchUserGalleriesV2Query, galleriesSchema.Exact<{
963
+ userId: string;
964
+ pageSize: number;
965
+ pageToken?: galleriesSchema.Maybe<string> | undefined;
966
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<galleriesSchema.IFetchUserGalleriesV2Query, galleriesSchema.Exact<{
967
+ userId: string;
968
+ pageSize: number;
969
+ pageToken?: galleriesSchema.Maybe<string> | undefined;
614
970
  }>>;
615
971
  AddAssetsToGalleryV2Document: import("graphql").DocumentNode;
616
972
  AddCollectionsToGalleryV2Document: import("graphql").DocumentNode;
@@ -627,71 +983,120 @@ declare const schema: {
627
983
  FetchMyGalleriesV2Document: import("graphql").DocumentNode;
628
984
  FetchUserFavoritesV2Document: import("graphql").DocumentNode;
629
985
  FetchUserGalleriesV2Document: import("graphql").DocumentNode;
630
- useHideOpportunityV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<extensionSchema.IHideOpportunityV2Mutation, extensionSchema.IHideOpportunityV2MutationVariables>): import("@apollo/client").MutationTuple<extensionSchema.IHideOpportunityV2Mutation, extensionSchema.Exact<{
631
- opportunityId: extensionSchema.Scalars["ID"];
632
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
633
- useOpenOpportunityV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<extensionSchema.IOpenOpportunityV2Mutation, extensionSchema.IOpenOpportunityV2MutationVariables>): import("@apollo/client").MutationTuple<extensionSchema.IOpenOpportunityV2Mutation, extensionSchema.Exact<{
634
- opportunityId: extensionSchema.Scalars["ID"];
635
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
636
- useVisitPageV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<extensionSchema.IVisitPageV2Mutation, extensionSchema.IVisitPageV2MutationVariables>): import("@apollo/client").MutationTuple<extensionSchema.IVisitPageV2Mutation, extensionSchema.Exact<{
637
- domain: extensionSchema.Scalars["String"];
638
- title: extensionSchema.Scalars["String"];
639
- description?: extensionSchema.Maybe<extensionSchema.Scalars["String"]>;
640
- tags?: extensionSchema.Maybe<Array<extensionSchema.Maybe<extensionSchema.Scalars["String"]>>>;
641
- brandId?: extensionSchema.Maybe<extensionSchema.Scalars["String"]>;
642
- categoryId?: extensionSchema.Maybe<extensionSchema.Scalars["String"]>;
643
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
644
- useFetchCollectionRanksQuery(baseOptions: import("@apollo/client").QueryHookOptions<extensionSchema.IFetchCollectionRanksQuery, extensionSchema.IFetchCollectionRanksQueryVariables>): import("@apollo/client").QueryResult<extensionSchema.IFetchCollectionRanksQuery, extensionSchema.Exact<{
645
- collectionKeys: Array<extensionSchema.ICollectionKey>;
646
- }>>;
647
- useFetchCollectionRanksLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchCollectionRanksQuery, extensionSchema.IFetchCollectionRanksQueryVariables>): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchCollectionRanksQuery, extensionSchema.Exact<{
648
- collectionKeys: Array<extensionSchema.ICollectionKey>;
649
- }>>;
650
- useFetchExtensionBrandsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<extensionSchema.IFetchExtensionBrandsQuery, extensionSchema.IFetchExtensionBrandsQueryVariables>): import("@apollo/client").QueryResult<extensionSchema.IFetchExtensionBrandsQuery, extensionSchema.Exact<{
986
+ useHideOpportunityV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<extensionSchema.IHideOpportunityV2Mutation, extensionSchema.Exact<{
987
+ opportunityId: string;
988
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<extensionSchema.IHideOpportunityV2Mutation, extensionSchema.Exact<{
989
+ opportunityId: string;
990
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
991
+ useOpenOpportunityV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<extensionSchema.IOpenOpportunityV2Mutation, extensionSchema.Exact<{
992
+ opportunityId: string;
993
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<extensionSchema.IOpenOpportunityV2Mutation, extensionSchema.Exact<{
994
+ opportunityId: string;
995
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
996
+ useVisitPageV2Mutation(baseOptions?: import("@apollo/client").MutationHookOptions<extensionSchema.IVisitPageV2Mutation, extensionSchema.Exact<{
997
+ domain: string;
998
+ title: string;
999
+ description?: extensionSchema.Maybe<string> | undefined;
1000
+ tags?: extensionSchema.Maybe<extensionSchema.Maybe<string>[]> | undefined;
1001
+ brandId?: extensionSchema.Maybe<string> | undefined;
1002
+ categoryId?: extensionSchema.Maybe<string> | undefined;
1003
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<extensionSchema.IVisitPageV2Mutation, extensionSchema.Exact<{
1004
+ domain: string;
1005
+ title: string;
1006
+ description?: extensionSchema.Maybe<string> | undefined;
1007
+ tags?: extensionSchema.Maybe<extensionSchema.Maybe<string>[]> | undefined;
1008
+ brandId?: extensionSchema.Maybe<string> | undefined;
1009
+ categoryId?: extensionSchema.Maybe<string> | undefined;
1010
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1011
+ useFetchCollectionRanksQuery(baseOptions: import("@apollo/client").QueryHookOptions<extensionSchema.IFetchCollectionRanksQuery, extensionSchema.Exact<{
1012
+ collectionKeys: extensionSchema.ICollectionKey[];
1013
+ }>>): import("@apollo/client").QueryResult<extensionSchema.IFetchCollectionRanksQuery, extensionSchema.Exact<{
1014
+ collectionKeys: extensionSchema.ICollectionKey[];
1015
+ }>>;
1016
+ useFetchCollectionRanksLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchCollectionRanksQuery, extensionSchema.Exact<{
1017
+ collectionKeys: extensionSchema.ICollectionKey[];
1018
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchCollectionRanksQuery, extensionSchema.Exact<{
1019
+ collectionKeys: extensionSchema.ICollectionKey[];
1020
+ }>>;
1021
+ useFetchExtensionBrandsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<extensionSchema.IFetchExtensionBrandsQuery, extensionSchema.Exact<{
651
1022
  [key: string]: never;
652
- }>>;
653
- useFetchExtensionBrandsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchExtensionBrandsQuery, extensionSchema.IFetchExtensionBrandsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchExtensionBrandsQuery, extensionSchema.Exact<{
1023
+ }>> | undefined): import("@apollo/client").QueryResult<extensionSchema.IFetchExtensionBrandsQuery, extensionSchema.Exact<{
654
1024
  [key: string]: never;
655
1025
  }>>;
656
- useFetchExtensionCategoriesQuery(baseOptions?: import("@apollo/client").QueryHookOptions<extensionSchema.IFetchExtensionCategoriesQuery, extensionSchema.IFetchExtensionCategoriesQueryVariables>): import("@apollo/client").QueryResult<extensionSchema.IFetchExtensionCategoriesQuery, extensionSchema.Exact<{
1026
+ useFetchExtensionBrandsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchExtensionBrandsQuery, extensionSchema.Exact<{
657
1027
  [key: string]: never;
658
- }>>;
659
- useFetchExtensionCategoriesLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchExtensionCategoriesQuery, extensionSchema.IFetchExtensionCategoriesQueryVariables>): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchExtensionCategoriesQuery, extensionSchema.Exact<{
1028
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchExtensionBrandsQuery, extensionSchema.Exact<{
660
1029
  [key: string]: never;
661
1030
  }>>;
662
- useFetchExtensionOpportunitiesV2Query(baseOptions: import("@apollo/client").QueryHookOptions<extensionSchema.IFetchExtensionOpportunitiesV2Query, extensionSchema.IFetchExtensionOpportunitiesV2QueryVariables>): import("@apollo/client").QueryResult<extensionSchema.IFetchExtensionOpportunitiesV2Query, extensionSchema.Exact<{
663
- domain: extensionSchema.Scalars["String"];
664
- brandId?: extensionSchema.Maybe<extensionSchema.Scalars["String"]>;
665
- categoryId?: extensionSchema.Maybe<extensionSchema.Scalars["String"]>;
666
- }>>;
667
- useFetchExtensionOpportunitiesV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchExtensionOpportunitiesV2Query, extensionSchema.IFetchExtensionOpportunitiesV2QueryVariables>): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchExtensionOpportunitiesV2Query, extensionSchema.Exact<{
668
- domain: extensionSchema.Scalars["String"];
669
- brandId?: extensionSchema.Maybe<extensionSchema.Scalars["String"]>;
670
- categoryId?: extensionSchema.Maybe<extensionSchema.Scalars["String"]>;
671
- }>>;
672
- useFetchNftDataQuery(baseOptions: import("@apollo/client").QueryHookOptions<extensionSchema.IFetchNftDataQuery, extensionSchema.IFetchNftDataQueryVariables>): import("@apollo/client").QueryResult<extensionSchema.IFetchNftDataQuery, extensionSchema.Exact<{
673
- blockchain: extensionSchema.Scalars["String"];
674
- contractAddress?: extensionSchema.Maybe<extensionSchema.Scalars["String"]>;
675
- tokenId?: extensionSchema.Maybe<extensionSchema.Scalars["String"]>;
676
- elrondId?: extensionSchema.Maybe<extensionSchema.Scalars["String"]>;
677
- }>>;
678
- useFetchNftDataLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchNftDataQuery, extensionSchema.IFetchNftDataQueryVariables>): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchNftDataQuery, extensionSchema.Exact<{
679
- blockchain: extensionSchema.Scalars["String"];
680
- contractAddress?: extensionSchema.Maybe<extensionSchema.Scalars["String"]>;
681
- tokenId?: extensionSchema.Maybe<extensionSchema.Scalars["String"]>;
682
- elrondId?: extensionSchema.Maybe<extensionSchema.Scalars["String"]>;
683
- }>>;
684
- useFetchNftRanksQuery(baseOptions: import("@apollo/client").QueryHookOptions<extensionSchema.IFetchNftRanksQuery, extensionSchema.IFetchNftRanksQueryVariables>): import("@apollo/client").QueryResult<extensionSchema.IFetchNftRanksQuery, extensionSchema.Exact<{
685
- nftKeys: Array<extensionSchema.INftKey>;
686
- }>>;
687
- useFetchNftRanksLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchNftRanksQuery, extensionSchema.IFetchNftRanksQueryVariables>): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchNftRanksQuery, extensionSchema.Exact<{
688
- nftKeys: Array<extensionSchema.INftKey>;
1031
+ useFetchExtensionCategoriesQuery(baseOptions?: import("@apollo/client").QueryHookOptions<extensionSchema.IFetchExtensionCategoriesQuery, extensionSchema.Exact<{
1032
+ [key: string]: never;
1033
+ }>> | undefined): import("@apollo/client").QueryResult<extensionSchema.IFetchExtensionCategoriesQuery, extensionSchema.Exact<{
1034
+ [key: string]: never;
689
1035
  }>>;
690
- useFetchWalletRanksQuery(baseOptions: import("@apollo/client").QueryHookOptions<extensionSchema.IFetchWalletRanksQuery, extensionSchema.IFetchWalletRanksQueryVariables>): import("@apollo/client").QueryResult<extensionSchema.IFetchWalletRanksQuery, extensionSchema.Exact<{
691
- wallets: Array<extensionSchema.Scalars["String"]>;
1036
+ useFetchExtensionCategoriesLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchExtensionCategoriesQuery, extensionSchema.Exact<{
1037
+ [key: string]: never;
1038
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchExtensionCategoriesQuery, extensionSchema.Exact<{
1039
+ [key: string]: never;
692
1040
  }>>;
693
- useFetchWalletRanksLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchWalletRanksQuery, extensionSchema.IFetchWalletRanksQueryVariables>): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchWalletRanksQuery, extensionSchema.Exact<{
694
- wallets: Array<extensionSchema.Scalars["String"]>;
1041
+ useFetchExtensionOpportunitiesV2Query(baseOptions: import("@apollo/client").QueryHookOptions<extensionSchema.IFetchExtensionOpportunitiesV2Query, extensionSchema.Exact<{
1042
+ domain: string;
1043
+ brandId?: extensionSchema.Maybe<string> | undefined;
1044
+ categoryId?: extensionSchema.Maybe<string> | undefined;
1045
+ }>>): import("@apollo/client").QueryResult<extensionSchema.IFetchExtensionOpportunitiesV2Query, extensionSchema.Exact<{
1046
+ domain: string;
1047
+ brandId?: extensionSchema.Maybe<string> | undefined;
1048
+ categoryId?: extensionSchema.Maybe<string> | undefined;
1049
+ }>>;
1050
+ useFetchExtensionOpportunitiesV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchExtensionOpportunitiesV2Query, extensionSchema.Exact<{
1051
+ domain: string;
1052
+ brandId?: extensionSchema.Maybe<string> | undefined;
1053
+ categoryId?: extensionSchema.Maybe<string> | undefined;
1054
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchExtensionOpportunitiesV2Query, extensionSchema.Exact<{
1055
+ domain: string;
1056
+ brandId?: extensionSchema.Maybe<string> | undefined;
1057
+ categoryId?: extensionSchema.Maybe<string> | undefined;
1058
+ }>>;
1059
+ useFetchNftDataQuery(baseOptions: import("@apollo/client").QueryHookOptions<extensionSchema.IFetchNftDataQuery, extensionSchema.Exact<{
1060
+ blockchain: string;
1061
+ contractAddress?: extensionSchema.Maybe<string> | undefined;
1062
+ tokenId?: extensionSchema.Maybe<string> | undefined;
1063
+ elrondId?: extensionSchema.Maybe<string> | undefined;
1064
+ }>>): import("@apollo/client").QueryResult<extensionSchema.IFetchNftDataQuery, extensionSchema.Exact<{
1065
+ blockchain: string;
1066
+ contractAddress?: extensionSchema.Maybe<string> | undefined;
1067
+ tokenId?: extensionSchema.Maybe<string> | undefined;
1068
+ elrondId?: extensionSchema.Maybe<string> | undefined;
1069
+ }>>;
1070
+ useFetchNftDataLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchNftDataQuery, extensionSchema.Exact<{
1071
+ blockchain: string;
1072
+ contractAddress?: extensionSchema.Maybe<string> | undefined;
1073
+ tokenId?: extensionSchema.Maybe<string> | undefined;
1074
+ elrondId?: extensionSchema.Maybe<string> | undefined;
1075
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchNftDataQuery, extensionSchema.Exact<{
1076
+ blockchain: string;
1077
+ contractAddress?: extensionSchema.Maybe<string> | undefined;
1078
+ tokenId?: extensionSchema.Maybe<string> | undefined;
1079
+ elrondId?: extensionSchema.Maybe<string> | undefined;
1080
+ }>>;
1081
+ useFetchNftRanksQuery(baseOptions: import("@apollo/client").QueryHookOptions<extensionSchema.IFetchNftRanksQuery, extensionSchema.Exact<{
1082
+ nftKeys: extensionSchema.INftKey[];
1083
+ }>>): import("@apollo/client").QueryResult<extensionSchema.IFetchNftRanksQuery, extensionSchema.Exact<{
1084
+ nftKeys: extensionSchema.INftKey[];
1085
+ }>>;
1086
+ useFetchNftRanksLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchNftRanksQuery, extensionSchema.Exact<{
1087
+ nftKeys: extensionSchema.INftKey[];
1088
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchNftRanksQuery, extensionSchema.Exact<{
1089
+ nftKeys: extensionSchema.INftKey[];
1090
+ }>>;
1091
+ useFetchWalletRanksQuery(baseOptions: import("@apollo/client").QueryHookOptions<extensionSchema.IFetchWalletRanksQuery, extensionSchema.Exact<{
1092
+ wallets: string[];
1093
+ }>>): import("@apollo/client").QueryResult<extensionSchema.IFetchWalletRanksQuery, extensionSchema.Exact<{
1094
+ wallets: string[];
1095
+ }>>;
1096
+ useFetchWalletRanksLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<extensionSchema.IFetchWalletRanksQuery, extensionSchema.Exact<{
1097
+ wallets: string[];
1098
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<extensionSchema.IFetchWalletRanksQuery, extensionSchema.Exact<{
1099
+ wallets: string[];
695
1100
  }>>;
696
1101
  HideOpportunityV2Document: import("graphql").DocumentNode;
697
1102
  OpenOpportunityV2Document: import("graphql").DocumentNode;
@@ -703,61 +1108,79 @@ declare const schema: {
703
1108
  FetchNftDataDocument: import("graphql").DocumentNode;
704
1109
  FetchNftRanksDocument: import("graphql").DocumentNode;
705
1110
  FetchWalletRanksDocument: import("graphql").DocumentNode;
706
- useFetchMyExperienceV2Query(baseOptions?: import("@apollo/client").QueryHookOptions<experiencesSchema.IFetchMyExperienceV2Query, experiencesSchema.IFetchMyExperienceV2QueryVariables>): import("@apollo/client").QueryResult<experiencesSchema.IFetchMyExperienceV2Query, experiencesSchema.Exact<{
1111
+ useFetchMyExperienceV2Query(baseOptions?: import("@apollo/client").QueryHookOptions<experiencesSchema.IFetchMyExperienceV2Query, experiencesSchema.Exact<{
1112
+ [key: string]: never;
1113
+ }>> | undefined): import("@apollo/client").QueryResult<experiencesSchema.IFetchMyExperienceV2Query, experiencesSchema.Exact<{
707
1114
  [key: string]: never;
708
1115
  }>>;
709
- useFetchMyExperienceV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<experiencesSchema.IFetchMyExperienceV2Query, experiencesSchema.IFetchMyExperienceV2QueryVariables>): import("@apollo/client").LazyQueryResultTuple<experiencesSchema.IFetchMyExperienceV2Query, experiencesSchema.Exact<{
1116
+ useFetchMyExperienceV2LazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<experiencesSchema.IFetchMyExperienceV2Query, experiencesSchema.Exact<{
1117
+ [key: string]: never;
1118
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<experiencesSchema.IFetchMyExperienceV2Query, experiencesSchema.Exact<{
710
1119
  [key: string]: never;
711
1120
  }>>;
712
- useFetchMyTasksQuery(baseOptions?: import("@apollo/client").QueryHookOptions<experiencesSchema.IFetchMyTasksQuery, experiencesSchema.IFetchMyTasksQueryVariables>): import("@apollo/client").QueryResult<experiencesSchema.IFetchMyTasksQuery, experiencesSchema.Exact<{
1121
+ useFetchMyTasksQuery(baseOptions?: import("@apollo/client").QueryHookOptions<experiencesSchema.IFetchMyTasksQuery, experiencesSchema.Exact<{
1122
+ [key: string]: never;
1123
+ }>> | undefined): import("@apollo/client").QueryResult<experiencesSchema.IFetchMyTasksQuery, experiencesSchema.Exact<{
713
1124
  [key: string]: never;
714
1125
  }>>;
715
- useFetchMyTasksLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<experiencesSchema.IFetchMyTasksQuery, experiencesSchema.IFetchMyTasksQueryVariables>): import("@apollo/client").LazyQueryResultTuple<experiencesSchema.IFetchMyTasksQuery, experiencesSchema.Exact<{
1126
+ useFetchMyTasksLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<experiencesSchema.IFetchMyTasksQuery, experiencesSchema.Exact<{
1127
+ [key: string]: never;
1128
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<experiencesSchema.IFetchMyTasksQuery, experiencesSchema.Exact<{
716
1129
  [key: string]: never;
717
1130
  }>>;
718
- useOnCommonOpportunityNotificationSubscription(baseOptions?: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnCommonOpportunityNotificationSubscription, experiencesSchema.IOnCommonOpportunityNotificationSubscriptionVariables>): {
1131
+ useOnCommonOpportunityNotificationSubscription(baseOptions?: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnCommonOpportunityNotificationSubscription, experiencesSchema.Exact<{
1132
+ [key: string]: never;
1133
+ }>> | undefined): {
719
1134
  restart(): void;
720
1135
  loading: boolean;
721
1136
  data?: experiencesSchema.IOnCommonOpportunityNotificationSubscription | undefined;
722
- error?: import("@apollo/client").ApolloError;
1137
+ error?: import("@apollo/client").ApolloError | undefined;
723
1138
  variables?: experiencesSchema.Exact<{
724
1139
  [key: string]: never;
725
1140
  }> | undefined;
726
1141
  };
727
- useOnInviteCodeUsedSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnInviteCodeUsedSubscription, experiencesSchema.IOnInviteCodeUsedSubscriptionVariables>): {
1142
+ useOnInviteCodeUsedSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnInviteCodeUsedSubscription, experiencesSchema.Exact<{
1143
+ authToken: string;
1144
+ }>>): {
728
1145
  restart(): void;
729
1146
  loading: boolean;
730
1147
  data?: experiencesSchema.IOnInviteCodeUsedSubscription | undefined;
731
- error?: import("@apollo/client").ApolloError;
1148
+ error?: import("@apollo/client").ApolloError | undefined;
732
1149
  variables?: experiencesSchema.Exact<{
733
- authToken: experiencesSchema.Scalars["String"];
1150
+ authToken: string;
734
1151
  }> | undefined;
735
1152
  };
736
- useOnMyExperienceIncrementedSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnMyExperienceIncrementedSubscription, experiencesSchema.IOnMyExperienceIncrementedSubscriptionVariables>): {
1153
+ useOnMyExperienceIncrementedSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnMyExperienceIncrementedSubscription, experiencesSchema.Exact<{
1154
+ authToken: string;
1155
+ }>>): {
737
1156
  restart(): void;
738
1157
  loading: boolean;
739
1158
  data?: experiencesSchema.IOnMyExperienceIncrementedSubscription | undefined;
740
- error?: import("@apollo/client").ApolloError;
1159
+ error?: import("@apollo/client").ApolloError | undefined;
741
1160
  variables?: experiencesSchema.Exact<{
742
- authToken: experiencesSchema.Scalars["String"];
1161
+ authToken: string;
743
1162
  }> | undefined;
744
1163
  };
745
- useOnMyExperienceUpdatedSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnMyExperienceUpdatedSubscription, experiencesSchema.IOnMyExperienceUpdatedSubscriptionVariables>): {
1164
+ useOnMyExperienceUpdatedSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnMyExperienceUpdatedSubscription, experiencesSchema.Exact<{
1165
+ authToken: string;
1166
+ }>>): {
746
1167
  restart(): void;
747
1168
  loading: boolean;
748
1169
  data?: experiencesSchema.IOnMyExperienceUpdatedSubscription | undefined;
749
- error?: import("@apollo/client").ApolloError;
1170
+ error?: import("@apollo/client").ApolloError | undefined;
750
1171
  variables?: experiencesSchema.Exact<{
751
- authToken: experiencesSchema.Scalars["String"];
1172
+ authToken: string;
752
1173
  }> | undefined;
753
1174
  };
754
- useOnUserOpportunityNotificationSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnUserOpportunityNotificationSubscription, experiencesSchema.IOnUserOpportunityNotificationSubscriptionVariables>): {
1175
+ useOnUserOpportunityNotificationSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnUserOpportunityNotificationSubscription, experiencesSchema.Exact<{
1176
+ authToken: string;
1177
+ }>>): {
755
1178
  restart(): void;
756
1179
  loading: boolean;
757
1180
  data?: experiencesSchema.IOnUserOpportunityNotificationSubscription | undefined;
758
- error?: import("@apollo/client").ApolloError;
1181
+ error?: import("@apollo/client").ApolloError | undefined;
759
1182
  variables?: experiencesSchema.Exact<{
760
- authToken: experiencesSchema.Scalars["String"];
1183
+ authToken: string;
761
1184
  }> | undefined;
762
1185
  };
763
1186
  FetchMyExperienceV2Document: import("graphql").DocumentNode;
@@ -767,307 +1190,533 @@ declare const schema: {
767
1190
  OnMyExperienceIncrementedDocument: import("graphql").DocumentNode;
768
1191
  OnMyExperienceUpdatedDocument: import("graphql").DocumentNode;
769
1192
  OnUserOpportunityNotificationDocument: import("graphql").DocumentNode;
770
- useDislikeCollectionMutation(baseOptions?: import("@apollo/client").MutationHookOptions<collectionsSchema.IDislikeCollectionMutation, collectionsSchema.IDislikeCollectionMutationVariables>): import("@apollo/client").MutationTuple<collectionsSchema.IDislikeCollectionMutation, collectionsSchema.Exact<{
771
- collectionId: collectionsSchema.Scalars["String"];
1193
+ useDislikeCollectionMutation(baseOptions?: import("@apollo/client").MutationHookOptions<collectionsSchema.IDislikeCollectionMutation, collectionsSchema.Exact<{
1194
+ collectionId: string;
1195
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<collectionsSchema.IDislikeCollectionMutation, collectionsSchema.Exact<{
1196
+ collectionId: string;
772
1197
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
773
- useLikeCollectionMutation(baseOptions?: import("@apollo/client").MutationHookOptions<collectionsSchema.ILikeCollectionMutation, collectionsSchema.ILikeCollectionMutationVariables>): import("@apollo/client").MutationTuple<collectionsSchema.ILikeCollectionMutation, collectionsSchema.Exact<{
774
- collectionId: collectionsSchema.Scalars["String"];
1198
+ useLikeCollectionMutation(baseOptions?: import("@apollo/client").MutationHookOptions<collectionsSchema.ILikeCollectionMutation, collectionsSchema.Exact<{
1199
+ collectionId: string;
1200
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<collectionsSchema.ILikeCollectionMutation, collectionsSchema.Exact<{
1201
+ collectionId: string;
775
1202
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
776
1203
  DislikeCollectionDocument: import("graphql").DocumentNode;
777
1204
  LikeCollectionDocument: import("graphql").DocumentNode;
778
- useRefreshTokenMutation(baseOptions?: import("@apollo/client").MutationHookOptions<authSchema.IRefreshTokenMutation, authSchema.IRefreshTokenMutationVariables>): import("@apollo/client").MutationTuple<authSchema.IRefreshTokenMutation, authSchema.Exact<{
779
- refreshToken: authSchema.Scalars["String"];
780
- showNsfw?: authSchema.Maybe<authSchema.Scalars["Boolean"]>;
781
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
782
- useRevokeTokenMutation(baseOptions?: import("@apollo/client").MutationHookOptions<authSchema.IRevokeTokenMutation, authSchema.IRevokeTokenMutationVariables>): import("@apollo/client").MutationTuple<authSchema.IRevokeTokenMutation, authSchema.Exact<{
1205
+ useRefreshTokenMutation(baseOptions?: import("@apollo/client").MutationHookOptions<authSchema.IRefreshTokenMutation, authSchema.Exact<{
1206
+ refreshToken: string;
1207
+ showNsfw?: authSchema.Maybe<boolean> | undefined;
1208
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<authSchema.IRefreshTokenMutation, authSchema.Exact<{
1209
+ refreshToken: string;
1210
+ showNsfw?: authSchema.Maybe<boolean> | undefined;
1211
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1212
+ useRevokeTokenMutation(baseOptions?: import("@apollo/client").MutationHookOptions<authSchema.IRevokeTokenMutation, authSchema.Exact<{
1213
+ [key: string]: never;
1214
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<authSchema.IRevokeTokenMutation, authSchema.Exact<{
783
1215
  [key: string]: never;
784
1216
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
785
1217
  RefreshTokenDocument: import("graphql").DocumentNode;
786
1218
  RevokeTokenDocument: import("graphql").DocumentNode;
787
- useDislikeAssetMutation(baseOptions?: import("@apollo/client").MutationHookOptions<assetSchema.IDislikeAssetMutation, assetSchema.IDislikeAssetMutationVariables>): import("@apollo/client").MutationTuple<assetSchema.IDislikeAssetMutation, assetSchema.Exact<{
788
- assetId: assetSchema.Scalars["String"];
1219
+ useDislikeAssetMutation(baseOptions?: import("@apollo/client").MutationHookOptions<assetSchema.IDislikeAssetMutation, assetSchema.Exact<{
1220
+ assetId: string;
1221
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<assetSchema.IDislikeAssetMutation, assetSchema.Exact<{
1222
+ assetId: string;
789
1223
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
790
- useLikeAssetMutation(baseOptions?: import("@apollo/client").MutationHookOptions<assetSchema.ILikeAssetMutation, assetSchema.ILikeAssetMutationVariables>): import("@apollo/client").MutationTuple<assetSchema.ILikeAssetMutation, assetSchema.Exact<{
791
- assetId: assetSchema.Scalars["String"];
1224
+ useLikeAssetMutation(baseOptions?: import("@apollo/client").MutationHookOptions<assetSchema.ILikeAssetMutation, assetSchema.Exact<{
1225
+ assetId: string;
1226
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<assetSchema.ILikeAssetMutation, assetSchema.Exact<{
1227
+ assetId: string;
792
1228
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
793
1229
  DislikeAssetDocument: import("graphql").DocumentNode;
794
1230
  LikeAssetDocument: import("graphql").DocumentNode;
795
- useCreateReferralTypeMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.ICreateReferralTypeMutation, adminSchema.ICreateReferralTypeMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.ICreateReferralTypeMutation, adminSchema.Exact<{
1231
+ useCreateReferralTypeMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.ICreateReferralTypeMutation, adminSchema.Exact<{
1232
+ input: adminSchema.IReferralTypeInput;
1233
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.ICreateReferralTypeMutation, adminSchema.Exact<{
796
1234
  input: adminSchema.IReferralTypeInput;
797
1235
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
798
- useCreateTierMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.ICreateTierMutation, adminSchema.ICreateTierMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.ICreateTierMutation, adminSchema.Exact<{
1236
+ useCreateTierMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.ICreateTierMutation, adminSchema.Exact<{
1237
+ input: adminSchema.ITierInput;
1238
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.ICreateTierMutation, adminSchema.Exact<{
799
1239
  input: adminSchema.ITierInput;
800
1240
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
801
- useTriggerOpportunityNotificationMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.ITriggerOpportunityNotificationMutation, adminSchema.ITriggerOpportunityNotificationMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.ITriggerOpportunityNotificationMutation, adminSchema.Exact<{
802
- opportunityId: adminSchema.Scalars["ID"];
803
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
804
- useUpdateInviteCodeUsagesLimitMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateInviteCodeUsagesLimitMutation, adminSchema.IUpdateInviteCodeUsagesLimitMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IUpdateInviteCodeUsagesLimitMutation, adminSchema.Exact<{
805
- code: adminSchema.Scalars["String"];
806
- usagesLimit: adminSchema.Scalars["Int"];
807
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
808
- useUpdateOpportunityPushStatusMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateOpportunityPushStatusMutation, adminSchema.IUpdateOpportunityPushStatusMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IUpdateOpportunityPushStatusMutation, adminSchema.Exact<{
809
- opportunityId: adminSchema.Scalars["ID"];
810
- isActive: adminSchema.Scalars["Boolean"];
811
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
812
- useUpdateReferralTypeMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateReferralTypeMutation, adminSchema.IUpdateReferralTypeMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IUpdateReferralTypeMutation, adminSchema.Exact<{
813
- id: adminSchema.Scalars["ID"];
1241
+ useTriggerOpportunityNotificationMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.ITriggerOpportunityNotificationMutation, adminSchema.Exact<{
1242
+ opportunityId: string;
1243
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.ITriggerOpportunityNotificationMutation, adminSchema.Exact<{
1244
+ opportunityId: string;
1245
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1246
+ useUpdateInviteCodeUsagesLimitMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateInviteCodeUsagesLimitMutation, adminSchema.Exact<{
1247
+ code: string;
1248
+ usagesLimit: number;
1249
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IUpdateInviteCodeUsagesLimitMutation, adminSchema.Exact<{
1250
+ code: string;
1251
+ usagesLimit: number;
1252
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1253
+ useUpdateOpportunityPushStatusMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateOpportunityPushStatusMutation, adminSchema.Exact<{
1254
+ opportunityId: string;
1255
+ isActive: boolean;
1256
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IUpdateOpportunityPushStatusMutation, adminSchema.Exact<{
1257
+ opportunityId: string;
1258
+ isActive: boolean;
1259
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1260
+ useUpdateReferralTypeMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateReferralTypeMutation, adminSchema.Exact<{
1261
+ id: string;
1262
+ input: adminSchema.IReferralTypeInput;
1263
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IUpdateReferralTypeMutation, adminSchema.Exact<{
1264
+ id: string;
814
1265
  input: adminSchema.IReferralTypeInput;
815
1266
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
816
- useUpdateReferralTypeArchivedStatusMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateReferralTypeArchivedStatusMutation, adminSchema.IUpdateReferralTypeArchivedStatusMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IUpdateReferralTypeArchivedStatusMutation, adminSchema.Exact<{
817
- id: adminSchema.Scalars["ID"];
818
- isArchived: adminSchema.Scalars["Boolean"];
1267
+ useUpdateReferralTypeArchivedStatusMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateReferralTypeArchivedStatusMutation, adminSchema.Exact<{
1268
+ id: string;
1269
+ isArchived: boolean;
1270
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IUpdateReferralTypeArchivedStatusMutation, adminSchema.Exact<{
1271
+ id: string;
1272
+ isArchived: boolean;
819
1273
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
820
- useUpdateTierMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateTierMutation, adminSchema.IUpdateTierMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IUpdateTierMutation, adminSchema.Exact<{
821
- id: adminSchema.Scalars["ID"];
1274
+ useUpdateTierMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateTierMutation, adminSchema.Exact<{
1275
+ id: string;
1276
+ input: adminSchema.ITierInput;
1277
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IUpdateTierMutation, adminSchema.Exact<{
1278
+ id: string;
822
1279
  input: adminSchema.ITierInput;
823
1280
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
824
- useUpdateTierArchivedStatusMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateTierArchivedStatusMutation, adminSchema.IUpdateTierArchivedStatusMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IUpdateTierArchivedStatusMutation, adminSchema.Exact<{
825
- id: adminSchema.Scalars["ID"];
826
- isArchived: adminSchema.Scalars["Boolean"];
827
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
828
- useChangeXpPointsMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IChangeXpPointsMutation, adminSchema.IChangeXpPointsMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IChangeXpPointsMutation, adminSchema.Exact<{
829
- userId: adminSchema.Scalars["ID"];
830
- pointsDiff: adminSchema.Scalars["Int"];
831
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
832
- useCreateCategoryMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.ICreateCategoryMutation, adminSchema.ICreateCategoryMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.ICreateCategoryMutation, adminSchema.Exact<{
833
- name: adminSchema.Scalars["String"];
834
- matchingWords: Array<adminSchema.Scalars["String"]>;
835
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
836
- useCreateBrandMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.ICreateBrandMutation, adminSchema.ICreateBrandMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.ICreateBrandMutation, adminSchema.Exact<{
1281
+ useUpdateTierArchivedStatusMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateTierArchivedStatusMutation, adminSchema.Exact<{
1282
+ id: string;
1283
+ isArchived: boolean;
1284
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IUpdateTierArchivedStatusMutation, adminSchema.Exact<{
1285
+ id: string;
1286
+ isArchived: boolean;
1287
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1288
+ useChangeXpPointsMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IChangeXpPointsMutation, adminSchema.Exact<{
1289
+ userId: string;
1290
+ pointsDiff: number;
1291
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IChangeXpPointsMutation, adminSchema.Exact<{
1292
+ userId: string;
1293
+ pointsDiff: number;
1294
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1295
+ useCreateCategoryMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.ICreateCategoryMutation, adminSchema.Exact<{
1296
+ name: string;
1297
+ matchingWords: string[];
1298
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.ICreateCategoryMutation, adminSchema.Exact<{
1299
+ name: string;
1300
+ matchingWords: string[];
1301
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1302
+ useCreateBrandMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.ICreateBrandMutation, adminSchema.Exact<{
1303
+ brand: adminSchema.IBrandInput;
1304
+ file?: any;
1305
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.ICreateBrandMutation, adminSchema.Exact<{
837
1306
  brand: adminSchema.IBrandInput;
838
- file?: adminSchema.Maybe<adminSchema.Scalars["Upload"]>;
1307
+ file?: any;
839
1308
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
840
- useCreateAdminOpportunityMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.ICreateAdminOpportunityMutation, adminSchema.ICreateAdminOpportunityMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.ICreateAdminOpportunityMutation, adminSchema.Exact<{
841
- file?: adminSchema.Maybe<adminSchema.Scalars["Upload"]>;
1309
+ useCreateAdminOpportunityMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.ICreateAdminOpportunityMutation, adminSchema.Exact<{
1310
+ file?: any;
1311
+ input: adminSchema.IAdminOpportunityInput;
1312
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.ICreateAdminOpportunityMutation, adminSchema.Exact<{
1313
+ file?: any;
842
1314
  input: adminSchema.IAdminOpportunityInput;
843
1315
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
844
- useAddInviteCodesMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IAddInviteCodesMutation, adminSchema.IAddInviteCodesMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IAddInviteCodesMutation, adminSchema.Exact<{
845
- userId: adminSchema.Scalars["String"];
846
- codesNum: adminSchema.Scalars["Int"];
1316
+ useAddInviteCodesMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IAddInviteCodesMutation, adminSchema.Exact<{
1317
+ userId: string;
1318
+ codesNum: number;
1319
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IAddInviteCodesMutation, adminSchema.Exact<{
1320
+ userId: string;
1321
+ codesNum: number;
847
1322
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
848
- useRemoveInviteCodeMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IRemoveInviteCodeMutation, adminSchema.IRemoveInviteCodeMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IRemoveInviteCodeMutation, adminSchema.Exact<{
849
- inviteCode: adminSchema.Scalars["String"];
1323
+ useRemoveInviteCodeMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IRemoveInviteCodeMutation, adminSchema.Exact<{
1324
+ inviteCode: string;
1325
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IRemoveInviteCodeMutation, adminSchema.Exact<{
1326
+ inviteCode: string;
850
1327
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
851
- useUpdateBrandMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateBrandMutation, adminSchema.IUpdateBrandMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IUpdateBrandMutation, adminSchema.Exact<{
852
- id: adminSchema.Scalars["ID"];
1328
+ useUpdateBrandMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateBrandMutation, adminSchema.Exact<{
1329
+ id: string;
1330
+ input: adminSchema.IBrandInput;
1331
+ file?: any;
1332
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IUpdateBrandMutation, adminSchema.Exact<{
1333
+ id: string;
853
1334
  input: adminSchema.IBrandInput;
854
- file?: adminSchema.Maybe<adminSchema.Scalars["Upload"]>;
1335
+ file?: any;
855
1336
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
856
- useUpdateBrandArchivedStatusMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateBrandArchivedStatusMutation, adminSchema.IUpdateBrandArchivedStatusMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IUpdateBrandArchivedStatusMutation, adminSchema.Exact<{
857
- id: adminSchema.Scalars["ID"];
858
- isArchived: adminSchema.Scalars["Boolean"];
1337
+ useUpdateBrandArchivedStatusMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateBrandArchivedStatusMutation, adminSchema.Exact<{
1338
+ id: string;
1339
+ isArchived: boolean;
1340
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IUpdateBrandArchivedStatusMutation, adminSchema.Exact<{
1341
+ id: string;
1342
+ isArchived: boolean;
859
1343
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
860
- useUpdateCategoryMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateCategoryMutation, adminSchema.IUpdateCategoryMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IUpdateCategoryMutation, adminSchema.Exact<{
861
- id: adminSchema.Scalars["ID"];
1344
+ useUpdateCategoryMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateCategoryMutation, adminSchema.Exact<{
1345
+ id: string;
1346
+ input: adminSchema.ICategoryInput;
1347
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IUpdateCategoryMutation, adminSchema.Exact<{
1348
+ id: string;
862
1349
  input: adminSchema.ICategoryInput;
863
1350
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
864
- useUpdateCategoryArchivedStatusMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateCategoryArchivedStatusMutation, adminSchema.IUpdateCategoryArchivedStatusMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IUpdateCategoryArchivedStatusMutation, adminSchema.Exact<{
865
- id: adminSchema.Scalars["ID"];
866
- isArchived: adminSchema.Scalars["Boolean"];
1351
+ useUpdateCategoryArchivedStatusMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateCategoryArchivedStatusMutation, adminSchema.Exact<{
1352
+ id: string;
1353
+ isArchived: boolean;
1354
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IUpdateCategoryArchivedStatusMutation, adminSchema.Exact<{
1355
+ id: string;
1356
+ isArchived: boolean;
867
1357
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
868
- useUpdateOpportunityMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateOpportunityMutation, adminSchema.IUpdateOpportunityMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IUpdateOpportunityMutation, adminSchema.Exact<{
869
- id: adminSchema.Scalars["ID"];
1358
+ useUpdateOpportunityMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateOpportunityMutation, adminSchema.Exact<{
1359
+ id: string;
870
1360
  input: adminSchema.IAdminOpportunityInput;
871
- file?: adminSchema.Maybe<adminSchema.Scalars["Upload"]>;
872
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
873
- useUpdateProfileStatusMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateProfileStatusMutation, adminSchema.IUpdateProfileStatusMutationVariables>): import("@apollo/client").MutationTuple<adminSchema.IUpdateProfileStatusMutation, adminSchema.Exact<{
874
- userId: adminSchema.Scalars["ID"];
875
- isActive: adminSchema.Scalars["Boolean"];
876
- }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
877
- useCheckInviteCodeQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.ICheckInviteCodeQuery, adminSchema.ICheckInviteCodeQueryVariables>): import("@apollo/client").QueryResult<adminSchema.ICheckInviteCodeQuery, adminSchema.Exact<{
878
- code: adminSchema.Scalars["String"];
879
- }>>;
880
- useCheckInviteCodeLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.ICheckInviteCodeQuery, adminSchema.ICheckInviteCodeQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.ICheckInviteCodeQuery, adminSchema.Exact<{
881
- code: adminSchema.Scalars["String"];
882
- }>>;
883
- useFetchContactSupportPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchContactSupportPageQuery, adminSchema.IFetchContactSupportPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchContactSupportPageQuery, adminSchema.Exact<{
1361
+ file?: any;
1362
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IUpdateOpportunityMutation, adminSchema.Exact<{
1363
+ id: string;
1364
+ input: adminSchema.IAdminOpportunityInput;
1365
+ file?: any;
1366
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1367
+ useUpdateProfileStatusMutation(baseOptions?: import("@apollo/client").MutationHookOptions<adminSchema.IUpdateProfileStatusMutation, adminSchema.Exact<{
1368
+ userId: string;
1369
+ isActive: boolean;
1370
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<adminSchema.IUpdateProfileStatusMutation, adminSchema.Exact<{
1371
+ userId: string;
1372
+ isActive: boolean;
1373
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
1374
+ useCheckInviteCodeQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.ICheckInviteCodeQuery, adminSchema.Exact<{
1375
+ code: string;
1376
+ }>>): import("@apollo/client").QueryResult<adminSchema.ICheckInviteCodeQuery, adminSchema.Exact<{
1377
+ code: string;
1378
+ }>>;
1379
+ useCheckInviteCodeLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.ICheckInviteCodeQuery, adminSchema.Exact<{
1380
+ code: string;
1381
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.ICheckInviteCodeQuery, adminSchema.Exact<{
1382
+ code: string;
1383
+ }>>;
1384
+ useFetchContactSupportPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchContactSupportPageQuery, adminSchema.Exact<{
1385
+ filter: adminSchema.IContactSupportFilterInput;
1386
+ sort: adminSchema.IContactSupportSortInput;
1387
+ page: adminSchema.IAdminPageInput;
1388
+ }>>): import("@apollo/client").QueryResult<adminSchema.IFetchContactSupportPageQuery, adminSchema.Exact<{
884
1389
  filter: adminSchema.IContactSupportFilterInput;
885
1390
  sort: adminSchema.IContactSupportSortInput;
886
1391
  page: adminSchema.IAdminPageInput;
887
1392
  }>>;
888
- useFetchContactSupportPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchContactSupportPageQuery, adminSchema.IFetchContactSupportPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchContactSupportPageQuery, adminSchema.Exact<{
1393
+ useFetchContactSupportPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchContactSupportPageQuery, adminSchema.Exact<{
1394
+ filter: adminSchema.IContactSupportFilterInput;
1395
+ sort: adminSchema.IContactSupportSortInput;
1396
+ page: adminSchema.IAdminPageInput;
1397
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchContactSupportPageQuery, adminSchema.Exact<{
889
1398
  filter: adminSchema.IContactSupportFilterInput;
890
1399
  sort: adminSchema.IContactSupportSortInput;
891
1400
  page: adminSchema.IAdminPageInput;
892
1401
  }>>;
893
- useFetchContentReportPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchContentReportPageQuery, adminSchema.IFetchContentReportPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchContentReportPageQuery, adminSchema.Exact<{
1402
+ useFetchContentReportPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchContentReportPageQuery, adminSchema.Exact<{
1403
+ filter: adminSchema.IContentReportFilterInput;
1404
+ sort: adminSchema.IContentReportSortInput;
1405
+ page: adminSchema.IAdminPageInput;
1406
+ }>>): import("@apollo/client").QueryResult<adminSchema.IFetchContentReportPageQuery, adminSchema.Exact<{
894
1407
  filter: adminSchema.IContentReportFilterInput;
895
1408
  sort: adminSchema.IContentReportSortInput;
896
1409
  page: adminSchema.IAdminPageInput;
897
1410
  }>>;
898
- useFetchContentReportPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchContentReportPageQuery, adminSchema.IFetchContentReportPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchContentReportPageQuery, adminSchema.Exact<{
1411
+ useFetchContentReportPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchContentReportPageQuery, adminSchema.Exact<{
1412
+ filter: adminSchema.IContentReportFilterInput;
1413
+ sort: adminSchema.IContentReportSortInput;
1414
+ page: adminSchema.IAdminPageInput;
1415
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchContentReportPageQuery, adminSchema.Exact<{
899
1416
  filter: adminSchema.IContentReportFilterInput;
900
1417
  sort: adminSchema.IContentReportSortInput;
901
1418
  page: adminSchema.IAdminPageInput;
902
1419
  }>>;
903
- useFetchFormOpportunityPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchFormOpportunityPageQuery, adminSchema.IFetchFormOpportunityPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchFormOpportunityPageQuery, adminSchema.Exact<{
1420
+ useFetchFormOpportunityPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchFormOpportunityPageQuery, adminSchema.Exact<{
1421
+ filter: adminSchema.IFormOpportunityFilterInput;
1422
+ sort: adminSchema.IFormOpportunitySortInput;
1423
+ page: adminSchema.IAdminPageInput;
1424
+ }>>): import("@apollo/client").QueryResult<adminSchema.IFetchFormOpportunityPageQuery, adminSchema.Exact<{
904
1425
  filter: adminSchema.IFormOpportunityFilterInput;
905
1426
  sort: adminSchema.IFormOpportunitySortInput;
906
1427
  page: adminSchema.IAdminPageInput;
907
1428
  }>>;
908
- useFetchFormOpportunityPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchFormOpportunityPageQuery, adminSchema.IFetchFormOpportunityPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchFormOpportunityPageQuery, adminSchema.Exact<{
1429
+ useFetchFormOpportunityPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchFormOpportunityPageQuery, adminSchema.Exact<{
1430
+ filter: adminSchema.IFormOpportunityFilterInput;
1431
+ sort: adminSchema.IFormOpportunitySortInput;
1432
+ page: adminSchema.IAdminPageInput;
1433
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchFormOpportunityPageQuery, adminSchema.Exact<{
909
1434
  filter: adminSchema.IFormOpportunityFilterInput;
910
1435
  sort: adminSchema.IFormOpportunitySortInput;
911
1436
  page: adminSchema.IAdminPageInput;
912
1437
  }>>;
913
- useFetchInvestorInquiryPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchInvestorInquiryPageQuery, adminSchema.IFetchInvestorInquiryPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchInvestorInquiryPageQuery, adminSchema.Exact<{
1438
+ useFetchInvestorInquiryPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchInvestorInquiryPageQuery, adminSchema.Exact<{
1439
+ filter: adminSchema.IInvestorInquiryFilterInput;
1440
+ sort: adminSchema.IInvestorInquirySortInput;
1441
+ page: adminSchema.IAdminPageInput;
1442
+ }>>): import("@apollo/client").QueryResult<adminSchema.IFetchInvestorInquiryPageQuery, adminSchema.Exact<{
914
1443
  filter: adminSchema.IInvestorInquiryFilterInput;
915
1444
  sort: adminSchema.IInvestorInquirySortInput;
916
1445
  page: adminSchema.IAdminPageInput;
917
1446
  }>>;
918
- useFetchInvestorInquiryPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchInvestorInquiryPageQuery, adminSchema.IFetchInvestorInquiryPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchInvestorInquiryPageQuery, adminSchema.Exact<{
1447
+ useFetchInvestorInquiryPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchInvestorInquiryPageQuery, adminSchema.Exact<{
1448
+ filter: adminSchema.IInvestorInquiryFilterInput;
1449
+ sort: adminSchema.IInvestorInquirySortInput;
1450
+ page: adminSchema.IAdminPageInput;
1451
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchInvestorInquiryPageQuery, adminSchema.Exact<{
919
1452
  filter: adminSchema.IInvestorInquiryFilterInput;
920
1453
  sort: adminSchema.IInvestorInquirySortInput;
921
1454
  page: adminSchema.IAdminPageInput;
922
1455
  }>>;
923
- useFetchPartnershipInquiryPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchPartnershipInquiryPageQuery, adminSchema.IFetchPartnershipInquiryPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchPartnershipInquiryPageQuery, adminSchema.Exact<{
1456
+ useFetchPartnershipInquiryPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchPartnershipInquiryPageQuery, adminSchema.Exact<{
1457
+ filter: adminSchema.IPartnershipInquiryFilterInput;
1458
+ sort: adminSchema.IPartnershipInquirySortInput;
1459
+ page: adminSchema.IAdminPageInput;
1460
+ }>>): import("@apollo/client").QueryResult<adminSchema.IFetchPartnershipInquiryPageQuery, adminSchema.Exact<{
924
1461
  filter: adminSchema.IPartnershipInquiryFilterInput;
925
1462
  sort: adminSchema.IPartnershipInquirySortInput;
926
1463
  page: adminSchema.IAdminPageInput;
927
1464
  }>>;
928
- useFetchPartnershipInquiryPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchPartnershipInquiryPageQuery, adminSchema.IFetchPartnershipInquiryPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchPartnershipInquiryPageQuery, adminSchema.Exact<{
1465
+ useFetchPartnershipInquiryPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchPartnershipInquiryPageQuery, adminSchema.Exact<{
1466
+ filter: adminSchema.IPartnershipInquiryFilterInput;
1467
+ sort: adminSchema.IPartnershipInquirySortInput;
1468
+ page: adminSchema.IAdminPageInput;
1469
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchPartnershipInquiryPageQuery, adminSchema.Exact<{
929
1470
  filter: adminSchema.IPartnershipInquiryFilterInput;
930
1471
  sort: adminSchema.IPartnershipInquirySortInput;
931
1472
  page: adminSchema.IAdminPageInput;
932
1473
  }>>;
933
- useFetchReferralTypesQuery(baseOptions?: import("@apollo/client").QueryHookOptions<adminSchema.IFetchReferralTypesQuery, adminSchema.IFetchReferralTypesQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchReferralTypesQuery, adminSchema.Exact<{
1474
+ useFetchReferralTypesQuery(baseOptions?: import("@apollo/client").QueryHookOptions<adminSchema.IFetchReferralTypesQuery, adminSchema.Exact<{
1475
+ [key: string]: never;
1476
+ }>> | undefined): import("@apollo/client").QueryResult<adminSchema.IFetchReferralTypesQuery, adminSchema.Exact<{
934
1477
  [key: string]: never;
935
1478
  }>>;
936
- useFetchReferralTypesLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchReferralTypesQuery, adminSchema.IFetchReferralTypesQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchReferralTypesQuery, adminSchema.Exact<{
1479
+ useFetchReferralTypesLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchReferralTypesQuery, adminSchema.Exact<{
1480
+ [key: string]: never;
1481
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchReferralTypesQuery, adminSchema.Exact<{
937
1482
  [key: string]: never;
938
1483
  }>>;
939
- useFetchReferralTypesPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchReferralTypesPageQuery, adminSchema.IFetchReferralTypesPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchReferralTypesPageQuery, adminSchema.Exact<{
1484
+ useFetchReferralTypesPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchReferralTypesPageQuery, adminSchema.Exact<{
1485
+ filter: adminSchema.IReferralTypeFilterInput;
1486
+ sort: adminSchema.IReferralTypeSortInput;
1487
+ page: adminSchema.IAdminPageInput;
1488
+ }>>): import("@apollo/client").QueryResult<adminSchema.IFetchReferralTypesPageQuery, adminSchema.Exact<{
940
1489
  filter: adminSchema.IReferralTypeFilterInput;
941
1490
  sort: adminSchema.IReferralTypeSortInput;
942
1491
  page: adminSchema.IAdminPageInput;
943
1492
  }>>;
944
- useFetchReferralTypesPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchReferralTypesPageQuery, adminSchema.IFetchReferralTypesPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchReferralTypesPageQuery, adminSchema.Exact<{
1493
+ useFetchReferralTypesPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchReferralTypesPageQuery, adminSchema.Exact<{
1494
+ filter: adminSchema.IReferralTypeFilterInput;
1495
+ sort: adminSchema.IReferralTypeSortInput;
1496
+ page: adminSchema.IAdminPageInput;
1497
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchReferralTypesPageQuery, adminSchema.Exact<{
945
1498
  filter: adminSchema.IReferralTypeFilterInput;
946
1499
  sort: adminSchema.IReferralTypeSortInput;
947
1500
  page: adminSchema.IAdminPageInput;
948
1501
  }>>;
949
- useFetchRegistrationInvitePageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchRegistrationInvitePageQuery, adminSchema.IFetchRegistrationInvitePageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchRegistrationInvitePageQuery, adminSchema.Exact<{
1502
+ useFetchRegistrationInvitePageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchRegistrationInvitePageQuery, adminSchema.Exact<{
1503
+ filter: adminSchema.IRegistrationInviteFilterInput;
1504
+ sort: adminSchema.IRegistrationInviteSortInput;
1505
+ page: adminSchema.IAdminPageInput;
1506
+ }>>): import("@apollo/client").QueryResult<adminSchema.IFetchRegistrationInvitePageQuery, adminSchema.Exact<{
950
1507
  filter: adminSchema.IRegistrationInviteFilterInput;
951
1508
  sort: adminSchema.IRegistrationInviteSortInput;
952
1509
  page: adminSchema.IAdminPageInput;
953
1510
  }>>;
954
- useFetchRegistrationInvitePageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchRegistrationInvitePageQuery, adminSchema.IFetchRegistrationInvitePageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchRegistrationInvitePageQuery, adminSchema.Exact<{
1511
+ useFetchRegistrationInvitePageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchRegistrationInvitePageQuery, adminSchema.Exact<{
1512
+ filter: adminSchema.IRegistrationInviteFilterInput;
1513
+ sort: adminSchema.IRegistrationInviteSortInput;
1514
+ page: adminSchema.IAdminPageInput;
1515
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchRegistrationInvitePageQuery, adminSchema.Exact<{
955
1516
  filter: adminSchema.IRegistrationInviteFilterInput;
956
1517
  sort: adminSchema.IRegistrationInviteSortInput;
957
1518
  page: adminSchema.IAdminPageInput;
958
1519
  }>>;
959
- useFetchTiersQuery(baseOptions?: import("@apollo/client").QueryHookOptions<adminSchema.IFetchTiersQuery, adminSchema.IFetchTiersQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchTiersQuery, adminSchema.Exact<{
1520
+ useFetchTiersQuery(baseOptions?: import("@apollo/client").QueryHookOptions<adminSchema.IFetchTiersQuery, adminSchema.Exact<{
1521
+ [key: string]: never;
1522
+ }>> | undefined): import("@apollo/client").QueryResult<adminSchema.IFetchTiersQuery, adminSchema.Exact<{
960
1523
  [key: string]: never;
961
1524
  }>>;
962
- useFetchTiersLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchTiersQuery, adminSchema.IFetchTiersQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchTiersQuery, adminSchema.Exact<{
1525
+ useFetchTiersLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchTiersQuery, adminSchema.Exact<{
1526
+ [key: string]: never;
1527
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchTiersQuery, adminSchema.Exact<{
963
1528
  [key: string]: never;
964
1529
  }>>;
965
- useFetchTiersPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchTiersPageQuery, adminSchema.IFetchTiersPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchTiersPageQuery, adminSchema.Exact<{
1530
+ useFetchTiersPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchTiersPageQuery, adminSchema.Exact<{
1531
+ filter: adminSchema.ITiersFilterInput;
1532
+ sort: adminSchema.ITiersSortInput;
1533
+ page: adminSchema.IAdminPageInput;
1534
+ }>>): import("@apollo/client").QueryResult<adminSchema.IFetchTiersPageQuery, adminSchema.Exact<{
966
1535
  filter: adminSchema.ITiersFilterInput;
967
1536
  sort: adminSchema.ITiersSortInput;
968
1537
  page: adminSchema.IAdminPageInput;
969
1538
  }>>;
970
- useFetchTiersPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchTiersPageQuery, adminSchema.IFetchTiersPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchTiersPageQuery, adminSchema.Exact<{
1539
+ useFetchTiersPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchTiersPageQuery, adminSchema.Exact<{
1540
+ filter: adminSchema.ITiersFilterInput;
1541
+ sort: adminSchema.ITiersSortInput;
1542
+ page: adminSchema.IAdminPageInput;
1543
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchTiersPageQuery, adminSchema.Exact<{
971
1544
  filter: adminSchema.ITiersFilterInput;
972
1545
  sort: adminSchema.ITiersSortInput;
973
1546
  page: adminSchema.IAdminPageInput;
974
1547
  }>>;
975
- useFetchUserFeedbackPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchUserFeedbackPageQuery, adminSchema.IFetchUserFeedbackPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchUserFeedbackPageQuery, adminSchema.Exact<{
1548
+ useFetchUserFeedbackPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchUserFeedbackPageQuery, adminSchema.Exact<{
1549
+ filter: adminSchema.IUserFeedbackFilterInput;
1550
+ sort: adminSchema.IUserFeedbackSortInput;
1551
+ page: adminSchema.IAdminPageInput;
1552
+ }>>): import("@apollo/client").QueryResult<adminSchema.IFetchUserFeedbackPageQuery, adminSchema.Exact<{
976
1553
  filter: adminSchema.IUserFeedbackFilterInput;
977
1554
  sort: adminSchema.IUserFeedbackSortInput;
978
1555
  page: adminSchema.IAdminPageInput;
979
1556
  }>>;
980
- useFetchUserFeedbackPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchUserFeedbackPageQuery, adminSchema.IFetchUserFeedbackPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchUserFeedbackPageQuery, adminSchema.Exact<{
1557
+ useFetchUserFeedbackPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchUserFeedbackPageQuery, adminSchema.Exact<{
1558
+ filter: adminSchema.IUserFeedbackFilterInput;
1559
+ sort: adminSchema.IUserFeedbackSortInput;
1560
+ page: adminSchema.IAdminPageInput;
1561
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchUserFeedbackPageQuery, adminSchema.Exact<{
981
1562
  filter: adminSchema.IUserFeedbackFilterInput;
982
1563
  sort: adminSchema.IUserFeedbackSortInput;
983
1564
  page: adminSchema.IAdminPageInput;
984
1565
  }>>;
985
- useFetchAdminBrandsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminBrandsQuery, adminSchema.IFetchAdminBrandsQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminBrandsQuery, adminSchema.Exact<{
1566
+ useFetchAdminBrandsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminBrandsQuery, adminSchema.Exact<{
1567
+ [key: string]: never;
1568
+ }>> | undefined): import("@apollo/client").QueryResult<adminSchema.IFetchAdminBrandsQuery, adminSchema.Exact<{
986
1569
  [key: string]: never;
987
1570
  }>>;
988
- useFetchAdminBrandsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminBrandsQuery, adminSchema.IFetchAdminBrandsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminBrandsQuery, adminSchema.Exact<{
1571
+ useFetchAdminBrandsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminBrandsQuery, adminSchema.Exact<{
1572
+ [key: string]: never;
1573
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminBrandsQuery, adminSchema.Exact<{
989
1574
  [key: string]: never;
990
1575
  }>>;
991
- useFetchAdminBrandsPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminBrandsPageQuery, adminSchema.IFetchAdminBrandsPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminBrandsPageQuery, adminSchema.Exact<{
1576
+ useFetchAdminBrandsPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminBrandsPageQuery, adminSchema.Exact<{
1577
+ filter: adminSchema.IBrandsFilterInput;
1578
+ sort: adminSchema.IBrandsSortInput;
1579
+ page: adminSchema.IAdminPageInput;
1580
+ }>>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminBrandsPageQuery, adminSchema.Exact<{
992
1581
  filter: adminSchema.IBrandsFilterInput;
993
1582
  sort: adminSchema.IBrandsSortInput;
994
1583
  page: adminSchema.IAdminPageInput;
995
1584
  }>>;
996
- useFetchAdminBrandsPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminBrandsPageQuery, adminSchema.IFetchAdminBrandsPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminBrandsPageQuery, adminSchema.Exact<{
1585
+ useFetchAdminBrandsPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminBrandsPageQuery, adminSchema.Exact<{
1586
+ filter: adminSchema.IBrandsFilterInput;
1587
+ sort: adminSchema.IBrandsSortInput;
1588
+ page: adminSchema.IAdminPageInput;
1589
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminBrandsPageQuery, adminSchema.Exact<{
997
1590
  filter: adminSchema.IBrandsFilterInput;
998
1591
  sort: adminSchema.IBrandsSortInput;
999
1592
  page: adminSchema.IAdminPageInput;
1000
1593
  }>>;
1001
- useFetchAdminCategoriesQuery(baseOptions?: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminCategoriesQuery, adminSchema.IFetchAdminCategoriesQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminCategoriesQuery, adminSchema.Exact<{
1594
+ useFetchAdminCategoriesQuery(baseOptions?: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminCategoriesQuery, adminSchema.Exact<{
1595
+ [key: string]: never;
1596
+ }>> | undefined): import("@apollo/client").QueryResult<adminSchema.IFetchAdminCategoriesQuery, adminSchema.Exact<{
1002
1597
  [key: string]: never;
1003
1598
  }>>;
1004
- useFetchAdminCategoriesLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminCategoriesQuery, adminSchema.IFetchAdminCategoriesQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminCategoriesQuery, adminSchema.Exact<{
1599
+ useFetchAdminCategoriesLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminCategoriesQuery, adminSchema.Exact<{
1600
+ [key: string]: never;
1601
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminCategoriesQuery, adminSchema.Exact<{
1005
1602
  [key: string]: never;
1006
1603
  }>>;
1007
- useFetchAdminCategoriesPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminCategoriesPageQuery, adminSchema.IFetchAdminCategoriesPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminCategoriesPageQuery, adminSchema.Exact<{
1604
+ useFetchAdminCategoriesPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminCategoriesPageQuery, adminSchema.Exact<{
1605
+ filter: adminSchema.ICategoriesFilterInput;
1606
+ sort: adminSchema.ICategoriesSortInput;
1607
+ page: adminSchema.IAdminPageInput;
1608
+ }>>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminCategoriesPageQuery, adminSchema.Exact<{
1008
1609
  filter: adminSchema.ICategoriesFilterInput;
1009
1610
  sort: adminSchema.ICategoriesSortInput;
1010
1611
  page: adminSchema.IAdminPageInput;
1011
1612
  }>>;
1012
- useFetchAdminCategoriesPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminCategoriesPageQuery, adminSchema.IFetchAdminCategoriesPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminCategoriesPageQuery, adminSchema.Exact<{
1613
+ useFetchAdminCategoriesPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminCategoriesPageQuery, adminSchema.Exact<{
1614
+ filter: adminSchema.ICategoriesFilterInput;
1615
+ sort: adminSchema.ICategoriesSortInput;
1616
+ page: adminSchema.IAdminPageInput;
1617
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminCategoriesPageQuery, adminSchema.Exact<{
1013
1618
  filter: adminSchema.ICategoriesFilterInput;
1014
1619
  sort: adminSchema.ICategoriesSortInput;
1015
1620
  page: adminSchema.IAdminPageInput;
1016
1621
  }>>;
1017
- useFetchAdminInvitesPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminInvitesPageQuery, adminSchema.IFetchAdminInvitesPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminInvitesPageQuery, adminSchema.Exact<{
1622
+ useFetchAdminInvitesPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminInvitesPageQuery, adminSchema.Exact<{
1623
+ filter: adminSchema.IInvitesFilterInput;
1624
+ sort: adminSchema.IInvitesSortInput;
1625
+ page: adminSchema.IAdminPageInput;
1626
+ }>>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminInvitesPageQuery, adminSchema.Exact<{
1018
1627
  filter: adminSchema.IInvitesFilterInput;
1019
1628
  sort: adminSchema.IInvitesSortInput;
1020
1629
  page: adminSchema.IAdminPageInput;
1021
1630
  }>>;
1022
- useFetchAdminInvitesPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminInvitesPageQuery, adminSchema.IFetchAdminInvitesPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminInvitesPageQuery, adminSchema.Exact<{
1631
+ useFetchAdminInvitesPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminInvitesPageQuery, adminSchema.Exact<{
1632
+ filter: adminSchema.IInvitesFilterInput;
1633
+ sort: adminSchema.IInvitesSortInput;
1634
+ page: adminSchema.IAdminPageInput;
1635
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminInvitesPageQuery, adminSchema.Exact<{
1023
1636
  filter: adminSchema.IInvitesFilterInput;
1024
1637
  sort: adminSchema.IInvitesSortInput;
1025
1638
  page: adminSchema.IAdminPageInput;
1026
1639
  }>>;
1027
- useFetchAdminOpportunitiesPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminOpportunitiesPageQuery, adminSchema.IFetchAdminOpportunitiesPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminOpportunitiesPageQuery, adminSchema.Exact<{
1640
+ useFetchAdminOpportunitiesPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminOpportunitiesPageQuery, adminSchema.Exact<{
1641
+ filter: adminSchema.IOpportunitiesFilterInput;
1642
+ sort: adminSchema.IOpportunitiesSortInput;
1643
+ page: adminSchema.IAdminPageInput;
1644
+ }>>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminOpportunitiesPageQuery, adminSchema.Exact<{
1028
1645
  filter: adminSchema.IOpportunitiesFilterInput;
1029
1646
  sort: adminSchema.IOpportunitiesSortInput;
1030
1647
  page: adminSchema.IAdminPageInput;
1031
1648
  }>>;
1032
- useFetchAdminOpportunitiesPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminOpportunitiesPageQuery, adminSchema.IFetchAdminOpportunitiesPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminOpportunitiesPageQuery, adminSchema.Exact<{
1649
+ useFetchAdminOpportunitiesPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminOpportunitiesPageQuery, adminSchema.Exact<{
1650
+ filter: adminSchema.IOpportunitiesFilterInput;
1651
+ sort: adminSchema.IOpportunitiesSortInput;
1652
+ page: adminSchema.IAdminPageInput;
1653
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminOpportunitiesPageQuery, adminSchema.Exact<{
1033
1654
  filter: adminSchema.IOpportunitiesFilterInput;
1034
1655
  sort: adminSchema.IOpportunitiesSortInput;
1035
1656
  page: adminSchema.IAdminPageInput;
1036
1657
  }>>;
1037
- useFetchAdminReferralsPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminReferralsPageQuery, adminSchema.IFetchAdminReferralsPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminReferralsPageQuery, adminSchema.Exact<{
1658
+ useFetchAdminReferralsPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminReferralsPageQuery, adminSchema.Exact<{
1659
+ filter: adminSchema.IReferralsFilterInput;
1660
+ sort: adminSchema.IReferralsSortInput;
1661
+ page: adminSchema.IAdminPageInput;
1662
+ }>>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminReferralsPageQuery, adminSchema.Exact<{
1038
1663
  filter: adminSchema.IReferralsFilterInput;
1039
1664
  sort: adminSchema.IReferralsSortInput;
1040
1665
  page: adminSchema.IAdminPageInput;
1041
1666
  }>>;
1042
- useFetchAdminReferralsPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminReferralsPageQuery, adminSchema.IFetchAdminReferralsPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminReferralsPageQuery, adminSchema.Exact<{
1667
+ useFetchAdminReferralsPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminReferralsPageQuery, adminSchema.Exact<{
1668
+ filter: adminSchema.IReferralsFilterInput;
1669
+ sort: adminSchema.IReferralsSortInput;
1670
+ page: adminSchema.IAdminPageInput;
1671
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminReferralsPageQuery, adminSchema.Exact<{
1043
1672
  filter: adminSchema.IReferralsFilterInput;
1044
1673
  sort: adminSchema.IReferralsSortInput;
1045
1674
  page: adminSchema.IAdminPageInput;
1046
1675
  }>>;
1047
- useFetchAdminUsersPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminUsersPageQuery, adminSchema.IFetchAdminUsersPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminUsersPageQuery, adminSchema.Exact<{
1676
+ useFetchAdminUsersPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminUsersPageQuery, adminSchema.Exact<{
1677
+ filter: adminSchema.IUsersFilterInput;
1678
+ sort: adminSchema.IUsersSortInput;
1679
+ page: adminSchema.IAdminPageInput;
1680
+ }>>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminUsersPageQuery, adminSchema.Exact<{
1048
1681
  filter: adminSchema.IUsersFilterInput;
1049
1682
  sort: adminSchema.IUsersSortInput;
1050
1683
  page: adminSchema.IAdminPageInput;
1051
1684
  }>>;
1052
- useFetchAdminUsersPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminUsersPageQuery, adminSchema.IFetchAdminUsersPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminUsersPageQuery, adminSchema.Exact<{
1685
+ useFetchAdminUsersPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminUsersPageQuery, adminSchema.Exact<{
1686
+ filter: adminSchema.IUsersFilterInput;
1687
+ sort: adminSchema.IUsersSortInput;
1688
+ page: adminSchema.IAdminPageInput;
1689
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminUsersPageQuery, adminSchema.Exact<{
1053
1690
  filter: adminSchema.IUsersFilterInput;
1054
1691
  sort: adminSchema.IUsersSortInput;
1055
1692
  page: adminSchema.IAdminPageInput;
1056
1693
  }>>;
1057
- useFetchAdminXpPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminXpPageQuery, adminSchema.IFetchAdminXpPageQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminXpPageQuery, adminSchema.Exact<{
1694
+ useFetchAdminXpPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminXpPageQuery, adminSchema.Exact<{
1695
+ filter: adminSchema.IXpFilterInput;
1696
+ sort: adminSchema.IXpSortInput;
1697
+ page: adminSchema.IAdminPageInput;
1698
+ }>>): import("@apollo/client").QueryResult<adminSchema.IFetchAdminXpPageQuery, adminSchema.Exact<{
1058
1699
  filter: adminSchema.IXpFilterInput;
1059
1700
  sort: adminSchema.IXpSortInput;
1060
1701
  page: adminSchema.IAdminPageInput;
1061
1702
  }>>;
1062
- useFetchAdminXpPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminXpPageQuery, adminSchema.IFetchAdminXpPageQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminXpPageQuery, adminSchema.Exact<{
1703
+ useFetchAdminXpPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchAdminXpPageQuery, adminSchema.Exact<{
1704
+ filter: adminSchema.IXpFilterInput;
1705
+ sort: adminSchema.IXpSortInput;
1706
+ page: adminSchema.IAdminPageInput;
1707
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchAdminXpPageQuery, adminSchema.Exact<{
1063
1708
  filter: adminSchema.IXpFilterInput;
1064
1709
  sort: adminSchema.IXpSortInput;
1065
1710
  page: adminSchema.IAdminPageInput;
1066
1711
  }>>;
1067
- useFetchBlockchainsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<adminSchema.IFetchBlockchainsQuery, adminSchema.IFetchBlockchainsQueryVariables>): import("@apollo/client").QueryResult<adminSchema.IFetchBlockchainsQuery, adminSchema.Exact<{
1712
+ useFetchBlockchainsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<adminSchema.IFetchBlockchainsQuery, adminSchema.Exact<{
1713
+ [key: string]: never;
1714
+ }>> | undefined): import("@apollo/client").QueryResult<adminSchema.IFetchBlockchainsQuery, adminSchema.Exact<{
1068
1715
  [key: string]: never;
1069
1716
  }>>;
1070
- useFetchBlockchainsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchBlockchainsQuery, adminSchema.IFetchBlockchainsQueryVariables>): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchBlockchainsQuery, adminSchema.Exact<{
1717
+ useFetchBlockchainsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchBlockchainsQuery, adminSchema.Exact<{
1718
+ [key: string]: never;
1719
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchBlockchainsQuery, adminSchema.Exact<{
1071
1720
  [key: string]: never;
1072
1721
  }>>;
1073
1722
  ISortDirection: typeof adminSchema.ISortDirection;