@ludo.ninja/api 2.8.9 → 2.8.11
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.
|
@@ -224,6 +224,7 @@ export type IAssetModerationsPage = {
|
|
|
224
224
|
};
|
|
225
225
|
export type IAssetPage = {
|
|
226
226
|
assets: Array<Maybe<IAsset>>;
|
|
227
|
+
nextPage?: Maybe<Scalars['String']>;
|
|
227
228
|
nextPageToken?: Maybe<Scalars['String']>;
|
|
228
229
|
};
|
|
229
230
|
export type IAssetRank = {
|
|
@@ -291,6 +292,7 @@ export type IAssetReportsPage = {
|
|
|
291
292
|
};
|
|
292
293
|
export type IAssetsPage = {
|
|
293
294
|
assets: Array<Maybe<IAsset>>;
|
|
295
|
+
nextPage?: Maybe<Scalars['String']>;
|
|
294
296
|
nextPageToken?: Maybe<Scalars['String']>;
|
|
295
297
|
};
|
|
296
298
|
export type IAttribute = {
|
|
@@ -332,11 +334,14 @@ export type ICategory = {
|
|
|
332
334
|
name: Scalars['String'];
|
|
333
335
|
};
|
|
334
336
|
export type ICollection = {
|
|
337
|
+
blockHeight?: Maybe<Scalars['Long']>;
|
|
338
|
+
blockTimestamp?: Maybe<Scalars['Long']>;
|
|
335
339
|
blockchain?: Maybe<Scalars['String']>;
|
|
336
340
|
collectionAssets?: Maybe<Array<Maybe<ICollectionAsset>>>;
|
|
337
|
-
collectionId
|
|
341
|
+
collectionId: Scalars['String'];
|
|
338
342
|
collectionMarkets?: Maybe<Array<Maybe<ICollectionMarket>>>;
|
|
339
343
|
collectionTitle?: Maybe<Scalars['String']>;
|
|
344
|
+
collectionUrl?: Maybe<Scalars['String']>;
|
|
340
345
|
contractAddress?: Maybe<Scalars['String']>;
|
|
341
346
|
creatorsAddresses?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
342
347
|
creatorsProfiles?: Maybe<Array<Maybe<IProfile>>>;
|
|
@@ -472,10 +477,10 @@ export type IDynamicAssetData = {
|
|
|
472
477
|
medias?: Maybe<Array<Maybe<IMedia>>>;
|
|
473
478
|
};
|
|
474
479
|
export type IDynamicCollectionData = {
|
|
480
|
+
collectionId: Scalars['String'];
|
|
475
481
|
isLikedByUser?: Maybe<Scalars['Boolean']>;
|
|
476
482
|
likesNum?: Maybe<Scalars['Int']>;
|
|
477
|
-
collectionAssetsPage?: Maybe<
|
|
478
|
-
collectionId?: Maybe<Scalars['String']>;
|
|
483
|
+
collectionAssetsPage?: Maybe<IAssetsPage>;
|
|
479
484
|
};
|
|
480
485
|
export type IDynamicCollectionDataInput = {
|
|
481
486
|
collectionId: Scalars['String'];
|
|
@@ -1757,7 +1762,7 @@ export type IQueryFetchDynamicCollectionDataArgs = {
|
|
|
1757
1762
|
input: IDynamicCollectionDataInput;
|
|
1758
1763
|
};
|
|
1759
1764
|
export type IQueryFetchDynamicCollectionsDataArgs = {
|
|
1760
|
-
|
|
1765
|
+
inputs: Array<IDynamicCollectionDataInput>;
|
|
1761
1766
|
};
|
|
1762
1767
|
export type IQueryFetchExtensionOpportunitiesV2Args = {
|
|
1763
1768
|
domain: Scalars['String'];
|
|
@@ -2535,17 +2540,6 @@ export type ILikeCollectionMutationVariables = Exact<{
|
|
|
2535
2540
|
collectionId: Scalars['String'];
|
|
2536
2541
|
}>;
|
|
2537
2542
|
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
2543
|
export type IFetchCollectionsQueryVariables = Exact<{
|
|
2550
2544
|
pageSize: Scalars['Int'];
|
|
2551
2545
|
pageToken?: Maybe<Scalars['String']>;
|
|
@@ -2558,41 +2552,6 @@ export type IFetchCollectionsQuery = {
|
|
|
2558
2552
|
})>>>;
|
|
2559
2553
|
});
|
|
2560
2554
|
};
|
|
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
2555
|
export type IFetchMyExperienceV2QueryVariables = Exact<{
|
|
2597
2556
|
[key: string]: never;
|
|
2598
2557
|
}>;
|
|
@@ -3235,6 +3194,18 @@ export type IFetchAssetsCountQueryVariables = Exact<{
|
|
|
3235
3194
|
[key: string]: never;
|
|
3236
3195
|
}>;
|
|
3237
3196
|
export type IFetchAssetsCountQuery = Pick<IQuery, 'fetchAssetsCount'>;
|
|
3197
|
+
export type IFetchCollectionQueryVariables = Exact<{
|
|
3198
|
+
collectionId: Scalars['String'];
|
|
3199
|
+
}>;
|
|
3200
|
+
export type IFetchCollectionQuery = {
|
|
3201
|
+
fetchCollection: (Pick<ICollection, 'collectionId' | 'blockchain' | 'identifier' | 'contractAddress' | 'tokenId' | 'blockHeight' | 'blockTimestamp' | 'collectionTitle' | 'collectionUrl' | 'items' | 'owners' | 'likes' | 'liked' | 'creatorsAddresses' | 'verified' | 'originalUrls' | 'rank' | 'nsfw'> & {
|
|
3202
|
+
totalVolumes?: Maybe<Array<Maybe<Pick<ICurrencyAmountPair, 'currency' | 'amount'>>>>;
|
|
3203
|
+
collectionMarkets?: Maybe<Array<Maybe<Pick<ICollectionMarket, 'marketId' | 'marketName' | 'marketDomain' | 'marketUrl'>>>>;
|
|
3204
|
+
creatorsProfiles?: Maybe<Array<Maybe<Pick<IProfile, 'username' | 'userpic'>>>>;
|
|
3205
|
+
medias?: Maybe<Array<Maybe<Pick<IMedia, 'originalUrl' | 'url' | 'mimeType' | 'sizeRatio' | 'fileSize'>>>>;
|
|
3206
|
+
floorPrices?: Maybe<Array<Maybe<Pick<ICurrencyAmountPair, 'currency' | 'amount'>>>>;
|
|
3207
|
+
});
|
|
3208
|
+
};
|
|
3238
3209
|
export type IFindCollectionsQueryVariables = Exact<{
|
|
3239
3210
|
term: Scalars['String'];
|
|
3240
3211
|
input: ICollectionFilterInput;
|
|
@@ -3248,6 +3219,18 @@ export type IFindCollectionsQuery = {
|
|
|
3248
3219
|
nextPage?: Maybe<Pick<IPage, 'token' | 'num' | 'size' | 'elements'>>;
|
|
3249
3220
|
};
|
|
3250
3221
|
};
|
|
3222
|
+
export type IFetchCollectionsByIdsQueryVariables = Exact<{
|
|
3223
|
+
collectionIds: Array<Scalars['String']>;
|
|
3224
|
+
}>;
|
|
3225
|
+
export type IFetchCollectionsByIdsQuery = {
|
|
3226
|
+
fetchCollectionsByIds: Array<(Pick<ICollection, 'collectionId' | 'blockchain' | 'identifier' | 'contractAddress' | 'tokenId' | 'blockHeight' | 'blockTimestamp' | 'collectionTitle' | 'collectionUrl' | 'items' | 'owners' | 'likes' | 'liked' | 'creatorsAddresses' | 'verified' | 'originalUrls' | 'rank' | 'nsfw'> & {
|
|
3227
|
+
totalVolumes?: Maybe<Array<Maybe<Pick<ICurrencyAmountPair, 'currency' | 'amount'>>>>;
|
|
3228
|
+
collectionMarkets?: Maybe<Array<Maybe<Pick<ICollectionMarket, 'marketId' | 'marketName' | 'marketDomain' | 'marketUrl'>>>>;
|
|
3229
|
+
creatorsProfiles?: Maybe<Array<Maybe<Pick<IProfile, 'username' | 'userpic'>>>>;
|
|
3230
|
+
medias?: Maybe<Array<Maybe<Pick<IMedia, 'originalUrl' | 'url' | 'mimeType' | 'sizeRatio' | 'fileSize'>>>>;
|
|
3231
|
+
floorPrices?: Maybe<Array<Maybe<Pick<ICurrencyAmountPair, 'currency' | 'amount'>>>>;
|
|
3232
|
+
})>;
|
|
3233
|
+
};
|
|
3251
3234
|
export type IFetchCreationsByTypeQueryVariables = Exact<{
|
|
3252
3235
|
itemType: Scalars['String'];
|
|
3253
3236
|
page?: Maybe<IPageInput>;
|
|
@@ -3270,6 +3253,42 @@ export type IFetchDynamicAssetsLikesQueryVariables = Exact<{
|
|
|
3270
3253
|
export type IFetchDynamicAssetsLikesQuery = {
|
|
3271
3254
|
fetchDynamicAssetsData: Array<Maybe<Pick<IDynamicAssetData, 'isLikedByUser' | 'likesNum' | 'assetId'>>>;
|
|
3272
3255
|
};
|
|
3256
|
+
export type IFetchDynamicCollectionDataQueryVariables = Exact<{
|
|
3257
|
+
input: IDynamicCollectionDataInput;
|
|
3258
|
+
}>;
|
|
3259
|
+
export type IFetchDynamicCollectionDataQuery = {
|
|
3260
|
+
fetchDynamicCollectionData: (Pick<IDynamicCollectionData, 'isLikedByUser' | 'likesNum' | 'collectionId'> & {
|
|
3261
|
+
collectionAssetsPage?: Maybe<(Pick<IAssetsPage, 'nextPage'> & {
|
|
3262
|
+
assets: Array<Maybe<(Pick<IAsset, 'latestPriceCurrency' | 'latestPriceAmount' | 'collectionId' | 'collectionOriginalUrls' | 'collectionTitle' | 'assetId' | 'blockchain' | 'address' | 'tokenId' | 'name' | 'description' | 'rank' | 'originalUrls' | 'ownersAddresses' | 'creatorsAddresses' | 'views' | 'visible' | 'blurred'> & {
|
|
3263
|
+
totalVolumes?: Maybe<Array<Maybe<Pick<ICurrencyAmountPair, 'currency' | 'amount'>>>>;
|
|
3264
|
+
markets?: Maybe<Array<Maybe<Pick<IAssetMarket, 'marketId' | 'marketName' | 'marketDomain' | 'marketUrl'>>>>;
|
|
3265
|
+
collectionMedias?: Maybe<Array<Maybe<Pick<IMedia, 'originalUrl' | 'url' | 'previewUrl' | 'mimeType' | 'sizeRatio' | 'fileSize'>>>>;
|
|
3266
|
+
medias?: Maybe<Array<Maybe<Pick<IMedia, 'originalUrl' | 'url' | 'mimeType' | 'sizeRatio' | 'fileSize' | 'previewUrl'>>>>;
|
|
3267
|
+
ownersProfiles?: Maybe<Array<Maybe<Pick<IProfile, 'userId' | 'username' | 'about' | 'userpic' | 'followers' | 'followings' | 'visible'>>>>;
|
|
3268
|
+
creatorsProfiles?: Maybe<Array<Maybe<Pick<IProfile, 'userId' | 'username' | 'about' | 'userpic' | 'followers' | 'followings' | 'visible'>>>>;
|
|
3269
|
+
attributes?: Maybe<Array<Maybe<Pick<IAttribute, 'name' | 'value'>>>>;
|
|
3270
|
+
})>>;
|
|
3271
|
+
})>;
|
|
3272
|
+
});
|
|
3273
|
+
};
|
|
3274
|
+
export type IFetchDynamicCollectionsDataQueryVariables = Exact<{
|
|
3275
|
+
input: Array<IDynamicCollectionDataInput>;
|
|
3276
|
+
}>;
|
|
3277
|
+
export type IFetchDynamicCollectionsDataQuery = {
|
|
3278
|
+
fetchDynamicCollectionsData: Array<(Pick<IDynamicCollectionData, 'isLikedByUser' | 'likesNum' | 'collectionId'> & {
|
|
3279
|
+
collectionAssetsPage?: Maybe<(Pick<IAssetsPage, 'nextPage'> & {
|
|
3280
|
+
assets: Array<Maybe<(Pick<IAsset, 'latestPriceCurrency' | 'latestPriceAmount' | 'collectionId' | 'collectionOriginalUrls' | 'collectionTitle' | 'assetId' | 'blockchain' | 'address' | 'tokenId' | 'name' | 'description' | 'rank' | 'originalUrls' | 'ownersAddresses' | 'creatorsAddresses' | 'views' | 'visible' | 'blurred'> & {
|
|
3281
|
+
totalVolumes?: Maybe<Array<Maybe<Pick<ICurrencyAmountPair, 'currency' | 'amount'>>>>;
|
|
3282
|
+
markets?: Maybe<Array<Maybe<Pick<IAssetMarket, 'marketId' | 'marketName' | 'marketDomain' | 'marketUrl'>>>>;
|
|
3283
|
+
collectionMedias?: Maybe<Array<Maybe<Pick<IMedia, 'originalUrl' | 'url' | 'previewUrl' | 'mimeType' | 'sizeRatio' | 'fileSize'>>>>;
|
|
3284
|
+
medias?: Maybe<Array<Maybe<Pick<IMedia, 'originalUrl' | 'url' | 'mimeType' | 'sizeRatio' | 'fileSize' | 'previewUrl'>>>>;
|
|
3285
|
+
ownersProfiles?: Maybe<Array<Maybe<Pick<IProfile, 'userId' | 'username' | 'about' | 'userpic' | 'followers' | 'followings' | 'visible'>>>>;
|
|
3286
|
+
creatorsProfiles?: Maybe<Array<Maybe<Pick<IProfile, 'userId' | 'username' | 'about' | 'userpic' | 'followers' | 'followings' | 'visible'>>>>;
|
|
3287
|
+
attributes?: Maybe<Array<Maybe<Pick<IAttribute, 'name' | 'value'>>>>;
|
|
3288
|
+
})>>;
|
|
3289
|
+
})>;
|
|
3290
|
+
})>;
|
|
3291
|
+
};
|
|
3273
3292
|
export type IFindAllTopEntitiesByNameQueryVariables = Exact<{
|
|
3274
3293
|
name: Scalars['String'];
|
|
3275
3294
|
pageSize: Scalars['Int'];
|
|
@@ -3859,32 +3878,6 @@ export declare function useLikeCollectionMutation(baseOptions?: Apollo.MutationH
|
|
|
3859
3878
|
export type LikeCollectionMutationHookResult = ReturnType<typeof useLikeCollectionMutation>;
|
|
3860
3879
|
export type LikeCollectionMutationResult = Apollo.MutationResult<ILikeCollectionMutation>;
|
|
3861
3880
|
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
3881
|
export declare const FetchCollectionsDocument: Apollo.DocumentNode;
|
|
3889
3882
|
/**
|
|
3890
3883
|
* __useFetchCollectionsQuery__
|
|
@@ -3917,84 +3910,6 @@ export declare function useFetchCollectionsLazyQuery(baseOptions?: Apollo.LazyQu
|
|
|
3917
3910
|
export type FetchCollectionsQueryHookResult = ReturnType<typeof useFetchCollectionsQuery>;
|
|
3918
3911
|
export type FetchCollectionsLazyQueryHookResult = ReturnType<typeof useFetchCollectionsLazyQuery>;
|
|
3919
3912
|
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
3913
|
export declare const FetchMyExperienceV2Document: Apollo.DocumentNode;
|
|
3999
3914
|
/**
|
|
4000
3915
|
* __useFetchMyExperienceV2Query__
|
|
@@ -6390,6 +6305,32 @@ export declare function useFetchAssetsCountLazyQuery(baseOptions?: Apollo.LazyQu
|
|
|
6390
6305
|
export type FetchAssetsCountQueryHookResult = ReturnType<typeof useFetchAssetsCountQuery>;
|
|
6391
6306
|
export type FetchAssetsCountLazyQueryHookResult = ReturnType<typeof useFetchAssetsCountLazyQuery>;
|
|
6392
6307
|
export type FetchAssetsCountQueryResult = Apollo.QueryResult<IFetchAssetsCountQuery, IFetchAssetsCountQueryVariables>;
|
|
6308
|
+
export declare const FetchCollectionDocument: Apollo.DocumentNode;
|
|
6309
|
+
/**
|
|
6310
|
+
* __useFetchCollectionQuery__
|
|
6311
|
+
*
|
|
6312
|
+
* To run a query within a React component, call `useFetchCollectionQuery` and pass it any options that fit your needs.
|
|
6313
|
+
* When your component renders, `useFetchCollectionQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
6314
|
+
* you can use to render your UI.
|
|
6315
|
+
*
|
|
6316
|
+
* @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;
|
|
6317
|
+
*
|
|
6318
|
+
* @example
|
|
6319
|
+
* const { data, loading, error } = useFetchCollectionQuery({
|
|
6320
|
+
* variables: {
|
|
6321
|
+
* collectionId: // value for 'collectionId'
|
|
6322
|
+
* },
|
|
6323
|
+
* });
|
|
6324
|
+
*/
|
|
6325
|
+
export declare function useFetchCollectionQuery(baseOptions: Apollo.QueryHookOptions<IFetchCollectionQuery, IFetchCollectionQueryVariables>): Apollo.QueryResult<IFetchCollectionQuery, Exact<{
|
|
6326
|
+
collectionId: string;
|
|
6327
|
+
}>>;
|
|
6328
|
+
export declare function useFetchCollectionLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchCollectionQuery, IFetchCollectionQueryVariables>): Apollo.LazyQueryResultTuple<IFetchCollectionQuery, Exact<{
|
|
6329
|
+
collectionId: string;
|
|
6330
|
+
}>>;
|
|
6331
|
+
export type FetchCollectionQueryHookResult = ReturnType<typeof useFetchCollectionQuery>;
|
|
6332
|
+
export type FetchCollectionLazyQueryHookResult = ReturnType<typeof useFetchCollectionLazyQuery>;
|
|
6333
|
+
export type FetchCollectionQueryResult = Apollo.QueryResult<IFetchCollectionQuery, IFetchCollectionQueryVariables>;
|
|
6393
6334
|
export declare const FindCollectionsDocument: Apollo.DocumentNode;
|
|
6394
6335
|
/**
|
|
6395
6336
|
* __useFindCollectionsQuery__
|
|
@@ -6422,6 +6363,32 @@ export declare function useFindCollectionsLazyQuery(baseOptions?: Apollo.LazyQue
|
|
|
6422
6363
|
export type FindCollectionsQueryHookResult = ReturnType<typeof useFindCollectionsQuery>;
|
|
6423
6364
|
export type FindCollectionsLazyQueryHookResult = ReturnType<typeof useFindCollectionsLazyQuery>;
|
|
6424
6365
|
export type FindCollectionsQueryResult = Apollo.QueryResult<IFindCollectionsQuery, IFindCollectionsQueryVariables>;
|
|
6366
|
+
export declare const FetchCollectionsByIdsDocument: Apollo.DocumentNode;
|
|
6367
|
+
/**
|
|
6368
|
+
* __useFetchCollectionsByIdsQuery__
|
|
6369
|
+
*
|
|
6370
|
+
* To run a query within a React component, call `useFetchCollectionsByIdsQuery` and pass it any options that fit your needs.
|
|
6371
|
+
* When your component renders, `useFetchCollectionsByIdsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
6372
|
+
* you can use to render your UI.
|
|
6373
|
+
*
|
|
6374
|
+
* @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;
|
|
6375
|
+
*
|
|
6376
|
+
* @example
|
|
6377
|
+
* const { data, loading, error } = useFetchCollectionsByIdsQuery({
|
|
6378
|
+
* variables: {
|
|
6379
|
+
* collectionIds: // value for 'collectionIds'
|
|
6380
|
+
* },
|
|
6381
|
+
* });
|
|
6382
|
+
*/
|
|
6383
|
+
export declare function useFetchCollectionsByIdsQuery(baseOptions: Apollo.QueryHookOptions<IFetchCollectionsByIdsQuery, IFetchCollectionsByIdsQueryVariables>): Apollo.QueryResult<IFetchCollectionsByIdsQuery, Exact<{
|
|
6384
|
+
collectionIds: string[];
|
|
6385
|
+
}>>;
|
|
6386
|
+
export declare function useFetchCollectionsByIdsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchCollectionsByIdsQuery, IFetchCollectionsByIdsQueryVariables>): Apollo.LazyQueryResultTuple<IFetchCollectionsByIdsQuery, Exact<{
|
|
6387
|
+
collectionIds: string[];
|
|
6388
|
+
}>>;
|
|
6389
|
+
export type FetchCollectionsByIdsQueryHookResult = ReturnType<typeof useFetchCollectionsByIdsQuery>;
|
|
6390
|
+
export type FetchCollectionsByIdsLazyQueryHookResult = ReturnType<typeof useFetchCollectionsByIdsLazyQuery>;
|
|
6391
|
+
export type FetchCollectionsByIdsQueryResult = Apollo.QueryResult<IFetchCollectionsByIdsQuery, IFetchCollectionsByIdsQueryVariables>;
|
|
6425
6392
|
export declare const FetchCreationsByTypeDocument: Apollo.DocumentNode;
|
|
6426
6393
|
/**
|
|
6427
6394
|
* __useFetchCreationsByTypeQuery__
|
|
@@ -6503,6 +6470,58 @@ export declare function useFetchDynamicAssetsLikesLazyQuery(baseOptions?: Apollo
|
|
|
6503
6470
|
export type FetchDynamicAssetsLikesQueryHookResult = ReturnType<typeof useFetchDynamicAssetsLikesQuery>;
|
|
6504
6471
|
export type FetchDynamicAssetsLikesLazyQueryHookResult = ReturnType<typeof useFetchDynamicAssetsLikesLazyQuery>;
|
|
6505
6472
|
export type FetchDynamicAssetsLikesQueryResult = Apollo.QueryResult<IFetchDynamicAssetsLikesQuery, IFetchDynamicAssetsLikesQueryVariables>;
|
|
6473
|
+
export declare const FetchDynamicCollectionDataDocument: Apollo.DocumentNode;
|
|
6474
|
+
/**
|
|
6475
|
+
* __useFetchDynamicCollectionDataQuery__
|
|
6476
|
+
*
|
|
6477
|
+
* To run a query within a React component, call `useFetchDynamicCollectionDataQuery` and pass it any options that fit your needs.
|
|
6478
|
+
* When your component renders, `useFetchDynamicCollectionDataQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
6479
|
+
* you can use to render your UI.
|
|
6480
|
+
*
|
|
6481
|
+
* @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;
|
|
6482
|
+
*
|
|
6483
|
+
* @example
|
|
6484
|
+
* const { data, loading, error } = useFetchDynamicCollectionDataQuery({
|
|
6485
|
+
* variables: {
|
|
6486
|
+
* input: // value for 'input'
|
|
6487
|
+
* },
|
|
6488
|
+
* });
|
|
6489
|
+
*/
|
|
6490
|
+
export declare function useFetchDynamicCollectionDataQuery(baseOptions: Apollo.QueryHookOptions<IFetchDynamicCollectionDataQuery, IFetchDynamicCollectionDataQueryVariables>): Apollo.QueryResult<IFetchDynamicCollectionDataQuery, Exact<{
|
|
6491
|
+
input: IDynamicCollectionDataInput;
|
|
6492
|
+
}>>;
|
|
6493
|
+
export declare function useFetchDynamicCollectionDataLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchDynamicCollectionDataQuery, IFetchDynamicCollectionDataQueryVariables>): Apollo.LazyQueryResultTuple<IFetchDynamicCollectionDataQuery, Exact<{
|
|
6494
|
+
input: IDynamicCollectionDataInput;
|
|
6495
|
+
}>>;
|
|
6496
|
+
export type FetchDynamicCollectionDataQueryHookResult = ReturnType<typeof useFetchDynamicCollectionDataQuery>;
|
|
6497
|
+
export type FetchDynamicCollectionDataLazyQueryHookResult = ReturnType<typeof useFetchDynamicCollectionDataLazyQuery>;
|
|
6498
|
+
export type FetchDynamicCollectionDataQueryResult = Apollo.QueryResult<IFetchDynamicCollectionDataQuery, IFetchDynamicCollectionDataQueryVariables>;
|
|
6499
|
+
export declare const FetchDynamicCollectionsDataDocument: Apollo.DocumentNode;
|
|
6500
|
+
/**
|
|
6501
|
+
* __useFetchDynamicCollectionsDataQuery__
|
|
6502
|
+
*
|
|
6503
|
+
* To run a query within a React component, call `useFetchDynamicCollectionsDataQuery` and pass it any options that fit your needs.
|
|
6504
|
+
* When your component renders, `useFetchDynamicCollectionsDataQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
6505
|
+
* you can use to render your UI.
|
|
6506
|
+
*
|
|
6507
|
+
* @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;
|
|
6508
|
+
*
|
|
6509
|
+
* @example
|
|
6510
|
+
* const { data, loading, error } = useFetchDynamicCollectionsDataQuery({
|
|
6511
|
+
* variables: {
|
|
6512
|
+
* input: // value for 'input'
|
|
6513
|
+
* },
|
|
6514
|
+
* });
|
|
6515
|
+
*/
|
|
6516
|
+
export declare function useFetchDynamicCollectionsDataQuery(baseOptions: Apollo.QueryHookOptions<IFetchDynamicCollectionsDataQuery, IFetchDynamicCollectionsDataQueryVariables>): Apollo.QueryResult<IFetchDynamicCollectionsDataQuery, Exact<{
|
|
6517
|
+
input: IDynamicCollectionDataInput[];
|
|
6518
|
+
}>>;
|
|
6519
|
+
export declare function useFetchDynamicCollectionsDataLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchDynamicCollectionsDataQuery, IFetchDynamicCollectionsDataQueryVariables>): Apollo.LazyQueryResultTuple<IFetchDynamicCollectionsDataQuery, Exact<{
|
|
6520
|
+
input: IDynamicCollectionDataInput[];
|
|
6521
|
+
}>>;
|
|
6522
|
+
export type FetchDynamicCollectionsDataQueryHookResult = ReturnType<typeof useFetchDynamicCollectionsDataQuery>;
|
|
6523
|
+
export type FetchDynamicCollectionsDataLazyQueryHookResult = ReturnType<typeof useFetchDynamicCollectionsDataLazyQuery>;
|
|
6524
|
+
export type FetchDynamicCollectionsDataQueryResult = Apollo.QueryResult<IFetchDynamicCollectionsDataQuery, IFetchDynamicCollectionsDataQueryVariables>;
|
|
6506
6525
|
export declare const FindAllTopEntitiesByNameDocument: Apollo.DocumentNode;
|
|
6507
6526
|
/**
|
|
6508
6527
|
* __useFindAllTopEntitiesByNameQuery__
|