@ludo.ninja/api 2.8.9 → 2.8.10
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.
|
@@ -332,11 +332,14 @@ export type ICategory = {
|
|
|
332
332
|
name: Scalars['String'];
|
|
333
333
|
};
|
|
334
334
|
export type ICollection = {
|
|
335
|
+
blockHeight?: Maybe<Scalars['Long']>;
|
|
336
|
+
blockTimestamp?: Maybe<Scalars['Long']>;
|
|
335
337
|
blockchain?: Maybe<Scalars['String']>;
|
|
336
338
|
collectionAssets?: Maybe<Array<Maybe<ICollectionAsset>>>;
|
|
337
|
-
collectionId
|
|
339
|
+
collectionId: Scalars['String'];
|
|
338
340
|
collectionMarkets?: Maybe<Array<Maybe<ICollectionMarket>>>;
|
|
339
341
|
collectionTitle?: Maybe<Scalars['String']>;
|
|
342
|
+
collectionUrl?: Maybe<Scalars['String']>;
|
|
340
343
|
contractAddress?: Maybe<Scalars['String']>;
|
|
341
344
|
creatorsAddresses?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
342
345
|
creatorsProfiles?: Maybe<Array<Maybe<IProfile>>>;
|
|
@@ -472,10 +475,10 @@ export type IDynamicAssetData = {
|
|
|
472
475
|
medias?: Maybe<Array<Maybe<IMedia>>>;
|
|
473
476
|
};
|
|
474
477
|
export type IDynamicCollectionData = {
|
|
478
|
+
collectionId: Scalars['String'];
|
|
475
479
|
isLikedByUser?: Maybe<Scalars['Boolean']>;
|
|
476
480
|
likesNum?: Maybe<Scalars['Int']>;
|
|
477
|
-
collectionAssetsPage?: Maybe<
|
|
478
|
-
collectionId?: Maybe<Scalars['String']>;
|
|
481
|
+
collectionAssetsPage?: Maybe<IAssetsPage>;
|
|
479
482
|
};
|
|
480
483
|
export type IDynamicCollectionDataInput = {
|
|
481
484
|
collectionId: Scalars['String'];
|
|
@@ -1757,7 +1760,7 @@ export type IQueryFetchDynamicCollectionDataArgs = {
|
|
|
1757
1760
|
input: IDynamicCollectionDataInput;
|
|
1758
1761
|
};
|
|
1759
1762
|
export type IQueryFetchDynamicCollectionsDataArgs = {
|
|
1760
|
-
|
|
1763
|
+
inputs: Array<IDynamicCollectionDataInput>;
|
|
1761
1764
|
};
|
|
1762
1765
|
export type IQueryFetchExtensionOpportunitiesV2Args = {
|
|
1763
1766
|
domain: Scalars['String'];
|
|
@@ -2535,17 +2538,6 @@ export type ILikeCollectionMutationVariables = Exact<{
|
|
|
2535
2538
|
collectionId: Scalars['String'];
|
|
2536
2539
|
}>;
|
|
2537
2540
|
export type ILikeCollectionMutation = Pick<IMutation, 'likeCollection'>;
|
|
2538
|
-
export type IFetchCollectionQueryVariables = Exact<{
|
|
2539
|
-
collectionId: Scalars['String'];
|
|
2540
|
-
}>;
|
|
2541
|
-
export type IFetchCollectionQuery = {
|
|
2542
|
-
fetchCollection: (Pick<ICollection, 'collectionId' | 'blockchain' | 'identifier' | 'contractAddress' | 'tokenId' | 'collectionTitle' | 'items' | 'owners' | 'likes' | 'liked' | 'creatorsAddresses' | 'verified' | 'originalUrls' | 'rank'> & {
|
|
2543
|
-
totalVolumes?: Maybe<Array<Maybe<Pick<ICurrencyAmountPair, 'currency' | 'amount'>>>>;
|
|
2544
|
-
collectionMarkets?: Maybe<Array<Maybe<Pick<ICollectionMarket, 'marketId' | 'marketName' | 'marketDomain' | 'marketUrl'>>>>;
|
|
2545
|
-
creatorsProfiles?: Maybe<Array<Maybe<Pick<IProfile, 'username' | 'userpic'>>>>;
|
|
2546
|
-
floorPrices?: Maybe<Array<Maybe<Pick<ICurrencyAmountPair, 'currency' | 'amount'>>>>;
|
|
2547
|
-
});
|
|
2548
|
-
};
|
|
2549
2541
|
export type IFetchCollectionsQueryVariables = Exact<{
|
|
2550
2542
|
pageSize: Scalars['Int'];
|
|
2551
2543
|
pageToken?: Maybe<Scalars['String']>;
|
|
@@ -2558,41 +2550,6 @@ export type IFetchCollectionsQuery = {
|
|
|
2558
2550
|
})>>>;
|
|
2559
2551
|
});
|
|
2560
2552
|
};
|
|
2561
|
-
export type IFetchCollectionsByIdsQueryVariables = Exact<{
|
|
2562
|
-
collectionIds: Array<Scalars['String']>;
|
|
2563
|
-
}>;
|
|
2564
|
-
export type IFetchCollectionsByIdsQuery = {
|
|
2565
|
-
fetchCollectionsByIds: Array<(Pick<ICollection, 'collectionId' | 'blockchain' | 'identifier' | 'contractAddress' | 'tokenId' | 'collectionTitle' | 'items' | 'owners' | 'likes' | 'liked' | 'creatorsAddresses' | 'verified' | 'originalUrls' | 'rank'> & {
|
|
2566
|
-
totalVolumes?: Maybe<Array<Maybe<Pick<ICurrencyAmountPair, 'currency' | 'amount'>>>>;
|
|
2567
|
-
collectionMarkets?: Maybe<Array<Maybe<Pick<ICollectionMarket, 'marketName' | 'marketDomain' | 'marketUrl'>>>>;
|
|
2568
|
-
creatorsProfiles?: Maybe<Array<Maybe<Pick<IProfile, 'username' | 'userpic'>>>>;
|
|
2569
|
-
floorPrices?: Maybe<Array<Maybe<Pick<ICurrencyAmountPair, 'currency' | 'amount'>>>>;
|
|
2570
|
-
})>;
|
|
2571
|
-
};
|
|
2572
|
-
export type IFetchDynamicCollectionDataQueryVariables = Exact<{
|
|
2573
|
-
input: IDynamicCollectionDataInput;
|
|
2574
|
-
}>;
|
|
2575
|
-
export type IFetchDynamicCollectionDataQuery = {
|
|
2576
|
-
fetchDynamicCollectionData: (Pick<IDynamicCollectionData, 'isLikedByUser' | 'likesNum' | 'collectionId'> & {
|
|
2577
|
-
collectionAssetsPage?: Maybe<(Pick<ICollectionAssetsPage, 'nextPageToken'> & {
|
|
2578
|
-
collectionAssets?: Maybe<Array<Maybe<(Pick<ICollectionAsset, 'id' | 'collectionId' | 'collectionTitle' | 'assetId' | 'blockchain' | 'address' | 'tokenId' | 'chainId' | 'creatorsAddresses' | 'originalUrls' | 'name' | 'description' | 'likes' | 'liked' | 'views' | 'visible' | 'createdAt' | 'blurred' | 'rank'> & {
|
|
2579
|
-
medias?: Maybe<Array<Maybe<Pick<IMedia, 'originalUrl' | 'url' | 'previewUrl' | 'mimeType' | 'sizeRatio' | 'fileSize'>>>>;
|
|
2580
|
-
})>>>;
|
|
2581
|
-
})>;
|
|
2582
|
-
});
|
|
2583
|
-
};
|
|
2584
|
-
export type IFetchDynamicCollectionsDataQueryVariables = Exact<{
|
|
2585
|
-
input: Array<IDynamicCollectionDataInput>;
|
|
2586
|
-
}>;
|
|
2587
|
-
export type IFetchDynamicCollectionsDataQuery = {
|
|
2588
|
-
fetchDynamicCollectionsData: Array<(Pick<IDynamicCollectionData, 'isLikedByUser' | 'likesNum' | 'collectionId'> & {
|
|
2589
|
-
collectionAssetsPage?: Maybe<(Pick<ICollectionAssetsPage, 'nextPageToken'> & {
|
|
2590
|
-
collectionAssets?: Maybe<Array<Maybe<(Pick<ICollectionAsset, 'id' | 'collectionId' | 'collectionTitle' | 'assetId' | 'blockchain' | 'address' | 'tokenId' | 'chainId' | 'creatorsAddresses' | 'originalUrls' | 'name' | 'description' | 'likes' | 'liked' | 'views' | 'visible' | 'createdAt' | 'blurred' | 'rank'> & {
|
|
2591
|
-
medias?: Maybe<Array<Maybe<Pick<IMedia, 'originalUrl' | 'url' | 'previewUrl' | 'mimeType' | 'sizeRatio' | 'fileSize'>>>>;
|
|
2592
|
-
})>>>;
|
|
2593
|
-
})>;
|
|
2594
|
-
})>;
|
|
2595
|
-
};
|
|
2596
2553
|
export type IFetchMyExperienceV2QueryVariables = Exact<{
|
|
2597
2554
|
[key: string]: never;
|
|
2598
2555
|
}>;
|
|
@@ -3235,6 +3192,18 @@ export type IFetchAssetsCountQueryVariables = Exact<{
|
|
|
3235
3192
|
[key: string]: never;
|
|
3236
3193
|
}>;
|
|
3237
3194
|
export type IFetchAssetsCountQuery = Pick<IQuery, 'fetchAssetsCount'>;
|
|
3195
|
+
export type IFetchCollectionQueryVariables = Exact<{
|
|
3196
|
+
collectionId: Scalars['String'];
|
|
3197
|
+
}>;
|
|
3198
|
+
export type IFetchCollectionQuery = {
|
|
3199
|
+
fetchCollection: (Pick<ICollection, 'collectionId' | 'blockchain' | 'identifier' | 'contractAddress' | 'tokenId' | 'blockHeight' | 'blockTimestamp' | 'collectionTitle' | 'collectionUrl' | 'items' | 'owners' | 'likes' | 'liked' | 'creatorsAddresses' | 'verified' | 'originalUrls' | 'rank' | 'nsfw'> & {
|
|
3200
|
+
totalVolumes?: Maybe<Array<Maybe<Pick<ICurrencyAmountPair, 'currency' | 'amount'>>>>;
|
|
3201
|
+
collectionMarkets?: Maybe<Array<Maybe<Pick<ICollectionMarket, 'marketId' | 'marketName' | 'marketDomain' | 'marketUrl'>>>>;
|
|
3202
|
+
creatorsProfiles?: Maybe<Array<Maybe<Pick<IProfile, 'username' | 'userpic'>>>>;
|
|
3203
|
+
medias?: Maybe<Array<Maybe<Pick<IMedia, 'originalUrl' | 'url' | 'mimeType' | 'sizeRatio' | 'fileSize'>>>>;
|
|
3204
|
+
floorPrices?: Maybe<Array<Maybe<Pick<ICurrencyAmountPair, 'currency' | 'amount'>>>>;
|
|
3205
|
+
});
|
|
3206
|
+
};
|
|
3238
3207
|
export type IFindCollectionsQueryVariables = Exact<{
|
|
3239
3208
|
term: Scalars['String'];
|
|
3240
3209
|
input: ICollectionFilterInput;
|
|
@@ -3248,6 +3217,18 @@ export type IFindCollectionsQuery = {
|
|
|
3248
3217
|
nextPage?: Maybe<Pick<IPage, 'token' | 'num' | 'size' | 'elements'>>;
|
|
3249
3218
|
};
|
|
3250
3219
|
};
|
|
3220
|
+
export type IFetchCollectionsByIdsQueryVariables = Exact<{
|
|
3221
|
+
collectionIds: Array<Scalars['String']>;
|
|
3222
|
+
}>;
|
|
3223
|
+
export type IFetchCollectionsByIdsQuery = {
|
|
3224
|
+
fetchCollectionsByIds: Array<(Pick<ICollection, 'collectionId' | 'blockchain' | 'identifier' | 'contractAddress' | 'tokenId' | 'blockHeight' | 'blockTimestamp' | 'collectionTitle' | 'collectionUrl' | 'items' | 'owners' | 'likes' | 'liked' | 'creatorsAddresses' | 'verified' | 'originalUrls' | 'rank' | 'nsfw'> & {
|
|
3225
|
+
totalVolumes?: Maybe<Array<Maybe<Pick<ICurrencyAmountPair, 'currency' | 'amount'>>>>;
|
|
3226
|
+
collectionMarkets?: Maybe<Array<Maybe<Pick<ICollectionMarket, 'marketId' | 'marketName' | 'marketDomain' | 'marketUrl'>>>>;
|
|
3227
|
+
creatorsProfiles?: Maybe<Array<Maybe<Pick<IProfile, 'username' | 'userpic'>>>>;
|
|
3228
|
+
medias?: Maybe<Array<Maybe<Pick<IMedia, 'originalUrl' | 'url' | 'mimeType' | 'sizeRatio' | 'fileSize'>>>>;
|
|
3229
|
+
floorPrices?: Maybe<Array<Maybe<Pick<ICurrencyAmountPair, 'currency' | 'amount'>>>>;
|
|
3230
|
+
})>;
|
|
3231
|
+
};
|
|
3251
3232
|
export type IFetchCreationsByTypeQueryVariables = Exact<{
|
|
3252
3233
|
itemType: Scalars['String'];
|
|
3253
3234
|
page?: Maybe<IPageInput>;
|
|
@@ -3270,6 +3251,42 @@ export type IFetchDynamicAssetsLikesQueryVariables = Exact<{
|
|
|
3270
3251
|
export type IFetchDynamicAssetsLikesQuery = {
|
|
3271
3252
|
fetchDynamicAssetsData: Array<Maybe<Pick<IDynamicAssetData, 'isLikedByUser' | 'likesNum' | 'assetId'>>>;
|
|
3272
3253
|
};
|
|
3254
|
+
export type IFetchDynamicCollectionDataQueryVariables = Exact<{
|
|
3255
|
+
input: IDynamicCollectionDataInput;
|
|
3256
|
+
}>;
|
|
3257
|
+
export type IFetchDynamicCollectionDataQuery = {
|
|
3258
|
+
fetchDynamicCollectionData: (Pick<IDynamicCollectionData, 'isLikedByUser' | 'likesNum' | 'collectionId'> & {
|
|
3259
|
+
collectionAssetsPage?: Maybe<(Pick<IAssetsPage, 'nextPageToken'> & {
|
|
3260
|
+
assets: Array<Maybe<(Pick<IAsset, 'latestPriceCurrency' | 'latestPriceAmount' | 'collectionId' | 'collectionOriginalUrls' | 'collectionTitle' | 'assetId' | 'blockchain' | 'address' | 'tokenId' | 'name' | 'description' | 'rank' | 'originalUrls' | 'ownersAddresses' | 'creatorsAddresses' | 'views' | 'visible' | 'blurred'> & {
|
|
3261
|
+
totalVolumes?: Maybe<Array<Maybe<Pick<ICurrencyAmountPair, 'currency' | 'amount'>>>>;
|
|
3262
|
+
markets?: Maybe<Array<Maybe<Pick<IAssetMarket, 'marketId' | 'marketName' | 'marketDomain' | 'marketUrl'>>>>;
|
|
3263
|
+
collectionMedias?: Maybe<Array<Maybe<Pick<IMedia, 'originalUrl' | 'url' | 'previewUrl' | 'mimeType' | 'sizeRatio' | 'fileSize'>>>>;
|
|
3264
|
+
medias?: Maybe<Array<Maybe<Pick<IMedia, 'originalUrl' | 'url' | 'mimeType' | 'sizeRatio' | 'fileSize' | 'previewUrl'>>>>;
|
|
3265
|
+
ownersProfiles?: Maybe<Array<Maybe<Pick<IProfile, 'userId' | 'username' | 'about' | 'userpic' | 'followers' | 'followings' | 'visible'>>>>;
|
|
3266
|
+
creatorsProfiles?: Maybe<Array<Maybe<Pick<IProfile, 'userId' | 'username' | 'about' | 'userpic' | 'followers' | 'followings' | 'visible'>>>>;
|
|
3267
|
+
attributes?: Maybe<Array<Maybe<Pick<IAttribute, 'name' | 'value'>>>>;
|
|
3268
|
+
})>>;
|
|
3269
|
+
})>;
|
|
3270
|
+
});
|
|
3271
|
+
};
|
|
3272
|
+
export type IFetchDynamicCollectionsDataQueryVariables = Exact<{
|
|
3273
|
+
input: Array<IDynamicCollectionDataInput>;
|
|
3274
|
+
}>;
|
|
3275
|
+
export type IFetchDynamicCollectionsDataQuery = {
|
|
3276
|
+
fetchDynamicCollectionsData: Array<(Pick<IDynamicCollectionData, 'isLikedByUser' | 'likesNum' | 'collectionId'> & {
|
|
3277
|
+
collectionAssetsPage?: Maybe<(Pick<IAssetsPage, 'nextPageToken'> & {
|
|
3278
|
+
assets: Array<Maybe<(Pick<IAsset, 'latestPriceCurrency' | 'latestPriceAmount' | 'collectionId' | 'collectionOriginalUrls' | 'collectionTitle' | 'assetId' | 'blockchain' | 'address' | 'tokenId' | 'name' | 'description' | 'rank' | 'originalUrls' | 'ownersAddresses' | 'creatorsAddresses' | 'views' | 'visible' | 'blurred'> & {
|
|
3279
|
+
totalVolumes?: Maybe<Array<Maybe<Pick<ICurrencyAmountPair, 'currency' | 'amount'>>>>;
|
|
3280
|
+
markets?: Maybe<Array<Maybe<Pick<IAssetMarket, 'marketId' | 'marketName' | 'marketDomain' | 'marketUrl'>>>>;
|
|
3281
|
+
collectionMedias?: Maybe<Array<Maybe<Pick<IMedia, 'originalUrl' | 'url' | 'previewUrl' | 'mimeType' | 'sizeRatio' | 'fileSize'>>>>;
|
|
3282
|
+
medias?: Maybe<Array<Maybe<Pick<IMedia, 'originalUrl' | 'url' | 'mimeType' | 'sizeRatio' | 'fileSize' | 'previewUrl'>>>>;
|
|
3283
|
+
ownersProfiles?: Maybe<Array<Maybe<Pick<IProfile, 'userId' | 'username' | 'about' | 'userpic' | 'followers' | 'followings' | 'visible'>>>>;
|
|
3284
|
+
creatorsProfiles?: Maybe<Array<Maybe<Pick<IProfile, 'userId' | 'username' | 'about' | 'userpic' | 'followers' | 'followings' | 'visible'>>>>;
|
|
3285
|
+
attributes?: Maybe<Array<Maybe<Pick<IAttribute, 'name' | 'value'>>>>;
|
|
3286
|
+
})>>;
|
|
3287
|
+
})>;
|
|
3288
|
+
})>;
|
|
3289
|
+
};
|
|
3273
3290
|
export type IFindAllTopEntitiesByNameQueryVariables = Exact<{
|
|
3274
3291
|
name: Scalars['String'];
|
|
3275
3292
|
pageSize: Scalars['Int'];
|
|
@@ -3859,32 +3876,6 @@ export declare function useLikeCollectionMutation(baseOptions?: Apollo.MutationH
|
|
|
3859
3876
|
export type LikeCollectionMutationHookResult = ReturnType<typeof useLikeCollectionMutation>;
|
|
3860
3877
|
export type LikeCollectionMutationResult = Apollo.MutationResult<ILikeCollectionMutation>;
|
|
3861
3878
|
export type LikeCollectionMutationOptions = Apollo.BaseMutationOptions<ILikeCollectionMutation, ILikeCollectionMutationVariables>;
|
|
3862
|
-
export declare const FetchCollectionDocument: Apollo.DocumentNode;
|
|
3863
|
-
/**
|
|
3864
|
-
* __useFetchCollectionQuery__
|
|
3865
|
-
*
|
|
3866
|
-
* To run a query within a React component, call `useFetchCollectionQuery` and pass it any options that fit your needs.
|
|
3867
|
-
* When your component renders, `useFetchCollectionQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3868
|
-
* you can use to render your UI.
|
|
3869
|
-
*
|
|
3870
|
-
* @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;
|
|
3871
|
-
*
|
|
3872
|
-
* @example
|
|
3873
|
-
* const { data, loading, error } = useFetchCollectionQuery({
|
|
3874
|
-
* variables: {
|
|
3875
|
-
* collectionId: // value for 'collectionId'
|
|
3876
|
-
* },
|
|
3877
|
-
* });
|
|
3878
|
-
*/
|
|
3879
|
-
export declare function useFetchCollectionQuery(baseOptions: Apollo.QueryHookOptions<IFetchCollectionQuery, IFetchCollectionQueryVariables>): Apollo.QueryResult<IFetchCollectionQuery, Exact<{
|
|
3880
|
-
collectionId: string;
|
|
3881
|
-
}>>;
|
|
3882
|
-
export declare function useFetchCollectionLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchCollectionQuery, IFetchCollectionQueryVariables>): Apollo.LazyQueryResultTuple<IFetchCollectionQuery, Exact<{
|
|
3883
|
-
collectionId: string;
|
|
3884
|
-
}>>;
|
|
3885
|
-
export type FetchCollectionQueryHookResult = ReturnType<typeof useFetchCollectionQuery>;
|
|
3886
|
-
export type FetchCollectionLazyQueryHookResult = ReturnType<typeof useFetchCollectionLazyQuery>;
|
|
3887
|
-
export type FetchCollectionQueryResult = Apollo.QueryResult<IFetchCollectionQuery, IFetchCollectionQueryVariables>;
|
|
3888
3879
|
export declare const FetchCollectionsDocument: Apollo.DocumentNode;
|
|
3889
3880
|
/**
|
|
3890
3881
|
* __useFetchCollectionsQuery__
|
|
@@ -3917,84 +3908,6 @@ export declare function useFetchCollectionsLazyQuery(baseOptions?: Apollo.LazyQu
|
|
|
3917
3908
|
export type FetchCollectionsQueryHookResult = ReturnType<typeof useFetchCollectionsQuery>;
|
|
3918
3909
|
export type FetchCollectionsLazyQueryHookResult = ReturnType<typeof useFetchCollectionsLazyQuery>;
|
|
3919
3910
|
export type FetchCollectionsQueryResult = Apollo.QueryResult<IFetchCollectionsQuery, IFetchCollectionsQueryVariables>;
|
|
3920
|
-
export declare const FetchCollectionsByIdsDocument: Apollo.DocumentNode;
|
|
3921
|
-
/**
|
|
3922
|
-
* __useFetchCollectionsByIdsQuery__
|
|
3923
|
-
*
|
|
3924
|
-
* To run a query within a React component, call `useFetchCollectionsByIdsQuery` and pass it any options that fit your needs.
|
|
3925
|
-
* When your component renders, `useFetchCollectionsByIdsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3926
|
-
* you can use to render your UI.
|
|
3927
|
-
*
|
|
3928
|
-
* @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;
|
|
3929
|
-
*
|
|
3930
|
-
* @example
|
|
3931
|
-
* const { data, loading, error } = useFetchCollectionsByIdsQuery({
|
|
3932
|
-
* variables: {
|
|
3933
|
-
* collectionIds: // value for 'collectionIds'
|
|
3934
|
-
* },
|
|
3935
|
-
* });
|
|
3936
|
-
*/
|
|
3937
|
-
export declare function useFetchCollectionsByIdsQuery(baseOptions: Apollo.QueryHookOptions<IFetchCollectionsByIdsQuery, IFetchCollectionsByIdsQueryVariables>): Apollo.QueryResult<IFetchCollectionsByIdsQuery, Exact<{
|
|
3938
|
-
collectionIds: string[];
|
|
3939
|
-
}>>;
|
|
3940
|
-
export declare function useFetchCollectionsByIdsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchCollectionsByIdsQuery, IFetchCollectionsByIdsQueryVariables>): Apollo.LazyQueryResultTuple<IFetchCollectionsByIdsQuery, Exact<{
|
|
3941
|
-
collectionIds: string[];
|
|
3942
|
-
}>>;
|
|
3943
|
-
export type FetchCollectionsByIdsQueryHookResult = ReturnType<typeof useFetchCollectionsByIdsQuery>;
|
|
3944
|
-
export type FetchCollectionsByIdsLazyQueryHookResult = ReturnType<typeof useFetchCollectionsByIdsLazyQuery>;
|
|
3945
|
-
export type FetchCollectionsByIdsQueryResult = Apollo.QueryResult<IFetchCollectionsByIdsQuery, IFetchCollectionsByIdsQueryVariables>;
|
|
3946
|
-
export declare const FetchDynamicCollectionDataDocument: Apollo.DocumentNode;
|
|
3947
|
-
/**
|
|
3948
|
-
* __useFetchDynamicCollectionDataQuery__
|
|
3949
|
-
*
|
|
3950
|
-
* To run a query within a React component, call `useFetchDynamicCollectionDataQuery` and pass it any options that fit your needs.
|
|
3951
|
-
* When your component renders, `useFetchDynamicCollectionDataQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3952
|
-
* you can use to render your UI.
|
|
3953
|
-
*
|
|
3954
|
-
* @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;
|
|
3955
|
-
*
|
|
3956
|
-
* @example
|
|
3957
|
-
* const { data, loading, error } = useFetchDynamicCollectionDataQuery({
|
|
3958
|
-
* variables: {
|
|
3959
|
-
* input: // value for 'input'
|
|
3960
|
-
* },
|
|
3961
|
-
* });
|
|
3962
|
-
*/
|
|
3963
|
-
export declare function useFetchDynamicCollectionDataQuery(baseOptions: Apollo.QueryHookOptions<IFetchDynamicCollectionDataQuery, IFetchDynamicCollectionDataQueryVariables>): Apollo.QueryResult<IFetchDynamicCollectionDataQuery, Exact<{
|
|
3964
|
-
input: IDynamicCollectionDataInput;
|
|
3965
|
-
}>>;
|
|
3966
|
-
export declare function useFetchDynamicCollectionDataLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchDynamicCollectionDataQuery, IFetchDynamicCollectionDataQueryVariables>): Apollo.LazyQueryResultTuple<IFetchDynamicCollectionDataQuery, Exact<{
|
|
3967
|
-
input: IDynamicCollectionDataInput;
|
|
3968
|
-
}>>;
|
|
3969
|
-
export type FetchDynamicCollectionDataQueryHookResult = ReturnType<typeof useFetchDynamicCollectionDataQuery>;
|
|
3970
|
-
export type FetchDynamicCollectionDataLazyQueryHookResult = ReturnType<typeof useFetchDynamicCollectionDataLazyQuery>;
|
|
3971
|
-
export type FetchDynamicCollectionDataQueryResult = Apollo.QueryResult<IFetchDynamicCollectionDataQuery, IFetchDynamicCollectionDataQueryVariables>;
|
|
3972
|
-
export declare const FetchDynamicCollectionsDataDocument: Apollo.DocumentNode;
|
|
3973
|
-
/**
|
|
3974
|
-
* __useFetchDynamicCollectionsDataQuery__
|
|
3975
|
-
*
|
|
3976
|
-
* To run a query within a React component, call `useFetchDynamicCollectionsDataQuery` and pass it any options that fit your needs.
|
|
3977
|
-
* When your component renders, `useFetchDynamicCollectionsDataQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3978
|
-
* you can use to render your UI.
|
|
3979
|
-
*
|
|
3980
|
-
* @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;
|
|
3981
|
-
*
|
|
3982
|
-
* @example
|
|
3983
|
-
* const { data, loading, error } = useFetchDynamicCollectionsDataQuery({
|
|
3984
|
-
* variables: {
|
|
3985
|
-
* input: // value for 'input'
|
|
3986
|
-
* },
|
|
3987
|
-
* });
|
|
3988
|
-
*/
|
|
3989
|
-
export declare function useFetchDynamicCollectionsDataQuery(baseOptions: Apollo.QueryHookOptions<IFetchDynamicCollectionsDataQuery, IFetchDynamicCollectionsDataQueryVariables>): Apollo.QueryResult<IFetchDynamicCollectionsDataQuery, Exact<{
|
|
3990
|
-
input: IDynamicCollectionDataInput[];
|
|
3991
|
-
}>>;
|
|
3992
|
-
export declare function useFetchDynamicCollectionsDataLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchDynamicCollectionsDataQuery, IFetchDynamicCollectionsDataQueryVariables>): Apollo.LazyQueryResultTuple<IFetchDynamicCollectionsDataQuery, Exact<{
|
|
3993
|
-
input: IDynamicCollectionDataInput[];
|
|
3994
|
-
}>>;
|
|
3995
|
-
export type FetchDynamicCollectionsDataQueryHookResult = ReturnType<typeof useFetchDynamicCollectionsDataQuery>;
|
|
3996
|
-
export type FetchDynamicCollectionsDataLazyQueryHookResult = ReturnType<typeof useFetchDynamicCollectionsDataLazyQuery>;
|
|
3997
|
-
export type FetchDynamicCollectionsDataQueryResult = Apollo.QueryResult<IFetchDynamicCollectionsDataQuery, IFetchDynamicCollectionsDataQueryVariables>;
|
|
3998
3911
|
export declare const FetchMyExperienceV2Document: Apollo.DocumentNode;
|
|
3999
3912
|
/**
|
|
4000
3913
|
* __useFetchMyExperienceV2Query__
|
|
@@ -6390,6 +6303,32 @@ export declare function useFetchAssetsCountLazyQuery(baseOptions?: Apollo.LazyQu
|
|
|
6390
6303
|
export type FetchAssetsCountQueryHookResult = ReturnType<typeof useFetchAssetsCountQuery>;
|
|
6391
6304
|
export type FetchAssetsCountLazyQueryHookResult = ReturnType<typeof useFetchAssetsCountLazyQuery>;
|
|
6392
6305
|
export type FetchAssetsCountQueryResult = Apollo.QueryResult<IFetchAssetsCountQuery, IFetchAssetsCountQueryVariables>;
|
|
6306
|
+
export declare const FetchCollectionDocument: Apollo.DocumentNode;
|
|
6307
|
+
/**
|
|
6308
|
+
* __useFetchCollectionQuery__
|
|
6309
|
+
*
|
|
6310
|
+
* To run a query within a React component, call `useFetchCollectionQuery` and pass it any options that fit your needs.
|
|
6311
|
+
* When your component renders, `useFetchCollectionQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
6312
|
+
* you can use to render your UI.
|
|
6313
|
+
*
|
|
6314
|
+
* @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;
|
|
6315
|
+
*
|
|
6316
|
+
* @example
|
|
6317
|
+
* const { data, loading, error } = useFetchCollectionQuery({
|
|
6318
|
+
* variables: {
|
|
6319
|
+
* collectionId: // value for 'collectionId'
|
|
6320
|
+
* },
|
|
6321
|
+
* });
|
|
6322
|
+
*/
|
|
6323
|
+
export declare function useFetchCollectionQuery(baseOptions: Apollo.QueryHookOptions<IFetchCollectionQuery, IFetchCollectionQueryVariables>): Apollo.QueryResult<IFetchCollectionQuery, Exact<{
|
|
6324
|
+
collectionId: string;
|
|
6325
|
+
}>>;
|
|
6326
|
+
export declare function useFetchCollectionLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchCollectionQuery, IFetchCollectionQueryVariables>): Apollo.LazyQueryResultTuple<IFetchCollectionQuery, Exact<{
|
|
6327
|
+
collectionId: string;
|
|
6328
|
+
}>>;
|
|
6329
|
+
export type FetchCollectionQueryHookResult = ReturnType<typeof useFetchCollectionQuery>;
|
|
6330
|
+
export type FetchCollectionLazyQueryHookResult = ReturnType<typeof useFetchCollectionLazyQuery>;
|
|
6331
|
+
export type FetchCollectionQueryResult = Apollo.QueryResult<IFetchCollectionQuery, IFetchCollectionQueryVariables>;
|
|
6393
6332
|
export declare const FindCollectionsDocument: Apollo.DocumentNode;
|
|
6394
6333
|
/**
|
|
6395
6334
|
* __useFindCollectionsQuery__
|
|
@@ -6422,6 +6361,32 @@ export declare function useFindCollectionsLazyQuery(baseOptions?: Apollo.LazyQue
|
|
|
6422
6361
|
export type FindCollectionsQueryHookResult = ReturnType<typeof useFindCollectionsQuery>;
|
|
6423
6362
|
export type FindCollectionsLazyQueryHookResult = ReturnType<typeof useFindCollectionsLazyQuery>;
|
|
6424
6363
|
export type FindCollectionsQueryResult = Apollo.QueryResult<IFindCollectionsQuery, IFindCollectionsQueryVariables>;
|
|
6364
|
+
export declare const FetchCollectionsByIdsDocument: Apollo.DocumentNode;
|
|
6365
|
+
/**
|
|
6366
|
+
* __useFetchCollectionsByIdsQuery__
|
|
6367
|
+
*
|
|
6368
|
+
* To run a query within a React component, call `useFetchCollectionsByIdsQuery` and pass it any options that fit your needs.
|
|
6369
|
+
* When your component renders, `useFetchCollectionsByIdsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
6370
|
+
* you can use to render your UI.
|
|
6371
|
+
*
|
|
6372
|
+
* @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;
|
|
6373
|
+
*
|
|
6374
|
+
* @example
|
|
6375
|
+
* const { data, loading, error } = useFetchCollectionsByIdsQuery({
|
|
6376
|
+
* variables: {
|
|
6377
|
+
* collectionIds: // value for 'collectionIds'
|
|
6378
|
+
* },
|
|
6379
|
+
* });
|
|
6380
|
+
*/
|
|
6381
|
+
export declare function useFetchCollectionsByIdsQuery(baseOptions: Apollo.QueryHookOptions<IFetchCollectionsByIdsQuery, IFetchCollectionsByIdsQueryVariables>): Apollo.QueryResult<IFetchCollectionsByIdsQuery, Exact<{
|
|
6382
|
+
collectionIds: string[];
|
|
6383
|
+
}>>;
|
|
6384
|
+
export declare function useFetchCollectionsByIdsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchCollectionsByIdsQuery, IFetchCollectionsByIdsQueryVariables>): Apollo.LazyQueryResultTuple<IFetchCollectionsByIdsQuery, Exact<{
|
|
6385
|
+
collectionIds: string[];
|
|
6386
|
+
}>>;
|
|
6387
|
+
export type FetchCollectionsByIdsQueryHookResult = ReturnType<typeof useFetchCollectionsByIdsQuery>;
|
|
6388
|
+
export type FetchCollectionsByIdsLazyQueryHookResult = ReturnType<typeof useFetchCollectionsByIdsLazyQuery>;
|
|
6389
|
+
export type FetchCollectionsByIdsQueryResult = Apollo.QueryResult<IFetchCollectionsByIdsQuery, IFetchCollectionsByIdsQueryVariables>;
|
|
6425
6390
|
export declare const FetchCreationsByTypeDocument: Apollo.DocumentNode;
|
|
6426
6391
|
/**
|
|
6427
6392
|
* __useFetchCreationsByTypeQuery__
|
|
@@ -6503,6 +6468,58 @@ export declare function useFetchDynamicAssetsLikesLazyQuery(baseOptions?: Apollo
|
|
|
6503
6468
|
export type FetchDynamicAssetsLikesQueryHookResult = ReturnType<typeof useFetchDynamicAssetsLikesQuery>;
|
|
6504
6469
|
export type FetchDynamicAssetsLikesLazyQueryHookResult = ReturnType<typeof useFetchDynamicAssetsLikesLazyQuery>;
|
|
6505
6470
|
export type FetchDynamicAssetsLikesQueryResult = Apollo.QueryResult<IFetchDynamicAssetsLikesQuery, IFetchDynamicAssetsLikesQueryVariables>;
|
|
6471
|
+
export declare const FetchDynamicCollectionDataDocument: Apollo.DocumentNode;
|
|
6472
|
+
/**
|
|
6473
|
+
* __useFetchDynamicCollectionDataQuery__
|
|
6474
|
+
*
|
|
6475
|
+
* To run a query within a React component, call `useFetchDynamicCollectionDataQuery` and pass it any options that fit your needs.
|
|
6476
|
+
* When your component renders, `useFetchDynamicCollectionDataQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
6477
|
+
* you can use to render your UI.
|
|
6478
|
+
*
|
|
6479
|
+
* @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;
|
|
6480
|
+
*
|
|
6481
|
+
* @example
|
|
6482
|
+
* const { data, loading, error } = useFetchDynamicCollectionDataQuery({
|
|
6483
|
+
* variables: {
|
|
6484
|
+
* input: // value for 'input'
|
|
6485
|
+
* },
|
|
6486
|
+
* });
|
|
6487
|
+
*/
|
|
6488
|
+
export declare function useFetchDynamicCollectionDataQuery(baseOptions: Apollo.QueryHookOptions<IFetchDynamicCollectionDataQuery, IFetchDynamicCollectionDataQueryVariables>): Apollo.QueryResult<IFetchDynamicCollectionDataQuery, Exact<{
|
|
6489
|
+
input: IDynamicCollectionDataInput;
|
|
6490
|
+
}>>;
|
|
6491
|
+
export declare function useFetchDynamicCollectionDataLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchDynamicCollectionDataQuery, IFetchDynamicCollectionDataQueryVariables>): Apollo.LazyQueryResultTuple<IFetchDynamicCollectionDataQuery, Exact<{
|
|
6492
|
+
input: IDynamicCollectionDataInput;
|
|
6493
|
+
}>>;
|
|
6494
|
+
export type FetchDynamicCollectionDataQueryHookResult = ReturnType<typeof useFetchDynamicCollectionDataQuery>;
|
|
6495
|
+
export type FetchDynamicCollectionDataLazyQueryHookResult = ReturnType<typeof useFetchDynamicCollectionDataLazyQuery>;
|
|
6496
|
+
export type FetchDynamicCollectionDataQueryResult = Apollo.QueryResult<IFetchDynamicCollectionDataQuery, IFetchDynamicCollectionDataQueryVariables>;
|
|
6497
|
+
export declare const FetchDynamicCollectionsDataDocument: Apollo.DocumentNode;
|
|
6498
|
+
/**
|
|
6499
|
+
* __useFetchDynamicCollectionsDataQuery__
|
|
6500
|
+
*
|
|
6501
|
+
* To run a query within a React component, call `useFetchDynamicCollectionsDataQuery` and pass it any options that fit your needs.
|
|
6502
|
+
* When your component renders, `useFetchDynamicCollectionsDataQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
6503
|
+
* you can use to render your UI.
|
|
6504
|
+
*
|
|
6505
|
+
* @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;
|
|
6506
|
+
*
|
|
6507
|
+
* @example
|
|
6508
|
+
* const { data, loading, error } = useFetchDynamicCollectionsDataQuery({
|
|
6509
|
+
* variables: {
|
|
6510
|
+
* input: // value for 'input'
|
|
6511
|
+
* },
|
|
6512
|
+
* });
|
|
6513
|
+
*/
|
|
6514
|
+
export declare function useFetchDynamicCollectionsDataQuery(baseOptions: Apollo.QueryHookOptions<IFetchDynamicCollectionsDataQuery, IFetchDynamicCollectionsDataQueryVariables>): Apollo.QueryResult<IFetchDynamicCollectionsDataQuery, Exact<{
|
|
6515
|
+
input: IDynamicCollectionDataInput[];
|
|
6516
|
+
}>>;
|
|
6517
|
+
export declare function useFetchDynamicCollectionsDataLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchDynamicCollectionsDataQuery, IFetchDynamicCollectionsDataQueryVariables>): Apollo.LazyQueryResultTuple<IFetchDynamicCollectionsDataQuery, Exact<{
|
|
6518
|
+
input: IDynamicCollectionDataInput[];
|
|
6519
|
+
}>>;
|
|
6520
|
+
export type FetchDynamicCollectionsDataQueryHookResult = ReturnType<typeof useFetchDynamicCollectionsDataQuery>;
|
|
6521
|
+
export type FetchDynamicCollectionsDataLazyQueryHookResult = ReturnType<typeof useFetchDynamicCollectionsDataLazyQuery>;
|
|
6522
|
+
export type FetchDynamicCollectionsDataQueryResult = Apollo.QueryResult<IFetchDynamicCollectionsDataQuery, IFetchDynamicCollectionsDataQueryVariables>;
|
|
6506
6523
|
export declare const FindAllTopEntitiesByNameDocument: Apollo.DocumentNode;
|
|
6507
6524
|
/**
|
|
6508
6525
|
* __useFindAllTopEntitiesByNameQuery__
|