@ludo.ninja/api 2.8.4 → 2.8.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.
|
@@ -46,6 +46,8 @@ export type IAdminOpportunity = {
|
|
|
46
46
|
category?: Maybe<Scalars['String']>;
|
|
47
47
|
ludoUrl?: Maybe<Scalars['String']>;
|
|
48
48
|
projectUrl?: Maybe<Scalars['String']>;
|
|
49
|
+
media?: Maybe<Scalars['String']>;
|
|
50
|
+
description?: Maybe<Scalars['String']>;
|
|
49
51
|
pushNotificationsEnabled?: Maybe<Scalars['Boolean']>;
|
|
50
52
|
status?: Maybe<Scalars['String']>;
|
|
51
53
|
activeFrom?: Maybe<Scalars['Long']>;
|
|
@@ -116,6 +118,7 @@ export type IAsset = {
|
|
|
116
118
|
category?: Maybe<Scalars['String']>;
|
|
117
119
|
categoryLabel?: Maybe<Scalars['String']>;
|
|
118
120
|
chainId?: Maybe<Scalars['String']>;
|
|
121
|
+
collection?: Maybe<Scalars['String']>;
|
|
119
122
|
collectionId?: Maybe<Scalars['String']>;
|
|
120
123
|
collectionMedias?: Maybe<Array<Maybe<IMedia>>>;
|
|
121
124
|
collectionOriginalUrls?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
@@ -126,6 +129,7 @@ export type IAsset = {
|
|
|
126
129
|
creatorsProfiles?: Maybe<Array<Maybe<IProfile>>>;
|
|
127
130
|
description?: Maybe<Scalars['String']>;
|
|
128
131
|
galleries?: Maybe<IGalleries>;
|
|
132
|
+
id?: Maybe<Scalars['String']>;
|
|
129
133
|
lastSoldAt?: Maybe<Scalars['String']>;
|
|
130
134
|
latestPriceAmount?: Maybe<Scalars['Float']>;
|
|
131
135
|
latestPriceBlockHeight?: Maybe<Scalars['Long']>;
|
|
@@ -153,6 +157,7 @@ export type IAsset = {
|
|
|
153
157
|
tokenId?: Maybe<Scalars['String']>;
|
|
154
158
|
totalVolumes?: Maybe<Array<Maybe<ICurrencyAmountPair>>>;
|
|
155
159
|
traits?: Maybe<Array<Maybe<ITrait>>>;
|
|
160
|
+
trueRank?: Maybe<Scalars['Float']>;
|
|
156
161
|
type?: Maybe<Scalars['String']>;
|
|
157
162
|
url?: Maybe<Scalars['String']>;
|
|
158
163
|
views?: Maybe<Scalars['Int']>;
|
|
@@ -167,9 +172,9 @@ export type IAssetGallery = {
|
|
|
167
172
|
galleryName: Scalars['String'];
|
|
168
173
|
};
|
|
169
174
|
export type IAssetMarket = {
|
|
175
|
+
marketDomain?: Maybe<Scalars['String']>;
|
|
170
176
|
marketId?: Maybe<Scalars['String']>;
|
|
171
177
|
marketName?: Maybe<Scalars['String']>;
|
|
172
|
-
marketDomain?: Maybe<Scalars['String']>;
|
|
173
178
|
marketUrl?: Maybe<Scalars['String']>;
|
|
174
179
|
};
|
|
175
180
|
export type IAssetModeration = {
|
|
@@ -221,6 +226,10 @@ export type IAssetPage = {
|
|
|
221
226
|
assets: Array<Maybe<IAsset>>;
|
|
222
227
|
nextPageToken?: Maybe<Scalars['String']>;
|
|
223
228
|
};
|
|
229
|
+
export type IAssetRank = {
|
|
230
|
+
assetId: Scalars['String'];
|
|
231
|
+
rank?: Maybe<Scalars['Float']>;
|
|
232
|
+
};
|
|
224
233
|
export type IAssetReport = {
|
|
225
234
|
reportId: Scalars['ID'];
|
|
226
235
|
type?: Maybe<Scalars['String']>;
|
|
@@ -444,13 +453,14 @@ export type ICreationsPage = {
|
|
|
444
453
|
nextPage?: Maybe<IPage>;
|
|
445
454
|
};
|
|
446
455
|
export type ICurrencyAmountPair = {
|
|
447
|
-
currency?: Maybe<Scalars['String']>;
|
|
448
456
|
amount?: Maybe<Scalars['Float']>;
|
|
457
|
+
currency?: Maybe<Scalars['String']>;
|
|
449
458
|
};
|
|
450
459
|
export type IDynamicAssetData = {
|
|
460
|
+
assetId: Scalars['String'];
|
|
451
461
|
isLikedByUser?: Maybe<Scalars['Boolean']>;
|
|
452
462
|
likesNum?: Maybe<Scalars['Int']>;
|
|
453
|
-
|
|
463
|
+
medias?: Maybe<Array<Maybe<IMedia>>>;
|
|
454
464
|
};
|
|
455
465
|
export type IDynamicCollectionData = {
|
|
456
466
|
isLikedByUser?: Maybe<Scalars['Boolean']>;
|
|
@@ -755,7 +765,9 @@ export type IMarketsPage = {
|
|
|
755
765
|
export type IMedia = {
|
|
756
766
|
assetId?: Maybe<Scalars['String']>;
|
|
757
767
|
blockchain?: Maybe<Scalars['String']>;
|
|
768
|
+
cover?: Maybe<Scalars['Boolean']>;
|
|
758
769
|
fileSize?: Maybe<Scalars['Long']>;
|
|
770
|
+
hidden?: Maybe<Scalars['Boolean']>;
|
|
759
771
|
mimeType?: Maybe<Scalars['String']>;
|
|
760
772
|
nsfw?: Maybe<Scalars['Int']>;
|
|
761
773
|
originalMime?: Maybe<Scalars['String']>;
|
|
@@ -1447,6 +1459,8 @@ export type IQuery = {
|
|
|
1447
1459
|
fetchAssetModerations: IAssetModerationsPage;
|
|
1448
1460
|
/** This query is not connected to the front */
|
|
1449
1461
|
fetchAssetNamesSuggestions: Array<Maybe<Scalars['String']>>;
|
|
1462
|
+
fetchAssetRank: IAssetRank;
|
|
1463
|
+
fetchAssetRanks: Array<Maybe<IAssetRank>>;
|
|
1450
1464
|
fetchAssetReports: IAssetReportsPage;
|
|
1451
1465
|
fetchAssets: Array<Maybe<IAsset>>;
|
|
1452
1466
|
/** This query must be used on the first page */
|
|
@@ -1642,6 +1656,12 @@ export type IQueryFetchAssetModerationsArgs = {
|
|
|
1642
1656
|
export type IQueryFetchAssetNamesSuggestionsArgs = {
|
|
1643
1657
|
term: Scalars['String'];
|
|
1644
1658
|
};
|
|
1659
|
+
export type IQueryFetchAssetRankArgs = {
|
|
1660
|
+
assetId: Scalars['String'];
|
|
1661
|
+
};
|
|
1662
|
+
export type IQueryFetchAssetRanksArgs = {
|
|
1663
|
+
assetIds: Array<Scalars['String']>;
|
|
1664
|
+
};
|
|
1645
1665
|
export type IQueryFetchAssetReportsArgs = {
|
|
1646
1666
|
input: IAssetReportFilter;
|
|
1647
1667
|
pageSize: Scalars['Int'];
|
|
@@ -2366,7 +2386,7 @@ export type IFetchAdminOpportunitiesPageQueryVariables = Exact<{
|
|
|
2366
2386
|
}>;
|
|
2367
2387
|
export type IFetchAdminOpportunitiesPageQuery = {
|
|
2368
2388
|
fetchAdminOpportunitiesPage: {
|
|
2369
|
-
opportunities: Array<Pick<IAdminOpportunity, 'opportunityId' | 'name' | 'brandName' | 'industry' | 'category' | 'ludoUrl' | 'projectUrl' | 'pushNotificationsEnabled' | 'status' | 'activeFrom' | 'activeUntil' | 'minXpLevel' | 'maxXpLevel' | 'minLudoRank' | 'maxLudoRank' | 'minWalletValue' | 'maxWalletValue' | 'clicks' | 'views'>>;
|
|
2389
|
+
opportunities: Array<Pick<IAdminOpportunity, 'opportunityId' | 'name' | 'brandName' | 'industry' | 'category' | 'ludoUrl' | 'projectUrl' | 'pushNotificationsEnabled' | 'status' | 'media' | 'description' | 'activeFrom' | 'activeUntil' | 'minXpLevel' | 'maxXpLevel' | 'minLudoRank' | 'maxLudoRank' | 'minWalletValue' | 'maxWalletValue' | 'clicks' | 'views'>>;
|
|
2370
2390
|
nextPage?: Maybe<Pick<IAdminPage, 'elements' | 'lastNum' | 'num' | 'size' | 'token'>>;
|
|
2371
2391
|
};
|
|
2372
2392
|
};
|
|
@@ -2432,49 +2452,6 @@ export type IFetchAssetQuery = {
|
|
|
2432
2452
|
attributes?: Maybe<Array<Maybe<Pick<IAttribute, 'name' | 'value'>>>>;
|
|
2433
2453
|
});
|
|
2434
2454
|
};
|
|
2435
|
-
export type IFetchAssetByBlockchainQueryVariables = Exact<{
|
|
2436
|
-
blockchain: Scalars['String'];
|
|
2437
|
-
address?: Maybe<Scalars['String']>;
|
|
2438
|
-
tokenId?: Maybe<Scalars['String']>;
|
|
2439
|
-
elrondId?: Maybe<Scalars['String']>;
|
|
2440
|
-
}>;
|
|
2441
|
-
export type IFetchAssetByBlockchainQuery = {
|
|
2442
|
-
fetchAssetByBlockchain: (Pick<IAsset, 'latestPriceCurrency' | 'latestPriceAmount' | 'collectionId' | 'collectionOriginalUrls' | 'collectionTitle' | 'assetId' | 'blockchain' | 'blockchainLabel' | 'address' | 'tokenId' | 'name' | 'description' | 'rank' | 'originalUrls' | 'ownersAddresses' | 'creatorsAddresses' | 'views' | 'visible' | 'blurred' | 'category' | 'categoryLabel'> & {
|
|
2443
|
-
totalVolumes?: Maybe<Array<Maybe<Pick<ICurrencyAmountPair, 'currency' | 'amount'>>>>;
|
|
2444
|
-
markets?: Maybe<Array<Maybe<Pick<IAssetMarket, 'marketId' | 'marketName' | 'marketDomain' | 'marketUrl'>>>>;
|
|
2445
|
-
collectionMedias?: Maybe<Array<Maybe<Pick<IMedia, 'originalUrl' | 'url' | 'previewUrl' | 'mimeType' | 'sizeRatio' | 'fileSize'>>>>;
|
|
2446
|
-
medias?: Maybe<Array<Maybe<Pick<IMedia, 'originalUrl' | 'url' | 'mimeType' | 'originalMime' | 'previewUrl' | 'sizeRatio' | 'fileSize'>>>>;
|
|
2447
|
-
ownersProfiles?: Maybe<Array<Maybe<Pick<IProfile, 'userId' | 'username' | 'about' | 'userpic' | 'followers' | 'followings' | 'visible'>>>>;
|
|
2448
|
-
creatorsProfiles?: Maybe<Array<Maybe<Pick<IProfile, 'userId' | 'username' | 'about' | 'userpic' | 'followers' | 'followings' | 'visible'>>>>;
|
|
2449
|
-
attributes?: Maybe<Array<Maybe<Pick<IAttribute, 'name' | 'value'>>>>;
|
|
2450
|
-
});
|
|
2451
|
-
};
|
|
2452
|
-
export type IFetchAssetsQueryVariables = Exact<{
|
|
2453
|
-
assetIds: Array<Scalars['String']>;
|
|
2454
|
-
}>;
|
|
2455
|
-
export type IFetchAssetsQuery = {
|
|
2456
|
-
fetchAssets: Array<Maybe<(Pick<IAsset, 'latestPriceCurrency' | 'latestPriceAmount' | 'collectionId' | 'collectionOriginalUrls' | 'collectionTitle' | 'assetId' | 'blockchain' | 'address' | 'tokenId' | 'name' | 'description' | 'rank' | 'originalUrls' | 'ownersAddresses' | 'creatorsAddresses' | 'views' | 'visible' | 'blurred'> & {
|
|
2457
|
-
totalVolumes?: Maybe<Array<Maybe<Pick<ICurrencyAmountPair, 'currency' | 'amount'>>>>;
|
|
2458
|
-
markets?: Maybe<Array<Maybe<Pick<IAssetMarket, 'marketId' | 'marketName' | 'marketDomain' | 'marketUrl'>>>>;
|
|
2459
|
-
collectionMedias?: Maybe<Array<Maybe<Pick<IMedia, 'originalUrl' | 'url' | 'previewUrl' | 'mimeType' | 'sizeRatio' | 'fileSize'>>>>;
|
|
2460
|
-
medias?: Maybe<Array<Maybe<Pick<IMedia, 'originalUrl' | 'url' | 'mimeType' | 'sizeRatio' | 'fileSize' | 'previewUrl'>>>>;
|
|
2461
|
-
ownersProfiles?: Maybe<Array<Maybe<Pick<IProfile, 'userId' | 'username' | 'about' | 'userpic' | 'followers' | 'followings' | 'visible'>>>>;
|
|
2462
|
-
creatorsProfiles?: Maybe<Array<Maybe<Pick<IProfile, 'userId' | 'username' | 'about' | 'userpic' | 'followers' | 'followings' | 'visible'>>>>;
|
|
2463
|
-
attributes?: Maybe<Array<Maybe<Pick<IAttribute, 'name' | 'value'>>>>;
|
|
2464
|
-
})>>;
|
|
2465
|
-
};
|
|
2466
|
-
export type IFetchDynamicAssetLikesQueryVariables = Exact<{
|
|
2467
|
-
assetId: Scalars['String'];
|
|
2468
|
-
}>;
|
|
2469
|
-
export type IFetchDynamicAssetLikesQuery = {
|
|
2470
|
-
fetchDynamicAssetData: Pick<IDynamicAssetData, 'isLikedByUser' | 'likesNum'>;
|
|
2471
|
-
};
|
|
2472
|
-
export type IFetchDynamicAssetsLikesQueryVariables = Exact<{
|
|
2473
|
-
assetIds: Array<Scalars['String']>;
|
|
2474
|
-
}>;
|
|
2475
|
-
export type IFetchDynamicAssetsLikesQuery = {
|
|
2476
|
-
fetchDynamicAssetsData: Array<Maybe<Pick<IDynamicAssetData, 'isLikedByUser' | 'likesNum' | 'assetId'>>>;
|
|
2477
|
-
};
|
|
2478
2455
|
export type IFetchLikedQueryVariables = Exact<{
|
|
2479
2456
|
assetId: Scalars['String'];
|
|
2480
2457
|
}>;
|
|
@@ -3146,6 +3123,37 @@ export type IFetchAllCreationsQuery = {
|
|
|
3146
3123
|
creations: Array<Maybe<Pick<ICreation, 'id' | 'itemType' | 'itemId' | 'blockchain' | 'rank' | 'address' | 'liked' | 'likes' | 'tokenId' | 'name' | 'creatorsAddresses' | 'originalUrls' | 'media' | 'mediaPreview' | 'mimeType'>>>;
|
|
3147
3124
|
};
|
|
3148
3125
|
};
|
|
3126
|
+
export type IFetchAssetByBlockchainQueryVariables = Exact<{
|
|
3127
|
+
blockchain: Scalars['String'];
|
|
3128
|
+
address?: Maybe<Scalars['String']>;
|
|
3129
|
+
tokenId?: Maybe<Scalars['String']>;
|
|
3130
|
+
elrondId?: Maybe<Scalars['String']>;
|
|
3131
|
+
}>;
|
|
3132
|
+
export type IFetchAssetByBlockchainQuery = {
|
|
3133
|
+
fetchAssetByBlockchain: (Pick<IAsset, 'assetId' | 'blockchain' | 'blockchainLabel' | 'address' | 'tokenId' | 'collection' | 'id' | 'chainId' | 'blockHeight' | 'blockTimestamp' | 'name' | 'description' | 'originalUrls' | 'ownersAddresses' | 'creatorsAddresses' | 'likes' | 'liked' | 'views' | 'visible' | 'createdAt' | 'blurred' | 'rank' | 'trueRank' | 'rankRaw' | 'rankMax' | 'rankUpdatedAt' | 'collectionId' | 'collectionTitle' | 'collectionOriginalUrls' | 'latestPriceBlockHeight' | 'latestPriceCurrency' | 'latestPriceAmount' | 'category' | 'categoryLabel'> & {
|
|
3134
|
+
medias?: Maybe<Array<Maybe<Pick<IMedia, 'originalUrl' | 'url' | 'previewUrl' | 'mimeType' | 'sizeRatio' | 'fileSize' | 'nsfw' | 'originalMime' | 'hidden' | 'cover'>>>>;
|
|
3135
|
+
ownersProfiles?: Maybe<Array<Maybe<Pick<IProfile, 'userId' | 'username' | 'about' | 'userpic' | 'followers' | 'followings' | 'createdAt' | 'deletedAt' | 'visible' | 'views' | 'deleted'>>>>;
|
|
3136
|
+
creatorsProfiles?: Maybe<Array<Maybe<Pick<IProfile, 'userId' | 'username' | 'about' | 'userpic' | 'followers' | 'followings' | 'createdAt' | 'deletedAt' | 'visible' | 'views' | 'deleted'>>>>;
|
|
3137
|
+
attributes?: Maybe<Array<Maybe<Pick<IAttribute, 'name' | 'value'>>>>;
|
|
3138
|
+
collectionMedias?: Maybe<Array<Maybe<Pick<IMedia, 'originalUrl' | 'url' | 'previewUrl' | 'mimeType' | 'sizeRatio' | 'fileSize' | 'nsfw' | 'originalMime' | 'hidden' | 'cover'>>>>;
|
|
3139
|
+
markets?: Maybe<Array<Maybe<Pick<IAssetMarket, 'marketId' | 'marketName' | 'marketDomain' | 'marketUrl'>>>>;
|
|
3140
|
+
totalVolumes?: Maybe<Array<Maybe<Pick<ICurrencyAmountPair, 'currency' | 'amount'>>>>;
|
|
3141
|
+
});
|
|
3142
|
+
};
|
|
3143
|
+
export type IFetchAssetsQueryVariables = Exact<{
|
|
3144
|
+
assetIds: Array<Scalars['String']>;
|
|
3145
|
+
}>;
|
|
3146
|
+
export type IFetchAssetsQuery = {
|
|
3147
|
+
fetchAssets: Array<Maybe<(Pick<IAsset, 'latestPriceCurrency' | 'latestPriceAmount' | 'collectionId' | 'collectionOriginalUrls' | 'collectionTitle' | 'assetId' | 'blockchain' | 'address' | 'tokenId' | 'name' | 'description' | 'rank' | 'originalUrls' | 'ownersAddresses' | 'creatorsAddresses' | 'views' | 'visible' | 'blurred'> & {
|
|
3148
|
+
totalVolumes?: Maybe<Array<Maybe<Pick<ICurrencyAmountPair, 'currency' | 'amount'>>>>;
|
|
3149
|
+
markets?: Maybe<Array<Maybe<Pick<IAssetMarket, 'marketId' | 'marketName' | 'marketDomain' | 'marketUrl'>>>>;
|
|
3150
|
+
collectionMedias?: Maybe<Array<Maybe<Pick<IMedia, 'originalUrl' | 'url' | 'previewUrl' | 'mimeType' | 'sizeRatio' | 'fileSize'>>>>;
|
|
3151
|
+
medias?: Maybe<Array<Maybe<Pick<IMedia, 'originalUrl' | 'url' | 'mimeType' | 'sizeRatio' | 'fileSize' | 'previewUrl'>>>>;
|
|
3152
|
+
ownersProfiles?: Maybe<Array<Maybe<Pick<IProfile, 'userId' | 'username' | 'about' | 'userpic' | 'followers' | 'followings' | 'visible'>>>>;
|
|
3153
|
+
creatorsProfiles?: Maybe<Array<Maybe<Pick<IProfile, 'userId' | 'username' | 'about' | 'userpic' | 'followers' | 'followings' | 'visible'>>>>;
|
|
3154
|
+
attributes?: Maybe<Array<Maybe<Pick<IAttribute, 'name' | 'value'>>>>;
|
|
3155
|
+
})>>;
|
|
3156
|
+
};
|
|
3149
3157
|
export type IFetchAssetsCountQueryVariables = Exact<{
|
|
3150
3158
|
[key: string]: never;
|
|
3151
3159
|
}>;
|
|
@@ -3173,6 +3181,18 @@ export type IFetchCreationsByTypeQuery = {
|
|
|
3173
3181
|
creations: Array<Maybe<Pick<ICreation, 'id' | 'itemType' | 'itemId' | 'blockchain' | 'rank' | 'liked' | 'likes' | 'address' | 'tokenId' | 'name' | 'creatorsAddresses' | 'originalUrls' | 'media' | 'mediaPreview' | 'mimeType'>>>;
|
|
3174
3182
|
};
|
|
3175
3183
|
};
|
|
3184
|
+
export type IFetchDynamicAssetLikesQueryVariables = Exact<{
|
|
3185
|
+
assetId: Scalars['String'];
|
|
3186
|
+
}>;
|
|
3187
|
+
export type IFetchDynamicAssetLikesQuery = {
|
|
3188
|
+
fetchDynamicAssetData: Pick<IDynamicAssetData, 'isLikedByUser' | 'likesNum'>;
|
|
3189
|
+
};
|
|
3190
|
+
export type IFetchDynamicAssetsLikesQueryVariables = Exact<{
|
|
3191
|
+
assetIds: Array<Scalars['String']>;
|
|
3192
|
+
}>;
|
|
3193
|
+
export type IFetchDynamicAssetsLikesQuery = {
|
|
3194
|
+
fetchDynamicAssetsData: Array<Maybe<Pick<IDynamicAssetData, 'isLikedByUser' | 'likesNum' | 'assetId'>>>;
|
|
3195
|
+
};
|
|
3176
3196
|
export type IFindAllTopEntitiesByNameQueryVariables = Exact<{
|
|
3177
3197
|
name: Scalars['String'];
|
|
3178
3198
|
pageSize: Scalars['Int'];
|
|
@@ -3605,119 +3625,6 @@ export declare function useFetchAssetLazyQuery(baseOptions?: Apollo.LazyQueryHoo
|
|
|
3605
3625
|
export type FetchAssetQueryHookResult = ReturnType<typeof useFetchAssetQuery>;
|
|
3606
3626
|
export type FetchAssetLazyQueryHookResult = ReturnType<typeof useFetchAssetLazyQuery>;
|
|
3607
3627
|
export type FetchAssetQueryResult = Apollo.QueryResult<IFetchAssetQuery, IFetchAssetQueryVariables>;
|
|
3608
|
-
export declare const FetchAssetByBlockchainDocument: Apollo.DocumentNode;
|
|
3609
|
-
/**
|
|
3610
|
-
* __useFetchAssetByBlockchainQuery__
|
|
3611
|
-
*
|
|
3612
|
-
* To run a query within a React component, call `useFetchAssetByBlockchainQuery` and pass it any options that fit your needs.
|
|
3613
|
-
* When your component renders, `useFetchAssetByBlockchainQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3614
|
-
* you can use to render your UI.
|
|
3615
|
-
*
|
|
3616
|
-
* @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;
|
|
3617
|
-
*
|
|
3618
|
-
* @example
|
|
3619
|
-
* const { data, loading, error } = useFetchAssetByBlockchainQuery({
|
|
3620
|
-
* variables: {
|
|
3621
|
-
* blockchain: // value for 'blockchain'
|
|
3622
|
-
* address: // value for 'address'
|
|
3623
|
-
* tokenId: // value for 'tokenId'
|
|
3624
|
-
* elrondId: // value for 'elrondId'
|
|
3625
|
-
* },
|
|
3626
|
-
* });
|
|
3627
|
-
*/
|
|
3628
|
-
export declare function useFetchAssetByBlockchainQuery(baseOptions: Apollo.QueryHookOptions<IFetchAssetByBlockchainQuery, IFetchAssetByBlockchainQueryVariables>): Apollo.QueryResult<IFetchAssetByBlockchainQuery, Exact<{
|
|
3629
|
-
blockchain: string;
|
|
3630
|
-
address?: Maybe<string> | undefined;
|
|
3631
|
-
tokenId?: Maybe<string> | undefined;
|
|
3632
|
-
elrondId?: Maybe<string> | undefined;
|
|
3633
|
-
}>>;
|
|
3634
|
-
export declare function useFetchAssetByBlockchainLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchAssetByBlockchainQuery, IFetchAssetByBlockchainQueryVariables>): Apollo.LazyQueryResultTuple<IFetchAssetByBlockchainQuery, Exact<{
|
|
3635
|
-
blockchain: string;
|
|
3636
|
-
address?: Maybe<string> | undefined;
|
|
3637
|
-
tokenId?: Maybe<string> | undefined;
|
|
3638
|
-
elrondId?: Maybe<string> | undefined;
|
|
3639
|
-
}>>;
|
|
3640
|
-
export type FetchAssetByBlockchainQueryHookResult = ReturnType<typeof useFetchAssetByBlockchainQuery>;
|
|
3641
|
-
export type FetchAssetByBlockchainLazyQueryHookResult = ReturnType<typeof useFetchAssetByBlockchainLazyQuery>;
|
|
3642
|
-
export type FetchAssetByBlockchainQueryResult = Apollo.QueryResult<IFetchAssetByBlockchainQuery, IFetchAssetByBlockchainQueryVariables>;
|
|
3643
|
-
export declare const FetchAssetsDocument: Apollo.DocumentNode;
|
|
3644
|
-
/**
|
|
3645
|
-
* __useFetchAssetsQuery__
|
|
3646
|
-
*
|
|
3647
|
-
* To run a query within a React component, call `useFetchAssetsQuery` and pass it any options that fit your needs.
|
|
3648
|
-
* When your component renders, `useFetchAssetsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3649
|
-
* you can use to render your UI.
|
|
3650
|
-
*
|
|
3651
|
-
* @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;
|
|
3652
|
-
*
|
|
3653
|
-
* @example
|
|
3654
|
-
* const { data, loading, error } = useFetchAssetsQuery({
|
|
3655
|
-
* variables: {
|
|
3656
|
-
* assetIds: // value for 'assetIds'
|
|
3657
|
-
* },
|
|
3658
|
-
* });
|
|
3659
|
-
*/
|
|
3660
|
-
export declare function useFetchAssetsQuery(baseOptions: Apollo.QueryHookOptions<IFetchAssetsQuery, IFetchAssetsQueryVariables>): Apollo.QueryResult<IFetchAssetsQuery, Exact<{
|
|
3661
|
-
assetIds: string[];
|
|
3662
|
-
}>>;
|
|
3663
|
-
export declare function useFetchAssetsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchAssetsQuery, IFetchAssetsQueryVariables>): Apollo.LazyQueryResultTuple<IFetchAssetsQuery, Exact<{
|
|
3664
|
-
assetIds: string[];
|
|
3665
|
-
}>>;
|
|
3666
|
-
export type FetchAssetsQueryHookResult = ReturnType<typeof useFetchAssetsQuery>;
|
|
3667
|
-
export type FetchAssetsLazyQueryHookResult = ReturnType<typeof useFetchAssetsLazyQuery>;
|
|
3668
|
-
export type FetchAssetsQueryResult = Apollo.QueryResult<IFetchAssetsQuery, IFetchAssetsQueryVariables>;
|
|
3669
|
-
export declare const FetchDynamicAssetLikesDocument: Apollo.DocumentNode;
|
|
3670
|
-
/**
|
|
3671
|
-
* __useFetchDynamicAssetLikesQuery__
|
|
3672
|
-
*
|
|
3673
|
-
* To run a query within a React component, call `useFetchDynamicAssetLikesQuery` and pass it any options that fit your needs.
|
|
3674
|
-
* When your component renders, `useFetchDynamicAssetLikesQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3675
|
-
* you can use to render your UI.
|
|
3676
|
-
*
|
|
3677
|
-
* @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;
|
|
3678
|
-
*
|
|
3679
|
-
* @example
|
|
3680
|
-
* const { data, loading, error } = useFetchDynamicAssetLikesQuery({
|
|
3681
|
-
* variables: {
|
|
3682
|
-
* assetId: // value for 'assetId'
|
|
3683
|
-
* },
|
|
3684
|
-
* });
|
|
3685
|
-
*/
|
|
3686
|
-
export declare function useFetchDynamicAssetLikesQuery(baseOptions: Apollo.QueryHookOptions<IFetchDynamicAssetLikesQuery, IFetchDynamicAssetLikesQueryVariables>): Apollo.QueryResult<IFetchDynamicAssetLikesQuery, Exact<{
|
|
3687
|
-
assetId: string;
|
|
3688
|
-
}>>;
|
|
3689
|
-
export declare function useFetchDynamicAssetLikesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchDynamicAssetLikesQuery, IFetchDynamicAssetLikesQueryVariables>): Apollo.LazyQueryResultTuple<IFetchDynamicAssetLikesQuery, Exact<{
|
|
3690
|
-
assetId: string;
|
|
3691
|
-
}>>;
|
|
3692
|
-
export type FetchDynamicAssetLikesQueryHookResult = ReturnType<typeof useFetchDynamicAssetLikesQuery>;
|
|
3693
|
-
export type FetchDynamicAssetLikesLazyQueryHookResult = ReturnType<typeof useFetchDynamicAssetLikesLazyQuery>;
|
|
3694
|
-
export type FetchDynamicAssetLikesQueryResult = Apollo.QueryResult<IFetchDynamicAssetLikesQuery, IFetchDynamicAssetLikesQueryVariables>;
|
|
3695
|
-
export declare const FetchDynamicAssetsLikesDocument: Apollo.DocumentNode;
|
|
3696
|
-
/**
|
|
3697
|
-
* __useFetchDynamicAssetsLikesQuery__
|
|
3698
|
-
*
|
|
3699
|
-
* To run a query within a React component, call `useFetchDynamicAssetsLikesQuery` and pass it any options that fit your needs.
|
|
3700
|
-
* When your component renders, `useFetchDynamicAssetsLikesQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3701
|
-
* you can use to render your UI.
|
|
3702
|
-
*
|
|
3703
|
-
* @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;
|
|
3704
|
-
*
|
|
3705
|
-
* @example
|
|
3706
|
-
* const { data, loading, error } = useFetchDynamicAssetsLikesQuery({
|
|
3707
|
-
* variables: {
|
|
3708
|
-
* assetIds: // value for 'assetIds'
|
|
3709
|
-
* },
|
|
3710
|
-
* });
|
|
3711
|
-
*/
|
|
3712
|
-
export declare function useFetchDynamicAssetsLikesQuery(baseOptions: Apollo.QueryHookOptions<IFetchDynamicAssetsLikesQuery, IFetchDynamicAssetsLikesQueryVariables>): Apollo.QueryResult<IFetchDynamicAssetsLikesQuery, Exact<{
|
|
3713
|
-
assetIds: string[];
|
|
3714
|
-
}>>;
|
|
3715
|
-
export declare function useFetchDynamicAssetsLikesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchDynamicAssetsLikesQuery, IFetchDynamicAssetsLikesQueryVariables>): Apollo.LazyQueryResultTuple<IFetchDynamicAssetsLikesQuery, Exact<{
|
|
3716
|
-
assetIds: string[];
|
|
3717
|
-
}>>;
|
|
3718
|
-
export type FetchDynamicAssetsLikesQueryHookResult = ReturnType<typeof useFetchDynamicAssetsLikesQuery>;
|
|
3719
|
-
export type FetchDynamicAssetsLikesLazyQueryHookResult = ReturnType<typeof useFetchDynamicAssetsLikesLazyQuery>;
|
|
3720
|
-
export type FetchDynamicAssetsLikesQueryResult = Apollo.QueryResult<IFetchDynamicAssetsLikesQuery, IFetchDynamicAssetsLikesQueryVariables>;
|
|
3721
3628
|
export declare const FetchLikedDocument: Apollo.DocumentNode;
|
|
3722
3629
|
/**
|
|
3723
3630
|
* __useFetchLikedQuery__
|
|
@@ -6213,6 +6120,67 @@ export declare function useFetchAllCreationsLazyQuery(baseOptions?: Apollo.LazyQ
|
|
|
6213
6120
|
export type FetchAllCreationsQueryHookResult = ReturnType<typeof useFetchAllCreationsQuery>;
|
|
6214
6121
|
export type FetchAllCreationsLazyQueryHookResult = ReturnType<typeof useFetchAllCreationsLazyQuery>;
|
|
6215
6122
|
export type FetchAllCreationsQueryResult = Apollo.QueryResult<IFetchAllCreationsQuery, IFetchAllCreationsQueryVariables>;
|
|
6123
|
+
export declare const FetchAssetByBlockchainDocument: Apollo.DocumentNode;
|
|
6124
|
+
/**
|
|
6125
|
+
* __useFetchAssetByBlockchainQuery__
|
|
6126
|
+
*
|
|
6127
|
+
* To run a query within a React component, call `useFetchAssetByBlockchainQuery` and pass it any options that fit your needs.
|
|
6128
|
+
* When your component renders, `useFetchAssetByBlockchainQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
6129
|
+
* you can use to render your UI.
|
|
6130
|
+
*
|
|
6131
|
+
* @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;
|
|
6132
|
+
*
|
|
6133
|
+
* @example
|
|
6134
|
+
* const { data, loading, error } = useFetchAssetByBlockchainQuery({
|
|
6135
|
+
* variables: {
|
|
6136
|
+
* blockchain: // value for 'blockchain'
|
|
6137
|
+
* address: // value for 'address'
|
|
6138
|
+
* tokenId: // value for 'tokenId'
|
|
6139
|
+
* elrondId: // value for 'elrondId'
|
|
6140
|
+
* },
|
|
6141
|
+
* });
|
|
6142
|
+
*/
|
|
6143
|
+
export declare function useFetchAssetByBlockchainQuery(baseOptions: Apollo.QueryHookOptions<IFetchAssetByBlockchainQuery, IFetchAssetByBlockchainQueryVariables>): Apollo.QueryResult<IFetchAssetByBlockchainQuery, Exact<{
|
|
6144
|
+
blockchain: string;
|
|
6145
|
+
address?: Maybe<string> | undefined;
|
|
6146
|
+
tokenId?: Maybe<string> | undefined;
|
|
6147
|
+
elrondId?: Maybe<string> | undefined;
|
|
6148
|
+
}>>;
|
|
6149
|
+
export declare function useFetchAssetByBlockchainLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchAssetByBlockchainQuery, IFetchAssetByBlockchainQueryVariables>): Apollo.LazyQueryResultTuple<IFetchAssetByBlockchainQuery, Exact<{
|
|
6150
|
+
blockchain: string;
|
|
6151
|
+
address?: Maybe<string> | undefined;
|
|
6152
|
+
tokenId?: Maybe<string> | undefined;
|
|
6153
|
+
elrondId?: Maybe<string> | undefined;
|
|
6154
|
+
}>>;
|
|
6155
|
+
export type FetchAssetByBlockchainQueryHookResult = ReturnType<typeof useFetchAssetByBlockchainQuery>;
|
|
6156
|
+
export type FetchAssetByBlockchainLazyQueryHookResult = ReturnType<typeof useFetchAssetByBlockchainLazyQuery>;
|
|
6157
|
+
export type FetchAssetByBlockchainQueryResult = Apollo.QueryResult<IFetchAssetByBlockchainQuery, IFetchAssetByBlockchainQueryVariables>;
|
|
6158
|
+
export declare const FetchAssetsDocument: Apollo.DocumentNode;
|
|
6159
|
+
/**
|
|
6160
|
+
* __useFetchAssetsQuery__
|
|
6161
|
+
*
|
|
6162
|
+
* To run a query within a React component, call `useFetchAssetsQuery` and pass it any options that fit your needs.
|
|
6163
|
+
* When your component renders, `useFetchAssetsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
6164
|
+
* you can use to render your UI.
|
|
6165
|
+
*
|
|
6166
|
+
* @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;
|
|
6167
|
+
*
|
|
6168
|
+
* @example
|
|
6169
|
+
* const { data, loading, error } = useFetchAssetsQuery({
|
|
6170
|
+
* variables: {
|
|
6171
|
+
* assetIds: // value for 'assetIds'
|
|
6172
|
+
* },
|
|
6173
|
+
* });
|
|
6174
|
+
*/
|
|
6175
|
+
export declare function useFetchAssetsQuery(baseOptions: Apollo.QueryHookOptions<IFetchAssetsQuery, IFetchAssetsQueryVariables>): Apollo.QueryResult<IFetchAssetsQuery, Exact<{
|
|
6176
|
+
assetIds: string[];
|
|
6177
|
+
}>>;
|
|
6178
|
+
export declare function useFetchAssetsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchAssetsQuery, IFetchAssetsQueryVariables>): Apollo.LazyQueryResultTuple<IFetchAssetsQuery, Exact<{
|
|
6179
|
+
assetIds: string[];
|
|
6180
|
+
}>>;
|
|
6181
|
+
export type FetchAssetsQueryHookResult = ReturnType<typeof useFetchAssetsQuery>;
|
|
6182
|
+
export type FetchAssetsLazyQueryHookResult = ReturnType<typeof useFetchAssetsLazyQuery>;
|
|
6183
|
+
export type FetchAssetsQueryResult = Apollo.QueryResult<IFetchAssetsQuery, IFetchAssetsQueryVariables>;
|
|
6216
6184
|
export declare const FetchAssetsCountDocument: Apollo.DocumentNode;
|
|
6217
6185
|
/**
|
|
6218
6186
|
* __useFetchAssetsCountQuery__
|
|
@@ -6299,6 +6267,58 @@ export declare function useFetchCreationsByTypeLazyQuery(baseOptions?: Apollo.La
|
|
|
6299
6267
|
export type FetchCreationsByTypeQueryHookResult = ReturnType<typeof useFetchCreationsByTypeQuery>;
|
|
6300
6268
|
export type FetchCreationsByTypeLazyQueryHookResult = ReturnType<typeof useFetchCreationsByTypeLazyQuery>;
|
|
6301
6269
|
export type FetchCreationsByTypeQueryResult = Apollo.QueryResult<IFetchCreationsByTypeQuery, IFetchCreationsByTypeQueryVariables>;
|
|
6270
|
+
export declare const FetchDynamicAssetLikesDocument: Apollo.DocumentNode;
|
|
6271
|
+
/**
|
|
6272
|
+
* __useFetchDynamicAssetLikesQuery__
|
|
6273
|
+
*
|
|
6274
|
+
* To run a query within a React component, call `useFetchDynamicAssetLikesQuery` and pass it any options that fit your needs.
|
|
6275
|
+
* When your component renders, `useFetchDynamicAssetLikesQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
6276
|
+
* you can use to render your UI.
|
|
6277
|
+
*
|
|
6278
|
+
* @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;
|
|
6279
|
+
*
|
|
6280
|
+
* @example
|
|
6281
|
+
* const { data, loading, error } = useFetchDynamicAssetLikesQuery({
|
|
6282
|
+
* variables: {
|
|
6283
|
+
* assetId: // value for 'assetId'
|
|
6284
|
+
* },
|
|
6285
|
+
* });
|
|
6286
|
+
*/
|
|
6287
|
+
export declare function useFetchDynamicAssetLikesQuery(baseOptions: Apollo.QueryHookOptions<IFetchDynamicAssetLikesQuery, IFetchDynamicAssetLikesQueryVariables>): Apollo.QueryResult<IFetchDynamicAssetLikesQuery, Exact<{
|
|
6288
|
+
assetId: string;
|
|
6289
|
+
}>>;
|
|
6290
|
+
export declare function useFetchDynamicAssetLikesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchDynamicAssetLikesQuery, IFetchDynamicAssetLikesQueryVariables>): Apollo.LazyQueryResultTuple<IFetchDynamicAssetLikesQuery, Exact<{
|
|
6291
|
+
assetId: string;
|
|
6292
|
+
}>>;
|
|
6293
|
+
export type FetchDynamicAssetLikesQueryHookResult = ReturnType<typeof useFetchDynamicAssetLikesQuery>;
|
|
6294
|
+
export type FetchDynamicAssetLikesLazyQueryHookResult = ReturnType<typeof useFetchDynamicAssetLikesLazyQuery>;
|
|
6295
|
+
export type FetchDynamicAssetLikesQueryResult = Apollo.QueryResult<IFetchDynamicAssetLikesQuery, IFetchDynamicAssetLikesQueryVariables>;
|
|
6296
|
+
export declare const FetchDynamicAssetsLikesDocument: Apollo.DocumentNode;
|
|
6297
|
+
/**
|
|
6298
|
+
* __useFetchDynamicAssetsLikesQuery__
|
|
6299
|
+
*
|
|
6300
|
+
* To run a query within a React component, call `useFetchDynamicAssetsLikesQuery` and pass it any options that fit your needs.
|
|
6301
|
+
* When your component renders, `useFetchDynamicAssetsLikesQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
6302
|
+
* you can use to render your UI.
|
|
6303
|
+
*
|
|
6304
|
+
* @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;
|
|
6305
|
+
*
|
|
6306
|
+
* @example
|
|
6307
|
+
* const { data, loading, error } = useFetchDynamicAssetsLikesQuery({
|
|
6308
|
+
* variables: {
|
|
6309
|
+
* assetIds: // value for 'assetIds'
|
|
6310
|
+
* },
|
|
6311
|
+
* });
|
|
6312
|
+
*/
|
|
6313
|
+
export declare function useFetchDynamicAssetsLikesQuery(baseOptions: Apollo.QueryHookOptions<IFetchDynamicAssetsLikesQuery, IFetchDynamicAssetsLikesQueryVariables>): Apollo.QueryResult<IFetchDynamicAssetsLikesQuery, Exact<{
|
|
6314
|
+
assetIds: string[];
|
|
6315
|
+
}>>;
|
|
6316
|
+
export declare function useFetchDynamicAssetsLikesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchDynamicAssetsLikesQuery, IFetchDynamicAssetsLikesQueryVariables>): Apollo.LazyQueryResultTuple<IFetchDynamicAssetsLikesQuery, Exact<{
|
|
6317
|
+
assetIds: string[];
|
|
6318
|
+
}>>;
|
|
6319
|
+
export type FetchDynamicAssetsLikesQueryHookResult = ReturnType<typeof useFetchDynamicAssetsLikesQuery>;
|
|
6320
|
+
export type FetchDynamicAssetsLikesLazyQueryHookResult = ReturnType<typeof useFetchDynamicAssetsLikesLazyQuery>;
|
|
6321
|
+
export type FetchDynamicAssetsLikesQueryResult = Apollo.QueryResult<IFetchDynamicAssetsLikesQuery, IFetchDynamicAssetsLikesQueryVariables>;
|
|
6302
6322
|
export declare const FindAllTopEntitiesByNameDocument: Apollo.DocumentNode;
|
|
6303
6323
|
/**
|
|
6304
6324
|
* __useFindAllTopEntitiesByNameQuery__
|