@ludo.ninja/api 3.0.68 → 3.0.70

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.
@@ -169,7 +169,7 @@ export type IAdminOpportunity = {
169
169
  parentOpportunityId?: Maybe<Scalars['String']>;
170
170
  };
171
171
  export type IAdminOpportunityInput = {
172
- projectId?: Maybe<Scalars['String']>;
172
+ projectId: Scalars['String'];
173
173
  categoryId: Scalars['String'];
174
174
  status: Scalars['String'];
175
175
  pushNotificationsEnabled: Scalars['Boolean'];
@@ -2245,7 +2245,7 @@ export type IFetchAdminAirdropsPageQueryVariables = Exact<{
2245
2245
  }>;
2246
2246
  export type IFetchAdminAirdropsPageQuery = {
2247
2247
  fetchAdminAirdropsPage: {
2248
- opportunities: Array<Pick<IAdminOpportunity, 'opportunityId' | 'name' | 'description' | 'projectName' | 'industry' | 'category' | 'ludoUrl' | 'projectUrl' | 'pushNotificationsEnabled' | 'status' | 'activeFrom' | 'activeUntil' | 'minXpLevel' | 'maxXpLevel' | 'minLudoRank' | 'maxLudoRank' | 'media' | 'minWalletValue' | 'maxWalletValue' | 'clicks' | 'views' | 'addedBy' | 'archived' | 'blockchains' | 'geolocations' | 'notificationDestinations' | 'type' | 'devicePlatforms' | 'participants' | 'hidden' | 'showcase' | 'participantsLimit' | 'availablePlacesForAirdrop' | 'encodePayload' | 'payloadTypes'>>;
2248
+ opportunities: Array<Pick<IAdminOpportunity, 'opportunityId' | 'name' | 'description' | 'projectName' | 'industry' | 'category' | 'ludoUrl' | 'projectUrl' | 'pushNotificationsEnabled' | 'status' | 'activeFrom' | 'activeUntil' | 'minXpLevel' | 'maxXpLevel' | 'minLudoRank' | 'maxLudoRank' | 'media' | 'minWalletValue' | 'maxWalletValue' | 'clicks' | 'views' | 'addedBy' | 'archived' | 'blockchains' | 'geolocations' | 'notificationDestinations' | 'type' | 'devicePlatforms' | 'participants' | 'hidden' | 'showcase' | 'participantsLimit' | 'availablePlacesForAirdrop' | 'encodePayload' | 'payloadTypes' | 'parentOpportunityId'>>;
2249
2249
  nextPage?: Maybe<Pick<IAdminPage, 'elements' | 'lastNum' | 'num' | 'size' | 'token'>>;
2250
2250
  };
2251
2251
  };
@@ -2307,7 +2307,7 @@ export type IFetchAdminOpportunitiesPageQueryVariables = Exact<{
2307
2307
  }>;
2308
2308
  export type IFetchAdminOpportunitiesPageQuery = {
2309
2309
  fetchAdminOpportunitiesPage: {
2310
- opportunities: Array<Pick<IAdminOpportunity, 'opportunityId' | 'name' | 'projectName' | 'industry' | 'category' | 'ludoUrl' | 'projectUrl' | 'pushNotificationsEnabled' | 'status' | 'media' | 'description' | 'activeFrom' | 'activeUntil' | 'minXpLevel' | 'maxXpLevel' | 'minLudoRank' | 'maxLudoRank' | 'minWalletValue' | 'maxWalletValue' | 'clicks' | 'views' | 'addedBy' | 'archived' | 'blockchains' | 'geolocations' | 'notificationDestinations' | 'type' | 'devicePlatforms' | 'participantsLimit' | 'availablePlacesForAirdrop' | 'encodePayload' | 'payloadTypes'>>;
2310
+ opportunities: Array<Pick<IAdminOpportunity, 'opportunityId' | 'name' | 'projectName' | 'industry' | 'category' | 'ludoUrl' | 'projectUrl' | 'pushNotificationsEnabled' | 'status' | 'media' | 'description' | 'activeFrom' | 'activeUntil' | 'minXpLevel' | 'maxXpLevel' | 'minLudoRank' | 'maxLudoRank' | 'minWalletValue' | 'maxWalletValue' | 'clicks' | 'views' | 'addedBy' | 'archived' | 'blockchains' | 'geolocations' | 'notificationDestinations' | 'type' | 'devicePlatforms' | 'participantsLimit' | 'availablePlacesForAirdrop' | 'encodePayload' | 'payloadTypes' | 'parentOpportunityId'>>;
2311
2311
  nextPage?: Maybe<Pick<IAdminPage, 'elements' | 'lastNum' | 'num' | 'size' | 'token'>>;
2312
2312
  };
2313
2313
  };
@@ -1480,6 +1480,7 @@ exports.FetchAdminAirdropsPageDocument = (0, client_1.gql) `
1480
1480
  availablePlacesForAirdrop
1481
1481
  encodePayload
1482
1482
  payloadTypes
1483
+ parentOpportunityId
1483
1484
  }
1484
1485
  nextPage {
1485
1486
  elements
@@ -1795,6 +1796,7 @@ exports.FetchAdminOpportunitiesPageDocument = (0, client_1.gql) `
1795
1796
  availablePlacesForAirdrop
1796
1797
  encodePayload
1797
1798
  payloadTypes
1799
+ parentOpportunityId
1798
1800
  }
1799
1801
  nextPage {
1800
1802
  elements
@@ -189,23 +189,22 @@ export type IOpportunityInput = {
189
189
  export declare enum IOpportunityType {
190
190
  TokenAirdrop = "TOKEN_AIRDROP",
191
191
  Marketing = "MARKETING",
192
- NftMinting = "NFT_MINTING"
192
+ NftMinting = "NFT_MINTING",
193
+ Event = "EVENT"
193
194
  }
194
195
  export type IOpportunityV2 = {
195
196
  opportunityId: Scalars['ID'];
196
- brandId: Scalars['String'];
197
+ projectId: Scalars['String'];
197
198
  categoryId: Scalars['String'];
198
199
  opportunityStatus: Scalars['String'];
199
200
  opportunityType: IOpportunityType;
200
201
  notificationType: Scalars['String'];
201
202
  name: Scalars['String'];
202
203
  description?: Maybe<Scalars['String']>;
203
- brandName?: Maybe<Scalars['String']>;
204
- brandDescription?: Maybe<Scalars['String']>;
205
- brandMedia?: Maybe<Scalars['String']>;
206
- brandUrl?: Maybe<Scalars['String']>;
207
- brandLudoUrl?: Maybe<Scalars['String']>;
208
- brandIndustry?: Maybe<Scalars['String']>;
204
+ projectBlockchain?: Maybe<Scalars['String']>;
205
+ projectContract?: Maybe<Scalars['String']>;
206
+ projectName?: Maybe<Scalars['String']>;
207
+ projectSlug?: Maybe<Scalars['String']>;
209
208
  categoryName?: Maybe<Scalars['String']>;
210
209
  ludoUrl?: Maybe<Scalars['String']>;
211
210
  projectUrl?: Maybe<Scalars['String']>;
@@ -228,12 +227,13 @@ export type IOpportunityV2 = {
228
227
  shareLink?: Maybe<Scalars['String']>;
229
228
  liked?: Maybe<Scalars['Boolean']>;
230
229
  geolocations?: Maybe<Array<Scalars['String']>>;
231
- brand: IBrand;
230
+ project: IProject;
232
231
  subscribed?: Maybe<Scalars['Boolean']>;
233
232
  participantsLimit?: Maybe<Scalars['Int']>;
234
233
  availablePlacesForAirdrop?: Maybe<Scalars['Int']>;
235
234
  };
236
235
  export type IProfileOpportunities = {
236
+ eventOpportunities?: Maybe<Array<Maybe<IOpportunityV2>>>;
237
237
  newOpportunities?: Maybe<Array<Maybe<IOpportunityV2>>>;
238
238
  recentOpportunities?: Maybe<Array<Maybe<IOpportunityV2>>>;
239
239
  };
@@ -255,11 +255,19 @@ export type IProject = {
255
255
  price?: Maybe<Scalars['Float']>;
256
256
  twitterFollowers?: Maybe<Scalars['Int']>;
257
257
  twitterSentiment?: Maybe<Scalars['Int']>;
258
+ communityVote?: Maybe<Scalars['Int']>;
258
259
  verified?: Maybe<Scalars['Boolean']>;
259
260
  snapshots?: Maybe<Array<Maybe<IProjectSnapshot>>>;
260
261
  reactions: IProjectReactions;
261
262
  userReaction?: Maybe<IReactionType>;
262
263
  votesGeo?: Maybe<Array<Maybe<IVotesGeolocation>>>;
264
+ airdrops?: Maybe<Array<Maybe<IOpportunityV2>>>;
265
+ opportunities?: Maybe<Array<Maybe<IOpportunityV2>>>;
266
+ communityVotes?: Maybe<Array<Maybe<IProjectCommunityVote>>>;
267
+ };
268
+ export type IProjectCommunityVote = {
269
+ calculatedAt: Scalars['Long'];
270
+ communityVote: Scalars['Int'];
263
271
  };
264
272
  export type IProjectReactionInput = {
265
273
  blockchain: Scalars['String'];
@@ -388,6 +396,7 @@ export type IResolversTypes = {
388
396
  OpportunityV2: ResolverTypeWrapper<IOpportunityV2>;
389
397
  ProfileOpportunities: ResolverTypeWrapper<IProfileOpportunities>;
390
398
  Project: ResolverTypeWrapper<IProject>;
399
+ ProjectCommunityVote: ResolverTypeWrapper<IProjectCommunityVote>;
391
400
  ProjectReactionInput: IProjectReactionInput;
392
401
  ProjectReactions: ResolverTypeWrapper<IProjectReactions>;
393
402
  ProjectRegistrationInput: IProjectRegistrationInput;
@@ -415,6 +424,7 @@ export type IResolversParentTypes = {
415
424
  OpportunityV2: IOpportunityV2;
416
425
  ProfileOpportunities: IProfileOpportunities;
417
426
  Project: IProject;
427
+ ProjectCommunityVote: IProjectCommunityVote;
418
428
  ProjectReactionInput: IProjectReactionInput;
419
429
  ProjectReactions: IProjectReactions;
420
430
  ProjectRegistrationInput: IProjectRegistrationInput;
@@ -508,19 +518,17 @@ export type IOpportunityResolvers<ContextType = any, ParentType extends IResolve
508
518
  };
509
519
  export type IOpportunityV2Resolvers<ContextType = any, ParentType extends IResolversParentTypes['OpportunityV2'] = IResolversParentTypes['OpportunityV2']> = {
510
520
  opportunityId?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
511
- brandId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
521
+ projectId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
512
522
  categoryId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
513
523
  opportunityStatus?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
514
524
  opportunityType?: Resolver<IResolversTypes['OpportunityType'], ParentType, ContextType>;
515
525
  notificationType?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
516
526
  name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
517
527
  description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
518
- brandName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
519
- brandDescription?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
520
- brandMedia?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
521
- brandUrl?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
522
- brandLudoUrl?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
523
- brandIndustry?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
528
+ projectBlockchain?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
529
+ projectContract?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
530
+ projectName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
531
+ projectSlug?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
524
532
  categoryName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
525
533
  ludoUrl?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
526
534
  projectUrl?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
@@ -543,13 +551,14 @@ export type IOpportunityV2Resolvers<ContextType = any, ParentType extends IResol
543
551
  shareLink?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
544
552
  liked?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
545
553
  geolocations?: Resolver<Maybe<Array<IResolversTypes['String']>>, ParentType, ContextType>;
546
- brand?: Resolver<IResolversTypes['Brand'], ParentType, ContextType>;
554
+ project?: Resolver<IResolversTypes['Project'], ParentType, ContextType>;
547
555
  subscribed?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
548
556
  participantsLimit?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
549
557
  availablePlacesForAirdrop?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
550
558
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
551
559
  };
552
560
  export type IProfileOpportunitiesResolvers<ContextType = any, ParentType extends IResolversParentTypes['ProfileOpportunities'] = IResolversParentTypes['ProfileOpportunities']> = {
561
+ eventOpportunities?: Resolver<Maybe<Array<Maybe<IResolversTypes['OpportunityV2']>>>, ParentType, ContextType>;
553
562
  newOpportunities?: Resolver<Maybe<Array<Maybe<IResolversTypes['OpportunityV2']>>>, ParentType, ContextType>;
554
563
  recentOpportunities?: Resolver<Maybe<Array<Maybe<IResolversTypes['OpportunityV2']>>>, ParentType, ContextType>;
555
564
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
@@ -572,11 +581,20 @@ export type IProjectResolvers<ContextType = any, ParentType extends IResolversPa
572
581
  price?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
573
582
  twitterFollowers?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
574
583
  twitterSentiment?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
584
+ communityVote?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
575
585
  verified?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
576
586
  snapshots?: Resolver<Maybe<Array<Maybe<IResolversTypes['ProjectSnapshot']>>>, ParentType, ContextType>;
577
587
  reactions?: Resolver<IResolversTypes['ProjectReactions'], ParentType, ContextType>;
578
588
  userReaction?: Resolver<Maybe<IResolversTypes['ReactionType']>, ParentType, ContextType>;
579
589
  votesGeo?: Resolver<Maybe<Array<Maybe<IResolversTypes['VotesGeolocation']>>>, ParentType, ContextType>;
590
+ airdrops?: Resolver<Maybe<Array<Maybe<IResolversTypes['OpportunityV2']>>>, ParentType, ContextType>;
591
+ opportunities?: Resolver<Maybe<Array<Maybe<IResolversTypes['OpportunityV2']>>>, ParentType, ContextType>;
592
+ communityVotes?: Resolver<Maybe<Array<Maybe<IResolversTypes['ProjectCommunityVote']>>>, ParentType, ContextType>;
593
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
594
+ };
595
+ export type IProjectCommunityVoteResolvers<ContextType = any, ParentType extends IResolversParentTypes['ProjectCommunityVote'] = IResolversParentTypes['ProjectCommunityVote']> = {
596
+ calculatedAt?: Resolver<IResolversTypes['Long'], ParentType, ContextType>;
597
+ communityVote?: Resolver<IResolversTypes['Int'], ParentType, ContextType>;
580
598
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
581
599
  };
582
600
  export type IProjectReactionsResolvers<ContextType = any, ParentType extends IResolversParentTypes['ProjectReactions'] = IResolversParentTypes['ProjectReactions']> = {
@@ -631,6 +649,7 @@ export type IResolvers<ContextType = any> = {
631
649
  OpportunityV2?: IOpportunityV2Resolvers<ContextType>;
632
650
  ProfileOpportunities?: IProfileOpportunitiesResolvers<ContextType>;
633
651
  Project?: IProjectResolvers<ContextType>;
652
+ ProjectCommunityVote?: IProjectCommunityVoteResolvers<ContextType>;
634
653
  ProjectReactions?: IProjectReactionsResolvers<ContextType>;
635
654
  ProjectSnapshot?: IProjectSnapshotResolvers<ContextType>;
636
655
  Query?: IQueryResolvers<ContextType>;
@@ -687,21 +706,21 @@ export type IFetchOpportunitiesByIdsQueryVariables = Exact<{
687
706
  opportunityIds: Array<Scalars['ID']>;
688
707
  }>;
689
708
  export type IFetchOpportunitiesByIdsQuery = {
690
- fetchOpportunitiesByIds: Array<Pick<IOpportunityV2, 'opportunityId' | 'brandId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'brandName' | 'brandDescription' | 'brandMedia' | 'brandUrl' | 'brandIndustry' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | 'minXpLevel' | 'maxXpLevel' | 'minRank' | 'maxRank' | 'media' | 'reportLink' | 'clicks' | 'views' | 'blockchain' | 'collection' | 'createdAt' | 'minWalletValue' | 'maxWalletValue' | 'shareLink' | 'liked' | 'participantsLimit' | 'availablePlacesForAirdrop' | 'brandLudoUrl'>>;
709
+ fetchOpportunitiesByIds: Array<Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'projectBlockchain' | 'projectContract' | 'projectName' | 'projectSlug' | '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'>>;
691
710
  };
692
711
  export type IFetchOpportunitiesForProfileQueryVariables = Exact<{
693
712
  [key: string]: never;
694
713
  }>;
695
714
  export type IFetchOpportunitiesForProfileQuery = {
696
- fetchOpportunitiesForProfile: Array<Maybe<Pick<IOpportunityV2, 'opportunityId' | 'brandId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'brandName' | 'brandDescription' | 'brandMedia' | 'brandUrl' | 'brandIndustry' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | 'minXpLevel' | 'maxXpLevel' | 'minRank' | 'maxRank' | 'media' | 'reportLink' | 'clicks' | 'views' | 'blockchain' | 'collection' | 'createdAt' | 'minWalletValue' | 'maxWalletValue' | 'shareLink' | 'liked' | 'participantsLimit' | 'availablePlacesForAirdrop' | 'brandLudoUrl'>>>;
715
+ fetchOpportunitiesForProfile: Array<Maybe<Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'projectBlockchain' | 'projectContract' | 'projectName' | 'projectSlug' | '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'>>>;
697
716
  };
698
717
  export type IFetchBrandBySlugQueryVariables = Exact<{
699
718
  slug: Scalars['String'];
700
719
  }>;
701
720
  export type IFetchBrandBySlugQuery = {
702
721
  fetchBrandBySlug: (Pick<IBrand, 'brandId' | 'name' | 'description' | 'industry' | 'link' | 'media' | 'archived' | 'addedBy' | 'matchingWords' | 'discord' | 'telegram' | 'twitter' | 'facebook' | 'linkedin' | 'youtube'> & {
703
- activeAirdrop?: Maybe<Pick<IOpportunityV2, 'opportunityId' | 'brandId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'brandName' | 'brandDescription' | 'brandMedia' | 'brandUrl' | 'brandIndustry' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | 'media' | 'reportLink' | 'shareLink' | 'participantsLimit' | 'availablePlacesForAirdrop' | 'brandLudoUrl' | 'blockchains'>>;
704
- otherOpportunities?: Maybe<Array<Maybe<Pick<IOpportunityV2, 'opportunityId' | 'brandId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'brandName' | 'brandDescription' | 'brandMedia' | 'brandUrl' | 'brandIndustry' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | 'media' | 'reportLink' | 'shareLink'>>>>;
722
+ activeAirdrop?: Maybe<Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'projectBlockchain' | 'projectContract' | 'projectName' | 'projectSlug' | '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'>>;
723
+ otherOpportunities?: Maybe<Array<Maybe<Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'projectBlockchain' | 'projectContract' | 'projectName' | 'projectSlug' | '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'>>>>;
705
724
  });
706
725
  };
707
726
  export type IFetchOpportunitiesQueryVariables = Exact<{
@@ -717,27 +736,29 @@ export type IFetchOpportunityQueryVariables = Exact<{
717
736
  opportunityId: Scalars['ID'];
718
737
  }>;
719
738
  export type IFetchOpportunityQuery = {
720
- fetchOpportunity: (Pick<IOpportunityV2, 'opportunityId' | 'brandId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'brandName' | 'subscribed' | 'brandDescription' | 'brandMedia' | 'brandUrl' | 'brandIndustry' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | 'minXpLevel' | 'maxXpLevel' | 'minRank' | 'maxRank' | 'media' | 'reportLink' | 'clicks' | 'views' | 'blockchain' | 'blockchains' | 'collection' | 'createdAt' | 'minWalletValue' | 'maxWalletValue' | 'shareLink' | 'liked' | 'geolocations' | 'participantsLimit' | 'availablePlacesForAirdrop' | 'brandLudoUrl'> & {
721
- brand: Pick<IBrand, 'brandId' | 'name' | 'description' | 'industry' | 'link' | 'media' | 'archived' | 'addedBy' | 'matchingWords' | 'discord' | 'telegram' | 'twitter' | 'facebook' | 'linkedin' | 'youtube'>;
722
- });
739
+ fetchOpportunity: Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'projectBlockchain' | 'projectContract' | 'projectName' | 'projectSlug' | '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'>;
723
740
  };
724
741
  export type IFetchProfileOpportunitiesQueryVariables = Exact<{
725
742
  [key: string]: never;
726
743
  }>;
727
744
  export type IFetchProfileOpportunitiesQuery = {
728
745
  fetchProfileOpportunities: {
729
- newOpportunities?: Maybe<Array<Maybe<Pick<IOpportunityV2, 'opportunityId' | 'brandId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'brandName' | 'brandDescription' | 'brandMedia' | 'brandUrl' | 'brandIndustry' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | 'minXpLevel' | 'maxXpLevel' | 'minRank' | 'maxRank' | 'media' | 'reportLink' | 'clicks' | 'views' | 'blockchain' | 'collection' | 'createdAt' | 'minWalletValue' | 'maxWalletValue' | 'shareLink' | 'liked' | 'participantsLimit' | 'availablePlacesForAirdrop' | 'brandLudoUrl'>>>>;
730
- recentOpportunities?: Maybe<Array<Maybe<Pick<IOpportunityV2, 'opportunityId' | 'brandId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'brandName' | 'brandDescription' | 'brandMedia' | 'brandUrl' | 'brandIndustry' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | 'minXpLevel' | 'maxXpLevel' | 'minRank' | 'maxRank' | 'media' | 'reportLink' | 'clicks' | 'views' | 'blockchain' | 'collection' | 'createdAt' | 'minWalletValue' | 'maxWalletValue' | 'shareLink' | 'liked' | 'participantsLimit' | 'availablePlacesForAirdrop' | 'brandLudoUrl'>>>>;
746
+ newOpportunities?: Maybe<Array<Maybe<Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'projectBlockchain' | 'projectContract' | 'projectName' | 'projectSlug' | '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'>>>>;
747
+ recentOpportunities?: Maybe<Array<Maybe<Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'projectBlockchain' | 'projectContract' | 'projectName' | 'projectSlug' | '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'>>>>;
748
+ eventOpportunities?: Maybe<Array<Maybe<Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'projectBlockchain' | 'projectContract' | 'projectName' | 'projectSlug' | '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'>>>>;
731
749
  };
732
750
  };
733
751
  export type IFetchProjectBySlugQueryVariables = Exact<{
734
752
  slug: Scalars['String'];
735
753
  }>;
736
754
  export type IFetchProjectBySlugQuery = {
737
- fetchProjectBySlug: (Pick<IProject, 'blockchain' | 'contract' | 'name' | 'slug' | 'symbol' | 'website' | 'twitter' | 'type' | 'ludoRank' | 'investors' | 'holders' | 'volume' | 'marketCap' | 'liquidity' | 'price' | 'twitterFollowers' | 'twitterSentiment' | 'verified' | 'userReaction'> & {
755
+ fetchProjectBySlug: (Pick<IProject, 'blockchain' | 'contract' | 'name' | 'slug' | 'symbol' | 'website' | 'twitter' | 'type' | 'ludoRank' | 'investors' | 'holders' | 'volume' | 'marketCap' | 'liquidity' | 'price' | 'twitterFollowers' | 'twitterSentiment' | 'verified' | 'userReaction' | 'communityVote'> & {
738
756
  snapshots?: Maybe<Array<Maybe<Pick<IProjectSnapshot, 'date' | 'contract' | 'blockchain' | 'volume' | 'marketCap' | 'price' | 'liquidity' | 'xFollowers' | 'holders' | 'ludoRank'>>>>;
739
757
  reactions: Pick<IProjectReactions, 'likes' | 'neutrals' | 'dislikes'>;
740
758
  votesGeo?: Maybe<Array<Maybe<Pick<IVotesGeolocation, 'country' | 'votes' | 'votesPercentage'>>>>;
759
+ 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'>>>>;
760
+ 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'>>>>;
761
+ communityVotes?: Maybe<Array<Maybe<Pick<IProjectCommunityVote, 'calculatedAt' | 'communityVote'>>>>;
741
762
  });
742
763
  };
743
764
  export declare const DislikeOpportunityDocument: Apollo.DocumentNode;