@ludo.ninja/api 2.4.4 → 2.4.6
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'];
|
|
@@ -2173,6 +2177,20 @@ export type IRemoveInviteCodeMutationVariables = Exact<{
|
|
|
2173
2177
|
inviteCode: Scalars['String'];
|
|
2174
2178
|
}>;
|
|
2175
2179
|
export type IRemoveInviteCodeMutation = Pick<IMutation, 'removeInviteCode'>;
|
|
2180
|
+
export type IFetchAdminInvitesPageQueryVariables = Exact<{
|
|
2181
|
+
filter: IInvitesFilterInput;
|
|
2182
|
+
sort: IInvitesSortInput;
|
|
2183
|
+
page: IAdminPageInput;
|
|
2184
|
+
}>;
|
|
2185
|
+
export type IFetchAdminInvitesPageQuery = {
|
|
2186
|
+
fetchAdminInvitesPage: {
|
|
2187
|
+
invites: Array<(Pick<IAdminInvite, 'userId' | 'referredUsers' | 'userXpLevel'> & {
|
|
2188
|
+
wallet?: Maybe<Pick<IWallet, 'address' | 'blockchain' | 'chainId'>>;
|
|
2189
|
+
activeInvites?: Maybe<Array<Pick<IActiveInvite, 'inviteCode' | 'createdAt'>>>;
|
|
2190
|
+
})>;
|
|
2191
|
+
nextPage?: Maybe<Pick<IAdminPage, 'num' | 'lastNum' | 'size' | 'elements' | 'token'>>;
|
|
2192
|
+
};
|
|
2193
|
+
};
|
|
2176
2194
|
export type IFetchAdminXpPageQueryVariables = Exact<{
|
|
2177
2195
|
filter: IXpFilterInput;
|
|
2178
2196
|
sort: IXpSortInput;
|
|
@@ -2388,13 +2406,16 @@ export type IFetchExtensionCategoriesQueryVariables = Exact<{
|
|
|
2388
2406
|
export type IFetchExtensionCategoriesQuery = {
|
|
2389
2407
|
fetchExtensionCategories: Array<Maybe<Pick<ICategory, 'categoryId' | 'name' | 'matchingWords'>>>;
|
|
2390
2408
|
};
|
|
2391
|
-
export type
|
|
2392
|
-
|
|
2409
|
+
export type IFetchExtensionOpportunitiesV2QueryVariables = Exact<{
|
|
2410
|
+
domain: Scalars['String'];
|
|
2393
2411
|
brandId?: Maybe<Scalars['String']>;
|
|
2394
|
-
|
|
2412
|
+
categoryId?: Maybe<Scalars['String']>;
|
|
2395
2413
|
}>;
|
|
2396
|
-
export type
|
|
2397
|
-
|
|
2414
|
+
export type IFetchExtensionOpportunitiesV2Query = {
|
|
2415
|
+
fetchExtensionOpportunitiesV2: {
|
|
2416
|
+
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'>>>>;
|
|
2417
|
+
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'>>>>;
|
|
2418
|
+
};
|
|
2398
2419
|
};
|
|
2399
2420
|
export type IFetchNftDataQueryVariables = Exact<{
|
|
2400
2421
|
blockchain: Scalars['String'];
|
|
@@ -3097,6 +3118,38 @@ export declare function useRemoveInviteCodeMutation(baseOptions?: Apollo.Mutatio
|
|
|
3097
3118
|
export type RemoveInviteCodeMutationHookResult = ReturnType<typeof useRemoveInviteCodeMutation>;
|
|
3098
3119
|
export type RemoveInviteCodeMutationResult = Apollo.MutationResult<IRemoveInviteCodeMutation>;
|
|
3099
3120
|
export type RemoveInviteCodeMutationOptions = Apollo.BaseMutationOptions<IRemoveInviteCodeMutation, IRemoveInviteCodeMutationVariables>;
|
|
3121
|
+
export declare const FetchAdminInvitesPageDocument: Apollo.DocumentNode;
|
|
3122
|
+
/**
|
|
3123
|
+
* __useFetchAdminInvitesPageQuery__
|
|
3124
|
+
*
|
|
3125
|
+
* To run a query within a React component, call `useFetchAdminInvitesPageQuery` and pass it any options that fit your needs.
|
|
3126
|
+
* When your component renders, `useFetchAdminInvitesPageQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3127
|
+
* you can use to render your UI.
|
|
3128
|
+
*
|
|
3129
|
+
* @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;
|
|
3130
|
+
*
|
|
3131
|
+
* @example
|
|
3132
|
+
* const { data, loading, error } = useFetchAdminInvitesPageQuery({
|
|
3133
|
+
* variables: {
|
|
3134
|
+
* filter: // value for 'filter'
|
|
3135
|
+
* sort: // value for 'sort'
|
|
3136
|
+
* page: // value for 'page'
|
|
3137
|
+
* },
|
|
3138
|
+
* });
|
|
3139
|
+
*/
|
|
3140
|
+
export declare function useFetchAdminInvitesPageQuery(baseOptions: Apollo.QueryHookOptions<IFetchAdminInvitesPageQuery, IFetchAdminInvitesPageQueryVariables>): Apollo.QueryResult<IFetchAdminInvitesPageQuery, Exact<{
|
|
3141
|
+
filter: IInvitesFilterInput;
|
|
3142
|
+
sort: IInvitesSortInput;
|
|
3143
|
+
page: IAdminPageInput;
|
|
3144
|
+
}>>;
|
|
3145
|
+
export declare function useFetchAdminInvitesPageLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchAdminInvitesPageQuery, IFetchAdminInvitesPageQueryVariables>): Apollo.LazyQueryResultTuple<IFetchAdminInvitesPageQuery, Exact<{
|
|
3146
|
+
filter: IInvitesFilterInput;
|
|
3147
|
+
sort: IInvitesSortInput;
|
|
3148
|
+
page: IAdminPageInput;
|
|
3149
|
+
}>>;
|
|
3150
|
+
export type FetchAdminInvitesPageQueryHookResult = ReturnType<typeof useFetchAdminInvitesPageQuery>;
|
|
3151
|
+
export type FetchAdminInvitesPageLazyQueryHookResult = ReturnType<typeof useFetchAdminInvitesPageLazyQuery>;
|
|
3152
|
+
export type FetchAdminInvitesPageQueryResult = Apollo.QueryResult<IFetchAdminInvitesPageQuery, IFetchAdminInvitesPageQueryVariables>;
|
|
3100
3153
|
export declare const FetchAdminXpPageDocument: Apollo.DocumentNode;
|
|
3101
3154
|
/**
|
|
3102
3155
|
* __useFetchAdminXpPageQuery__
|
|
@@ -3807,38 +3860,38 @@ export declare function useFetchExtensionCategoriesLazyQuery(baseOptions?: Apoll
|
|
|
3807
3860
|
export type FetchExtensionCategoriesQueryHookResult = ReturnType<typeof useFetchExtensionCategoriesQuery>;
|
|
3808
3861
|
export type FetchExtensionCategoriesLazyQueryHookResult = ReturnType<typeof useFetchExtensionCategoriesLazyQuery>;
|
|
3809
3862
|
export type FetchExtensionCategoriesQueryResult = Apollo.QueryResult<IFetchExtensionCategoriesQuery, IFetchExtensionCategoriesQueryVariables>;
|
|
3810
|
-
export declare const
|
|
3863
|
+
export declare const FetchExtensionOpportunitiesV2Document: Apollo.DocumentNode;
|
|
3811
3864
|
/**
|
|
3812
|
-
*
|
|
3865
|
+
* __useFetchExtensionOpportunitiesV2Query__
|
|
3813
3866
|
*
|
|
3814
|
-
* To run a query within a React component, call `
|
|
3815
|
-
* When your component renders, `
|
|
3867
|
+
* To run a query within a React component, call `useFetchExtensionOpportunitiesV2Query` and pass it any options that fit your needs.
|
|
3868
|
+
* When your component renders, `useFetchExtensionOpportunitiesV2Query` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3816
3869
|
* you can use to render your UI.
|
|
3817
3870
|
*
|
|
3818
3871
|
* @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
3872
|
*
|
|
3820
3873
|
* @example
|
|
3821
|
-
* const { data, loading, error } =
|
|
3874
|
+
* const { data, loading, error } = useFetchExtensionOpportunitiesV2Query({
|
|
3822
3875
|
* variables: {
|
|
3823
|
-
*
|
|
3876
|
+
* domain: // value for 'domain'
|
|
3824
3877
|
* brandId: // value for 'brandId'
|
|
3825
|
-
*
|
|
3878
|
+
* categoryId: // value for 'categoryId'
|
|
3826
3879
|
* },
|
|
3827
3880
|
* });
|
|
3828
3881
|
*/
|
|
3829
|
-
export declare function
|
|
3830
|
-
|
|
3882
|
+
export declare function useFetchExtensionOpportunitiesV2Query(baseOptions: Apollo.QueryHookOptions<IFetchExtensionOpportunitiesV2Query, IFetchExtensionOpportunitiesV2QueryVariables>): Apollo.QueryResult<IFetchExtensionOpportunitiesV2Query, Exact<{
|
|
3883
|
+
domain: string;
|
|
3831
3884
|
brandId?: Maybe<string> | undefined;
|
|
3832
|
-
|
|
3885
|
+
categoryId?: Maybe<string> | undefined;
|
|
3833
3886
|
}>>;
|
|
3834
|
-
export declare function
|
|
3835
|
-
|
|
3887
|
+
export declare function useFetchExtensionOpportunitiesV2LazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchExtensionOpportunitiesV2Query, IFetchExtensionOpportunitiesV2QueryVariables>): Apollo.LazyQueryResultTuple<IFetchExtensionOpportunitiesV2Query, Exact<{
|
|
3888
|
+
domain: string;
|
|
3836
3889
|
brandId?: Maybe<string> | undefined;
|
|
3837
|
-
|
|
3890
|
+
categoryId?: Maybe<string> | undefined;
|
|
3838
3891
|
}>>;
|
|
3839
|
-
export type
|
|
3840
|
-
export type
|
|
3841
|
-
export type
|
|
3892
|
+
export type FetchExtensionOpportunitiesV2QueryHookResult = ReturnType<typeof useFetchExtensionOpportunitiesV2Query>;
|
|
3893
|
+
export type FetchExtensionOpportunitiesV2LazyQueryHookResult = ReturnType<typeof useFetchExtensionOpportunitiesV2LazyQuery>;
|
|
3894
|
+
export type FetchExtensionOpportunitiesV2QueryResult = Apollo.QueryResult<IFetchExtensionOpportunitiesV2Query, IFetchExtensionOpportunitiesV2QueryVariables>;
|
|
3842
3895
|
export declare const FetchNftDataDocument: Apollo.DocumentNode;
|
|
3843
3896
|
/**
|
|
3844
3897
|
* __useFetchNftDataQuery__
|
|
@@ -23,12 +23,12 @@ 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.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;
|
|
26
|
+
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.useFetchAdminInvitesPageLazyQuery = exports.useFetchAdminInvitesPageQuery = exports.FetchAdminInvitesPageDocument = exports.useRemoveInviteCodeMutation = exports.RemoveInviteCodeDocument = exports.useAddInviteCodesMutation = exports.AddInviteCodesDocument = exports.useChangeXpPointsMutation = exports.ChangeXpPointsDocument = exports.ISortDirection = void 0;
|
|
27
|
+
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 = exports.useFetchDynamicCollectionsDataQuery = exports.FetchDynamicCollectionsDataDocument = exports.useFetchDynamicCollectionDataLazyQuery = void 0;
|
|
28
|
+
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 = exports.AddCreationsToGalleryV2Document = exports.useAddCreationsToGalleryMutation = exports.AddCreationsToGalleryDocument = void 0;
|
|
29
|
+
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 = exports.useFetchUserFavoritesV2Query = exports.FetchUserFavoritesV2Document = exports.useFetchUserFavoritesLazyQuery = void 0;
|
|
30
|
+
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 = exports.GetMyInviteCodesDocument = exports.useFetchUserWalletsLazyQuery = exports.useFetchUserWalletsQuery = 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 = exports.FetchAssetsCountDocument = exports.useFetchAllCreationsLazyQuery = exports.useFetchAllCreationsQuery = void 0;
|
|
32
32
|
/* eslint-disable */
|
|
33
33
|
const client_1 = require("@apollo/client");
|
|
34
34
|
const Apollo = __importStar(require("@apollo/client"));
|
|
@@ -117,6 +117,59 @@ function useRemoveInviteCodeMutation(baseOptions) {
|
|
|
117
117
|
return Apollo.useMutation(exports.RemoveInviteCodeDocument, baseOptions);
|
|
118
118
|
}
|
|
119
119
|
exports.useRemoveInviteCodeMutation = useRemoveInviteCodeMutation;
|
|
120
|
+
exports.FetchAdminInvitesPageDocument = (0, client_1.gql) `
|
|
121
|
+
query fetchAdminInvitesPage($filter: InvitesFilterInput!, $sort: InvitesSortInput!, $page: AdminPageInput!) {
|
|
122
|
+
fetchAdminInvitesPage(filter: $filter, sort: $sort, page: $page) {
|
|
123
|
+
invites {
|
|
124
|
+
userId
|
|
125
|
+
wallet {
|
|
126
|
+
address
|
|
127
|
+
blockchain
|
|
128
|
+
chainId
|
|
129
|
+
}
|
|
130
|
+
activeInvites {
|
|
131
|
+
inviteCode
|
|
132
|
+
createdAt
|
|
133
|
+
}
|
|
134
|
+
referredUsers
|
|
135
|
+
userXpLevel
|
|
136
|
+
}
|
|
137
|
+
nextPage {
|
|
138
|
+
num
|
|
139
|
+
lastNum
|
|
140
|
+
size
|
|
141
|
+
elements
|
|
142
|
+
token
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
`;
|
|
147
|
+
/**
|
|
148
|
+
* __useFetchAdminInvitesPageQuery__
|
|
149
|
+
*
|
|
150
|
+
* To run a query within a React component, call `useFetchAdminInvitesPageQuery` and pass it any options that fit your needs.
|
|
151
|
+
* When your component renders, `useFetchAdminInvitesPageQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
152
|
+
* you can use to render your UI.
|
|
153
|
+
*
|
|
154
|
+
* @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;
|
|
155
|
+
*
|
|
156
|
+
* @example
|
|
157
|
+
* const { data, loading, error } = useFetchAdminInvitesPageQuery({
|
|
158
|
+
* variables: {
|
|
159
|
+
* filter: // value for 'filter'
|
|
160
|
+
* sort: // value for 'sort'
|
|
161
|
+
* page: // value for 'page'
|
|
162
|
+
* },
|
|
163
|
+
* });
|
|
164
|
+
*/
|
|
165
|
+
function useFetchAdminInvitesPageQuery(baseOptions) {
|
|
166
|
+
return Apollo.useQuery(exports.FetchAdminInvitesPageDocument, baseOptions);
|
|
167
|
+
}
|
|
168
|
+
exports.useFetchAdminInvitesPageQuery = useFetchAdminInvitesPageQuery;
|
|
169
|
+
function useFetchAdminInvitesPageLazyQuery(baseOptions) {
|
|
170
|
+
return Apollo.useLazyQuery(exports.FetchAdminInvitesPageDocument, baseOptions);
|
|
171
|
+
}
|
|
172
|
+
exports.useFetchAdminInvitesPageLazyQuery = useFetchAdminInvitesPageLazyQuery;
|
|
120
173
|
exports.FetchAdminXpPageDocument = (0, client_1.gql) `
|
|
121
174
|
query FetchAdminXpPage($filter: XpFilterInput!, $sort: XpSortInput!, $page: AdminPageInput!) {
|
|
122
175
|
fetchAdminXpPage(filter: $filter, sort: $sort, page: $page) {
|
|
@@ -1183,6 +1236,117 @@ function useOnMyExperienceUpdatedSubscription(baseOptions) {
|
|
|
1183
1236
|
return Apollo.useSubscription(exports.OnMyExperienceUpdatedDocument, baseOptions);
|
|
1184
1237
|
}
|
|
1185
1238
|
exports.useOnMyExperienceUpdatedSubscription = useOnMyExperienceUpdatedSubscription;
|
|
1239
|
+
exports.HideOpportunityV2Document = (0, client_1.gql) `
|
|
1240
|
+
mutation HideOpportunityV2($opportunityId: ID!) {
|
|
1241
|
+
hideOpportunityV2(opportunityId: $opportunityId)
|
|
1242
|
+
}
|
|
1243
|
+
`;
|
|
1244
|
+
/**
|
|
1245
|
+
* __useHideOpportunityV2Mutation__
|
|
1246
|
+
*
|
|
1247
|
+
* To run a mutation, you first call `useHideOpportunityV2Mutation` within a React component and pass it any options that fit your needs.
|
|
1248
|
+
* When your component renders, `useHideOpportunityV2Mutation` returns a tuple that includes:
|
|
1249
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
1250
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
1251
|
+
*
|
|
1252
|
+
* @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;
|
|
1253
|
+
*
|
|
1254
|
+
* @example
|
|
1255
|
+
* const [hideOpportunityV2Mutation, { data, loading, error }] = useHideOpportunityV2Mutation({
|
|
1256
|
+
* variables: {
|
|
1257
|
+
* opportunityId: // value for 'opportunityId'
|
|
1258
|
+
* },
|
|
1259
|
+
* });
|
|
1260
|
+
*/
|
|
1261
|
+
function useHideOpportunityV2Mutation(baseOptions) {
|
|
1262
|
+
return Apollo.useMutation(exports.HideOpportunityV2Document, baseOptions);
|
|
1263
|
+
}
|
|
1264
|
+
exports.useHideOpportunityV2Mutation = useHideOpportunityV2Mutation;
|
|
1265
|
+
exports.OpenOpportunityV2Document = (0, client_1.gql) `
|
|
1266
|
+
mutation OpenOpportunityV2($opportunityId: ID!) {
|
|
1267
|
+
openOpportunityV2(opportunityId: $opportunityId)
|
|
1268
|
+
}
|
|
1269
|
+
`;
|
|
1270
|
+
/**
|
|
1271
|
+
* __useOpenOpportunityV2Mutation__
|
|
1272
|
+
*
|
|
1273
|
+
* To run a mutation, you first call `useOpenOpportunityV2Mutation` within a React component and pass it any options that fit your needs.
|
|
1274
|
+
* When your component renders, `useOpenOpportunityV2Mutation` returns a tuple that includes:
|
|
1275
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
1276
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
1277
|
+
*
|
|
1278
|
+
* @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;
|
|
1279
|
+
*
|
|
1280
|
+
* @example
|
|
1281
|
+
* const [openOpportunityV2Mutation, { data, loading, error }] = useOpenOpportunityV2Mutation({
|
|
1282
|
+
* variables: {
|
|
1283
|
+
* opportunityId: // value for 'opportunityId'
|
|
1284
|
+
* },
|
|
1285
|
+
* });
|
|
1286
|
+
*/
|
|
1287
|
+
function useOpenOpportunityV2Mutation(baseOptions) {
|
|
1288
|
+
return Apollo.useMutation(exports.OpenOpportunityV2Document, baseOptions);
|
|
1289
|
+
}
|
|
1290
|
+
exports.useOpenOpportunityV2Mutation = useOpenOpportunityV2Mutation;
|
|
1291
|
+
exports.VisitPageV2Document = (0, client_1.gql) `
|
|
1292
|
+
mutation VisitPageV2($domain: String!, $title: String!, $description: String, $tags: [String], $brandId: String, $category: String) {
|
|
1293
|
+
visitPageV2(
|
|
1294
|
+
domain: $domain
|
|
1295
|
+
title: $title
|
|
1296
|
+
description: $description
|
|
1297
|
+
tags: $tags
|
|
1298
|
+
brandId: $brandId
|
|
1299
|
+
category: $category
|
|
1300
|
+
) {
|
|
1301
|
+
opportunityId
|
|
1302
|
+
brandId
|
|
1303
|
+
categoryId
|
|
1304
|
+
opportunityStatus
|
|
1305
|
+
opportunityType
|
|
1306
|
+
notificationType
|
|
1307
|
+
name
|
|
1308
|
+
brandName
|
|
1309
|
+
brandDescription
|
|
1310
|
+
brandMedia
|
|
1311
|
+
brandUrl
|
|
1312
|
+
brandIndustry
|
|
1313
|
+
categoryName
|
|
1314
|
+
ludoUrl
|
|
1315
|
+
projectUrl
|
|
1316
|
+
activeFrom
|
|
1317
|
+
activeUntil
|
|
1318
|
+
media
|
|
1319
|
+
reportLink
|
|
1320
|
+
shareLink
|
|
1321
|
+
}
|
|
1322
|
+
}
|
|
1323
|
+
`;
|
|
1324
|
+
/**
|
|
1325
|
+
* __useVisitPageV2Mutation__
|
|
1326
|
+
*
|
|
1327
|
+
* To run a mutation, you first call `useVisitPageV2Mutation` within a React component and pass it any options that fit your needs.
|
|
1328
|
+
* When your component renders, `useVisitPageV2Mutation` returns a tuple that includes:
|
|
1329
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
1330
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
1331
|
+
*
|
|
1332
|
+
* @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;
|
|
1333
|
+
*
|
|
1334
|
+
* @example
|
|
1335
|
+
* const [visitPageV2Mutation, { data, loading, error }] = useVisitPageV2Mutation({
|
|
1336
|
+
* variables: {
|
|
1337
|
+
* domain: // value for 'domain'
|
|
1338
|
+
* title: // value for 'title'
|
|
1339
|
+
* description: // value for 'description'
|
|
1340
|
+
* tags: // value for 'tags'
|
|
1341
|
+
* brandId: // value for 'brandId'
|
|
1342
|
+
* category: // value for 'category'
|
|
1343
|
+
* },
|
|
1344
|
+
* });
|
|
1345
|
+
*/
|
|
1346
|
+
function useVisitPageV2Mutation(baseOptions) {
|
|
1347
|
+
return Apollo.useMutation(exports.VisitPageV2Document, baseOptions);
|
|
1348
|
+
}
|
|
1349
|
+
exports.useVisitPageV2Mutation = useVisitPageV2Mutation;
|
|
1186
1350
|
exports.FetchCollectionRanksDocument = (0, client_1.gql) `
|
|
1187
1351
|
query FetchCollectionRanks($collectionKeys: [CollectionKey!]!) {
|
|
1188
1352
|
fetchCollectionRanks(collectionKeys: $collectionKeys) {
|
|
@@ -1219,6 +1383,154 @@ function useFetchCollectionRanksLazyQuery(baseOptions) {
|
|
|
1219
1383
|
return Apollo.useLazyQuery(exports.FetchCollectionRanksDocument, baseOptions);
|
|
1220
1384
|
}
|
|
1221
1385
|
exports.useFetchCollectionRanksLazyQuery = useFetchCollectionRanksLazyQuery;
|
|
1386
|
+
exports.FetchExtensionBrandsDocument = (0, client_1.gql) `
|
|
1387
|
+
query FetchExtensionBrands {
|
|
1388
|
+
fetchExtensionBrands {
|
|
1389
|
+
brandId
|
|
1390
|
+
name
|
|
1391
|
+
matchingWords
|
|
1392
|
+
description
|
|
1393
|
+
industry
|
|
1394
|
+
link
|
|
1395
|
+
media
|
|
1396
|
+
}
|
|
1397
|
+
}
|
|
1398
|
+
`;
|
|
1399
|
+
/**
|
|
1400
|
+
* __useFetchExtensionBrandsQuery__
|
|
1401
|
+
*
|
|
1402
|
+
* To run a query within a React component, call `useFetchExtensionBrandsQuery` and pass it any options that fit your needs.
|
|
1403
|
+
* When your component renders, `useFetchExtensionBrandsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
1404
|
+
* you can use to render your UI.
|
|
1405
|
+
*
|
|
1406
|
+
* @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;
|
|
1407
|
+
*
|
|
1408
|
+
* @example
|
|
1409
|
+
* const { data, loading, error } = useFetchExtensionBrandsQuery({
|
|
1410
|
+
* variables: {
|
|
1411
|
+
* },
|
|
1412
|
+
* });
|
|
1413
|
+
*/
|
|
1414
|
+
function useFetchExtensionBrandsQuery(baseOptions) {
|
|
1415
|
+
return Apollo.useQuery(exports.FetchExtensionBrandsDocument, baseOptions);
|
|
1416
|
+
}
|
|
1417
|
+
exports.useFetchExtensionBrandsQuery = useFetchExtensionBrandsQuery;
|
|
1418
|
+
function useFetchExtensionBrandsLazyQuery(baseOptions) {
|
|
1419
|
+
return Apollo.useLazyQuery(exports.FetchExtensionBrandsDocument, baseOptions);
|
|
1420
|
+
}
|
|
1421
|
+
exports.useFetchExtensionBrandsLazyQuery = useFetchExtensionBrandsLazyQuery;
|
|
1422
|
+
exports.FetchExtensionCategoriesDocument = (0, client_1.gql) `
|
|
1423
|
+
query FetchExtensionCategories {
|
|
1424
|
+
fetchExtensionCategories {
|
|
1425
|
+
categoryId
|
|
1426
|
+
name
|
|
1427
|
+
matchingWords
|
|
1428
|
+
}
|
|
1429
|
+
}
|
|
1430
|
+
`;
|
|
1431
|
+
/**
|
|
1432
|
+
* __useFetchExtensionCategoriesQuery__
|
|
1433
|
+
*
|
|
1434
|
+
* To run a query within a React component, call `useFetchExtensionCategoriesQuery` and pass it any options that fit your needs.
|
|
1435
|
+
* When your component renders, `useFetchExtensionCategoriesQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
1436
|
+
* you can use to render your UI.
|
|
1437
|
+
*
|
|
1438
|
+
* @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;
|
|
1439
|
+
*
|
|
1440
|
+
* @example
|
|
1441
|
+
* const { data, loading, error } = useFetchExtensionCategoriesQuery({
|
|
1442
|
+
* variables: {
|
|
1443
|
+
* },
|
|
1444
|
+
* });
|
|
1445
|
+
*/
|
|
1446
|
+
function useFetchExtensionCategoriesQuery(baseOptions) {
|
|
1447
|
+
return Apollo.useQuery(exports.FetchExtensionCategoriesDocument, baseOptions);
|
|
1448
|
+
}
|
|
1449
|
+
exports.useFetchExtensionCategoriesQuery = useFetchExtensionCategoriesQuery;
|
|
1450
|
+
function useFetchExtensionCategoriesLazyQuery(baseOptions) {
|
|
1451
|
+
return Apollo.useLazyQuery(exports.FetchExtensionCategoriesDocument, baseOptions);
|
|
1452
|
+
}
|
|
1453
|
+
exports.useFetchExtensionCategoriesLazyQuery = useFetchExtensionCategoriesLazyQuery;
|
|
1454
|
+
exports.FetchExtensionOpportunitiesV2Document = (0, client_1.gql) `
|
|
1455
|
+
query FetchExtensionOpportunitiesV2($domain: String!, $brandId: String, $categoryId: String) {
|
|
1456
|
+
fetchExtensionOpportunitiesV2(
|
|
1457
|
+
domain: $domain
|
|
1458
|
+
brandId: $brandId
|
|
1459
|
+
categoryId: $categoryId
|
|
1460
|
+
) {
|
|
1461
|
+
currentOpportunities {
|
|
1462
|
+
opportunityId
|
|
1463
|
+
brandId
|
|
1464
|
+
categoryId
|
|
1465
|
+
opportunityStatus
|
|
1466
|
+
opportunityType
|
|
1467
|
+
notificationType
|
|
1468
|
+
name
|
|
1469
|
+
brandName
|
|
1470
|
+
brandDescription
|
|
1471
|
+
brandMedia
|
|
1472
|
+
brandUrl
|
|
1473
|
+
brandIndustry
|
|
1474
|
+
categoryName
|
|
1475
|
+
ludoUrl
|
|
1476
|
+
projectUrl
|
|
1477
|
+
activeFrom
|
|
1478
|
+
activeUntil
|
|
1479
|
+
media
|
|
1480
|
+
reportLink
|
|
1481
|
+
shareLink
|
|
1482
|
+
}
|
|
1483
|
+
similarOpportunities {
|
|
1484
|
+
opportunityId
|
|
1485
|
+
brandId
|
|
1486
|
+
categoryId
|
|
1487
|
+
opportunityStatus
|
|
1488
|
+
opportunityType
|
|
1489
|
+
notificationType
|
|
1490
|
+
name
|
|
1491
|
+
brandName
|
|
1492
|
+
brandDescription
|
|
1493
|
+
brandMedia
|
|
1494
|
+
brandUrl
|
|
1495
|
+
brandIndustry
|
|
1496
|
+
categoryName
|
|
1497
|
+
ludoUrl
|
|
1498
|
+
projectUrl
|
|
1499
|
+
activeFrom
|
|
1500
|
+
activeUntil
|
|
1501
|
+
media
|
|
1502
|
+
reportLink
|
|
1503
|
+
shareLink
|
|
1504
|
+
}
|
|
1505
|
+
}
|
|
1506
|
+
}
|
|
1507
|
+
`;
|
|
1508
|
+
/**
|
|
1509
|
+
* __useFetchExtensionOpportunitiesV2Query__
|
|
1510
|
+
*
|
|
1511
|
+
* To run a query within a React component, call `useFetchExtensionOpportunitiesV2Query` and pass it any options that fit your needs.
|
|
1512
|
+
* When your component renders, `useFetchExtensionOpportunitiesV2Query` returns an object from Apollo Client that contains loading, error, and data properties
|
|
1513
|
+
* you can use to render your UI.
|
|
1514
|
+
*
|
|
1515
|
+
* @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;
|
|
1516
|
+
*
|
|
1517
|
+
* @example
|
|
1518
|
+
* const { data, loading, error } = useFetchExtensionOpportunitiesV2Query({
|
|
1519
|
+
* variables: {
|
|
1520
|
+
* domain: // value for 'domain'
|
|
1521
|
+
* brandId: // value for 'brandId'
|
|
1522
|
+
* categoryId: // value for 'categoryId'
|
|
1523
|
+
* },
|
|
1524
|
+
* });
|
|
1525
|
+
*/
|
|
1526
|
+
function useFetchExtensionOpportunitiesV2Query(baseOptions) {
|
|
1527
|
+
return Apollo.useQuery(exports.FetchExtensionOpportunitiesV2Document, baseOptions);
|
|
1528
|
+
}
|
|
1529
|
+
exports.useFetchExtensionOpportunitiesV2Query = useFetchExtensionOpportunitiesV2Query;
|
|
1530
|
+
function useFetchExtensionOpportunitiesV2LazyQuery(baseOptions) {
|
|
1531
|
+
return Apollo.useLazyQuery(exports.FetchExtensionOpportunitiesV2Document, baseOptions);
|
|
1532
|
+
}
|
|
1533
|
+
exports.useFetchExtensionOpportunitiesV2LazyQuery = useFetchExtensionOpportunitiesV2LazyQuery;
|
|
1222
1534
|
exports.FetchNftDataDocument = (0, client_1.gql) `
|
|
1223
1535
|
query FetchNFTData($blockchain: String!, $contractAddress: String, $tokenId: String, $elrondId: String) {
|
|
1224
1536
|
fetchNFTData(
|