@ludo.ninja/api 2.8.16 → 2.8.17
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.
|
@@ -4398,6 +4398,16 @@ export type IFetchAdminXpPageQuery = {
|
|
|
4398
4398
|
nextPage?: Maybe<Pick<IAdminPage, 'elements' | 'lastNum' | 'num' | 'size' | 'token'>>;
|
|
4399
4399
|
};
|
|
4400
4400
|
};
|
|
4401
|
+
export type IFetchBlockchainsQueryVariables = Exact<{
|
|
4402
|
+
[key: string]: never;
|
|
4403
|
+
}>;
|
|
4404
|
+
export type IFetchBlockchainsQuery = Pick<IQuery, 'fetchBlockchains'>;
|
|
4405
|
+
export type IFetchBrandsQueryVariables = Exact<{
|
|
4406
|
+
[key: string]: never;
|
|
4407
|
+
}>;
|
|
4408
|
+
export type IFetchBrandsQuery = {
|
|
4409
|
+
fetchBrands: Array<Pick<IBrand, 'brandId' | 'description' | 'id' | 'industry' | 'link' | 'matchingWords' | 'media' | 'name'>>;
|
|
4410
|
+
};
|
|
4401
4411
|
export type IFetchBrandsPageQueryVariables = Exact<{
|
|
4402
4412
|
filter: IBrandsFilterInput;
|
|
4403
4413
|
sort: IBrandsSortInput;
|
|
@@ -4409,6 +4419,12 @@ export type IFetchBrandsPageQuery = {
|
|
|
4409
4419
|
nextPage?: Maybe<Pick<IAdminPage, 'num' | 'lastNum' | 'size' | 'elements'>>;
|
|
4410
4420
|
};
|
|
4411
4421
|
};
|
|
4422
|
+
export type IFetchCategoriesQueryVariables = Exact<{
|
|
4423
|
+
[key: string]: never;
|
|
4424
|
+
}>;
|
|
4425
|
+
export type IFetchCategoriesQuery = {
|
|
4426
|
+
fetchCategories: Array<Pick<ICategory, 'categoryId' | 'id' | 'matchingWords' | 'name'>>;
|
|
4427
|
+
};
|
|
4412
4428
|
export type IFetchCategoriesPageQueryVariables = Exact<{
|
|
4413
4429
|
filter: ICategoriesFilterInput;
|
|
4414
4430
|
sort: ICategoriesSortInput;
|
|
@@ -5642,6 +5658,56 @@ export declare function useFetchAdminXpPageLazyQuery(baseOptions?: Apollo.LazyQu
|
|
|
5642
5658
|
export type FetchAdminXpPageQueryHookResult = ReturnType<typeof useFetchAdminXpPageQuery>;
|
|
5643
5659
|
export type FetchAdminXpPageLazyQueryHookResult = ReturnType<typeof useFetchAdminXpPageLazyQuery>;
|
|
5644
5660
|
export type FetchAdminXpPageQueryResult = Apollo.QueryResult<IFetchAdminXpPageQuery, IFetchAdminXpPageQueryVariables>;
|
|
5661
|
+
export declare const FetchBlockchainsDocument: Apollo.DocumentNode;
|
|
5662
|
+
/**
|
|
5663
|
+
* __useFetchBlockchainsQuery__
|
|
5664
|
+
*
|
|
5665
|
+
* To run a query within a React component, call `useFetchBlockchainsQuery` and pass it any options that fit your needs.
|
|
5666
|
+
* When your component renders, `useFetchBlockchainsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
5667
|
+
* you can use to render your UI.
|
|
5668
|
+
*
|
|
5669
|
+
* @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;
|
|
5670
|
+
*
|
|
5671
|
+
* @example
|
|
5672
|
+
* const { data, loading, error } = useFetchBlockchainsQuery({
|
|
5673
|
+
* variables: {
|
|
5674
|
+
* },
|
|
5675
|
+
* });
|
|
5676
|
+
*/
|
|
5677
|
+
export declare function useFetchBlockchainsQuery(baseOptions?: Apollo.QueryHookOptions<IFetchBlockchainsQuery, IFetchBlockchainsQueryVariables>): Apollo.QueryResult<IFetchBlockchainsQuery, Exact<{
|
|
5678
|
+
[key: string]: never;
|
|
5679
|
+
}>>;
|
|
5680
|
+
export declare function useFetchBlockchainsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchBlockchainsQuery, IFetchBlockchainsQueryVariables>): Apollo.LazyQueryResultTuple<IFetchBlockchainsQuery, Exact<{
|
|
5681
|
+
[key: string]: never;
|
|
5682
|
+
}>>;
|
|
5683
|
+
export type FetchBlockchainsQueryHookResult = ReturnType<typeof useFetchBlockchainsQuery>;
|
|
5684
|
+
export type FetchBlockchainsLazyQueryHookResult = ReturnType<typeof useFetchBlockchainsLazyQuery>;
|
|
5685
|
+
export type FetchBlockchainsQueryResult = Apollo.QueryResult<IFetchBlockchainsQuery, IFetchBlockchainsQueryVariables>;
|
|
5686
|
+
export declare const FetchBrandsDocument: Apollo.DocumentNode;
|
|
5687
|
+
/**
|
|
5688
|
+
* __useFetchBrandsQuery__
|
|
5689
|
+
*
|
|
5690
|
+
* To run a query within a React component, call `useFetchBrandsQuery` and pass it any options that fit your needs.
|
|
5691
|
+
* When your component renders, `useFetchBrandsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
5692
|
+
* you can use to render your UI.
|
|
5693
|
+
*
|
|
5694
|
+
* @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;
|
|
5695
|
+
*
|
|
5696
|
+
* @example
|
|
5697
|
+
* const { data, loading, error } = useFetchBrandsQuery({
|
|
5698
|
+
* variables: {
|
|
5699
|
+
* },
|
|
5700
|
+
* });
|
|
5701
|
+
*/
|
|
5702
|
+
export declare function useFetchBrandsQuery(baseOptions?: Apollo.QueryHookOptions<IFetchBrandsQuery, IFetchBrandsQueryVariables>): Apollo.QueryResult<IFetchBrandsQuery, Exact<{
|
|
5703
|
+
[key: string]: never;
|
|
5704
|
+
}>>;
|
|
5705
|
+
export declare function useFetchBrandsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchBrandsQuery, IFetchBrandsQueryVariables>): Apollo.LazyQueryResultTuple<IFetchBrandsQuery, Exact<{
|
|
5706
|
+
[key: string]: never;
|
|
5707
|
+
}>>;
|
|
5708
|
+
export type FetchBrandsQueryHookResult = ReturnType<typeof useFetchBrandsQuery>;
|
|
5709
|
+
export type FetchBrandsLazyQueryHookResult = ReturnType<typeof useFetchBrandsLazyQuery>;
|
|
5710
|
+
export type FetchBrandsQueryResult = Apollo.QueryResult<IFetchBrandsQuery, IFetchBrandsQueryVariables>;
|
|
5645
5711
|
export declare const FetchBrandsPageDocument: Apollo.DocumentNode;
|
|
5646
5712
|
/**
|
|
5647
5713
|
* __useFetchBrandsPageQuery__
|
|
@@ -5674,6 +5740,31 @@ export declare function useFetchBrandsPageLazyQuery(baseOptions?: Apollo.LazyQue
|
|
|
5674
5740
|
export type FetchBrandsPageQueryHookResult = ReturnType<typeof useFetchBrandsPageQuery>;
|
|
5675
5741
|
export type FetchBrandsPageLazyQueryHookResult = ReturnType<typeof useFetchBrandsPageLazyQuery>;
|
|
5676
5742
|
export type FetchBrandsPageQueryResult = Apollo.QueryResult<IFetchBrandsPageQuery, IFetchBrandsPageQueryVariables>;
|
|
5743
|
+
export declare const FetchCategoriesDocument: Apollo.DocumentNode;
|
|
5744
|
+
/**
|
|
5745
|
+
* __useFetchCategoriesQuery__
|
|
5746
|
+
*
|
|
5747
|
+
* To run a query within a React component, call `useFetchCategoriesQuery` and pass it any options that fit your needs.
|
|
5748
|
+
* When your component renders, `useFetchCategoriesQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
5749
|
+
* you can use to render your UI.
|
|
5750
|
+
*
|
|
5751
|
+
* @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;
|
|
5752
|
+
*
|
|
5753
|
+
* @example
|
|
5754
|
+
* const { data, loading, error } = useFetchCategoriesQuery({
|
|
5755
|
+
* variables: {
|
|
5756
|
+
* },
|
|
5757
|
+
* });
|
|
5758
|
+
*/
|
|
5759
|
+
export declare function useFetchCategoriesQuery(baseOptions?: Apollo.QueryHookOptions<IFetchCategoriesQuery, IFetchCategoriesQueryVariables>): Apollo.QueryResult<IFetchCategoriesQuery, Exact<{
|
|
5760
|
+
[key: string]: never;
|
|
5761
|
+
}>>;
|
|
5762
|
+
export declare function useFetchCategoriesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchCategoriesQuery, IFetchCategoriesQueryVariables>): Apollo.LazyQueryResultTuple<IFetchCategoriesQuery, Exact<{
|
|
5763
|
+
[key: string]: never;
|
|
5764
|
+
}>>;
|
|
5765
|
+
export type FetchCategoriesQueryHookResult = ReturnType<typeof useFetchCategoriesQuery>;
|
|
5766
|
+
export type FetchCategoriesLazyQueryHookResult = ReturnType<typeof useFetchCategoriesLazyQuery>;
|
|
5767
|
+
export type FetchCategoriesQueryResult = Apollo.QueryResult<IFetchCategoriesQuery, IFetchCategoriesQueryVariables>;
|
|
5677
5768
|
export declare const FetchCategoriesPageDocument: Apollo.DocumentNode;
|
|
5678
5769
|
/**
|
|
5679
5770
|
* __useFetchCategoriesPageQuery__
|
|
@@ -23,13 +23,13 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.
|
|
27
|
-
exports.
|
|
28
|
-
exports.
|
|
29
|
-
exports.
|
|
30
|
-
exports.
|
|
31
|
-
exports.
|
|
32
|
-
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 = void 0;
|
|
26
|
+
exports.useLikeAssetMutation = exports.LikeAssetDocument = exports.useDislikeAssetMutation = exports.DislikeAssetDocument = exports.useFetchCategoriesPageLazyQuery = exports.useFetchCategoriesPageQuery = exports.FetchCategoriesPageDocument = exports.useFetchCategoriesLazyQuery = exports.useFetchCategoriesQuery = exports.FetchCategoriesDocument = exports.useFetchBrandsPageLazyQuery = exports.useFetchBrandsPageQuery = exports.FetchBrandsPageDocument = exports.useFetchBrandsLazyQuery = exports.useFetchBrandsQuery = exports.FetchBrandsDocument = exports.useFetchBlockchainsLazyQuery = exports.useFetchBlockchainsQuery = exports.FetchBlockchainsDocument = exports.useFetchAdminXpPageLazyQuery = exports.useFetchAdminXpPageQuery = exports.FetchAdminXpPageDocument = exports.useFetchAdminUsersPageLazyQuery = exports.useFetchAdminUsersPageQuery = exports.FetchAdminUsersPageDocument = exports.useFetchAdminReferralsPageLazyQuery = exports.useFetchAdminReferralsPageQuery = exports.FetchAdminReferralsPageDocument = exports.useFetchAdminOpportunitiesPageLazyQuery = exports.useFetchAdminOpportunitiesPageQuery = exports.FetchAdminOpportunitiesPageDocument = exports.useFetchAdminInvitesPageLazyQuery = exports.useFetchAdminInvitesPageQuery = exports.FetchAdminInvitesPageDocument = exports.useUpdateProfileStatusMutation = exports.UpdateProfileStatusDocument = exports.useRemoveInviteCodeMutation = exports.RemoveInviteCodeDocument = exports.useAddInviteCodesMutation = exports.AddInviteCodesDocument = exports.useCreateAdminOpportunityMutation = exports.CreateAdminOpportunityDocument = exports.useCreateBrandMutation = exports.CreateBrandDocument = exports.useCreateCategoryMutation = exports.CreateCategoryDocument = exports.useChangeXpPointsMutation = exports.ChangeXpPointsDocument = exports.ISortDirection = exports.IRole = void 0;
|
|
27
|
+
exports.FetchWalletRanksDocument = 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.useFetchCollectionsLazyQuery = exports.useFetchCollectionsQuery = exports.FetchCollectionsDocument = exports.useLikeCollectionMutation = exports.LikeCollectionDocument = exports.useDislikeCollectionMutation = exports.DislikeCollectionDocument = exports.useFetchLikedLazyQuery = exports.useFetchLikedQuery = exports.FetchLikedDocument = exports.useFetchAssetLazyQuery = exports.useFetchAssetQuery = exports.FetchAssetDocument = void 0;
|
|
28
|
+
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 = 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.useFetchWalletRanksLazyQuery = exports.useFetchWalletRanksQuery = void 0;
|
|
29
|
+
exports.useSignInAdminMetamaskMutation = exports.SignInAdminMetamaskDocument = exports.useSetMainWalletMutation = exports.SetMainWalletDocument = exports.useSaveEmailOfJoinerMutation = exports.SaveEmailOfJoinerDocument = 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 = 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 = void 0;
|
|
30
|
+
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 = 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 = void 0;
|
|
31
|
+
exports.useFetchDynamicCollectionsDataQuery = exports.FetchDynamicCollectionsDataDocument = exports.useFetchDynamicCollectionDataLazyQuery = exports.useFetchDynamicCollectionDataQuery = exports.FetchDynamicCollectionDataDocument = exports.useFetchDynamicAssetsLikesLazyQuery = exports.useFetchDynamicAssetsLikesQuery = exports.FetchDynamicAssetsLikesDocument = exports.useFetchDynamicAssetLikesLazyQuery = exports.useFetchDynamicAssetLikesQuery = exports.FetchDynamicAssetLikesDocument = exports.useFetchCreationsByTypeLazyQuery = exports.useFetchCreationsByTypeQuery = exports.FetchCreationsByTypeDocument = exports.useFetchCollectionsByIdsLazyQuery = exports.useFetchCollectionsByIdsQuery = exports.FetchCollectionsByIdsDocument = exports.useFindCollectionsLazyQuery = exports.useFindCollectionsQuery = exports.FindCollectionsDocument = exports.useFetchCollectionLazyQuery = exports.useFetchCollectionQuery = exports.FetchCollectionDocument = exports.useFetchAssetsCountLazyQuery = exports.useFetchAssetsCountQuery = exports.FetchAssetsCountDocument = exports.useFetchAssetsLazyQuery = exports.useFetchAssetsQuery = exports.FetchAssetsDocument = exports.useFetchAssetByBlockchainLazyQuery = exports.useFetchAssetByBlockchainQuery = exports.FetchAssetByBlockchainDocument = 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 = void 0;
|
|
32
|
+
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.useFetchDynamicCollectionsDataLazyQuery = void 0;
|
|
33
33
|
const client_1 = require("@apollo/client");
|
|
34
34
|
const Apollo = __importStar(require("@apollo/client"));
|
|
35
35
|
var IRole;
|
|
@@ -511,6 +511,71 @@ function useFetchAdminXpPageLazyQuery(baseOptions) {
|
|
|
511
511
|
return Apollo.useLazyQuery(exports.FetchAdminXpPageDocument, baseOptions);
|
|
512
512
|
}
|
|
513
513
|
exports.useFetchAdminXpPageLazyQuery = useFetchAdminXpPageLazyQuery;
|
|
514
|
+
exports.FetchBlockchainsDocument = (0, client_1.gql) `
|
|
515
|
+
query FetchBlockchains {
|
|
516
|
+
fetchBlockchains
|
|
517
|
+
}
|
|
518
|
+
`;
|
|
519
|
+
/**
|
|
520
|
+
* __useFetchBlockchainsQuery__
|
|
521
|
+
*
|
|
522
|
+
* To run a query within a React component, call `useFetchBlockchainsQuery` and pass it any options that fit your needs.
|
|
523
|
+
* When your component renders, `useFetchBlockchainsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
524
|
+
* you can use to render your UI.
|
|
525
|
+
*
|
|
526
|
+
* @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;
|
|
527
|
+
*
|
|
528
|
+
* @example
|
|
529
|
+
* const { data, loading, error } = useFetchBlockchainsQuery({
|
|
530
|
+
* variables: {
|
|
531
|
+
* },
|
|
532
|
+
* });
|
|
533
|
+
*/
|
|
534
|
+
function useFetchBlockchainsQuery(baseOptions) {
|
|
535
|
+
return Apollo.useQuery(exports.FetchBlockchainsDocument, baseOptions);
|
|
536
|
+
}
|
|
537
|
+
exports.useFetchBlockchainsQuery = useFetchBlockchainsQuery;
|
|
538
|
+
function useFetchBlockchainsLazyQuery(baseOptions) {
|
|
539
|
+
return Apollo.useLazyQuery(exports.FetchBlockchainsDocument, baseOptions);
|
|
540
|
+
}
|
|
541
|
+
exports.useFetchBlockchainsLazyQuery = useFetchBlockchainsLazyQuery;
|
|
542
|
+
exports.FetchBrandsDocument = (0, client_1.gql) `
|
|
543
|
+
query FetchBrands {
|
|
544
|
+
fetchBrands {
|
|
545
|
+
brandId
|
|
546
|
+
description
|
|
547
|
+
id
|
|
548
|
+
industry
|
|
549
|
+
link
|
|
550
|
+
matchingWords
|
|
551
|
+
media
|
|
552
|
+
name
|
|
553
|
+
}
|
|
554
|
+
}
|
|
555
|
+
`;
|
|
556
|
+
/**
|
|
557
|
+
* __useFetchBrandsQuery__
|
|
558
|
+
*
|
|
559
|
+
* To run a query within a React component, call `useFetchBrandsQuery` and pass it any options that fit your needs.
|
|
560
|
+
* When your component renders, `useFetchBrandsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
561
|
+
* you can use to render your UI.
|
|
562
|
+
*
|
|
563
|
+
* @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;
|
|
564
|
+
*
|
|
565
|
+
* @example
|
|
566
|
+
* const { data, loading, error } = useFetchBrandsQuery({
|
|
567
|
+
* variables: {
|
|
568
|
+
* },
|
|
569
|
+
* });
|
|
570
|
+
*/
|
|
571
|
+
function useFetchBrandsQuery(baseOptions) {
|
|
572
|
+
return Apollo.useQuery(exports.FetchBrandsDocument, baseOptions);
|
|
573
|
+
}
|
|
574
|
+
exports.useFetchBrandsQuery = useFetchBrandsQuery;
|
|
575
|
+
function useFetchBrandsLazyQuery(baseOptions) {
|
|
576
|
+
return Apollo.useLazyQuery(exports.FetchBrandsDocument, baseOptions);
|
|
577
|
+
}
|
|
578
|
+
exports.useFetchBrandsLazyQuery = useFetchBrandsLazyQuery;
|
|
514
579
|
exports.FetchBrandsPageDocument = (0, client_1.gql) `
|
|
515
580
|
query FetchBrandsPage($filter: BrandsFilterInput!, $sort: BrandsSortInput!, $page: AdminPageInput!) {
|
|
516
581
|
fetchBrandsPage(filter: $filter, sort: $sort, page: $page) {
|
|
@@ -558,6 +623,39 @@ function useFetchBrandsPageLazyQuery(baseOptions) {
|
|
|
558
623
|
return Apollo.useLazyQuery(exports.FetchBrandsPageDocument, baseOptions);
|
|
559
624
|
}
|
|
560
625
|
exports.useFetchBrandsPageLazyQuery = useFetchBrandsPageLazyQuery;
|
|
626
|
+
exports.FetchCategoriesDocument = (0, client_1.gql) `
|
|
627
|
+
query FetchCategories {
|
|
628
|
+
fetchCategories {
|
|
629
|
+
categoryId
|
|
630
|
+
id
|
|
631
|
+
matchingWords
|
|
632
|
+
name
|
|
633
|
+
}
|
|
634
|
+
}
|
|
635
|
+
`;
|
|
636
|
+
/**
|
|
637
|
+
* __useFetchCategoriesQuery__
|
|
638
|
+
*
|
|
639
|
+
* To run a query within a React component, call `useFetchCategoriesQuery` and pass it any options that fit your needs.
|
|
640
|
+
* When your component renders, `useFetchCategoriesQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
641
|
+
* you can use to render your UI.
|
|
642
|
+
*
|
|
643
|
+
* @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;
|
|
644
|
+
*
|
|
645
|
+
* @example
|
|
646
|
+
* const { data, loading, error } = useFetchCategoriesQuery({
|
|
647
|
+
* variables: {
|
|
648
|
+
* },
|
|
649
|
+
* });
|
|
650
|
+
*/
|
|
651
|
+
function useFetchCategoriesQuery(baseOptions) {
|
|
652
|
+
return Apollo.useQuery(exports.FetchCategoriesDocument, baseOptions);
|
|
653
|
+
}
|
|
654
|
+
exports.useFetchCategoriesQuery = useFetchCategoriesQuery;
|
|
655
|
+
function useFetchCategoriesLazyQuery(baseOptions) {
|
|
656
|
+
return Apollo.useLazyQuery(exports.FetchCategoriesDocument, baseOptions);
|
|
657
|
+
}
|
|
658
|
+
exports.useFetchCategoriesLazyQuery = useFetchCategoriesLazyQuery;
|
|
561
659
|
exports.FetchCategoriesPageDocument = (0, client_1.gql) `
|
|
562
660
|
query FetchCategoriesPage($filter: CategoriesFilterInput!, $sort: CategoriesSortInput!, $page: AdminPageInput!) {
|
|
563
661
|
fetchCategoriesPage(filter: $filter, sort: $sort, page: $page) {
|
package/package.json
CHANGED
|
@@ -5144,6 +5144,16 @@ export type IFetchAdminXpPageQuery = { fetchAdminXpPage: { xps: Array<(
|
|
|
5144
5144
|
& { mainWallet?: Maybe<Pick<IWallet, 'address' | 'blockchain' | 'chainId'>> }
|
|
5145
5145
|
)>, nextPage?: Maybe<Pick<IAdminPage, 'elements' | 'lastNum' | 'num' | 'size' | 'token'>> } };
|
|
5146
5146
|
|
|
5147
|
+
export type IFetchBlockchainsQueryVariables = Exact<{ [key: string]: never; }>;
|
|
5148
|
+
|
|
5149
|
+
|
|
5150
|
+
export type IFetchBlockchainsQuery = Pick<IQuery, 'fetchBlockchains'>;
|
|
5151
|
+
|
|
5152
|
+
export type IFetchBrandsQueryVariables = Exact<{ [key: string]: never; }>;
|
|
5153
|
+
|
|
5154
|
+
|
|
5155
|
+
export type IFetchBrandsQuery = { fetchBrands: Array<Pick<IBrand, 'brandId' | 'description' | 'id' | 'industry' | 'link' | 'matchingWords' | 'media' | 'name'>> };
|
|
5156
|
+
|
|
5147
5157
|
export type IFetchBrandsPageQueryVariables = Exact<{
|
|
5148
5158
|
filter: IBrandsFilterInput;
|
|
5149
5159
|
sort: IBrandsSortInput;
|
|
@@ -5153,6 +5163,11 @@ export type IFetchBrandsPageQueryVariables = Exact<{
|
|
|
5153
5163
|
|
|
5154
5164
|
export type IFetchBrandsPageQuery = { fetchBrandsPage: { brands: Array<Pick<IBrand, 'description' | 'id' | 'industry' | 'link' | 'matchingWords' | 'media' | 'name'>>, nextPage?: Maybe<Pick<IAdminPage, 'num' | 'lastNum' | 'size' | 'elements'>> } };
|
|
5155
5165
|
|
|
5166
|
+
export type IFetchCategoriesQueryVariables = Exact<{ [key: string]: never; }>;
|
|
5167
|
+
|
|
5168
|
+
|
|
5169
|
+
export type IFetchCategoriesQuery = { fetchCategories: Array<Pick<ICategory, 'categoryId' | 'id' | 'matchingWords' | 'name'>> };
|
|
5170
|
+
|
|
5156
5171
|
export type IFetchCategoriesPageQueryVariables = Exact<{
|
|
5157
5172
|
filter: ICategoriesFilterInput;
|
|
5158
5173
|
sort: ICategoriesSortInput;
|
|
@@ -6655,6 +6670,75 @@ export function useFetchAdminXpPageLazyQuery(baseOptions?: Apollo.LazyQueryHookO
|
|
|
6655
6670
|
export type FetchAdminXpPageQueryHookResult = ReturnType<typeof useFetchAdminXpPageQuery>;
|
|
6656
6671
|
export type FetchAdminXpPageLazyQueryHookResult = ReturnType<typeof useFetchAdminXpPageLazyQuery>;
|
|
6657
6672
|
export type FetchAdminXpPageQueryResult = Apollo.QueryResult<IFetchAdminXpPageQuery, IFetchAdminXpPageQueryVariables>;
|
|
6673
|
+
export const FetchBlockchainsDocument = gql`
|
|
6674
|
+
query FetchBlockchains {
|
|
6675
|
+
fetchBlockchains
|
|
6676
|
+
}
|
|
6677
|
+
`;
|
|
6678
|
+
|
|
6679
|
+
/**
|
|
6680
|
+
* __useFetchBlockchainsQuery__
|
|
6681
|
+
*
|
|
6682
|
+
* To run a query within a React component, call `useFetchBlockchainsQuery` and pass it any options that fit your needs.
|
|
6683
|
+
* When your component renders, `useFetchBlockchainsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
6684
|
+
* you can use to render your UI.
|
|
6685
|
+
*
|
|
6686
|
+
* @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;
|
|
6687
|
+
*
|
|
6688
|
+
* @example
|
|
6689
|
+
* const { data, loading, error } = useFetchBlockchainsQuery({
|
|
6690
|
+
* variables: {
|
|
6691
|
+
* },
|
|
6692
|
+
* });
|
|
6693
|
+
*/
|
|
6694
|
+
export function useFetchBlockchainsQuery(baseOptions?: Apollo.QueryHookOptions<IFetchBlockchainsQuery, IFetchBlockchainsQueryVariables>) {
|
|
6695
|
+
return Apollo.useQuery<IFetchBlockchainsQuery, IFetchBlockchainsQueryVariables>(FetchBlockchainsDocument, baseOptions);
|
|
6696
|
+
}
|
|
6697
|
+
export function useFetchBlockchainsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchBlockchainsQuery, IFetchBlockchainsQueryVariables>) {
|
|
6698
|
+
return Apollo.useLazyQuery<IFetchBlockchainsQuery, IFetchBlockchainsQueryVariables>(FetchBlockchainsDocument, baseOptions);
|
|
6699
|
+
}
|
|
6700
|
+
export type FetchBlockchainsQueryHookResult = ReturnType<typeof useFetchBlockchainsQuery>;
|
|
6701
|
+
export type FetchBlockchainsLazyQueryHookResult = ReturnType<typeof useFetchBlockchainsLazyQuery>;
|
|
6702
|
+
export type FetchBlockchainsQueryResult = Apollo.QueryResult<IFetchBlockchainsQuery, IFetchBlockchainsQueryVariables>;
|
|
6703
|
+
export const FetchBrandsDocument = gql`
|
|
6704
|
+
query FetchBrands {
|
|
6705
|
+
fetchBrands {
|
|
6706
|
+
brandId
|
|
6707
|
+
description
|
|
6708
|
+
id
|
|
6709
|
+
industry
|
|
6710
|
+
link
|
|
6711
|
+
matchingWords
|
|
6712
|
+
media
|
|
6713
|
+
name
|
|
6714
|
+
}
|
|
6715
|
+
}
|
|
6716
|
+
`;
|
|
6717
|
+
|
|
6718
|
+
/**
|
|
6719
|
+
* __useFetchBrandsQuery__
|
|
6720
|
+
*
|
|
6721
|
+
* To run a query within a React component, call `useFetchBrandsQuery` and pass it any options that fit your needs.
|
|
6722
|
+
* When your component renders, `useFetchBrandsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
6723
|
+
* you can use to render your UI.
|
|
6724
|
+
*
|
|
6725
|
+
* @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;
|
|
6726
|
+
*
|
|
6727
|
+
* @example
|
|
6728
|
+
* const { data, loading, error } = useFetchBrandsQuery({
|
|
6729
|
+
* variables: {
|
|
6730
|
+
* },
|
|
6731
|
+
* });
|
|
6732
|
+
*/
|
|
6733
|
+
export function useFetchBrandsQuery(baseOptions?: Apollo.QueryHookOptions<IFetchBrandsQuery, IFetchBrandsQueryVariables>) {
|
|
6734
|
+
return Apollo.useQuery<IFetchBrandsQuery, IFetchBrandsQueryVariables>(FetchBrandsDocument, baseOptions);
|
|
6735
|
+
}
|
|
6736
|
+
export function useFetchBrandsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchBrandsQuery, IFetchBrandsQueryVariables>) {
|
|
6737
|
+
return Apollo.useLazyQuery<IFetchBrandsQuery, IFetchBrandsQueryVariables>(FetchBrandsDocument, baseOptions);
|
|
6738
|
+
}
|
|
6739
|
+
export type FetchBrandsQueryHookResult = ReturnType<typeof useFetchBrandsQuery>;
|
|
6740
|
+
export type FetchBrandsLazyQueryHookResult = ReturnType<typeof useFetchBrandsLazyQuery>;
|
|
6741
|
+
export type FetchBrandsQueryResult = Apollo.QueryResult<IFetchBrandsQuery, IFetchBrandsQueryVariables>;
|
|
6658
6742
|
export const FetchBrandsPageDocument = gql`
|
|
6659
6743
|
query FetchBrandsPage($filter: BrandsFilterInput!, $sort: BrandsSortInput!, $page: AdminPageInput!) {
|
|
6660
6744
|
fetchBrandsPage(filter: $filter, sort: $sort, page: $page) {
|
|
@@ -6704,6 +6788,41 @@ export function useFetchBrandsPageLazyQuery(baseOptions?: Apollo.LazyQueryHookOp
|
|
|
6704
6788
|
export type FetchBrandsPageQueryHookResult = ReturnType<typeof useFetchBrandsPageQuery>;
|
|
6705
6789
|
export type FetchBrandsPageLazyQueryHookResult = ReturnType<typeof useFetchBrandsPageLazyQuery>;
|
|
6706
6790
|
export type FetchBrandsPageQueryResult = Apollo.QueryResult<IFetchBrandsPageQuery, IFetchBrandsPageQueryVariables>;
|
|
6791
|
+
export const FetchCategoriesDocument = gql`
|
|
6792
|
+
query FetchCategories {
|
|
6793
|
+
fetchCategories {
|
|
6794
|
+
categoryId
|
|
6795
|
+
id
|
|
6796
|
+
matchingWords
|
|
6797
|
+
name
|
|
6798
|
+
}
|
|
6799
|
+
}
|
|
6800
|
+
`;
|
|
6801
|
+
|
|
6802
|
+
/**
|
|
6803
|
+
* __useFetchCategoriesQuery__
|
|
6804
|
+
*
|
|
6805
|
+
* To run a query within a React component, call `useFetchCategoriesQuery` and pass it any options that fit your needs.
|
|
6806
|
+
* When your component renders, `useFetchCategoriesQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
6807
|
+
* you can use to render your UI.
|
|
6808
|
+
*
|
|
6809
|
+
* @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;
|
|
6810
|
+
*
|
|
6811
|
+
* @example
|
|
6812
|
+
* const { data, loading, error } = useFetchCategoriesQuery({
|
|
6813
|
+
* variables: {
|
|
6814
|
+
* },
|
|
6815
|
+
* });
|
|
6816
|
+
*/
|
|
6817
|
+
export function useFetchCategoriesQuery(baseOptions?: Apollo.QueryHookOptions<IFetchCategoriesQuery, IFetchCategoriesQueryVariables>) {
|
|
6818
|
+
return Apollo.useQuery<IFetchCategoriesQuery, IFetchCategoriesQueryVariables>(FetchCategoriesDocument, baseOptions);
|
|
6819
|
+
}
|
|
6820
|
+
export function useFetchCategoriesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchCategoriesQuery, IFetchCategoriesQueryVariables>) {
|
|
6821
|
+
return Apollo.useLazyQuery<IFetchCategoriesQuery, IFetchCategoriesQueryVariables>(FetchCategoriesDocument, baseOptions);
|
|
6822
|
+
}
|
|
6823
|
+
export type FetchCategoriesQueryHookResult = ReturnType<typeof useFetchCategoriesQuery>;
|
|
6824
|
+
export type FetchCategoriesLazyQueryHookResult = ReturnType<typeof useFetchCategoriesLazyQuery>;
|
|
6825
|
+
export type FetchCategoriesQueryResult = Apollo.QueryResult<IFetchCategoriesQuery, IFetchCategoriesQueryVariables>;
|
|
6707
6826
|
export const FetchCategoriesPageDocument = gql`
|
|
6708
6827
|
query FetchCategoriesPage($filter: CategoriesFilterInput!, $sort: CategoriesSortInput!, $page: AdminPageInput!) {
|
|
6709
6828
|
fetchCategoriesPage(filter: $filter, sort: $sort, page: $page) {
|