@ludo.ninja/api 3.0.74 → 3.0.76
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.
- package/build/graphql_tools/__generated__/adminHost/schema.d.ts +11 -5
- package/build/graphql_tools/__generated__/adminHost/schema.js +2 -0
- package/build/graphql_tools/__generated__/opportunitiesHost/schema.d.ts +3 -1
- package/build/graphql_tools/__generated__/opportunitiesHost/schema.js +1 -0
- package/build/graphql_tools/__generated__/searchHost/schema.d.ts +6 -2
- package/package.json +1 -1
- package/src/graphql_tools/__generated__/adminHost/schema.ts +13 -5
- package/src/graphql_tools/__generated__/opportunitiesHost/schema.ts +4 -1
- package/src/graphql_tools/__generated__/searchHost/schema.ts +6 -2
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -250,9 +250,10 @@ export type IAdminProject = {
|
|
|
250
250
|
id: Scalars['String'];
|
|
251
251
|
blockchain: Scalars['String'];
|
|
252
252
|
contract: Scalars['String'];
|
|
253
|
-
name
|
|
253
|
+
name?: Maybe<Scalars['String']>;
|
|
254
254
|
verified: Scalars['Boolean'];
|
|
255
255
|
hidden: Scalars['Boolean'];
|
|
256
|
+
hideDiagrams: Scalars['Boolean'];
|
|
256
257
|
price?: Maybe<Scalars['Float']>;
|
|
257
258
|
priceDayDifference?: Maybe<Scalars['Float']>;
|
|
258
259
|
rank?: Maybe<Scalars['Float']>;
|
|
@@ -270,6 +271,7 @@ export type IAdminProjectInput = {
|
|
|
270
271
|
contract: Scalars['String'];
|
|
271
272
|
verified: Scalars['Boolean'];
|
|
272
273
|
hidden: Scalars['Boolean'];
|
|
274
|
+
hideDiagrams: Scalars['Boolean'];
|
|
273
275
|
};
|
|
274
276
|
export type IAdminProjectsFilterInput = {
|
|
275
277
|
contractTerm?: Maybe<Scalars['String']>;
|
|
@@ -277,6 +279,7 @@ export type IAdminProjectsFilterInput = {
|
|
|
277
279
|
price?: Maybe<Scalars['Float']>;
|
|
278
280
|
rank?: Maybe<Scalars['Float']>;
|
|
279
281
|
holders?: Maybe<Scalars['Int']>;
|
|
282
|
+
hidden?: Maybe<Scalars['Boolean']>;
|
|
280
283
|
};
|
|
281
284
|
export type IAdminProjectsPage = {
|
|
282
285
|
projects: Array<IAdminProject>;
|
|
@@ -311,6 +314,7 @@ export type IAdminUser = {
|
|
|
311
314
|
userLanguage?: Maybe<Scalars['String']>;
|
|
312
315
|
devicePlatform?: Maybe<IDevicePlatform>;
|
|
313
316
|
firstVisitSource?: Maybe<ILoginSource>;
|
|
317
|
+
lastLoggedAt?: Maybe<Scalars['Long']>;
|
|
314
318
|
};
|
|
315
319
|
export type IAdminXp = {
|
|
316
320
|
userId: Scalars['ID'];
|
|
@@ -416,7 +420,7 @@ export type ICompanyTokenInput = {
|
|
|
416
420
|
companyName: Scalars['String'];
|
|
417
421
|
tariffPlan: ITariffPlan;
|
|
418
422
|
authorities?: Maybe<Array<Maybe<IAuthorityType>>>;
|
|
419
|
-
expiredAt
|
|
423
|
+
expiredAt?: Maybe<Scalars['Long']>;
|
|
420
424
|
requestsPerSecond?: Maybe<Scalars['Int']>;
|
|
421
425
|
requestsPerMinute?: Maybe<Scalars['Int']>;
|
|
422
426
|
requestsPerHour?: Maybe<Scalars['Int']>;
|
|
@@ -1658,9 +1662,10 @@ export type IAdminProjectResolvers<ContextType = any, ParentType extends IResolv
|
|
|
1658
1662
|
id?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
1659
1663
|
blockchain?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
1660
1664
|
contract?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
1661
|
-
name?: Resolver<IResolversTypes['String']
|
|
1665
|
+
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
1662
1666
|
verified?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
|
|
1663
1667
|
hidden?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
|
|
1668
|
+
hideDiagrams?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
|
|
1664
1669
|
price?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
1665
1670
|
priceDayDifference?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
1666
1671
|
rank?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
@@ -1704,6 +1709,7 @@ export type IAdminUserResolvers<ContextType = any, ParentType extends IResolvers
|
|
|
1704
1709
|
userLanguage?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
1705
1710
|
devicePlatform?: Resolver<Maybe<IResolversTypes['DevicePlatform']>, ParentType, ContextType>;
|
|
1706
1711
|
firstVisitSource?: Resolver<Maybe<IResolversTypes['LoginSource']>, ParentType, ContextType>;
|
|
1712
|
+
lastLoggedAt?: Resolver<Maybe<IResolversTypes['Long']>, ParentType, ContextType>;
|
|
1707
1713
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1708
1714
|
};
|
|
1709
1715
|
export type IAdminXpResolvers<ContextType = any, ParentType extends IResolversParentTypes['AdminXp'] = IResolversParentTypes['AdminXp']> = {
|
|
@@ -2404,7 +2410,7 @@ export type IFetchAdminProjectsPageQueryVariables = Exact<{
|
|
|
2404
2410
|
}>;
|
|
2405
2411
|
export type IFetchAdminProjectsPageQuery = {
|
|
2406
2412
|
fetchProjectsPage: {
|
|
2407
|
-
projects: Array<Pick<IAdminProject, 'id' | 'blockchain' | 'contract' | 'name' | 'verified' | 'hidden' | 'price' | 'priceDayDifference' | 'rank' | 'rankDayDifference' | 'holders' | 'holdersDayDifference' | 'twitterFollowers' | 'twitterFollowersDayDifference' | 'website' | 'websiteRank' | 'twitter'>>;
|
|
2413
|
+
projects: Array<Pick<IAdminProject, 'id' | 'blockchain' | 'contract' | 'name' | 'verified' | 'hidden' | 'price' | 'priceDayDifference' | 'rank' | 'rankDayDifference' | 'holders' | 'holdersDayDifference' | 'twitterFollowers' | 'twitterFollowersDayDifference' | 'website' | 'websiteRank' | 'twitter' | 'hideDiagrams'>>;
|
|
2408
2414
|
nextPage?: Maybe<Pick<IAdminPage, 'elements' | 'lastNum' | 'num' | 'size' | 'token'>>;
|
|
2409
2415
|
};
|
|
2410
2416
|
};
|
|
@@ -2429,7 +2435,7 @@ export type IFetchAdminUsersPageQueryVariables = Exact<{
|
|
|
2429
2435
|
}>;
|
|
2430
2436
|
export type IFetchAdminUsersPageQuery = {
|
|
2431
2437
|
fetchAdminUsersPage: {
|
|
2432
|
-
users: Array<(Pick<IAdminUser, 'userId' | 'username' | 'connectedBlockchains' | 'isActive' | 'createdAt' | 'topInterests' | 'walletsValue' | 'xpLevel' | 'ludoRank' | 'inviterId' | 'ip' | 'location' | 'userLanguage' | 'devicePlatform' | 'firstVisitSource'> & {
|
|
2438
|
+
users: Array<(Pick<IAdminUser, 'userId' | 'username' | 'connectedBlockchains' | 'isActive' | 'createdAt' | 'topInterests' | 'walletsValue' | 'xpLevel' | 'ludoRank' | 'inviterId' | 'ip' | 'location' | 'userLanguage' | 'devicePlatform' | 'firstVisitSource' | 'lastLoggedAt'> & {
|
|
2433
2439
|
wallets?: Maybe<Array<Pick<IWallet, 'address' | 'blockchain' | 'chainId'>>>;
|
|
2434
2440
|
})>;
|
|
2435
2441
|
nextPage?: Maybe<Pick<IAdminPage, 'num' | 'lastNum' | 'size' | 'elements' | 'token'>>;
|
|
@@ -1946,6 +1946,7 @@ exports.FetchAdminProjectsPageDocument = (0, client_1.gql) `
|
|
|
1946
1946
|
website
|
|
1947
1947
|
websiteRank
|
|
1948
1948
|
twitter
|
|
1949
|
+
hideDiagrams
|
|
1949
1950
|
}
|
|
1950
1951
|
nextPage {
|
|
1951
1952
|
elements
|
|
@@ -2060,6 +2061,7 @@ exports.FetchAdminUsersPageDocument = (0, client_1.gql) `
|
|
|
2060
2061
|
userLanguage
|
|
2061
2062
|
devicePlatform
|
|
2062
2063
|
firstVisitSource
|
|
2064
|
+
lastLoggedAt
|
|
2063
2065
|
}
|
|
2064
2066
|
nextPage {
|
|
2065
2067
|
num
|
|
@@ -275,6 +275,7 @@ export type IProject = {
|
|
|
275
275
|
airdrops?: Maybe<Array<Maybe<IOpportunityV2>>>;
|
|
276
276
|
opportunities?: Maybe<Array<Maybe<IOpportunityV2>>>;
|
|
277
277
|
communityVotes?: Maybe<Array<Maybe<IProjectCommunityVote>>>;
|
|
278
|
+
hideDiagrams?: Maybe<Scalars['Boolean']>;
|
|
278
279
|
};
|
|
279
280
|
export type IProjectCommunityVote = {
|
|
280
281
|
calculatedAt: Scalars['Long'];
|
|
@@ -608,6 +609,7 @@ export type IProjectResolvers<ContextType = any, ParentType extends IResolversPa
|
|
|
608
609
|
airdrops?: Resolver<Maybe<Array<Maybe<IResolversTypes['OpportunityV2']>>>, ParentType, ContextType>;
|
|
609
610
|
opportunities?: Resolver<Maybe<Array<Maybe<IResolversTypes['OpportunityV2']>>>, ParentType, ContextType>;
|
|
610
611
|
communityVotes?: Resolver<Maybe<Array<Maybe<IResolversTypes['ProjectCommunityVote']>>>, ParentType, ContextType>;
|
|
612
|
+
hideDiagrams?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
611
613
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
612
614
|
};
|
|
613
615
|
export type IProjectCommunityVoteResolvers<ContextType = any, ParentType extends IResolversParentTypes['ProjectCommunityVote'] = IResolversParentTypes['ProjectCommunityVote']> = {
|
|
@@ -777,7 +779,7 @@ export type IFetchProjectBySlugQueryVariables = Exact<{
|
|
|
777
779
|
slug: Scalars['String'];
|
|
778
780
|
}>;
|
|
779
781
|
export type IFetchProjectBySlugQuery = {
|
|
780
|
-
fetchProjectBySlug: (Pick<IProject, 'blockchain' | 'contract' | 'name' | 'slug' | 'symbol' | 'website' | 'twitter' | 'type' | 'ludoRank' | 'investors' | 'holders' | 'volume' | 'marketCap' | 'liquidity' | 'price' | 'twitterFollowers' | 'twitterSentiment' | 'verified' | 'userReaction' | 'communityVote'> & {
|
|
782
|
+
fetchProjectBySlug: (Pick<IProject, 'blockchain' | 'contract' | 'name' | 'slug' | 'symbol' | 'website' | 'twitter' | 'type' | 'ludoRank' | 'investors' | 'holders' | 'volume' | 'marketCap' | 'liquidity' | 'price' | 'twitterFollowers' | 'twitterSentiment' | 'verified' | 'userReaction' | 'communityVote' | 'hideDiagrams'> & {
|
|
781
783
|
snapshots?: Maybe<Array<Maybe<Pick<IProjectSnapshot, 'date' | 'contract' | 'blockchain' | 'volume' | 'marketCap' | 'price' | 'liquidity' | 'xFollowers' | 'holders' | 'ludoRank'>>>>;
|
|
782
784
|
reactions: Pick<IProjectReactions, 'likes' | 'neutrals' | 'dislikes'>;
|
|
783
785
|
votesGeo?: Maybe<Array<Maybe<Pick<IVotesGeolocation, 'country' | 'votes' | 'votesPercentage'>>>>;
|
|
@@ -205,6 +205,7 @@ export type ILudoNftTon = {
|
|
|
205
205
|
ownersAddresses: Array<Scalars['String']>;
|
|
206
206
|
creatorsAddresses: Array<Scalars['String']>;
|
|
207
207
|
originalUrls: Array<Scalars['String']>;
|
|
208
|
+
medias?: Maybe<Array<Maybe<IMedia>>>;
|
|
208
209
|
};
|
|
209
210
|
export type ILudoNftsTonPage = {
|
|
210
211
|
ludoNftsTon: Array<ILudoNftTon>;
|
|
@@ -233,6 +234,7 @@ export type IMintingData = {
|
|
|
233
234
|
refCode?: Maybe<Scalars['String']>;
|
|
234
235
|
ownersAddresses: Array<Scalars['String']>;
|
|
235
236
|
originalUrls: Array<Scalars['String']>;
|
|
237
|
+
medias?: Maybe<Array<Maybe<IMedia>>>;
|
|
236
238
|
};
|
|
237
239
|
export type IMutation = {
|
|
238
240
|
setDummy: Scalars['String'];
|
|
@@ -314,7 +316,7 @@ export type IProfilePage = {
|
|
|
314
316
|
};
|
|
315
317
|
export type IProject = {
|
|
316
318
|
id: Scalars['String'];
|
|
317
|
-
name
|
|
319
|
+
name?: Maybe<Scalars['String']>;
|
|
318
320
|
slug?: Maybe<Scalars['String']>;
|
|
319
321
|
type?: Maybe<Scalars['String']>;
|
|
320
322
|
ludoRank?: Maybe<Scalars['Int']>;
|
|
@@ -837,6 +839,7 @@ export type ILudoNftTonResolvers<ContextType = any, ParentType extends IResolver
|
|
|
837
839
|
ownersAddresses?: Resolver<Array<IResolversTypes['String']>, ParentType, ContextType>;
|
|
838
840
|
creatorsAddresses?: Resolver<Array<IResolversTypes['String']>, ParentType, ContextType>;
|
|
839
841
|
originalUrls?: Resolver<Array<IResolversTypes['String']>, ParentType, ContextType>;
|
|
842
|
+
medias?: Resolver<Maybe<Array<Maybe<IResolversTypes['Media']>>>, ParentType, ContextType>;
|
|
840
843
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
841
844
|
};
|
|
842
845
|
export type ILudoNftsTonPageResolvers<ContextType = any, ParentType extends IResolversParentTypes['LudoNftsTonPage'] = IResolversParentTypes['LudoNftsTonPage']> = {
|
|
@@ -868,6 +871,7 @@ export type IMintingDataResolvers<ContextType = any, ParentType extends IResolve
|
|
|
868
871
|
refCode?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
869
872
|
ownersAddresses?: Resolver<Array<IResolversTypes['String']>, ParentType, ContextType>;
|
|
870
873
|
originalUrls?: Resolver<Array<IResolversTypes['String']>, ParentType, ContextType>;
|
|
874
|
+
medias?: Resolver<Maybe<Array<Maybe<IResolversTypes['Media']>>>, ParentType, ContextType>;
|
|
871
875
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
872
876
|
};
|
|
873
877
|
export type IMutationResolvers<ContextType = any, ParentType extends IResolversParentTypes['Mutation'] = IResolversParentTypes['Mutation']> = {
|
|
@@ -938,7 +942,7 @@ export type IProfilePageResolvers<ContextType = any, ParentType extends IResolve
|
|
|
938
942
|
};
|
|
939
943
|
export type IProjectResolvers<ContextType = any, ParentType extends IResolversParentTypes['Project'] = IResolversParentTypes['Project']> = {
|
|
940
944
|
id?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
941
|
-
name?: Resolver<IResolversTypes['String']
|
|
945
|
+
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
942
946
|
slug?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
943
947
|
type?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
944
948
|
ludoRank?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
package/package.json
CHANGED
|
@@ -264,9 +264,10 @@ export type IAdminProject = {
|
|
|
264
264
|
id: Scalars['String'];
|
|
265
265
|
blockchain: Scalars['String'];
|
|
266
266
|
contract: Scalars['String'];
|
|
267
|
-
name
|
|
267
|
+
name?: Maybe<Scalars['String']>;
|
|
268
268
|
verified: Scalars['Boolean'];
|
|
269
269
|
hidden: Scalars['Boolean'];
|
|
270
|
+
hideDiagrams: Scalars['Boolean'];
|
|
270
271
|
price?: Maybe<Scalars['Float']>;
|
|
271
272
|
priceDayDifference?: Maybe<Scalars['Float']>;
|
|
272
273
|
rank?: Maybe<Scalars['Float']>;
|
|
@@ -285,6 +286,7 @@ export type IAdminProjectInput = {
|
|
|
285
286
|
contract: Scalars['String'];
|
|
286
287
|
verified: Scalars['Boolean'];
|
|
287
288
|
hidden: Scalars['Boolean'];
|
|
289
|
+
hideDiagrams: Scalars['Boolean'];
|
|
288
290
|
};
|
|
289
291
|
|
|
290
292
|
export type IAdminProjectsFilterInput = {
|
|
@@ -293,6 +295,7 @@ export type IAdminProjectsFilterInput = {
|
|
|
293
295
|
price?: Maybe<Scalars['Float']>;
|
|
294
296
|
rank?: Maybe<Scalars['Float']>;
|
|
295
297
|
holders?: Maybe<Scalars['Int']>;
|
|
298
|
+
hidden?: Maybe<Scalars['Boolean']>;
|
|
296
299
|
};
|
|
297
300
|
|
|
298
301
|
export type IAdminProjectsPage = {
|
|
@@ -331,6 +334,7 @@ export type IAdminUser = {
|
|
|
331
334
|
userLanguage?: Maybe<Scalars['String']>;
|
|
332
335
|
devicePlatform?: Maybe<IDevicePlatform>;
|
|
333
336
|
firstVisitSource?: Maybe<ILoginSource>;
|
|
337
|
+
lastLoggedAt?: Maybe<Scalars['Long']>;
|
|
334
338
|
};
|
|
335
339
|
|
|
336
340
|
export type IAdminXp = {
|
|
@@ -451,7 +455,7 @@ export type ICompanyTokenInput = {
|
|
|
451
455
|
companyName: Scalars['String'];
|
|
452
456
|
tariffPlan: ITariffPlan;
|
|
453
457
|
authorities?: Maybe<Array<Maybe<IAuthorityType>>>;
|
|
454
|
-
expiredAt
|
|
458
|
+
expiredAt?: Maybe<Scalars['Long']>;
|
|
455
459
|
requestsPerSecond?: Maybe<Scalars['Int']>;
|
|
456
460
|
requestsPerMinute?: Maybe<Scalars['Int']>;
|
|
457
461
|
requestsPerHour?: Maybe<Scalars['Int']>;
|
|
@@ -1946,9 +1950,10 @@ export type IAdminProjectResolvers<ContextType = any, ParentType extends IResolv
|
|
|
1946
1950
|
id?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
1947
1951
|
blockchain?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
1948
1952
|
contract?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
1949
|
-
name?: Resolver<IResolversTypes['String']
|
|
1953
|
+
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
1950
1954
|
verified?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
|
|
1951
1955
|
hidden?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
|
|
1956
|
+
hideDiagrams?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
|
|
1952
1957
|
price?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
1953
1958
|
priceDayDifference?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
1954
1959
|
rank?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
@@ -1995,6 +2000,7 @@ export type IAdminUserResolvers<ContextType = any, ParentType extends IResolvers
|
|
|
1995
2000
|
userLanguage?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
1996
2001
|
devicePlatform?: Resolver<Maybe<IResolversTypes['DevicePlatform']>, ParentType, ContextType>;
|
|
1997
2002
|
firstVisitSource?: Resolver<Maybe<IResolversTypes['LoginSource']>, ParentType, ContextType>;
|
|
2003
|
+
lastLoggedAt?: Resolver<Maybe<IResolversTypes['Long']>, ParentType, ContextType>;
|
|
1998
2004
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1999
2005
|
};
|
|
2000
2006
|
|
|
@@ -2792,7 +2798,7 @@ export type IFetchAdminProjectsPageQueryVariables = Exact<{
|
|
|
2792
2798
|
}>;
|
|
2793
2799
|
|
|
2794
2800
|
|
|
2795
|
-
export type IFetchAdminProjectsPageQuery = { fetchProjectsPage: { projects: Array<Pick<IAdminProject, 'id' | 'blockchain' | 'contract' | 'name' | 'verified' | 'hidden' | 'price' | 'priceDayDifference' | 'rank' | 'rankDayDifference' | 'holders' | 'holdersDayDifference' | 'twitterFollowers' | 'twitterFollowersDayDifference' | 'website' | 'websiteRank' | 'twitter'>>, nextPage?: Maybe<Pick<IAdminPage, 'elements' | 'lastNum' | 'num' | 'size' | 'token'>> } };
|
|
2801
|
+
export type IFetchAdminProjectsPageQuery = { fetchProjectsPage: { projects: Array<Pick<IAdminProject, 'id' | 'blockchain' | 'contract' | 'name' | 'verified' | 'hidden' | 'price' | 'priceDayDifference' | 'rank' | 'rankDayDifference' | 'holders' | 'holdersDayDifference' | 'twitterFollowers' | 'twitterFollowersDayDifference' | 'website' | 'websiteRank' | 'twitter' | 'hideDiagrams'>>, nextPage?: Maybe<Pick<IAdminPage, 'elements' | 'lastNum' | 'num' | 'size' | 'token'>> } };
|
|
2796
2802
|
|
|
2797
2803
|
export type IFetchAdminReferralsPageQueryVariables = Exact<{
|
|
2798
2804
|
filter: IReferralsFilterInput;
|
|
@@ -2814,7 +2820,7 @@ export type IFetchAdminUsersPageQueryVariables = Exact<{
|
|
|
2814
2820
|
|
|
2815
2821
|
|
|
2816
2822
|
export type IFetchAdminUsersPageQuery = { fetchAdminUsersPage: { users: Array<(
|
|
2817
|
-
Pick<IAdminUser, 'userId' | 'username' | 'connectedBlockchains' | 'isActive' | 'createdAt' | 'topInterests' | 'walletsValue' | 'xpLevel' | 'ludoRank' | 'inviterId' | 'ip' | 'location' | 'userLanguage' | 'devicePlatform' | 'firstVisitSource'>
|
|
2823
|
+
Pick<IAdminUser, 'userId' | 'username' | 'connectedBlockchains' | 'isActive' | 'createdAt' | 'topInterests' | 'walletsValue' | 'xpLevel' | 'ludoRank' | 'inviterId' | 'ip' | 'location' | 'userLanguage' | 'devicePlatform' | 'firstVisitSource' | 'lastLoggedAt'>
|
|
2818
2824
|
& { wallets?: Maybe<Array<Pick<IWallet, 'address' | 'blockchain' | 'chainId'>>> }
|
|
2819
2825
|
)>, nextPage?: Maybe<Pick<IAdminPage, 'num' | 'lastNum' | 'size' | 'elements' | 'token'>> } };
|
|
2820
2826
|
|
|
@@ -4850,6 +4856,7 @@ export const FetchAdminProjectsPageDocument = gql`
|
|
|
4850
4856
|
website
|
|
4851
4857
|
websiteRank
|
|
4852
4858
|
twitter
|
|
4859
|
+
hideDiagrams
|
|
4853
4860
|
}
|
|
4854
4861
|
nextPage {
|
|
4855
4862
|
elements
|
|
@@ -4968,6 +4975,7 @@ export const FetchAdminUsersPageDocument = gql`
|
|
|
4968
4975
|
userLanguage
|
|
4969
4976
|
devicePlatform
|
|
4970
4977
|
firstVisitSource
|
|
4978
|
+
lastLoggedAt
|
|
4971
4979
|
}
|
|
4972
4980
|
nextPage {
|
|
4973
4981
|
num
|
|
@@ -315,6 +315,7 @@ export type IProject = {
|
|
|
315
315
|
airdrops?: Maybe<Array<Maybe<IOpportunityV2>>>;
|
|
316
316
|
opportunities?: Maybe<Array<Maybe<IOpportunityV2>>>;
|
|
317
317
|
communityVotes?: Maybe<Array<Maybe<IProjectCommunityVote>>>;
|
|
318
|
+
hideDiagrams?: Maybe<Scalars['Boolean']>;
|
|
318
319
|
};
|
|
319
320
|
|
|
320
321
|
export type IProjectCommunityVote = {
|
|
@@ -730,6 +731,7 @@ export type IProjectResolvers<ContextType = any, ParentType extends IResolversPa
|
|
|
730
731
|
airdrops?: Resolver<Maybe<Array<Maybe<IResolversTypes['OpportunityV2']>>>, ParentType, ContextType>;
|
|
731
732
|
opportunities?: Resolver<Maybe<Array<Maybe<IResolversTypes['OpportunityV2']>>>, ParentType, ContextType>;
|
|
732
733
|
communityVotes?: Resolver<Maybe<Array<Maybe<IResolversTypes['ProjectCommunityVote']>>>, ParentType, ContextType>;
|
|
734
|
+
hideDiagrams?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
733
735
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
734
736
|
};
|
|
735
737
|
|
|
@@ -935,7 +937,7 @@ export type IFetchProjectBySlugQueryVariables = Exact<{
|
|
|
935
937
|
|
|
936
938
|
|
|
937
939
|
export type IFetchProjectBySlugQuery = { fetchProjectBySlug: (
|
|
938
|
-
Pick<IProject, 'blockchain' | 'contract' | 'name' | 'slug' | 'symbol' | 'website' | 'twitter' | 'type' | 'ludoRank' | 'investors' | 'holders' | 'volume' | 'marketCap' | 'liquidity' | 'price' | 'twitterFollowers' | 'twitterSentiment' | 'verified' | 'userReaction' | 'communityVote'>
|
|
940
|
+
Pick<IProject, 'blockchain' | 'contract' | 'name' | 'slug' | 'symbol' | 'website' | 'twitter' | 'type' | 'ludoRank' | 'investors' | 'holders' | 'volume' | 'marketCap' | 'liquidity' | 'price' | 'twitterFollowers' | 'twitterSentiment' | 'verified' | 'userReaction' | 'communityVote' | 'hideDiagrams'>
|
|
939
941
|
& { snapshots?: Maybe<Array<Maybe<Pick<IProjectSnapshot, 'date' | 'contract' | 'blockchain' | 'volume' | 'marketCap' | 'price' | 'liquidity' | 'xFollowers' | 'holders' | 'ludoRank'>>>>, reactions: Pick<IProjectReactions, 'likes' | 'neutrals' | 'dislikes'>, votesGeo?: Maybe<Array<Maybe<Pick<IVotesGeolocation, 'country' | 'votes' | 'votesPercentage'>>>>, airdrops?: Maybe<Array<Maybe<Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | 'minXpLevel' | 'maxXpLevel' | 'minRank' | 'maxRank' | 'media' | 'reportLink' | 'clicks' | 'views' | 'blockchain' | 'blockchains' | 'collection' | 'createdAt' | 'minWalletValue' | 'maxWalletValue' | 'shareLink' | 'liked' | 'geolocations' | 'subscribed' | 'participantsLimit' | 'availablePlacesForAirdrop'>>>>, opportunities?: Maybe<Array<Maybe<Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | 'minXpLevel' | 'maxXpLevel' | 'minRank' | 'maxRank' | 'media' | 'reportLink' | 'clicks' | 'views' | 'blockchain' | 'blockchains' | 'collection' | 'createdAt' | 'minWalletValue' | 'maxWalletValue' | 'shareLink' | 'liked' | 'geolocations' | 'subscribed' | 'participantsLimit' | 'availablePlacesForAirdrop'>>>>, communityVotes?: Maybe<Array<Maybe<Pick<IProjectCommunityVote, 'calculatedAt' | 'communityVote'>>>> }
|
|
940
942
|
) };
|
|
941
943
|
|
|
@@ -1997,6 +1999,7 @@ export const FetchProjectBySlugDocument = gql`
|
|
|
1997
1999
|
calculatedAt
|
|
1998
2000
|
communityVote
|
|
1999
2001
|
}
|
|
2002
|
+
hideDiagrams
|
|
2000
2003
|
}
|
|
2001
2004
|
}
|
|
2002
2005
|
`;
|
|
@@ -220,6 +220,7 @@ export type ILudoNftTon = {
|
|
|
220
220
|
ownersAddresses: Array<Scalars['String']>;
|
|
221
221
|
creatorsAddresses: Array<Scalars['String']>;
|
|
222
222
|
originalUrls: Array<Scalars['String']>;
|
|
223
|
+
medias?: Maybe<Array<Maybe<IMedia>>>;
|
|
223
224
|
};
|
|
224
225
|
|
|
225
226
|
export type ILudoNftsTonPage = {
|
|
@@ -251,6 +252,7 @@ export type IMintingData = {
|
|
|
251
252
|
refCode?: Maybe<Scalars['String']>;
|
|
252
253
|
ownersAddresses: Array<Scalars['String']>;
|
|
253
254
|
originalUrls: Array<Scalars['String']>;
|
|
255
|
+
medias?: Maybe<Array<Maybe<IMedia>>>;
|
|
254
256
|
};
|
|
255
257
|
|
|
256
258
|
export type IMutation = {
|
|
@@ -348,7 +350,7 @@ export type IProfilePage = {
|
|
|
348
350
|
|
|
349
351
|
export type IProject = {
|
|
350
352
|
id: Scalars['String'];
|
|
351
|
-
name
|
|
353
|
+
name?: Maybe<Scalars['String']>;
|
|
352
354
|
slug?: Maybe<Scalars['String']>;
|
|
353
355
|
type?: Maybe<Scalars['String']>;
|
|
354
356
|
ludoRank?: Maybe<Scalars['Int']>;
|
|
@@ -999,6 +1001,7 @@ export type ILudoNftTonResolvers<ContextType = any, ParentType extends IResolver
|
|
|
999
1001
|
ownersAddresses?: Resolver<Array<IResolversTypes['String']>, ParentType, ContextType>;
|
|
1000
1002
|
creatorsAddresses?: Resolver<Array<IResolversTypes['String']>, ParentType, ContextType>;
|
|
1001
1003
|
originalUrls?: Resolver<Array<IResolversTypes['String']>, ParentType, ContextType>;
|
|
1004
|
+
medias?: Resolver<Maybe<Array<Maybe<IResolversTypes['Media']>>>, ParentType, ContextType>;
|
|
1002
1005
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1003
1006
|
};
|
|
1004
1007
|
|
|
@@ -1033,6 +1036,7 @@ export type IMintingDataResolvers<ContextType = any, ParentType extends IResolve
|
|
|
1033
1036
|
refCode?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
1034
1037
|
ownersAddresses?: Resolver<Array<IResolversTypes['String']>, ParentType, ContextType>;
|
|
1035
1038
|
originalUrls?: Resolver<Array<IResolversTypes['String']>, ParentType, ContextType>;
|
|
1039
|
+
medias?: Resolver<Maybe<Array<Maybe<IResolversTypes['Media']>>>, ParentType, ContextType>;
|
|
1036
1040
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1037
1041
|
};
|
|
1038
1042
|
|
|
@@ -1110,7 +1114,7 @@ export type IProfilePageResolvers<ContextType = any, ParentType extends IResolve
|
|
|
1110
1114
|
|
|
1111
1115
|
export type IProjectResolvers<ContextType = any, ParentType extends IResolversParentTypes['Project'] = IResolversParentTypes['Project']> = {
|
|
1112
1116
|
id?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
1113
|
-
name?: Resolver<IResolversTypes['String']
|
|
1117
|
+
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
1114
1118
|
slug?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
1115
1119
|
type?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
1116
1120
|
ludoRank?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|