@ludo.ninja/api 3.2.59 → 3.2.60
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.
|
@@ -324,8 +324,6 @@ export type IOpportunityInput = {
|
|
|
324
324
|
projectUrl?: Maybe<Scalars['String']>;
|
|
325
325
|
activeFrom?: Maybe<Scalars['Long']>;
|
|
326
326
|
activeUntil?: Maybe<Scalars['Long']>;
|
|
327
|
-
minXpLevel?: Maybe<Scalars['Int']>;
|
|
328
|
-
maxXpLevel?: Maybe<Scalars['Int']>;
|
|
329
327
|
minRank?: Maybe<Scalars['Float']>;
|
|
330
328
|
maxRank?: Maybe<Scalars['Float']>;
|
|
331
329
|
reportLink?: Maybe<Scalars['String']>;
|
|
@@ -337,10 +335,14 @@ export type IOpportunityInput = {
|
|
|
337
335
|
};
|
|
338
336
|
|
|
339
337
|
export enum IOpportunityType {
|
|
338
|
+
/** deprecated start */
|
|
340
339
|
TokenAirdrop = 'TOKEN_AIRDROP',
|
|
341
340
|
Marketing = 'MARKETING',
|
|
342
341
|
NftMinting = 'NFT_MINTING',
|
|
343
|
-
Event = 'EVENT'
|
|
342
|
+
Event = 'EVENT',
|
|
343
|
+
/** deprecated end */
|
|
344
|
+
Airdrop = 'airdrop',
|
|
345
|
+
Eventinperson = 'eventinperson'
|
|
344
346
|
}
|
|
345
347
|
|
|
346
348
|
export type IOpportunityV2 = {
|
|
@@ -348,7 +350,7 @@ export type IOpportunityV2 = {
|
|
|
348
350
|
projectId?: Maybe<Scalars['String']>;
|
|
349
351
|
categoryId?: Maybe<Scalars['String']>;
|
|
350
352
|
opportunityStatus: Scalars['String'];
|
|
351
|
-
opportunityType:
|
|
353
|
+
opportunityType: Scalars['String'];
|
|
352
354
|
notificationType: Scalars['String'];
|
|
353
355
|
name: Scalars['String'];
|
|
354
356
|
description?: Maybe<Scalars['String']>;
|
|
@@ -361,8 +363,6 @@ export type IOpportunityV2 = {
|
|
|
361
363
|
projectUrl?: Maybe<Scalars['String']>;
|
|
362
364
|
activeFrom?: Maybe<Scalars['Long']>;
|
|
363
365
|
activeUntil?: Maybe<Scalars['Long']>;
|
|
364
|
-
minXpLevel?: Maybe<Scalars['Int']>;
|
|
365
|
-
maxXpLevel?: Maybe<Scalars['Int']>;
|
|
366
366
|
minRank?: Maybe<Scalars['Float']>;
|
|
367
367
|
maxRank?: Maybe<Scalars['Float']>;
|
|
368
368
|
media?: Maybe<Scalars['String']>;
|
|
@@ -542,11 +542,15 @@ export type IQuery = {
|
|
|
542
542
|
fetchOpportunitiesV2?: Maybe<Array<Maybe<IOpportunityV2>>>;
|
|
543
543
|
fetchOpportunitiesForProfile: Array<Maybe<IOpportunityV2>>;
|
|
544
544
|
fetchProfileOpportunities: IProfileOpportunities;
|
|
545
|
+
fetchProfileOpportunitiesV2: IProfileOpportunities;
|
|
545
546
|
fetchOpportunity: IOpportunityV2;
|
|
546
547
|
fetchOpportunitiesByIds: Array<IOpportunityV2>;
|
|
548
|
+
fetchOpportunitiesByIdsV2: Array<IOpportunityV2>;
|
|
547
549
|
fetchOpportunitiesForWallet?: Maybe<Array<Maybe<IOpportunityV2>>>;
|
|
550
|
+
fetchOpportunitiesForWalletV2?: Maybe<Array<Maybe<IOpportunityV2>>>;
|
|
548
551
|
fetchAirdropRegistrationsCsv: Scalars['String'];
|
|
549
552
|
fetchOpportunityBySlug: IOpportunityV2;
|
|
553
|
+
fetchOpportunityBySlugV2: IOpportunityV2;
|
|
550
554
|
fetchProjectBySlug: IProject;
|
|
551
555
|
fetchProject?: Maybe<IProject>;
|
|
552
556
|
fetchProjectMonitoring?: Maybe<IProjectMonitoring>;
|
|
@@ -585,12 +589,23 @@ export type IQueryFetchOpportunitiesByIdsArgs = {
|
|
|
585
589
|
};
|
|
586
590
|
|
|
587
591
|
|
|
592
|
+
export type IQueryFetchOpportunitiesByIdsV2Args = {
|
|
593
|
+
opportunityIds: Array<Scalars['ID']>;
|
|
594
|
+
};
|
|
595
|
+
|
|
596
|
+
|
|
588
597
|
export type IQueryFetchOpportunitiesForWalletArgs = {
|
|
589
598
|
blockchain: Scalars['String'];
|
|
590
599
|
wallet: Scalars['String'];
|
|
591
600
|
};
|
|
592
601
|
|
|
593
602
|
|
|
603
|
+
export type IQueryFetchOpportunitiesForWalletV2Args = {
|
|
604
|
+
blockchain: Scalars['String'];
|
|
605
|
+
wallet: Scalars['String'];
|
|
606
|
+
};
|
|
607
|
+
|
|
608
|
+
|
|
594
609
|
export type IQueryFetchAirdropRegistrationsCsvArgs = {
|
|
595
610
|
opportunityId: Scalars['ID'];
|
|
596
611
|
};
|
|
@@ -601,6 +616,11 @@ export type IQueryFetchOpportunityBySlugArgs = {
|
|
|
601
616
|
};
|
|
602
617
|
|
|
603
618
|
|
|
619
|
+
export type IQueryFetchOpportunityBySlugV2Args = {
|
|
620
|
+
slug: Scalars['String'];
|
|
621
|
+
};
|
|
622
|
+
|
|
623
|
+
|
|
604
624
|
export type IQueryFetchProjectBySlugArgs = {
|
|
605
625
|
slug: Scalars['String'];
|
|
606
626
|
};
|
|
@@ -956,7 +976,7 @@ export type IOpportunityV2Resolvers<ContextType = any, ParentType extends IResol
|
|
|
956
976
|
projectId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
957
977
|
categoryId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
958
978
|
opportunityStatus?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
959
|
-
opportunityType?: Resolver<IResolversTypes['
|
|
979
|
+
opportunityType?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
960
980
|
notificationType?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
961
981
|
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
962
982
|
description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
@@ -969,8 +989,6 @@ export type IOpportunityV2Resolvers<ContextType = any, ParentType extends IResol
|
|
|
969
989
|
projectUrl?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
970
990
|
activeFrom?: Resolver<Maybe<IResolversTypes['Long']>, ParentType, ContextType>;
|
|
971
991
|
activeUntil?: Resolver<Maybe<IResolversTypes['Long']>, ParentType, ContextType>;
|
|
972
|
-
minXpLevel?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
973
|
-
maxXpLevel?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
974
992
|
minRank?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
975
993
|
maxRank?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
976
994
|
media?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
@@ -1124,11 +1142,15 @@ export type IQueryResolvers<ContextType = any, ParentType extends IResolversPare
|
|
|
1124
1142
|
fetchOpportunitiesV2?: Resolver<Maybe<Array<Maybe<IResolversTypes['OpportunityV2']>>>, ParentType, ContextType>;
|
|
1125
1143
|
fetchOpportunitiesForProfile?: Resolver<Array<Maybe<IResolversTypes['OpportunityV2']>>, ParentType, ContextType>;
|
|
1126
1144
|
fetchProfileOpportunities?: Resolver<IResolversTypes['ProfileOpportunities'], ParentType, ContextType>;
|
|
1145
|
+
fetchProfileOpportunitiesV2?: Resolver<IResolversTypes['ProfileOpportunities'], ParentType, ContextType>;
|
|
1127
1146
|
fetchOpportunity?: Resolver<IResolversTypes['OpportunityV2'], ParentType, ContextType, RequireFields<IQueryFetchOpportunityArgs, 'opportunityId'>>;
|
|
1128
1147
|
fetchOpportunitiesByIds?: Resolver<Array<IResolversTypes['OpportunityV2']>, ParentType, ContextType, RequireFields<IQueryFetchOpportunitiesByIdsArgs, 'opportunityIds'>>;
|
|
1148
|
+
fetchOpportunitiesByIdsV2?: Resolver<Array<IResolversTypes['OpportunityV2']>, ParentType, ContextType, RequireFields<IQueryFetchOpportunitiesByIdsV2Args, 'opportunityIds'>>;
|
|
1129
1149
|
fetchOpportunitiesForWallet?: Resolver<Maybe<Array<Maybe<IResolversTypes['OpportunityV2']>>>, ParentType, ContextType, RequireFields<IQueryFetchOpportunitiesForWalletArgs, 'blockchain' | 'wallet'>>;
|
|
1150
|
+
fetchOpportunitiesForWalletV2?: Resolver<Maybe<Array<Maybe<IResolversTypes['OpportunityV2']>>>, ParentType, ContextType, RequireFields<IQueryFetchOpportunitiesForWalletV2Args, 'blockchain' | 'wallet'>>;
|
|
1130
1151
|
fetchAirdropRegistrationsCsv?: Resolver<IResolversTypes['String'], ParentType, ContextType, RequireFields<IQueryFetchAirdropRegistrationsCsvArgs, 'opportunityId'>>;
|
|
1131
1152
|
fetchOpportunityBySlug?: Resolver<IResolversTypes['OpportunityV2'], ParentType, ContextType, RequireFields<IQueryFetchOpportunityBySlugArgs, 'slug'>>;
|
|
1153
|
+
fetchOpportunityBySlugV2?: Resolver<IResolversTypes['OpportunityV2'], ParentType, ContextType, RequireFields<IQueryFetchOpportunityBySlugV2Args, 'slug'>>;
|
|
1132
1154
|
fetchProjectBySlug?: Resolver<IResolversTypes['Project'], ParentType, ContextType, RequireFields<IQueryFetchProjectBySlugArgs, 'slug'>>;
|
|
1133
1155
|
fetchProject?: Resolver<Maybe<IResolversTypes['Project']>, ParentType, ContextType, RequireFields<IQueryFetchProjectArgs, 'blockchain' | 'contract'>>;
|
|
1134
1156
|
fetchProjectMonitoring?: Resolver<Maybe<IResolversTypes['ProjectMonitoring']>, ParentType, ContextType, RequireFields<IQueryFetchProjectMonitoringArgs, 'userId'>>;
|
|
@@ -1306,12 +1328,12 @@ export type IFetchOpportunitiesByIdsQueryVariables = Exact<{
|
|
|
1306
1328
|
}>;
|
|
1307
1329
|
|
|
1308
1330
|
|
|
1309
|
-
export type IFetchOpportunitiesByIdsQuery = { fetchOpportunitiesByIds: Array<Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'projectBlockchain' | 'projectContract' | 'projectName' | 'projectSlug' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | '
|
|
1331
|
+
export type IFetchOpportunitiesByIdsQuery = { fetchOpportunitiesByIds: Array<Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'projectBlockchain' | 'projectContract' | 'projectName' | 'projectSlug' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | 'minRank' | 'maxRank' | 'media' | 'reportLink' | 'clicks' | 'views' | 'blockchain' | 'blockchains' | 'collection' | 'createdAt' | 'minWalletValue' | 'maxWalletValue' | 'shareLink' | 'liked' | 'geolocations' | 'subscribed' | 'participantsLimit' | 'availablePlacesForAirdrop' | 'slug'>> };
|
|
1310
1332
|
|
|
1311
1333
|
export type IFetchOpportunitiesForProfileQueryVariables = Exact<{ [key: string]: never; }>;
|
|
1312
1334
|
|
|
1313
1335
|
|
|
1314
|
-
export type IFetchOpportunitiesForProfileQuery = { fetchOpportunitiesForProfile: Array<Maybe<Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'projectBlockchain' | 'projectContract' | 'projectName' | 'projectSlug' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | '
|
|
1336
|
+
export type IFetchOpportunitiesForProfileQuery = { fetchOpportunitiesForProfile: Array<Maybe<Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'projectBlockchain' | 'projectContract' | 'projectName' | 'projectSlug' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | 'minRank' | 'maxRank' | 'media' | 'reportLink' | 'clicks' | 'views' | 'blockchain' | 'blockchains' | 'collection' | 'createdAt' | 'minWalletValue' | 'maxWalletValue' | 'shareLink' | 'liked' | 'geolocations' | 'subscribed' | 'participantsLimit' | 'availablePlacesForAirdrop' | 'slug'>>> };
|
|
1315
1337
|
|
|
1316
1338
|
export type IFetchBrandBySlugQueryVariables = Exact<{
|
|
1317
1339
|
slug: Scalars['String'];
|
|
@@ -1320,7 +1342,7 @@ export type IFetchBrandBySlugQueryVariables = Exact<{
|
|
|
1320
1342
|
|
|
1321
1343
|
export type IFetchBrandBySlugQuery = { fetchBrandBySlug: (
|
|
1322
1344
|
Pick<IBrand, 'brandId' | 'name' | 'description' | 'industry' | 'link' | 'media' | 'archived' | 'addedBy' | 'matchingWords' | 'discord' | 'telegram' | 'twitter' | 'facebook' | 'linkedin' | 'youtube'>
|
|
1323
|
-
& { activeAirdrop?: Maybe<Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'projectBlockchain' | 'projectContract' | 'projectName' | 'projectSlug' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | '
|
|
1345
|
+
& { activeAirdrop?: Maybe<Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'projectBlockchain' | 'projectContract' | 'projectName' | 'projectSlug' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | 'minRank' | 'maxRank' | 'media' | 'reportLink' | 'clicks' | 'views' | 'blockchain' | 'blockchains' | 'collection' | 'createdAt' | 'minWalletValue' | 'maxWalletValue' | 'shareLink' | 'liked' | 'geolocations' | 'subscribed' | 'participantsLimit' | 'availablePlacesForAirdrop'>>, otherOpportunities?: Maybe<Array<Maybe<Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'projectBlockchain' | 'projectContract' | 'projectName' | 'projectSlug' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | 'minRank' | 'maxRank' | 'media' | 'reportLink' | 'clicks' | 'views' | 'blockchain' | 'blockchains' | 'collection' | 'createdAt' | 'minWalletValue' | 'maxWalletValue' | 'shareLink' | 'liked' | 'geolocations' | 'subscribed' | 'participantsLimit' | 'availablePlacesForAirdrop'>>>> }
|
|
1324
1346
|
) };
|
|
1325
1347
|
|
|
1326
1348
|
export type IFetchMonitorsCounterQueryVariables = Exact<{ [key: string]: never; }>;
|
|
@@ -1340,7 +1362,7 @@ export type IFetchOpportunityQueryVariables = Exact<{
|
|
|
1340
1362
|
}>;
|
|
1341
1363
|
|
|
1342
1364
|
|
|
1343
|
-
export type IFetchOpportunityQuery = { fetchOpportunity: Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'projectBlockchain' | 'projectContract' | 'projectName' | 'projectSlug' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | '
|
|
1365
|
+
export type IFetchOpportunityQuery = { fetchOpportunity: Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'projectBlockchain' | 'projectContract' | 'projectName' | 'projectSlug' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | 'minRank' | 'maxRank' | 'media' | 'reportLink' | 'clicks' | 'views' | 'blockchain' | 'blockchains' | 'collection' | 'createdAt' | 'minWalletValue' | 'maxWalletValue' | 'shareLink' | 'liked' | 'geolocations' | 'subscribed' | 'participantsLimit' | 'availablePlacesForAirdrop' | 'slug'> };
|
|
1344
1366
|
|
|
1345
1367
|
export type IFetchOpportunityBySlugQueryVariables = Exact<{
|
|
1346
1368
|
slug: Scalars['String'];
|
|
@@ -1348,7 +1370,7 @@ export type IFetchOpportunityBySlugQueryVariables = Exact<{
|
|
|
1348
1370
|
|
|
1349
1371
|
|
|
1350
1372
|
export type IFetchOpportunityBySlugQuery = { fetchOpportunityBySlug: (
|
|
1351
|
-
Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'projectBlockchain' | 'projectContract' | 'projectName' | 'projectSlug' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | '
|
|
1373
|
+
Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'projectBlockchain' | 'projectContract' | 'projectName' | 'projectSlug' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | 'minRank' | 'maxRank' | 'media' | 'reportLink' | 'clicks' | 'views' | 'blockchain' | 'blockchains' | 'collection' | 'createdAt' | 'minWalletValue' | 'maxWalletValue' | 'shareLink' | 'liked' | 'geolocations' | 'subscribed' | 'participantsLimit' | 'availablePlacesForAirdrop' | 'slug'>
|
|
1352
1374
|
& { project?: Maybe<Pick<IProject, 'symbol' | 'name' | 'slug'>> }
|
|
1353
1375
|
) };
|
|
1354
1376
|
|
|
@@ -1356,13 +1378,13 @@ export type IFetchProfileOpportunitiesQueryVariables = Exact<{ [key: string]: ne
|
|
|
1356
1378
|
|
|
1357
1379
|
|
|
1358
1380
|
export type IFetchProfileOpportunitiesQuery = { fetchProfileOpportunities: { newOpportunities?: Maybe<Array<Maybe<(
|
|
1359
|
-
Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'projectBlockchain' | 'projectContract' | 'projectName' | 'projectSlug' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | '
|
|
1381
|
+
Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'projectBlockchain' | 'projectContract' | 'projectName' | 'projectSlug' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | 'minRank' | 'maxRank' | 'media' | 'reportLink' | 'clicks' | 'views' | 'blockchain' | 'blockchains' | 'collection' | 'createdAt' | 'minWalletValue' | 'maxWalletValue' | 'shareLink' | 'liked' | 'geolocations' | 'subscribed' | 'participantsLimit' | 'availablePlacesForAirdrop' | 'slug'>
|
|
1360
1382
|
& { project?: Maybe<Pick<IProject, 'name' | 'contract' | 'symbol' | 'originalMediaUrl' | 'mediaUrl'>> }
|
|
1361
1383
|
)>>>, recentOpportunities?: Maybe<Array<Maybe<(
|
|
1362
|
-
Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'projectBlockchain' | 'projectContract' | 'projectName' | 'projectSlug' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | '
|
|
1384
|
+
Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'projectBlockchain' | 'projectContract' | 'projectName' | 'projectSlug' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | 'minRank' | 'maxRank' | 'media' | 'reportLink' | 'clicks' | 'views' | 'blockchain' | 'blockchains' | 'collection' | 'createdAt' | 'minWalletValue' | 'maxWalletValue' | 'shareLink' | 'liked' | 'geolocations' | 'subscribed' | 'participantsLimit' | 'availablePlacesForAirdrop' | 'slug'>
|
|
1363
1385
|
& { project?: Maybe<Pick<IProject, 'name' | 'contract' | 'symbol' | 'originalMediaUrl' | 'mediaUrl'>> }
|
|
1364
1386
|
)>>>, eventOpportunities?: Maybe<Array<Maybe<(
|
|
1365
|
-
Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'projectBlockchain' | 'projectContract' | 'projectName' | 'projectSlug' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | '
|
|
1387
|
+
Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'projectBlockchain' | 'projectContract' | 'projectName' | 'projectSlug' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | 'minRank' | 'maxRank' | 'media' | 'reportLink' | 'clicks' | 'views' | 'blockchain' | 'blockchains' | 'collection' | 'createdAt' | 'minWalletValue' | 'maxWalletValue' | 'shareLink' | 'liked' | 'geolocations' | 'subscribed' | 'participantsLimit' | 'availablePlacesForAirdrop' | 'slug'>
|
|
1366
1388
|
& { project?: Maybe<Pick<IProject, 'name' | 'contract' | 'symbol' | 'originalMediaUrl' | 'mediaUrl'>> }
|
|
1367
1389
|
)>>> } };
|
|
1368
1390
|
|
|
@@ -1401,10 +1423,10 @@ export type IFetchProjectBySlugQueryVariables = Exact<{
|
|
|
1401
1423
|
export type IFetchProjectBySlugQuery = { fetchProjectBySlug: (
|
|
1402
1424
|
Pick<IProject, 'blockchain' | 'contract' | 'name' | 'slug' | 'symbol' | 'website' | 'twitter' | 'type' | 'ludoRank' | 'investors' | 'holders' | 'volume' | 'marketCap' | 'liquidity' | 'price' | 'twitterFollowers' | 'twitterSentiment' | 'verified' | 'mediaUrl' | 'originalMediaUrl' | 'alertsSubscriptionIsActive' | 'monitored' | 'airdropUpdatesSubscriptionIsActive' | 'hasActualSnapshots' | 'shareLink' | 'userReaction' | 'communityVote' | 'hideDiagrams'>
|
|
1403
1425
|
& { publisher?: Maybe<Pick<IPublisher, 'userId' | 'username' | 'userpic' | 'rank'>>, status?: Maybe<Pick<IProjectStatus, 'monitored' | 'removalReason' | 'removalDate'>>, snapshots?: Maybe<Array<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<(
|
|
1404
|
-
Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | '
|
|
1426
|
+
Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | 'minRank' | 'maxRank' | 'media' | 'reportLink' | 'clicks' | 'views' | 'blockchain' | 'blockchains' | 'collection' | 'createdAt' | 'minWalletValue' | 'maxWalletValue' | 'shareLink' | 'liked' | 'geolocations' | 'subscribed' | 'participantsLimit' | 'availablePlacesForAirdrop'>
|
|
1405
1427
|
& { project?: Maybe<Pick<IProject, 'name' | 'contract' | 'symbol' | 'originalMediaUrl' | 'mediaUrl'>> }
|
|
1406
1428
|
)>>>, opportunities?: Maybe<Array<Maybe<(
|
|
1407
|
-
Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | '
|
|
1429
|
+
Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | 'minRank' | 'maxRank' | 'media' | 'reportLink' | 'clicks' | 'views' | 'blockchain' | 'blockchains' | 'collection' | 'createdAt' | 'minWalletValue' | 'maxWalletValue' | 'shareLink' | 'liked' | 'geolocations' | 'subscribed' | 'participantsLimit' | 'availablePlacesForAirdrop'>
|
|
1408
1430
|
& { project?: Maybe<Pick<IProject, 'name' | 'symbol' | 'originalMediaUrl' | 'mediaUrl'>> }
|
|
1409
1431
|
)>>>, communityVotes?: Maybe<Array<Maybe<Pick<IProjectCommunityVote, 'calculatedAt' | 'communityVote' | 'likesRating' | 'neutralsRating' | 'dislikesRating'>>>>, holdersGeo?: Maybe<Array<Maybe<Pick<IHoldersGeolocation, 'country' | 'holders' | 'percentage'>>>>, communityVoteDetails?: Maybe<Array<(
|
|
1410
1432
|
Pick<ICommunityVoteDetails, 'projectId' | 'voteType' | 'avgUserRank' | 'avgWealth' | 'avgUserXps'>
|
|
@@ -1981,8 +2003,6 @@ export const FetchOpportunitiesByIdsDocument = gql`
|
|
|
1981
2003
|
projectUrl
|
|
1982
2004
|
activeFrom
|
|
1983
2005
|
activeUntil
|
|
1984
|
-
minXpLevel
|
|
1985
|
-
maxXpLevel
|
|
1986
2006
|
minRank
|
|
1987
2007
|
maxRank
|
|
1988
2008
|
media
|
|
@@ -2051,8 +2071,6 @@ export const FetchOpportunitiesForProfileDocument = gql`
|
|
|
2051
2071
|
projectUrl
|
|
2052
2072
|
activeFrom
|
|
2053
2073
|
activeUntil
|
|
2054
|
-
minXpLevel
|
|
2055
|
-
maxXpLevel
|
|
2056
2074
|
minRank
|
|
2057
2075
|
maxRank
|
|
2058
2076
|
media
|
|
@@ -2136,8 +2154,6 @@ export const FetchBrandBySlugDocument = gql`
|
|
|
2136
2154
|
projectUrl
|
|
2137
2155
|
activeFrom
|
|
2138
2156
|
activeUntil
|
|
2139
|
-
minXpLevel
|
|
2140
|
-
maxXpLevel
|
|
2141
2157
|
minRank
|
|
2142
2158
|
maxRank
|
|
2143
2159
|
media
|
|
@@ -2175,8 +2191,6 @@ export const FetchBrandBySlugDocument = gql`
|
|
|
2175
2191
|
projectUrl
|
|
2176
2192
|
activeFrom
|
|
2177
2193
|
activeUntil
|
|
2178
|
-
minXpLevel
|
|
2179
|
-
maxXpLevel
|
|
2180
2194
|
minRank
|
|
2181
2195
|
maxRank
|
|
2182
2196
|
media
|
|
@@ -2349,8 +2363,6 @@ export const FetchOpportunityDocument = gql`
|
|
|
2349
2363
|
projectUrl
|
|
2350
2364
|
activeFrom
|
|
2351
2365
|
activeUntil
|
|
2352
|
-
minXpLevel
|
|
2353
|
-
maxXpLevel
|
|
2354
2366
|
minRank
|
|
2355
2367
|
maxRank
|
|
2356
2368
|
media
|
|
@@ -2419,8 +2431,6 @@ export const FetchOpportunityBySlugDocument = gql`
|
|
|
2419
2431
|
projectUrl
|
|
2420
2432
|
activeFrom
|
|
2421
2433
|
activeUntil
|
|
2422
|
-
minXpLevel
|
|
2423
|
-
maxXpLevel
|
|
2424
2434
|
minRank
|
|
2425
2435
|
maxRank
|
|
2426
2436
|
media
|
|
@@ -2502,8 +2512,6 @@ export const FetchProfileOpportunitiesDocument = gql`
|
|
|
2502
2512
|
projectUrl
|
|
2503
2513
|
activeFrom
|
|
2504
2514
|
activeUntil
|
|
2505
|
-
minXpLevel
|
|
2506
|
-
maxXpLevel
|
|
2507
2515
|
minRank
|
|
2508
2516
|
maxRank
|
|
2509
2517
|
media
|
|
@@ -2549,8 +2557,6 @@ export const FetchProfileOpportunitiesDocument = gql`
|
|
|
2549
2557
|
projectUrl
|
|
2550
2558
|
activeFrom
|
|
2551
2559
|
activeUntil
|
|
2552
|
-
minXpLevel
|
|
2553
|
-
maxXpLevel
|
|
2554
2560
|
minRank
|
|
2555
2561
|
maxRank
|
|
2556
2562
|
media
|
|
@@ -2596,8 +2602,6 @@ export const FetchProfileOpportunitiesDocument = gql`
|
|
|
2596
2602
|
projectUrl
|
|
2597
2603
|
activeFrom
|
|
2598
2604
|
activeUntil
|
|
2599
|
-
minXpLevel
|
|
2600
|
-
maxXpLevel
|
|
2601
2605
|
minRank
|
|
2602
2606
|
maxRank
|
|
2603
2607
|
media
|
|
@@ -2839,8 +2843,6 @@ export const FetchProjectBySlugDocument = gql`
|
|
|
2839
2843
|
projectUrl
|
|
2840
2844
|
activeFrom
|
|
2841
2845
|
activeUntil
|
|
2842
|
-
minXpLevel
|
|
2843
|
-
maxXpLevel
|
|
2844
2846
|
minRank
|
|
2845
2847
|
maxRank
|
|
2846
2848
|
media
|
|
@@ -2881,8 +2883,6 @@ export const FetchProjectBySlugDocument = gql`
|
|
|
2881
2883
|
projectUrl
|
|
2882
2884
|
activeFrom
|
|
2883
2885
|
activeUntil
|
|
2884
|
-
minXpLevel
|
|
2885
|
-
maxXpLevel
|
|
2886
2886
|
minRank
|
|
2887
2887
|
maxRank
|
|
2888
2888
|
media
|