@ludo.ninja/api 2.4.4 → 2.4.5
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.
|
@@ -1235,6 +1235,10 @@ export type IOffer = {
|
|
|
1235
1235
|
price?: Maybe<Scalars['Float']>;
|
|
1236
1236
|
status?: Maybe<Scalars['String']>;
|
|
1237
1237
|
};
|
|
1238
|
+
export type IOpportunitiesPageV2 = {
|
|
1239
|
+
currentOpportunities?: Maybe<Array<Maybe<IOpportunityV2>>>;
|
|
1240
|
+
similarOpportunities?: Maybe<Array<Maybe<IOpportunityV2>>>;
|
|
1241
|
+
};
|
|
1238
1242
|
export type IOpportunity = {
|
|
1239
1243
|
opportunityId?: Maybe<Scalars['ID']>;
|
|
1240
1244
|
name?: Maybe<Scalars['String']>;
|
|
@@ -1369,7 +1373,7 @@ export type IQuery = {
|
|
|
1369
1373
|
fetchExpectations: Array<Maybe<IExpectation>>;
|
|
1370
1374
|
fetchExtensionBrands: Array<Maybe<IBrand>>;
|
|
1371
1375
|
fetchExtensionCategories: Array<Maybe<ICategory>>;
|
|
1372
|
-
|
|
1376
|
+
fetchExtensionOpportunitiesV2: IOpportunitiesPageV2;
|
|
1373
1377
|
fetchFavorites: IGalleriesPage;
|
|
1374
1378
|
fetchFavoritesV2: IGalleriesPageV2;
|
|
1375
1379
|
fetchFollowers: Array<Maybe<IFollower>>;
|
|
@@ -1576,10 +1580,10 @@ export type IQueryFetchDynamicCollectionDataArgs = {
|
|
|
1576
1580
|
export type IQueryFetchDynamicCollectionsDataArgs = {
|
|
1577
1581
|
input: Array<IDynamicCollectionDataInput>;
|
|
1578
1582
|
};
|
|
1579
|
-
export type
|
|
1580
|
-
|
|
1583
|
+
export type IQueryFetchExtensionOpportunitiesV2Args = {
|
|
1584
|
+
domain: Scalars['String'];
|
|
1581
1585
|
brandId?: Maybe<Scalars['String']>;
|
|
1582
|
-
|
|
1586
|
+
categoryId?: Maybe<Scalars['String']>;
|
|
1583
1587
|
};
|
|
1584
1588
|
export type IQueryFetchFavoritesArgs = {
|
|
1585
1589
|
pageSize: Scalars['Int'];
|
|
@@ -2388,13 +2392,16 @@ export type IFetchExtensionCategoriesQueryVariables = Exact<{
|
|
|
2388
2392
|
export type IFetchExtensionCategoriesQuery = {
|
|
2389
2393
|
fetchExtensionCategories: Array<Maybe<Pick<ICategory, 'categoryId' | 'name' | 'matchingWords'>>>;
|
|
2390
2394
|
};
|
|
2391
|
-
export type
|
|
2392
|
-
|
|
2395
|
+
export type IFetchExtensionOpportunitiesV2QueryVariables = Exact<{
|
|
2396
|
+
domain: Scalars['String'];
|
|
2393
2397
|
brandId?: Maybe<Scalars['String']>;
|
|
2394
|
-
|
|
2398
|
+
categoryId?: Maybe<Scalars['String']>;
|
|
2395
2399
|
}>;
|
|
2396
|
-
export type
|
|
2397
|
-
|
|
2400
|
+
export type IFetchExtensionOpportunitiesV2Query = {
|
|
2401
|
+
fetchExtensionOpportunitiesV2: {
|
|
2402
|
+
currentOpportunities?: Maybe<Array<Maybe<Pick<IOpportunityV2, 'opportunityId' | 'brandId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'brandName' | 'brandDescription' | 'brandMedia' | 'brandUrl' | 'brandIndustry' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | 'media' | 'reportLink' | 'shareLink'>>>>;
|
|
2403
|
+
similarOpportunities?: Maybe<Array<Maybe<Pick<IOpportunityV2, 'opportunityId' | 'brandId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'brandName' | 'brandDescription' | 'brandMedia' | 'brandUrl' | 'brandIndustry' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | 'media' | 'reportLink' | 'shareLink'>>>>;
|
|
2404
|
+
};
|
|
2398
2405
|
};
|
|
2399
2406
|
export type IFetchNftDataQueryVariables = Exact<{
|
|
2400
2407
|
blockchain: Scalars['String'];
|
|
@@ -3807,38 +3814,38 @@ export declare function useFetchExtensionCategoriesLazyQuery(baseOptions?: Apoll
|
|
|
3807
3814
|
export type FetchExtensionCategoriesQueryHookResult = ReturnType<typeof useFetchExtensionCategoriesQuery>;
|
|
3808
3815
|
export type FetchExtensionCategoriesLazyQueryHookResult = ReturnType<typeof useFetchExtensionCategoriesLazyQuery>;
|
|
3809
3816
|
export type FetchExtensionCategoriesQueryResult = Apollo.QueryResult<IFetchExtensionCategoriesQuery, IFetchExtensionCategoriesQueryVariables>;
|
|
3810
|
-
export declare const
|
|
3817
|
+
export declare const FetchExtensionOpportunitiesV2Document: Apollo.DocumentNode;
|
|
3811
3818
|
/**
|
|
3812
|
-
*
|
|
3819
|
+
* __useFetchExtensionOpportunitiesV2Query__
|
|
3813
3820
|
*
|
|
3814
|
-
* To run a query within a React component, call `
|
|
3815
|
-
* When your component renders, `
|
|
3821
|
+
* To run a query within a React component, call `useFetchExtensionOpportunitiesV2Query` and pass it any options that fit your needs.
|
|
3822
|
+
* When your component renders, `useFetchExtensionOpportunitiesV2Query` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3816
3823
|
* you can use to render your UI.
|
|
3817
3824
|
*
|
|
3818
3825
|
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
3819
3826
|
*
|
|
3820
3827
|
* @example
|
|
3821
|
-
* const { data, loading, error } =
|
|
3828
|
+
* const { data, loading, error } = useFetchExtensionOpportunitiesV2Query({
|
|
3822
3829
|
* variables: {
|
|
3823
|
-
*
|
|
3830
|
+
* domain: // value for 'domain'
|
|
3824
3831
|
* brandId: // value for 'brandId'
|
|
3825
|
-
*
|
|
3832
|
+
* categoryId: // value for 'categoryId'
|
|
3826
3833
|
* },
|
|
3827
3834
|
* });
|
|
3828
3835
|
*/
|
|
3829
|
-
export declare function
|
|
3830
|
-
|
|
3836
|
+
export declare function useFetchExtensionOpportunitiesV2Query(baseOptions: Apollo.QueryHookOptions<IFetchExtensionOpportunitiesV2Query, IFetchExtensionOpportunitiesV2QueryVariables>): Apollo.QueryResult<IFetchExtensionOpportunitiesV2Query, Exact<{
|
|
3837
|
+
domain: string;
|
|
3831
3838
|
brandId?: Maybe<string> | undefined;
|
|
3832
|
-
|
|
3839
|
+
categoryId?: Maybe<string> | undefined;
|
|
3833
3840
|
}>>;
|
|
3834
|
-
export declare function
|
|
3835
|
-
|
|
3841
|
+
export declare function useFetchExtensionOpportunitiesV2LazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchExtensionOpportunitiesV2Query, IFetchExtensionOpportunitiesV2QueryVariables>): Apollo.LazyQueryResultTuple<IFetchExtensionOpportunitiesV2Query, Exact<{
|
|
3842
|
+
domain: string;
|
|
3836
3843
|
brandId?: Maybe<string> | undefined;
|
|
3837
|
-
|
|
3844
|
+
categoryId?: Maybe<string> | undefined;
|
|
3838
3845
|
}>>;
|
|
3839
|
-
export type
|
|
3840
|
-
export type
|
|
3841
|
-
export type
|
|
3846
|
+
export type FetchExtensionOpportunitiesV2QueryHookResult = ReturnType<typeof useFetchExtensionOpportunitiesV2Query>;
|
|
3847
|
+
export type FetchExtensionOpportunitiesV2LazyQueryHookResult = ReturnType<typeof useFetchExtensionOpportunitiesV2LazyQuery>;
|
|
3848
|
+
export type FetchExtensionOpportunitiesV2QueryResult = Apollo.QueryResult<IFetchExtensionOpportunitiesV2Query, IFetchExtensionOpportunitiesV2QueryVariables>;
|
|
3842
3849
|
export declare const FetchNftDataDocument: Apollo.DocumentNode;
|
|
3843
3850
|
/**
|
|
3844
3851
|
* __useFetchNftDataQuery__
|
|
@@ -24,11 +24,11 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
exports.useFetchDynamicCollectionsDataQuery = exports.FetchDynamicCollectionsDataDocument = exports.useFetchDynamicCollectionDataLazyQuery = exports.useFetchDynamicCollectionDataQuery = exports.FetchDynamicCollectionDataDocument = exports.useFetchCollectionsByIdsLazyQuery = exports.useFetchCollectionsByIdsQuery = exports.FetchCollectionsByIdsDocument = exports.useFetchCollectionsLazyQuery = exports.useFetchCollectionsQuery = exports.FetchCollectionsDocument = exports.useFetchCollectionLazyQuery = exports.useFetchCollectionQuery = exports.FetchCollectionDocument = exports.useLikeCollectionMutation = exports.LikeCollectionDocument = exports.useDislikeCollectionMutation = exports.DislikeCollectionDocument = exports.useFetchLikedLazyQuery = exports.useFetchLikedQuery = exports.FetchLikedDocument = exports.useFetchDynamicAssetsLikesLazyQuery = exports.useFetchDynamicAssetsLikesQuery = exports.FetchDynamicAssetsLikesDocument = exports.useFetchDynamicAssetLikesLazyQuery = exports.useFetchDynamicAssetLikesQuery = exports.FetchDynamicAssetLikesDocument = exports.useFetchAssetsLazyQuery = exports.useFetchAssetsQuery = exports.FetchAssetsDocument = exports.useFetchAssetByBlockchainLazyQuery = exports.useFetchAssetByBlockchainQuery = exports.FetchAssetByBlockchainDocument = exports.useFetchAssetLazyQuery = exports.useFetchAssetQuery = exports.FetchAssetDocument = exports.useLikeAssetMutation = exports.LikeAssetDocument = exports.useDislikeAssetMutation = exports.DislikeAssetDocument = exports.useFetchAdminXpPageLazyQuery = exports.useFetchAdminXpPageQuery = exports.FetchAdminXpPageDocument = exports.useRemoveInviteCodeMutation = exports.RemoveInviteCodeDocument = exports.useAddInviteCodesMutation = exports.AddInviteCodesDocument = exports.useChangeXpPointsMutation = exports.ChangeXpPointsDocument = exports.ISortDirection = void 0;
|
|
27
|
-
exports.
|
|
28
|
-
exports.
|
|
29
|
-
exports.
|
|
30
|
-
exports.
|
|
31
|
-
exports.useFindUserShowcaseItemsLazyQuery = exports.useFindUserShowcaseItemsQuery = exports.FindUserShowcaseItemsDocument = exports.useFindUserCreationsLazyQuery = exports.useFindUserCreationsQuery = exports.FindUserCreationsDocument = exports.useFindShowcaseItemsLazyQuery = exports.useFindShowcaseItemsQuery = exports.FindShowcaseItemsDocument = exports.useFindSetsLazyQuery = exports.useFindSetsQuery = exports.FindSetsDocument = exports.useFindProfilesByNameLazyQuery = exports.useFindProfilesByNameQuery = exports.FindProfilesByNameDocument = exports.useFindCreationsLazyQuery = exports.useFindCreationsQuery = void 0;
|
|
27
|
+
exports.AddCreationsToGalleryV2Document = exports.useAddCreationsToGalleryMutation = exports.AddCreationsToGalleryDocument = exports.useAddCollectionsToGalleryV2Mutation = exports.AddCollectionsToGalleryV2Document = exports.useAddCollectionsToGalleryMutation = exports.AddCollectionsToGalleryDocument = exports.useUploadGalleryBannerMutation = exports.UploadGalleryBannerDocument = exports.useAddAssetsToGalleryV2Mutation = exports.AddAssetsToGalleryV2Document = exports.useAddAssetsToGalleryMutation = exports.AddAssetsToGalleryDocument = exports.useFetchNftRanksLazyQuery = exports.useFetchNftRanksQuery = exports.FetchNftRanksDocument = exports.useFetchNftDataLazyQuery = exports.useFetchNftDataQuery = exports.FetchNftDataDocument = exports.useFetchExtensionOpportunitiesV2LazyQuery = exports.useFetchExtensionOpportunitiesV2Query = exports.FetchExtensionOpportunitiesV2Document = exports.useFetchExtensionCategoriesLazyQuery = exports.useFetchExtensionCategoriesQuery = exports.FetchExtensionCategoriesDocument = exports.useFetchExtensionBrandsLazyQuery = exports.useFetchExtensionBrandsQuery = exports.FetchExtensionBrandsDocument = exports.useFetchCollectionRanksLazyQuery = exports.useFetchCollectionRanksQuery = exports.FetchCollectionRanksDocument = exports.useVisitPageV2Mutation = exports.VisitPageV2Document = exports.useOpenOpportunityV2Mutation = exports.OpenOpportunityV2Document = exports.useHideOpportunityV2Mutation = exports.HideOpportunityV2Document = exports.useOnMyExperienceUpdatedSubscription = exports.OnMyExperienceUpdatedDocument = exports.useOnMyExperienceIncrementedSubscription = exports.OnMyExperienceIncrementedDocument = exports.useOnInviteCodeUsedSubscription = exports.OnInviteCodeUsedDocument = exports.useFetchMyTasksLazyQuery = exports.useFetchMyTasksQuery = exports.FetchMyTasksDocument = exports.useFetchMyExperienceV2LazyQuery = exports.useFetchMyExperienceV2Query = exports.FetchMyExperienceV2Document = exports.useFetchDynamicCollectionsDataLazyQuery = void 0;
|
|
28
|
+
exports.useFetchUserFavoritesV2Query = exports.FetchUserFavoritesV2Document = exports.useFetchUserFavoritesLazyQuery = exports.useFetchUserFavoritesQuery = exports.FetchUserFavoritesDocument = exports.useFetchMyGalleriesV2LazyQuery = exports.useFetchMyGalleriesV2Query = exports.FetchMyGalleriesV2Document = exports.useFetchMyFavoritesV2LazyQuery = exports.useFetchMyFavoritesV2Query = exports.FetchMyFavoritesV2Document = exports.useFetchMyFavoritesLazyQuery = exports.useFetchMyFavoritesQuery = exports.FetchMyFavoritesDocument = exports.useFetchGalleryV2LazyQuery = exports.useFetchGalleryV2Query = exports.FetchGalleryV2Document = exports.useFetchGalleryCreationsLazyQuery = exports.useFetchGalleryCreationsQuery = exports.FetchGalleryCreationsDocument = exports.useFetchGalleryLazyQuery = exports.useFetchGalleryQuery = exports.FetchGalleryDocument = exports.useRemoveCreationFromGalleryV2Mutation = exports.RemoveCreationFromGalleryV2Document = exports.useRemoveCreationFromGalleryMutation = exports.RemoveCreationFromGalleryDocument = exports.useRemoveCollectionFromGalleryV2Mutation = exports.RemoveCollectionFromGalleryV2Document = exports.useRemoveCollectionFromGalleryMutation = exports.RemoveCollectionFromGalleryDocument = exports.useRemoveAssetFromGalleryV2Mutation = exports.RemoveAssetFromGalleryV2Document = exports.useRemoveAssetFromGalleryMutation = exports.RemoveAssetFromGalleryDocument = exports.useEditGalleryMutation = exports.EditGalleryDocument = exports.useDeleteGalleryBannerMutation = exports.DeleteGalleryBannerDocument = exports.useDeleteGalleryMutation = exports.DeleteGalleryDocument = exports.useCreateGalleryV2Mutation = exports.CreateGalleryV2Document = exports.useCreateGalleryMutation = exports.CreateGalleryDocument = exports.useCreateFavoritesMutation = exports.CreateFavoritesDocument = exports.useCreateFavoriteListV2Mutation = exports.CreateFavoriteListV2Document = exports.useAddCreationsToGalleryV2Mutation = void 0;
|
|
29
|
+
exports.GetMyInviteCodesDocument = exports.useFetchUserWalletsLazyQuery = exports.useFetchUserWalletsQuery = exports.FetchUserWalletsDocument = exports.useFetchProfileLazyQuery = exports.useFetchProfileQuery = exports.FetchProfileDocument = exports.useUpdateProfileMutation = exports.UpdateProfileDocument = exports.useSignInTezosMutation = exports.SignInTezosDocument = exports.useSignInSolanaMutation = exports.SignInSolanaDocument = exports.useSignInMetamaskMutation = exports.SignInMetamaskDocument = exports.useSignInFlowMutation = exports.SignInFlowDocument = exports.useSignInElrondMutation = exports.SignInElrondDocument = exports.useSetMainWalletMutation = exports.SetMainWalletDocument = exports.useRevokeTokenMutation = exports.RevokeTokenDocument = exports.useRemoveWalletMutation = exports.RemoveWalletDocument = exports.useRefreshTokenMutation = exports.RefreshTokenDocument = exports.useUseInviteCodeMutation = exports.UseInviteCodeDocument = exports.useGenerateNewInviteCodesMutation = exports.GenerateNewInviteCodesDocument = exports.useCreateNonceMutation = exports.CreateNonceDocument = exports.useAddWalletTezosMutation = exports.AddWalletTezosDocument = exports.useAddWalletSolanaMutation = exports.AddWalletSolanaDocument = exports.useAddWalletMetamaskMutation = exports.AddWalletMetamaskDocument = exports.useAddWalletFlowMutation = exports.AddWalletFlowDocument = exports.useAddWalletElrondMutation = exports.AddWalletElrondDocument = exports.useFetchUserGalleriesV2LazyQuery = exports.useFetchUserGalleriesV2Query = exports.FetchUserGalleriesV2Document = exports.useFetchUserGalleriesLazyQuery = exports.useFetchUserGalleriesQuery = exports.FetchUserGalleriesDocument = exports.useFetchUserFavoritesV2LazyQuery = void 0;
|
|
30
|
+
exports.FetchAssetsCountDocument = exports.useFetchAllCreationsLazyQuery = exports.useFetchAllCreationsQuery = exports.FetchAllCreationsDocument = exports.useFetchSetsSearchResultTypeSelectionsLazyQuery = exports.useFetchSetsSearchResultTypeSelectionsQuery = exports.FetchSetsSearchResultTypeSelectionsDocument = exports.useFetchSearchResultStatusSelectionsLazyQuery = exports.useFetchSearchResultStatusSelectionsQuery = exports.FetchSearchResultStatusSelectionsDocument = exports.useFetchSearchResultCategorySelectionsLazyQuery = exports.useFetchSearchResultCategorySelectionsQuery = exports.FetchSearchResultCategorySelectionsDocument = exports.useFetchSearchResultBlockchainSelectionsLazyQuery = exports.useFetchSearchResultBlockchainSelectionsQuery = exports.FetchSearchResultBlockchainSelectionsDocument = exports.useFetchUserInterestsLazyQuery = exports.useFetchUserInterestsQuery = exports.FetchUserInterestsDocument = exports.useFetchUserExpectationsLazyQuery = exports.useFetchUserExpectationsQuery = exports.FetchUserExpectationsDocument = exports.useFetchSearchResultTimeSelectionsLazyQuery = exports.useFetchSearchResultTimeSelectionsQuery = exports.FetchSearchResultTimeSelectionsDocument = exports.useFetchSearchResultSelectionsLazyQuery = exports.useFetchSearchResultSelectionsQuery = exports.FetchSearchResultSelectionsDocument = exports.useFetchInterestsLazyQuery = exports.useFetchInterestsQuery = exports.FetchInterestsDocument = exports.useFetchExpectationsLazyQuery = exports.useFetchExpectationsQuery = exports.FetchExpectationsDocument = exports.useSaveUserInterestsMutation = exports.SaveUserInterestsDocument = exports.useSaveUserExpectationsMutation = exports.SaveUserExpectationsDocument = exports.useFetchOpportunitiesLazyQuery = exports.useFetchOpportunitiesQuery = exports.FetchOpportunitiesDocument = exports.useOpenOpportunityMutation = exports.OpenOpportunityDocument = exports.useCreateOpportunityMutation = exports.CreateOpportunityDocument = exports.useFetchUserpicLazyQuery = exports.useFetchUserpicQuery = exports.FetchUserpicDocument = exports.useGetMyInviteCodesLazyQuery = exports.useGetMyInviteCodesQuery = void 0;
|
|
31
|
+
exports.useFindUserShowcaseItemsLazyQuery = exports.useFindUserShowcaseItemsQuery = exports.FindUserShowcaseItemsDocument = exports.useFindUserCreationsLazyQuery = exports.useFindUserCreationsQuery = exports.FindUserCreationsDocument = exports.useFindShowcaseItemsLazyQuery = exports.useFindShowcaseItemsQuery = exports.FindShowcaseItemsDocument = exports.useFindSetsLazyQuery = exports.useFindSetsQuery = exports.FindSetsDocument = exports.useFindProfilesByNameLazyQuery = exports.useFindProfilesByNameQuery = exports.FindProfilesByNameDocument = exports.useFindCreationsLazyQuery = exports.useFindCreationsQuery = exports.FindCreationsDocument = exports.useFetchUserPortfolioLazyQuery = exports.useFetchUserPortfolioQuery = exports.FetchUserPortfolioDocument = exports.useFindAllTopEntitiesByNameLazyQuery = exports.useFindAllTopEntitiesByNameQuery = exports.FindAllTopEntitiesByNameDocument = exports.useFetchCreationsByTypeLazyQuery = exports.useFetchCreationsByTypeQuery = exports.FetchCreationsByTypeDocument = exports.useFindCollectionsLazyQuery = exports.useFindCollectionsQuery = exports.FindCollectionsDocument = exports.useFetchAssetsCountLazyQuery = exports.useFetchAssetsCountQuery = void 0;
|
|
32
32
|
/* eslint-disable */
|
|
33
33
|
const client_1 = require("@apollo/client");
|
|
34
34
|
const Apollo = __importStar(require("@apollo/client"));
|
|
@@ -1183,6 +1183,117 @@ function useOnMyExperienceUpdatedSubscription(baseOptions) {
|
|
|
1183
1183
|
return Apollo.useSubscription(exports.OnMyExperienceUpdatedDocument, baseOptions);
|
|
1184
1184
|
}
|
|
1185
1185
|
exports.useOnMyExperienceUpdatedSubscription = useOnMyExperienceUpdatedSubscription;
|
|
1186
|
+
exports.HideOpportunityV2Document = (0, client_1.gql) `
|
|
1187
|
+
mutation HideOpportunityV2($opportunityId: ID!) {
|
|
1188
|
+
hideOpportunityV2(opportunityId: $opportunityId)
|
|
1189
|
+
}
|
|
1190
|
+
`;
|
|
1191
|
+
/**
|
|
1192
|
+
* __useHideOpportunityV2Mutation__
|
|
1193
|
+
*
|
|
1194
|
+
* To run a mutation, you first call `useHideOpportunityV2Mutation` within a React component and pass it any options that fit your needs.
|
|
1195
|
+
* When your component renders, `useHideOpportunityV2Mutation` returns a tuple that includes:
|
|
1196
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
1197
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
1198
|
+
*
|
|
1199
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
1200
|
+
*
|
|
1201
|
+
* @example
|
|
1202
|
+
* const [hideOpportunityV2Mutation, { data, loading, error }] = useHideOpportunityV2Mutation({
|
|
1203
|
+
* variables: {
|
|
1204
|
+
* opportunityId: // value for 'opportunityId'
|
|
1205
|
+
* },
|
|
1206
|
+
* });
|
|
1207
|
+
*/
|
|
1208
|
+
function useHideOpportunityV2Mutation(baseOptions) {
|
|
1209
|
+
return Apollo.useMutation(exports.HideOpportunityV2Document, baseOptions);
|
|
1210
|
+
}
|
|
1211
|
+
exports.useHideOpportunityV2Mutation = useHideOpportunityV2Mutation;
|
|
1212
|
+
exports.OpenOpportunityV2Document = (0, client_1.gql) `
|
|
1213
|
+
mutation OpenOpportunityV2($opportunityId: ID!) {
|
|
1214
|
+
openOpportunityV2(opportunityId: $opportunityId)
|
|
1215
|
+
}
|
|
1216
|
+
`;
|
|
1217
|
+
/**
|
|
1218
|
+
* __useOpenOpportunityV2Mutation__
|
|
1219
|
+
*
|
|
1220
|
+
* To run a mutation, you first call `useOpenOpportunityV2Mutation` within a React component and pass it any options that fit your needs.
|
|
1221
|
+
* When your component renders, `useOpenOpportunityV2Mutation` returns a tuple that includes:
|
|
1222
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
1223
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
1224
|
+
*
|
|
1225
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
1226
|
+
*
|
|
1227
|
+
* @example
|
|
1228
|
+
* const [openOpportunityV2Mutation, { data, loading, error }] = useOpenOpportunityV2Mutation({
|
|
1229
|
+
* variables: {
|
|
1230
|
+
* opportunityId: // value for 'opportunityId'
|
|
1231
|
+
* },
|
|
1232
|
+
* });
|
|
1233
|
+
*/
|
|
1234
|
+
function useOpenOpportunityV2Mutation(baseOptions) {
|
|
1235
|
+
return Apollo.useMutation(exports.OpenOpportunityV2Document, baseOptions);
|
|
1236
|
+
}
|
|
1237
|
+
exports.useOpenOpportunityV2Mutation = useOpenOpportunityV2Mutation;
|
|
1238
|
+
exports.VisitPageV2Document = (0, client_1.gql) `
|
|
1239
|
+
mutation VisitPageV2($domain: String!, $title: String!, $description: String, $tags: [String], $brandId: String, $category: String) {
|
|
1240
|
+
visitPageV2(
|
|
1241
|
+
domain: $domain
|
|
1242
|
+
title: $title
|
|
1243
|
+
description: $description
|
|
1244
|
+
tags: $tags
|
|
1245
|
+
brandId: $brandId
|
|
1246
|
+
category: $category
|
|
1247
|
+
) {
|
|
1248
|
+
opportunityId
|
|
1249
|
+
brandId
|
|
1250
|
+
categoryId
|
|
1251
|
+
opportunityStatus
|
|
1252
|
+
opportunityType
|
|
1253
|
+
notificationType
|
|
1254
|
+
name
|
|
1255
|
+
brandName
|
|
1256
|
+
brandDescription
|
|
1257
|
+
brandMedia
|
|
1258
|
+
brandUrl
|
|
1259
|
+
brandIndustry
|
|
1260
|
+
categoryName
|
|
1261
|
+
ludoUrl
|
|
1262
|
+
projectUrl
|
|
1263
|
+
activeFrom
|
|
1264
|
+
activeUntil
|
|
1265
|
+
media
|
|
1266
|
+
reportLink
|
|
1267
|
+
shareLink
|
|
1268
|
+
}
|
|
1269
|
+
}
|
|
1270
|
+
`;
|
|
1271
|
+
/**
|
|
1272
|
+
* __useVisitPageV2Mutation__
|
|
1273
|
+
*
|
|
1274
|
+
* To run a mutation, you first call `useVisitPageV2Mutation` within a React component and pass it any options that fit your needs.
|
|
1275
|
+
* When your component renders, `useVisitPageV2Mutation` returns a tuple that includes:
|
|
1276
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
1277
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
1278
|
+
*
|
|
1279
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
1280
|
+
*
|
|
1281
|
+
* @example
|
|
1282
|
+
* const [visitPageV2Mutation, { data, loading, error }] = useVisitPageV2Mutation({
|
|
1283
|
+
* variables: {
|
|
1284
|
+
* domain: // value for 'domain'
|
|
1285
|
+
* title: // value for 'title'
|
|
1286
|
+
* description: // value for 'description'
|
|
1287
|
+
* tags: // value for 'tags'
|
|
1288
|
+
* brandId: // value for 'brandId'
|
|
1289
|
+
* category: // value for 'category'
|
|
1290
|
+
* },
|
|
1291
|
+
* });
|
|
1292
|
+
*/
|
|
1293
|
+
function useVisitPageV2Mutation(baseOptions) {
|
|
1294
|
+
return Apollo.useMutation(exports.VisitPageV2Document, baseOptions);
|
|
1295
|
+
}
|
|
1296
|
+
exports.useVisitPageV2Mutation = useVisitPageV2Mutation;
|
|
1186
1297
|
exports.FetchCollectionRanksDocument = (0, client_1.gql) `
|
|
1187
1298
|
query FetchCollectionRanks($collectionKeys: [CollectionKey!]!) {
|
|
1188
1299
|
fetchCollectionRanks(collectionKeys: $collectionKeys) {
|
|
@@ -1219,6 +1330,154 @@ function useFetchCollectionRanksLazyQuery(baseOptions) {
|
|
|
1219
1330
|
return Apollo.useLazyQuery(exports.FetchCollectionRanksDocument, baseOptions);
|
|
1220
1331
|
}
|
|
1221
1332
|
exports.useFetchCollectionRanksLazyQuery = useFetchCollectionRanksLazyQuery;
|
|
1333
|
+
exports.FetchExtensionBrandsDocument = (0, client_1.gql) `
|
|
1334
|
+
query FetchExtensionBrands {
|
|
1335
|
+
fetchExtensionBrands {
|
|
1336
|
+
brandId
|
|
1337
|
+
name
|
|
1338
|
+
matchingWords
|
|
1339
|
+
description
|
|
1340
|
+
industry
|
|
1341
|
+
link
|
|
1342
|
+
media
|
|
1343
|
+
}
|
|
1344
|
+
}
|
|
1345
|
+
`;
|
|
1346
|
+
/**
|
|
1347
|
+
* __useFetchExtensionBrandsQuery__
|
|
1348
|
+
*
|
|
1349
|
+
* To run a query within a React component, call `useFetchExtensionBrandsQuery` and pass it any options that fit your needs.
|
|
1350
|
+
* When your component renders, `useFetchExtensionBrandsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
1351
|
+
* you can use to render your UI.
|
|
1352
|
+
*
|
|
1353
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
1354
|
+
*
|
|
1355
|
+
* @example
|
|
1356
|
+
* const { data, loading, error } = useFetchExtensionBrandsQuery({
|
|
1357
|
+
* variables: {
|
|
1358
|
+
* },
|
|
1359
|
+
* });
|
|
1360
|
+
*/
|
|
1361
|
+
function useFetchExtensionBrandsQuery(baseOptions) {
|
|
1362
|
+
return Apollo.useQuery(exports.FetchExtensionBrandsDocument, baseOptions);
|
|
1363
|
+
}
|
|
1364
|
+
exports.useFetchExtensionBrandsQuery = useFetchExtensionBrandsQuery;
|
|
1365
|
+
function useFetchExtensionBrandsLazyQuery(baseOptions) {
|
|
1366
|
+
return Apollo.useLazyQuery(exports.FetchExtensionBrandsDocument, baseOptions);
|
|
1367
|
+
}
|
|
1368
|
+
exports.useFetchExtensionBrandsLazyQuery = useFetchExtensionBrandsLazyQuery;
|
|
1369
|
+
exports.FetchExtensionCategoriesDocument = (0, client_1.gql) `
|
|
1370
|
+
query FetchExtensionCategories {
|
|
1371
|
+
fetchExtensionCategories {
|
|
1372
|
+
categoryId
|
|
1373
|
+
name
|
|
1374
|
+
matchingWords
|
|
1375
|
+
}
|
|
1376
|
+
}
|
|
1377
|
+
`;
|
|
1378
|
+
/**
|
|
1379
|
+
* __useFetchExtensionCategoriesQuery__
|
|
1380
|
+
*
|
|
1381
|
+
* To run a query within a React component, call `useFetchExtensionCategoriesQuery` and pass it any options that fit your needs.
|
|
1382
|
+
* When your component renders, `useFetchExtensionCategoriesQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
1383
|
+
* you can use to render your UI.
|
|
1384
|
+
*
|
|
1385
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
1386
|
+
*
|
|
1387
|
+
* @example
|
|
1388
|
+
* const { data, loading, error } = useFetchExtensionCategoriesQuery({
|
|
1389
|
+
* variables: {
|
|
1390
|
+
* },
|
|
1391
|
+
* });
|
|
1392
|
+
*/
|
|
1393
|
+
function useFetchExtensionCategoriesQuery(baseOptions) {
|
|
1394
|
+
return Apollo.useQuery(exports.FetchExtensionCategoriesDocument, baseOptions);
|
|
1395
|
+
}
|
|
1396
|
+
exports.useFetchExtensionCategoriesQuery = useFetchExtensionCategoriesQuery;
|
|
1397
|
+
function useFetchExtensionCategoriesLazyQuery(baseOptions) {
|
|
1398
|
+
return Apollo.useLazyQuery(exports.FetchExtensionCategoriesDocument, baseOptions);
|
|
1399
|
+
}
|
|
1400
|
+
exports.useFetchExtensionCategoriesLazyQuery = useFetchExtensionCategoriesLazyQuery;
|
|
1401
|
+
exports.FetchExtensionOpportunitiesV2Document = (0, client_1.gql) `
|
|
1402
|
+
query FetchExtensionOpportunitiesV2($domain: String!, $brandId: String, $categoryId: String) {
|
|
1403
|
+
fetchExtensionOpportunitiesV2(
|
|
1404
|
+
domain: $domain
|
|
1405
|
+
brandId: $brandId
|
|
1406
|
+
categoryId: $categoryId
|
|
1407
|
+
) {
|
|
1408
|
+
currentOpportunities {
|
|
1409
|
+
opportunityId
|
|
1410
|
+
brandId
|
|
1411
|
+
categoryId
|
|
1412
|
+
opportunityStatus
|
|
1413
|
+
opportunityType
|
|
1414
|
+
notificationType
|
|
1415
|
+
name
|
|
1416
|
+
brandName
|
|
1417
|
+
brandDescription
|
|
1418
|
+
brandMedia
|
|
1419
|
+
brandUrl
|
|
1420
|
+
brandIndustry
|
|
1421
|
+
categoryName
|
|
1422
|
+
ludoUrl
|
|
1423
|
+
projectUrl
|
|
1424
|
+
activeFrom
|
|
1425
|
+
activeUntil
|
|
1426
|
+
media
|
|
1427
|
+
reportLink
|
|
1428
|
+
shareLink
|
|
1429
|
+
}
|
|
1430
|
+
similarOpportunities {
|
|
1431
|
+
opportunityId
|
|
1432
|
+
brandId
|
|
1433
|
+
categoryId
|
|
1434
|
+
opportunityStatus
|
|
1435
|
+
opportunityType
|
|
1436
|
+
notificationType
|
|
1437
|
+
name
|
|
1438
|
+
brandName
|
|
1439
|
+
brandDescription
|
|
1440
|
+
brandMedia
|
|
1441
|
+
brandUrl
|
|
1442
|
+
brandIndustry
|
|
1443
|
+
categoryName
|
|
1444
|
+
ludoUrl
|
|
1445
|
+
projectUrl
|
|
1446
|
+
activeFrom
|
|
1447
|
+
activeUntil
|
|
1448
|
+
media
|
|
1449
|
+
reportLink
|
|
1450
|
+
shareLink
|
|
1451
|
+
}
|
|
1452
|
+
}
|
|
1453
|
+
}
|
|
1454
|
+
`;
|
|
1455
|
+
/**
|
|
1456
|
+
* __useFetchExtensionOpportunitiesV2Query__
|
|
1457
|
+
*
|
|
1458
|
+
* To run a query within a React component, call `useFetchExtensionOpportunitiesV2Query` and pass it any options that fit your needs.
|
|
1459
|
+
* When your component renders, `useFetchExtensionOpportunitiesV2Query` returns an object from Apollo Client that contains loading, error, and data properties
|
|
1460
|
+
* you can use to render your UI.
|
|
1461
|
+
*
|
|
1462
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
1463
|
+
*
|
|
1464
|
+
* @example
|
|
1465
|
+
* const { data, loading, error } = useFetchExtensionOpportunitiesV2Query({
|
|
1466
|
+
* variables: {
|
|
1467
|
+
* domain: // value for 'domain'
|
|
1468
|
+
* brandId: // value for 'brandId'
|
|
1469
|
+
* categoryId: // value for 'categoryId'
|
|
1470
|
+
* },
|
|
1471
|
+
* });
|
|
1472
|
+
*/
|
|
1473
|
+
function useFetchExtensionOpportunitiesV2Query(baseOptions) {
|
|
1474
|
+
return Apollo.useQuery(exports.FetchExtensionOpportunitiesV2Document, baseOptions);
|
|
1475
|
+
}
|
|
1476
|
+
exports.useFetchExtensionOpportunitiesV2Query = useFetchExtensionOpportunitiesV2Query;
|
|
1477
|
+
function useFetchExtensionOpportunitiesV2LazyQuery(baseOptions) {
|
|
1478
|
+
return Apollo.useLazyQuery(exports.FetchExtensionOpportunitiesV2Document, baseOptions);
|
|
1479
|
+
}
|
|
1480
|
+
exports.useFetchExtensionOpportunitiesV2LazyQuery = useFetchExtensionOpportunitiesV2LazyQuery;
|
|
1222
1481
|
exports.FetchNftDataDocument = (0, client_1.gql) `
|
|
1223
1482
|
query FetchNFTData($blockchain: String!, $contractAddress: String, $tokenId: String, $elrondId: String) {
|
|
1224
1483
|
fetchNFTData(
|
package/package.json
CHANGED
|
@@ -1512,6 +1512,11 @@ export type IOffer = {
|
|
|
1512
1512
|
status?: Maybe<Scalars['String']>;
|
|
1513
1513
|
};
|
|
1514
1514
|
|
|
1515
|
+
export type IOpportunitiesPageV2 = {
|
|
1516
|
+
currentOpportunities?: Maybe<Array<Maybe<IOpportunityV2>>>;
|
|
1517
|
+
similarOpportunities?: Maybe<Array<Maybe<IOpportunityV2>>>;
|
|
1518
|
+
};
|
|
1519
|
+
|
|
1515
1520
|
export type IOpportunity = {
|
|
1516
1521
|
opportunityId?: Maybe<Scalars['ID']>;
|
|
1517
1522
|
name?: Maybe<Scalars['String']>;
|
|
@@ -1654,7 +1659,7 @@ export type IQuery = {
|
|
|
1654
1659
|
fetchExpectations: Array<Maybe<IExpectation>>;
|
|
1655
1660
|
fetchExtensionBrands: Array<Maybe<IBrand>>;
|
|
1656
1661
|
fetchExtensionCategories: Array<Maybe<ICategory>>;
|
|
1657
|
-
|
|
1662
|
+
fetchExtensionOpportunitiesV2: IOpportunitiesPageV2;
|
|
1658
1663
|
fetchFavorites: IGalleriesPage;
|
|
1659
1664
|
fetchFavoritesV2: IGalleriesPageV2;
|
|
1660
1665
|
fetchFollowers: Array<Maybe<IFollower>>;
|
|
@@ -1917,10 +1922,10 @@ export type IQueryFetchDynamicCollectionsDataArgs = {
|
|
|
1917
1922
|
};
|
|
1918
1923
|
|
|
1919
1924
|
|
|
1920
|
-
export type
|
|
1921
|
-
|
|
1925
|
+
export type IQueryFetchExtensionOpportunitiesV2Args = {
|
|
1926
|
+
domain: Scalars['String'];
|
|
1922
1927
|
brandId?: Maybe<Scalars['String']>;
|
|
1923
|
-
|
|
1928
|
+
categoryId?: Maybe<Scalars['String']>;
|
|
1924
1929
|
};
|
|
1925
1930
|
|
|
1926
1931
|
|
|
@@ -2933,14 +2938,14 @@ export type IFetchExtensionCategoriesQueryVariables = Exact<{ [key: string]: nev
|
|
|
2933
2938
|
|
|
2934
2939
|
export type IFetchExtensionCategoriesQuery = { fetchExtensionCategories: Array<Maybe<Pick<ICategory, 'categoryId' | 'name' | 'matchingWords'>>> };
|
|
2935
2940
|
|
|
2936
|
-
export type
|
|
2937
|
-
|
|
2941
|
+
export type IFetchExtensionOpportunitiesV2QueryVariables = Exact<{
|
|
2942
|
+
domain: Scalars['String'];
|
|
2938
2943
|
brandId?: Maybe<Scalars['String']>;
|
|
2939
|
-
|
|
2944
|
+
categoryId?: Maybe<Scalars['String']>;
|
|
2940
2945
|
}>;
|
|
2941
2946
|
|
|
2942
2947
|
|
|
2943
|
-
export type
|
|
2948
|
+
export type IFetchExtensionOpportunitiesV2Query = { fetchExtensionOpportunitiesV2: { currentOpportunities?: Maybe<Array<Maybe<Pick<IOpportunityV2, 'opportunityId' | 'brandId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'brandName' | 'brandDescription' | 'brandMedia' | 'brandUrl' | 'brandIndustry' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | 'media' | 'reportLink' | 'shareLink'>>>>, similarOpportunities?: Maybe<Array<Maybe<Pick<IOpportunityV2, 'opportunityId' | 'brandId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'brandName' | 'brandDescription' | 'brandMedia' | 'brandUrl' | 'brandIndustry' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | 'media' | 'reportLink' | 'shareLink'>>>> } };
|
|
2944
2949
|
|
|
2945
2950
|
export type IFetchNftDataQueryVariables = Exact<{
|
|
2946
2951
|
blockchain: Scalars['String'];
|
|
@@ -5116,64 +5121,88 @@ export function useFetchExtensionCategoriesLazyQuery(baseOptions?: Apollo.LazyQu
|
|
|
5116
5121
|
export type FetchExtensionCategoriesQueryHookResult = ReturnType<typeof useFetchExtensionCategoriesQuery>;
|
|
5117
5122
|
export type FetchExtensionCategoriesLazyQueryHookResult = ReturnType<typeof useFetchExtensionCategoriesLazyQuery>;
|
|
5118
5123
|
export type FetchExtensionCategoriesQueryResult = Apollo.QueryResult<IFetchExtensionCategoriesQuery, IFetchExtensionCategoriesQueryVariables>;
|
|
5119
|
-
export const
|
|
5120
|
-
query
|
|
5121
|
-
|
|
5122
|
-
|
|
5124
|
+
export const FetchExtensionOpportunitiesV2Document = gql`
|
|
5125
|
+
query FetchExtensionOpportunitiesV2($domain: String!, $brandId: String, $categoryId: String) {
|
|
5126
|
+
fetchExtensionOpportunitiesV2(
|
|
5127
|
+
domain: $domain
|
|
5123
5128
|
brandId: $brandId
|
|
5124
|
-
|
|
5129
|
+
categoryId: $categoryId
|
|
5125
5130
|
) {
|
|
5126
|
-
|
|
5127
|
-
|
|
5128
|
-
|
|
5129
|
-
|
|
5130
|
-
|
|
5131
|
-
|
|
5132
|
-
|
|
5133
|
-
|
|
5134
|
-
|
|
5135
|
-
|
|
5136
|
-
|
|
5137
|
-
|
|
5138
|
-
|
|
5139
|
-
|
|
5140
|
-
|
|
5141
|
-
|
|
5142
|
-
|
|
5143
|
-
|
|
5144
|
-
|
|
5145
|
-
|
|
5131
|
+
currentOpportunities {
|
|
5132
|
+
opportunityId
|
|
5133
|
+
brandId
|
|
5134
|
+
categoryId
|
|
5135
|
+
opportunityStatus
|
|
5136
|
+
opportunityType
|
|
5137
|
+
notificationType
|
|
5138
|
+
name
|
|
5139
|
+
brandName
|
|
5140
|
+
brandDescription
|
|
5141
|
+
brandMedia
|
|
5142
|
+
brandUrl
|
|
5143
|
+
brandIndustry
|
|
5144
|
+
categoryName
|
|
5145
|
+
ludoUrl
|
|
5146
|
+
projectUrl
|
|
5147
|
+
activeFrom
|
|
5148
|
+
activeUntil
|
|
5149
|
+
media
|
|
5150
|
+
reportLink
|
|
5151
|
+
shareLink
|
|
5152
|
+
}
|
|
5153
|
+
similarOpportunities {
|
|
5154
|
+
opportunityId
|
|
5155
|
+
brandId
|
|
5156
|
+
categoryId
|
|
5157
|
+
opportunityStatus
|
|
5158
|
+
opportunityType
|
|
5159
|
+
notificationType
|
|
5160
|
+
name
|
|
5161
|
+
brandName
|
|
5162
|
+
brandDescription
|
|
5163
|
+
brandMedia
|
|
5164
|
+
brandUrl
|
|
5165
|
+
brandIndustry
|
|
5166
|
+
categoryName
|
|
5167
|
+
ludoUrl
|
|
5168
|
+
projectUrl
|
|
5169
|
+
activeFrom
|
|
5170
|
+
activeUntil
|
|
5171
|
+
media
|
|
5172
|
+
reportLink
|
|
5173
|
+
shareLink
|
|
5174
|
+
}
|
|
5146
5175
|
}
|
|
5147
5176
|
}
|
|
5148
5177
|
`;
|
|
5149
5178
|
|
|
5150
5179
|
/**
|
|
5151
|
-
*
|
|
5180
|
+
* __useFetchExtensionOpportunitiesV2Query__
|
|
5152
5181
|
*
|
|
5153
|
-
* To run a query within a React component, call `
|
|
5154
|
-
* When your component renders, `
|
|
5182
|
+
* To run a query within a React component, call `useFetchExtensionOpportunitiesV2Query` and pass it any options that fit your needs.
|
|
5183
|
+
* When your component renders, `useFetchExtensionOpportunitiesV2Query` returns an object from Apollo Client that contains loading, error, and data properties
|
|
5155
5184
|
* you can use to render your UI.
|
|
5156
5185
|
*
|
|
5157
5186
|
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
5158
5187
|
*
|
|
5159
5188
|
* @example
|
|
5160
|
-
* const { data, loading, error } =
|
|
5189
|
+
* const { data, loading, error } = useFetchExtensionOpportunitiesV2Query({
|
|
5161
5190
|
* variables: {
|
|
5162
|
-
*
|
|
5191
|
+
* domain: // value for 'domain'
|
|
5163
5192
|
* brandId: // value for 'brandId'
|
|
5164
|
-
*
|
|
5193
|
+
* categoryId: // value for 'categoryId'
|
|
5165
5194
|
* },
|
|
5166
5195
|
* });
|
|
5167
5196
|
*/
|
|
5168
|
-
export function
|
|
5169
|
-
return Apollo.useQuery<
|
|
5197
|
+
export function useFetchExtensionOpportunitiesV2Query(baseOptions: Apollo.QueryHookOptions<IFetchExtensionOpportunitiesV2Query, IFetchExtensionOpportunitiesV2QueryVariables>) {
|
|
5198
|
+
return Apollo.useQuery<IFetchExtensionOpportunitiesV2Query, IFetchExtensionOpportunitiesV2QueryVariables>(FetchExtensionOpportunitiesV2Document, baseOptions);
|
|
5170
5199
|
}
|
|
5171
|
-
export function
|
|
5172
|
-
return Apollo.useLazyQuery<
|
|
5200
|
+
export function useFetchExtensionOpportunitiesV2LazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchExtensionOpportunitiesV2Query, IFetchExtensionOpportunitiesV2QueryVariables>) {
|
|
5201
|
+
return Apollo.useLazyQuery<IFetchExtensionOpportunitiesV2Query, IFetchExtensionOpportunitiesV2QueryVariables>(FetchExtensionOpportunitiesV2Document, baseOptions);
|
|
5173
5202
|
}
|
|
5174
|
-
export type
|
|
5175
|
-
export type
|
|
5176
|
-
export type
|
|
5203
|
+
export type FetchExtensionOpportunitiesV2QueryHookResult = ReturnType<typeof useFetchExtensionOpportunitiesV2Query>;
|
|
5204
|
+
export type FetchExtensionOpportunitiesV2LazyQueryHookResult = ReturnType<typeof useFetchExtensionOpportunitiesV2LazyQuery>;
|
|
5205
|
+
export type FetchExtensionOpportunitiesV2QueryResult = Apollo.QueryResult<IFetchExtensionOpportunitiesV2Query, IFetchExtensionOpportunitiesV2QueryVariables>;
|
|
5177
5206
|
export const FetchNftDataDocument = gql`
|
|
5178
5207
|
query FetchNFTData($blockchain: String!, $contractAddress: String, $tokenId: String, $elrondId: String) {
|
|
5179
5208
|
fetchNFTData(
|