@ludo.ninja/api 3.2.0 → 3.2.1

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.
@@ -25,6 +25,10 @@ export type Scalars = {
25
25
  /** A 64-bit signed integer */
26
26
  Long: any;
27
27
  };
28
+ export type IAlertsSubscriptionInput = {
29
+ blockchain: Scalars['String'];
30
+ contract: Scalars['String'];
31
+ };
28
32
  export type IBrand = {
29
33
  brandId: Scalars['ID'];
30
34
  name: Scalars['String'];
@@ -105,6 +109,7 @@ export type IMutation = {
105
109
  registerNewProject: IProjectRegistrationResult;
106
110
  reactOnProject: Scalars['Boolean'];
107
111
  activateMonitoring: Scalars['Boolean'];
112
+ subscribeOnAlerts: Scalars['Boolean'];
108
113
  };
109
114
  export type IMutationCreateBrandArgs = {
110
115
  input: IBrandInput;
@@ -169,6 +174,9 @@ export type IMutationReactOnProjectArgs = {
169
174
  export type IMutationActivateMonitoringArgs = {
170
175
  input: IMonitoringActivationInput;
171
176
  };
177
+ export type IMutationSubscribeOnAlertsArgs = {
178
+ input: IAlertsSubscriptionInput;
179
+ };
172
180
  export type IOpportunitiesPage = {
173
181
  currentOpportunities?: Maybe<Array<Maybe<IOpportunity>>>;
174
182
  similarOpportunities?: Maybe<Array<Maybe<IOpportunity>>>;
@@ -308,6 +316,9 @@ export type IProject = {
308
316
  holdersGeo?: Maybe<Array<Maybe<IHoldersGeolocation>>>;
309
317
  status?: Maybe<IProjectStatus>;
310
318
  ludoRankDifference?: Maybe<ILudoRankDifference>;
319
+ monitored?: Maybe<Scalars['Boolean']>;
320
+ alertsSubscriptionIsActive?: Maybe<Scalars['Boolean']>;
321
+ originalMediaUrl?: Maybe<Scalars['String']>;
311
322
  };
312
323
  export type IProjectCommunityVote = {
313
324
  calculatedAt: Scalars['Long'];
@@ -453,9 +464,10 @@ export type NextResolverFn<T> = () => Promise<T>;
453
464
  export type DirectiveResolverFn<TResult = {}, TParent = {}, TContext = {}, TArgs = {}> = (next: NextResolverFn<TResult>, parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => TResult | Promise<TResult>;
454
465
  /** Mapping between all available schema types and the resolvers types */
455
466
  export type IResolversTypes = {
467
+ AlertsSubscriptionInput: IAlertsSubscriptionInput;
468
+ String: ResolverTypeWrapper<Scalars['String']>;
456
469
  Brand: ResolverTypeWrapper<IBrand>;
457
470
  ID: ResolverTypeWrapper<Scalars['ID']>;
458
- String: ResolverTypeWrapper<Scalars['String']>;
459
471
  Boolean: ResolverTypeWrapper<Scalars['Boolean']>;
460
472
  BrandInput: IBrandInput;
461
473
  Category: ResolverTypeWrapper<ICategory>;
@@ -491,9 +503,10 @@ export type IResolversTypes = {
491
503
  };
492
504
  /** Mapping between all available schema types and the resolvers parents */
493
505
  export type IResolversParentTypes = {
506
+ AlertsSubscriptionInput: IAlertsSubscriptionInput;
507
+ String: Scalars['String'];
494
508
  Brand: IBrand;
495
509
  ID: Scalars['ID'];
496
- String: Scalars['String'];
497
510
  Boolean: Scalars['Boolean'];
498
511
  BrandInput: IBrandInput;
499
512
  Category: ICategory;
@@ -600,6 +613,7 @@ export type IMutationResolvers<ContextType = any, ParentType extends IResolversP
600
613
  registerNewProject?: Resolver<IResolversTypes['ProjectRegistrationResult'], ParentType, ContextType, RequireFields<IMutationRegisterNewProjectArgs, 'input'>>;
601
614
  reactOnProject?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationReactOnProjectArgs, 'input'>>;
602
615
  activateMonitoring?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationActivateMonitoringArgs, 'input'>>;
616
+ subscribeOnAlerts?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationSubscribeOnAlertsArgs, 'input'>>;
603
617
  };
604
618
  export type IOpportunitiesPageResolvers<ContextType = any, ParentType extends IResolversParentTypes['OpportunitiesPage'] = IResolversParentTypes['OpportunitiesPage']> = {
605
619
  currentOpportunities?: Resolver<Maybe<Array<Maybe<IResolversTypes['Opportunity']>>>, ParentType, ContextType>;
@@ -715,6 +729,9 @@ export type IProjectResolvers<ContextType = any, ParentType extends IResolversPa
715
729
  holdersGeo?: Resolver<Maybe<Array<Maybe<IResolversTypes['HoldersGeolocation']>>>, ParentType, ContextType>;
716
730
  status?: Resolver<Maybe<IResolversTypes['ProjectStatus']>, ParentType, ContextType>;
717
731
  ludoRankDifference?: Resolver<Maybe<IResolversTypes['LudoRankDifference']>, ParentType, ContextType>;
732
+ monitored?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
733
+ alertsSubscriptionIsActive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
734
+ originalMediaUrl?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
718
735
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
719
736
  };
720
737
  export type IProjectCommunityVoteResolvers<ContextType = any, ParentType extends IResolversParentTypes['ProjectCommunityVote'] = IResolversParentTypes['ProjectCommunityVote']> = {
@@ -928,7 +945,7 @@ export type IFetchProjectQueryVariables = Exact<{
928
945
  contract: Scalars['String'];
929
946
  }>;
930
947
  export type IFetchProjectQuery = {
931
- fetchProject?: Maybe<(Pick<IProject, 'blockchain' | 'contract' | 'name' | 'slug' | 'symbol' | 'website' | 'twitter' | 'type' | 'ludoRank' | 'investors' | 'holders' | 'volume' | 'marketCap' | 'liquidity' | 'price' | 'twitterFollowers' | 'twitterSentiment' | 'verified'> & {
948
+ fetchProject?: Maybe<(Pick<IProject, 'blockchain' | 'contract' | 'name' | 'slug' | 'symbol' | 'website' | 'twitter' | 'type' | 'ludoRank' | 'investors' | 'holders' | 'volume' | 'marketCap' | 'liquidity' | 'price' | 'twitterFollowers' | 'twitterSentiment' | 'verified' | 'originalMediaUrl'> & {
932
949
  status?: Maybe<Pick<IProjectStatus, 'monitored' | 'removalReason' | 'removalDate'>>;
933
950
  })>;
934
951
  };
@@ -936,7 +953,7 @@ export type IFetchProjectBySlugQueryVariables = Exact<{
936
953
  slug: Scalars['String'];
937
954
  }>;
938
955
  export type IFetchProjectBySlugQuery = {
939
- fetchProjectBySlug: (Pick<IProject, 'blockchain' | 'contract' | 'name' | 'slug' | 'symbol' | 'website' | 'twitter' | 'type' | 'ludoRank' | 'investors' | 'holders' | 'volume' | 'marketCap' | 'liquidity' | 'price' | 'twitterFollowers' | 'twitterSentiment' | 'verified' | 'userReaction' | 'communityVote' | 'hideDiagrams'> & {
956
+ fetchProjectBySlug: (Pick<IProject, 'blockchain' | 'contract' | 'name' | 'slug' | 'symbol' | 'website' | 'twitter' | 'type' | 'ludoRank' | 'investors' | 'holders' | 'volume' | 'marketCap' | 'liquidity' | 'price' | 'twitterFollowers' | 'twitterSentiment' | 'verified' | 'originalMediaUrl' | 'userReaction' | 'communityVote' | 'hideDiagrams'> & {
940
957
  status?: Maybe<Pick<IProjectStatus, 'monitored' | 'removalReason' | 'removalDate'>>;
941
958
  snapshots?: Maybe<Array<Maybe<Pick<IProjectSnapshot, 'date' | 'contract' | 'blockchain' | 'volume' | 'marketCap' | 'price' | 'liquidity' | 'xFollowers' | 'holders' | 'ludoRank'>>>>;
942
959
  reactions: Pick<IProjectReactions, 'likes' | 'neutrals' | 'dislikes'>;
@@ -953,7 +970,7 @@ export type IFetchProjectMonitoringQueryVariables = Exact<{
953
970
  export type IFetchProjectMonitoringQuery = {
954
971
  fetchProjectMonitoring?: Maybe<(Pick<IProjectMonitoring, 'userId' | 'monitorsFree' | 'monitorsLimit' | 'activeUntil'> & {
955
972
  monitors?: Maybe<Array<(Pick<IMonitor, 'userId' | 'blockchain' | 'contract'> & {
956
- project: (Pick<IProject, 'blockchain' | 'contract' | 'name' | 'slug' | 'symbol' | 'type' | 'ludoRank' | 'price' | 'verified'> & {
973
+ project: (Pick<IProject, 'blockchain' | 'contract' | 'name' | 'slug' | 'symbol' | 'type' | 'ludoRank' | 'price' | 'verified' | 'originalMediaUrl'> & {
957
974
  ludoRankDifference?: Maybe<Pick<ILudoRankDifference, 'hourDifference' | 'dayDifference' | 'weekDifference'>>;
958
975
  });
959
976
  })>>;
@@ -1019,6 +1019,7 @@ exports.FetchProjectDocument = (0, client_1.gql) `
1019
1019
  twitterFollowers
1020
1020
  twitterSentiment
1021
1021
  verified
1022
+ originalMediaUrl
1022
1023
  status {
1023
1024
  monitored
1024
1025
  removalReason
@@ -1073,6 +1074,7 @@ exports.FetchProjectBySlugDocument = (0, client_1.gql) `
1073
1074
  twitterFollowers
1074
1075
  twitterSentiment
1075
1076
  verified
1077
+ originalMediaUrl
1076
1078
  status {
1077
1079
  monitored
1078
1080
  removalReason
@@ -1230,6 +1232,7 @@ exports.FetchProjectMonitoringDocument = (0, client_1.gql) `
1230
1232
  ludoRank
1231
1233
  price
1232
1234
  verified
1235
+ originalMediaUrl
1233
1236
  ludoRankDifference {
1234
1237
  hourDifference
1235
1238
  dayDifference
@@ -329,6 +329,7 @@ export type IProject = {
329
329
  ludoRankDayDifference?: Maybe<Scalars['Float']>;
330
330
  ludoRankWeekDifference?: Maybe<Scalars['Float']>;
331
331
  price?: Maybe<Scalars['Float']>;
332
+ originalMediaUrl?: Maybe<Scalars['String']>;
332
333
  };
333
334
  export declare enum IProjectType {
334
335
  MemeCoins = "MEME_COINS",
@@ -988,6 +989,7 @@ export type IProjectResolvers<ContextType = any, ParentType extends IResolversPa
988
989
  ludoRankDayDifference?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
989
990
  ludoRankWeekDifference?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
990
991
  price?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
992
+ originalMediaUrl?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
991
993
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
992
994
  };
993
995
  export type IProjectsPageResolvers<ContextType = any, ParentType extends IResolversParentTypes['ProjectsPage'] = IResolversParentTypes['ProjectsPage']> = {
@@ -1290,7 +1292,7 @@ export type IFetchProjectsByTermQueryVariables = Exact<{
1290
1292
  pageSize: Scalars['Int'];
1291
1293
  }>;
1292
1294
  export type IFetchProjectsByTermQuery = {
1293
- fetchProjectsByTerm: Array<Pick<IProject, 'id' | 'name' | 'slug' | 'type' | 'ludoRank' | 'ludoRankHourDifference' | 'ludoRankDayDifference' | 'ludoRankWeekDifference' | 'price'>>;
1295
+ fetchProjectsByTerm: Array<Pick<IProject, 'id' | 'name' | 'slug' | 'type' | 'ludoRank' | 'ludoRankHourDifference' | 'ludoRankDayDifference' | 'ludoRankWeekDifference' | 'price' | 'originalMediaUrl'>>;
1294
1296
  };
1295
1297
  export type IFetchProjectsLeaderboardQueryVariables = Exact<{
1296
1298
  filter: IProjectsLeaderboardFilterInput;
@@ -1299,7 +1301,7 @@ export type IFetchProjectsLeaderboardQueryVariables = Exact<{
1299
1301
  }>;
1300
1302
  export type IFetchProjectsLeaderboardQuery = {
1301
1303
  fetchProjectsLeaderboard: {
1302
- projects: Array<Pick<IProject, 'id' | 'name' | 'slug' | 'type' | 'ludoRank' | 'ludoRankHourDifference' | 'ludoRankDayDifference' | 'ludoRankWeekDifference' | 'price'>>;
1304
+ projects: Array<Pick<IProject, 'id' | 'name' | 'slug' | 'type' | 'ludoRank' | 'ludoRankHourDifference' | 'ludoRankDayDifference' | 'ludoRankWeekDifference' | 'price' | 'originalMediaUrl'>>;
1303
1305
  nextPage?: Maybe<Pick<IPage, 'token' | 'num' | 'size' | 'elements' | 'lastNum'>>;
1304
1306
  };
1305
1307
  };
@@ -1311,7 +1313,7 @@ export type IFetchProjectsPageQueryVariables = Exact<{
1311
1313
  }>;
1312
1314
  export type IFetchProjectsPageQuery = {
1313
1315
  fetchProjectsPage: {
1314
- projects: Array<Pick<IProject, 'id' | 'name' | 'slug' | 'type' | 'ludoRank' | 'ludoRankHourDifference' | 'ludoRankDayDifference' | 'ludoRankWeekDifference' | 'price'>>;
1316
+ projects: Array<Pick<IProject, 'id' | 'name' | 'slug' | 'type' | 'ludoRank' | 'ludoRankHourDifference' | 'ludoRankDayDifference' | 'ludoRankWeekDifference' | 'price' | 'originalMediaUrl'>>;
1315
1317
  nextPage?: Maybe<Pick<IPage, 'token' | 'num' | 'size' | 'elements' | 'lastNum'>>;
1316
1318
  };
1317
1319
  };
@@ -1219,6 +1219,7 @@ exports.FetchProjectsByTermDocument = (0, client_1.gql) `
1219
1219
  ludoRankDayDifference
1220
1220
  ludoRankWeekDifference
1221
1221
  price
1222
+ originalMediaUrl
1222
1223
  }
1223
1224
  }
1224
1225
  `;
@@ -1260,6 +1261,7 @@ exports.FetchProjectsLeaderboardDocument = (0, client_1.gql) `
1260
1261
  ludoRankDayDifference
1261
1262
  ludoRankWeekDifference
1262
1263
  price
1264
+ originalMediaUrl
1263
1265
  }
1264
1266
  nextPage {
1265
1267
  token
@@ -1310,6 +1312,7 @@ exports.FetchProjectsPageDocument = (0, client_1.gql) `
1310
1312
  ludoRankDayDifference
1311
1313
  ludoRankWeekDifference
1312
1314
  price
1315
+ originalMediaUrl
1313
1316
  }
1314
1317
  nextPage {
1315
1318
  token
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ludo.ninja/api",
3
- "version": "3.2.0",
3
+ "version": "3.2.1",
4
4
  "main": "./build/index.js",
5
5
  "scripts": {
6
6
  "test": "jest",
@@ -19,6 +19,11 @@ export type Scalars = {
19
19
  };
20
20
 
21
21
 
22
+ export type IAlertsSubscriptionInput = {
23
+ blockchain: Scalars['String'];
24
+ contract: Scalars['String'];
25
+ };
26
+
22
27
  export type IBrand = {
23
28
  brandId: Scalars['ID'];
24
29
  name: Scalars['String'];
@@ -109,6 +114,7 @@ export type IMutation = {
109
114
  registerNewProject: IProjectRegistrationResult;
110
115
  reactOnProject: Scalars['Boolean'];
111
116
  activateMonitoring: Scalars['Boolean'];
117
+ subscribeOnAlerts: Scalars['Boolean'];
112
118
  };
113
119
 
114
120
 
@@ -210,6 +216,11 @@ export type IMutationActivateMonitoringArgs = {
210
216
  input: IMonitoringActivationInput;
211
217
  };
212
218
 
219
+
220
+ export type IMutationSubscribeOnAlertsArgs = {
221
+ input: IAlertsSubscriptionInput;
222
+ };
223
+
213
224
  export type IOpportunitiesPage = {
214
225
  currentOpportunities?: Maybe<Array<Maybe<IOpportunity>>>;
215
226
  similarOpportunities?: Maybe<Array<Maybe<IOpportunity>>>;
@@ -355,6 +366,9 @@ export type IProject = {
355
366
  holdersGeo?: Maybe<Array<Maybe<IHoldersGeolocation>>>;
356
367
  status?: Maybe<IProjectStatus>;
357
368
  ludoRankDifference?: Maybe<ILudoRankDifference>;
369
+ monitored?: Maybe<Scalars['Boolean']>;
370
+ alertsSubscriptionIsActive?: Maybe<Scalars['Boolean']>;
371
+ originalMediaUrl?: Maybe<Scalars['String']>;
358
372
  };
359
373
 
360
374
  export type IProjectCommunityVote = {
@@ -576,9 +590,10 @@ export type DirectiveResolverFn<TResult = {}, TParent = {}, TContext = {}, TArgs
576
590
 
577
591
  /** Mapping between all available schema types and the resolvers types */
578
592
  export type IResolversTypes = {
593
+ AlertsSubscriptionInput: IAlertsSubscriptionInput;
594
+ String: ResolverTypeWrapper<Scalars['String']>;
579
595
  Brand: ResolverTypeWrapper<IBrand>;
580
596
  ID: ResolverTypeWrapper<Scalars['ID']>;
581
- String: ResolverTypeWrapper<Scalars['String']>;
582
597
  Boolean: ResolverTypeWrapper<Scalars['Boolean']>;
583
598
  BrandInput: IBrandInput;
584
599
  Category: ResolverTypeWrapper<ICategory>;
@@ -615,9 +630,10 @@ export type IResolversTypes = {
615
630
 
616
631
  /** Mapping between all available schema types and the resolvers parents */
617
632
  export type IResolversParentTypes = {
633
+ AlertsSubscriptionInput: IAlertsSubscriptionInput;
634
+ String: Scalars['String'];
618
635
  Brand: IBrand;
619
636
  ID: Scalars['ID'];
620
- String: Scalars['String'];
621
637
  Boolean: Scalars['Boolean'];
622
638
  BrandInput: IBrandInput;
623
639
  Category: ICategory;
@@ -734,6 +750,7 @@ export type IMutationResolvers<ContextType = any, ParentType extends IResolversP
734
750
  registerNewProject?: Resolver<IResolversTypes['ProjectRegistrationResult'], ParentType, ContextType, RequireFields<IMutationRegisterNewProjectArgs, 'input'>>;
735
751
  reactOnProject?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationReactOnProjectArgs, 'input'>>;
736
752
  activateMonitoring?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationActivateMonitoringArgs, 'input'>>;
753
+ subscribeOnAlerts?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationSubscribeOnAlertsArgs, 'input'>>;
737
754
  };
738
755
 
739
756
  export type IOpportunitiesPageResolvers<ContextType = any, ParentType extends IResolversParentTypes['OpportunitiesPage'] = IResolversParentTypes['OpportunitiesPage']> = {
@@ -854,6 +871,9 @@ export type IProjectResolvers<ContextType = any, ParentType extends IResolversPa
854
871
  holdersGeo?: Resolver<Maybe<Array<Maybe<IResolversTypes['HoldersGeolocation']>>>, ParentType, ContextType>;
855
872
  status?: Resolver<Maybe<IResolversTypes['ProjectStatus']>, ParentType, ContextType>;
856
873
  ludoRankDifference?: Resolver<Maybe<IResolversTypes['LudoRankDifference']>, ParentType, ContextType>;
874
+ monitored?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
875
+ alertsSubscriptionIsActive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
876
+ originalMediaUrl?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
857
877
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
858
878
  };
859
879
 
@@ -1107,7 +1127,7 @@ export type IFetchProjectQueryVariables = Exact<{
1107
1127
 
1108
1128
 
1109
1129
  export type IFetchProjectQuery = { fetchProject?: Maybe<(
1110
- Pick<IProject, 'blockchain' | 'contract' | 'name' | 'slug' | 'symbol' | 'website' | 'twitter' | 'type' | 'ludoRank' | 'investors' | 'holders' | 'volume' | 'marketCap' | 'liquidity' | 'price' | 'twitterFollowers' | 'twitterSentiment' | 'verified'>
1130
+ Pick<IProject, 'blockchain' | 'contract' | 'name' | 'slug' | 'symbol' | 'website' | 'twitter' | 'type' | 'ludoRank' | 'investors' | 'holders' | 'volume' | 'marketCap' | 'liquidity' | 'price' | 'twitterFollowers' | 'twitterSentiment' | 'verified' | 'originalMediaUrl'>
1111
1131
  & { status?: Maybe<Pick<IProjectStatus, 'monitored' | 'removalReason' | 'removalDate'>> }
1112
1132
  )> };
1113
1133
 
@@ -1117,7 +1137,7 @@ export type IFetchProjectBySlugQueryVariables = Exact<{
1117
1137
 
1118
1138
 
1119
1139
  export type IFetchProjectBySlugQuery = { fetchProjectBySlug: (
1120
- Pick<IProject, 'blockchain' | 'contract' | 'name' | 'slug' | 'symbol' | 'website' | 'twitter' | 'type' | 'ludoRank' | 'investors' | 'holders' | 'volume' | 'marketCap' | 'liquidity' | 'price' | 'twitterFollowers' | 'twitterSentiment' | 'verified' | 'userReaction' | 'communityVote' | 'hideDiagrams'>
1140
+ Pick<IProject, 'blockchain' | 'contract' | 'name' | 'slug' | 'symbol' | 'website' | 'twitter' | 'type' | 'ludoRank' | 'investors' | 'holders' | 'volume' | 'marketCap' | 'liquidity' | 'price' | 'twitterFollowers' | 'twitterSentiment' | 'verified' | 'originalMediaUrl' | 'userReaction' | 'communityVote' | 'hideDiagrams'>
1121
1141
  & { status?: Maybe<Pick<IProjectStatus, 'monitored' | 'removalReason' | 'removalDate'>>, 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'>>>>, holdersGeo?: Maybe<Array<Maybe<Pick<IHoldersGeolocation, 'country' | 'holders' | 'percentage'>>>> }
1122
1142
  ) };
1123
1143
 
@@ -1129,7 +1149,7 @@ export type IFetchProjectMonitoringQuery = { fetchProjectMonitoring?: Maybe<(
1129
1149
  & { monitors?: Maybe<Array<(
1130
1150
  Pick<IMonitor, 'userId' | 'blockchain' | 'contract'>
1131
1151
  & { project: (
1132
- Pick<IProject, 'blockchain' | 'contract' | 'name' | 'slug' | 'symbol' | 'type' | 'ludoRank' | 'price' | 'verified'>
1152
+ Pick<IProject, 'blockchain' | 'contract' | 'name' | 'slug' | 'symbol' | 'type' | 'ludoRank' | 'price' | 'verified' | 'originalMediaUrl'>
1133
1153
  & { ludoRankDifference?: Maybe<Pick<ILudoRankDifference, 'hourDifference' | 'dayDifference' | 'weekDifference'>> }
1134
1154
  ) }
1135
1155
  )>> }
@@ -2168,6 +2188,7 @@ export const FetchProjectDocument = gql`
2168
2188
  twitterFollowers
2169
2189
  twitterSentiment
2170
2190
  verified
2191
+ originalMediaUrl
2171
2192
  status {
2172
2193
  monitored
2173
2194
  removalReason
@@ -2224,6 +2245,7 @@ export const FetchProjectBySlugDocument = gql`
2224
2245
  twitterFollowers
2225
2246
  twitterSentiment
2226
2247
  verified
2248
+ originalMediaUrl
2227
2249
  status {
2228
2250
  monitored
2229
2251
  removalReason
@@ -2383,6 +2405,7 @@ export const FetchProjectMonitoringDocument = gql`
2383
2405
  ludoRank
2384
2406
  price
2385
2407
  verified
2408
+ originalMediaUrl
2386
2409
  ludoRankDifference {
2387
2410
  hourDifference
2388
2411
  dayDifference
@@ -363,6 +363,7 @@ export type IProject = {
363
363
  ludoRankDayDifference?: Maybe<Scalars['Float']>;
364
364
  ludoRankWeekDifference?: Maybe<Scalars['Float']>;
365
365
  price?: Maybe<Scalars['Float']>;
366
+ originalMediaUrl?: Maybe<Scalars['String']>;
366
367
  };
367
368
 
368
369
  export enum IProjectType {
@@ -1166,6 +1167,7 @@ export type IProjectResolvers<ContextType = any, ParentType extends IResolversPa
1166
1167
  ludoRankDayDifference?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
1167
1168
  ludoRankWeekDifference?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
1168
1169
  price?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
1170
+ originalMediaUrl?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
1169
1171
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1170
1172
  };
1171
1173
 
@@ -1444,7 +1446,7 @@ export type IFetchProjectsByTermQueryVariables = Exact<{
1444
1446
  }>;
1445
1447
 
1446
1448
 
1447
- export type IFetchProjectsByTermQuery = { fetchProjectsByTerm: Array<Pick<IProject, 'id' | 'name' | 'slug' | 'type' | 'ludoRank' | 'ludoRankHourDifference' | 'ludoRankDayDifference' | 'ludoRankWeekDifference' | 'price'>> };
1449
+ export type IFetchProjectsByTermQuery = { fetchProjectsByTerm: Array<Pick<IProject, 'id' | 'name' | 'slug' | 'type' | 'ludoRank' | 'ludoRankHourDifference' | 'ludoRankDayDifference' | 'ludoRankWeekDifference' | 'price' | 'originalMediaUrl'>> };
1448
1450
 
1449
1451
  export type IFetchProjectsLeaderboardQueryVariables = Exact<{
1450
1452
  filter: IProjectsLeaderboardFilterInput;
@@ -1453,7 +1455,7 @@ export type IFetchProjectsLeaderboardQueryVariables = Exact<{
1453
1455
  }>;
1454
1456
 
1455
1457
 
1456
- export type IFetchProjectsLeaderboardQuery = { fetchProjectsLeaderboard: { projects: Array<Pick<IProject, 'id' | 'name' | 'slug' | 'type' | 'ludoRank' | 'ludoRankHourDifference' | 'ludoRankDayDifference' | 'ludoRankWeekDifference' | 'price'>>, nextPage?: Maybe<Pick<IPage, 'token' | 'num' | 'size' | 'elements' | 'lastNum'>> } };
1458
+ export type IFetchProjectsLeaderboardQuery = { fetchProjectsLeaderboard: { projects: Array<Pick<IProject, 'id' | 'name' | 'slug' | 'type' | 'ludoRank' | 'ludoRankHourDifference' | 'ludoRankDayDifference' | 'ludoRankWeekDifference' | 'price' | 'originalMediaUrl'>>, nextPage?: Maybe<Pick<IPage, 'token' | 'num' | 'size' | 'elements' | 'lastNum'>> } };
1457
1459
 
1458
1460
  export type IFetchProjectsPageQueryVariables = Exact<{
1459
1461
  term?: Maybe<Scalars['String']>;
@@ -1463,7 +1465,7 @@ export type IFetchProjectsPageQueryVariables = Exact<{
1463
1465
  }>;
1464
1466
 
1465
1467
 
1466
- export type IFetchProjectsPageQuery = { fetchProjectsPage: { projects: Array<Pick<IProject, 'id' | 'name' | 'slug' | 'type' | 'ludoRank' | 'ludoRankHourDifference' | 'ludoRankDayDifference' | 'ludoRankWeekDifference' | 'price'>>, nextPage?: Maybe<Pick<IPage, 'token' | 'num' | 'size' | 'elements' | 'lastNum'>> } };
1468
+ export type IFetchProjectsPageQuery = { fetchProjectsPage: { projects: Array<Pick<IProject, 'id' | 'name' | 'slug' | 'type' | 'ludoRank' | 'ludoRankHourDifference' | 'ludoRankDayDifference' | 'ludoRankWeekDifference' | 'price' | 'originalMediaUrl'>>, nextPage?: Maybe<Pick<IPage, 'token' | 'num' | 'size' | 'elements' | 'lastNum'>> } };
1467
1469
 
1468
1470
  export type IFetchProjectsSlugsQueryVariables = Exact<{ [key: string]: never; }>;
1469
1471
 
@@ -2730,6 +2732,7 @@ export const FetchProjectsByTermDocument = gql`
2730
2732
  ludoRankDayDifference
2731
2733
  ludoRankWeekDifference
2732
2734
  price
2735
+ originalMediaUrl
2733
2736
  }
2734
2737
  }
2735
2738
  `;
@@ -2773,6 +2776,7 @@ export const FetchProjectsLeaderboardDocument = gql`
2773
2776
  ludoRankDayDifference
2774
2777
  ludoRankWeekDifference
2775
2778
  price
2779
+ originalMediaUrl
2776
2780
  }
2777
2781
  nextPage {
2778
2782
  token
@@ -2825,6 +2829,7 @@ export const FetchProjectsPageDocument = gql`
2825
2829
  ludoRankDayDifference
2826
2830
  ludoRankWeekDifference
2827
2831
  price
2832
+ originalMediaUrl
2828
2833
  }
2829
2834
  nextPage {
2830
2835
  token