@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.
|
@@ -264,8 +264,6 @@ export type IOpportunityInput = {
|
|
|
264
264
|
projectUrl?: Maybe<Scalars['String']>;
|
|
265
265
|
activeFrom?: Maybe<Scalars['Long']>;
|
|
266
266
|
activeUntil?: Maybe<Scalars['Long']>;
|
|
267
|
-
minXpLevel?: Maybe<Scalars['Int']>;
|
|
268
|
-
maxXpLevel?: Maybe<Scalars['Int']>;
|
|
269
267
|
minRank?: Maybe<Scalars['Float']>;
|
|
270
268
|
maxRank?: Maybe<Scalars['Float']>;
|
|
271
269
|
reportLink?: Maybe<Scalars['String']>;
|
|
@@ -276,17 +274,21 @@ export type IOpportunityInput = {
|
|
|
276
274
|
geolocations?: Maybe<Array<Scalars['String']>>;
|
|
277
275
|
};
|
|
278
276
|
export declare enum IOpportunityType {
|
|
277
|
+
/** deprecated start */
|
|
279
278
|
TokenAirdrop = "TOKEN_AIRDROP",
|
|
280
279
|
Marketing = "MARKETING",
|
|
281
280
|
NftMinting = "NFT_MINTING",
|
|
282
|
-
Event = "EVENT"
|
|
281
|
+
Event = "EVENT",
|
|
282
|
+
/** deprecated end */
|
|
283
|
+
Airdrop = "airdrop",
|
|
284
|
+
Eventinperson = "eventinperson"
|
|
283
285
|
}
|
|
284
286
|
export type IOpportunityV2 = {
|
|
285
287
|
opportunityId: Scalars['ID'];
|
|
286
288
|
projectId?: Maybe<Scalars['String']>;
|
|
287
289
|
categoryId?: Maybe<Scalars['String']>;
|
|
288
290
|
opportunityStatus: Scalars['String'];
|
|
289
|
-
opportunityType:
|
|
291
|
+
opportunityType: Scalars['String'];
|
|
290
292
|
notificationType: Scalars['String'];
|
|
291
293
|
name: Scalars['String'];
|
|
292
294
|
description?: Maybe<Scalars['String']>;
|
|
@@ -299,8 +301,6 @@ export type IOpportunityV2 = {
|
|
|
299
301
|
projectUrl?: Maybe<Scalars['String']>;
|
|
300
302
|
activeFrom?: Maybe<Scalars['Long']>;
|
|
301
303
|
activeUntil?: Maybe<Scalars['Long']>;
|
|
302
|
-
minXpLevel?: Maybe<Scalars['Int']>;
|
|
303
|
-
maxXpLevel?: Maybe<Scalars['Int']>;
|
|
304
304
|
minRank?: Maybe<Scalars['Float']>;
|
|
305
305
|
maxRank?: Maybe<Scalars['Float']>;
|
|
306
306
|
media?: Maybe<Scalars['String']>;
|
|
@@ -462,11 +462,15 @@ export type IQuery = {
|
|
|
462
462
|
fetchOpportunitiesV2?: Maybe<Array<Maybe<IOpportunityV2>>>;
|
|
463
463
|
fetchOpportunitiesForProfile: Array<Maybe<IOpportunityV2>>;
|
|
464
464
|
fetchProfileOpportunities: IProfileOpportunities;
|
|
465
|
+
fetchProfileOpportunitiesV2: IProfileOpportunities;
|
|
465
466
|
fetchOpportunity: IOpportunityV2;
|
|
466
467
|
fetchOpportunitiesByIds: Array<IOpportunityV2>;
|
|
468
|
+
fetchOpportunitiesByIdsV2: Array<IOpportunityV2>;
|
|
467
469
|
fetchOpportunitiesForWallet?: Maybe<Array<Maybe<IOpportunityV2>>>;
|
|
470
|
+
fetchOpportunitiesForWalletV2?: Maybe<Array<Maybe<IOpportunityV2>>>;
|
|
468
471
|
fetchAirdropRegistrationsCsv: Scalars['String'];
|
|
469
472
|
fetchOpportunityBySlug: IOpportunityV2;
|
|
473
|
+
fetchOpportunityBySlugV2: IOpportunityV2;
|
|
470
474
|
fetchProjectBySlug: IProject;
|
|
471
475
|
fetchProject?: Maybe<IProject>;
|
|
472
476
|
fetchProjectMonitoring?: Maybe<IProjectMonitoring>;
|
|
@@ -491,16 +495,26 @@ export type IQueryFetchOpportunityArgs = {
|
|
|
491
495
|
export type IQueryFetchOpportunitiesByIdsArgs = {
|
|
492
496
|
opportunityIds: Array<Scalars['ID']>;
|
|
493
497
|
};
|
|
498
|
+
export type IQueryFetchOpportunitiesByIdsV2Args = {
|
|
499
|
+
opportunityIds: Array<Scalars['ID']>;
|
|
500
|
+
};
|
|
494
501
|
export type IQueryFetchOpportunitiesForWalletArgs = {
|
|
495
502
|
blockchain: Scalars['String'];
|
|
496
503
|
wallet: Scalars['String'];
|
|
497
504
|
};
|
|
505
|
+
export type IQueryFetchOpportunitiesForWalletV2Args = {
|
|
506
|
+
blockchain: Scalars['String'];
|
|
507
|
+
wallet: Scalars['String'];
|
|
508
|
+
};
|
|
498
509
|
export type IQueryFetchAirdropRegistrationsCsvArgs = {
|
|
499
510
|
opportunityId: Scalars['ID'];
|
|
500
511
|
};
|
|
501
512
|
export type IQueryFetchOpportunityBySlugArgs = {
|
|
502
513
|
slug: Scalars['String'];
|
|
503
514
|
};
|
|
515
|
+
export type IQueryFetchOpportunityBySlugV2Args = {
|
|
516
|
+
slug: Scalars['String'];
|
|
517
|
+
};
|
|
504
518
|
export type IQueryFetchProjectBySlugArgs = {
|
|
505
519
|
slug: Scalars['String'];
|
|
506
520
|
};
|
|
@@ -789,7 +803,7 @@ export type IOpportunityV2Resolvers<ContextType = any, ParentType extends IResol
|
|
|
789
803
|
projectId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
790
804
|
categoryId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
791
805
|
opportunityStatus?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
792
|
-
opportunityType?: Resolver<IResolversTypes['
|
|
806
|
+
opportunityType?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
793
807
|
notificationType?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
794
808
|
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
795
809
|
description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
@@ -802,8 +816,6 @@ export type IOpportunityV2Resolvers<ContextType = any, ParentType extends IResol
|
|
|
802
816
|
projectUrl?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
803
817
|
activeFrom?: Resolver<Maybe<IResolversTypes['Long']>, ParentType, ContextType>;
|
|
804
818
|
activeUntil?: Resolver<Maybe<IResolversTypes['Long']>, ParentType, ContextType>;
|
|
805
|
-
minXpLevel?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
806
|
-
maxXpLevel?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
807
819
|
minRank?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
808
820
|
maxRank?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
809
821
|
media?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
@@ -946,11 +958,15 @@ export type IQueryResolvers<ContextType = any, ParentType extends IResolversPare
|
|
|
946
958
|
fetchOpportunitiesV2?: Resolver<Maybe<Array<Maybe<IResolversTypes['OpportunityV2']>>>, ParentType, ContextType>;
|
|
947
959
|
fetchOpportunitiesForProfile?: Resolver<Array<Maybe<IResolversTypes['OpportunityV2']>>, ParentType, ContextType>;
|
|
948
960
|
fetchProfileOpportunities?: Resolver<IResolversTypes['ProfileOpportunities'], ParentType, ContextType>;
|
|
961
|
+
fetchProfileOpportunitiesV2?: Resolver<IResolversTypes['ProfileOpportunities'], ParentType, ContextType>;
|
|
949
962
|
fetchOpportunity?: Resolver<IResolversTypes['OpportunityV2'], ParentType, ContextType, RequireFields<IQueryFetchOpportunityArgs, 'opportunityId'>>;
|
|
950
963
|
fetchOpportunitiesByIds?: Resolver<Array<IResolversTypes['OpportunityV2']>, ParentType, ContextType, RequireFields<IQueryFetchOpportunitiesByIdsArgs, 'opportunityIds'>>;
|
|
964
|
+
fetchOpportunitiesByIdsV2?: Resolver<Array<IResolversTypes['OpportunityV2']>, ParentType, ContextType, RequireFields<IQueryFetchOpportunitiesByIdsV2Args, 'opportunityIds'>>;
|
|
951
965
|
fetchOpportunitiesForWallet?: Resolver<Maybe<Array<Maybe<IResolversTypes['OpportunityV2']>>>, ParentType, ContextType, RequireFields<IQueryFetchOpportunitiesForWalletArgs, 'blockchain' | 'wallet'>>;
|
|
966
|
+
fetchOpportunitiesForWalletV2?: Resolver<Maybe<Array<Maybe<IResolversTypes['OpportunityV2']>>>, ParentType, ContextType, RequireFields<IQueryFetchOpportunitiesForWalletV2Args, 'blockchain' | 'wallet'>>;
|
|
952
967
|
fetchAirdropRegistrationsCsv?: Resolver<IResolversTypes['String'], ParentType, ContextType, RequireFields<IQueryFetchAirdropRegistrationsCsvArgs, 'opportunityId'>>;
|
|
953
968
|
fetchOpportunityBySlug?: Resolver<IResolversTypes['OpportunityV2'], ParentType, ContextType, RequireFields<IQueryFetchOpportunityBySlugArgs, 'slug'>>;
|
|
969
|
+
fetchOpportunityBySlugV2?: Resolver<IResolversTypes['OpportunityV2'], ParentType, ContextType, RequireFields<IQueryFetchOpportunityBySlugV2Args, 'slug'>>;
|
|
954
970
|
fetchProjectBySlug?: Resolver<IResolversTypes['Project'], ParentType, ContextType, RequireFields<IQueryFetchProjectBySlugArgs, 'slug'>>;
|
|
955
971
|
fetchProject?: Resolver<Maybe<IResolversTypes['Project']>, ParentType, ContextType, RequireFields<IQueryFetchProjectArgs, 'blockchain' | 'contract'>>;
|
|
956
972
|
fetchProjectMonitoring?: Resolver<Maybe<IResolversTypes['ProjectMonitoring']>, ParentType, ContextType, RequireFields<IQueryFetchProjectMonitoringArgs, 'userId'>>;
|
|
@@ -1073,21 +1089,21 @@ export type IFetchOpportunitiesByIdsQueryVariables = Exact<{
|
|
|
1073
1089
|
opportunityIds: Array<Scalars['ID']>;
|
|
1074
1090
|
}>;
|
|
1075
1091
|
export type IFetchOpportunitiesByIdsQuery = {
|
|
1076
|
-
fetchOpportunitiesByIds: Array<Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'projectBlockchain' | 'projectContract' | 'projectName' | 'projectSlug' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | '
|
|
1092
|
+
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'>>;
|
|
1077
1093
|
};
|
|
1078
1094
|
export type IFetchOpportunitiesForProfileQueryVariables = Exact<{
|
|
1079
1095
|
[key: string]: never;
|
|
1080
1096
|
}>;
|
|
1081
1097
|
export type IFetchOpportunitiesForProfileQuery = {
|
|
1082
|
-
fetchOpportunitiesForProfile: Array<Maybe<Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'projectBlockchain' | 'projectContract' | 'projectName' | 'projectSlug' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | '
|
|
1098
|
+
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'>>>;
|
|
1083
1099
|
};
|
|
1084
1100
|
export type IFetchBrandBySlugQueryVariables = Exact<{
|
|
1085
1101
|
slug: Scalars['String'];
|
|
1086
1102
|
}>;
|
|
1087
1103
|
export type IFetchBrandBySlugQuery = {
|
|
1088
1104
|
fetchBrandBySlug: (Pick<IBrand, 'brandId' | 'name' | 'description' | 'industry' | 'link' | 'media' | 'archived' | 'addedBy' | 'matchingWords' | 'discord' | 'telegram' | 'twitter' | 'facebook' | 'linkedin' | 'youtube'> & {
|
|
1089
|
-
activeAirdrop?: Maybe<Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'projectBlockchain' | 'projectContract' | 'projectName' | 'projectSlug' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | '
|
|
1090
|
-
otherOpportunities?: Maybe<Array<Maybe<Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'projectBlockchain' | 'projectContract' | 'projectName' | 'projectSlug' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | '
|
|
1105
|
+
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'>>;
|
|
1106
|
+
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'>>>>;
|
|
1091
1107
|
});
|
|
1092
1108
|
};
|
|
1093
1109
|
export type IFetchMonitorsCounterQueryVariables = Exact<{
|
|
@@ -1109,13 +1125,13 @@ export type IFetchOpportunityQueryVariables = Exact<{
|
|
|
1109
1125
|
opportunityId: Scalars['ID'];
|
|
1110
1126
|
}>;
|
|
1111
1127
|
export type IFetchOpportunityQuery = {
|
|
1112
|
-
fetchOpportunity: Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'projectBlockchain' | 'projectContract' | 'projectName' | 'projectSlug' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | '
|
|
1128
|
+
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'>;
|
|
1113
1129
|
};
|
|
1114
1130
|
export type IFetchOpportunityBySlugQueryVariables = Exact<{
|
|
1115
1131
|
slug: Scalars['String'];
|
|
1116
1132
|
}>;
|
|
1117
1133
|
export type IFetchOpportunityBySlugQuery = {
|
|
1118
|
-
fetchOpportunityBySlug: (Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'projectBlockchain' | 'projectContract' | 'projectName' | 'projectSlug' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | '
|
|
1134
|
+
fetchOpportunityBySlug: (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'> & {
|
|
1119
1135
|
project?: Maybe<Pick<IProject, 'symbol' | 'name' | 'slug'>>;
|
|
1120
1136
|
});
|
|
1121
1137
|
};
|
|
@@ -1124,13 +1140,13 @@ export type IFetchProfileOpportunitiesQueryVariables = Exact<{
|
|
|
1124
1140
|
}>;
|
|
1125
1141
|
export type IFetchProfileOpportunitiesQuery = {
|
|
1126
1142
|
fetchProfileOpportunities: {
|
|
1127
|
-
newOpportunities?: Maybe<Array<Maybe<(Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'projectBlockchain' | 'projectContract' | 'projectName' | 'projectSlug' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | '
|
|
1143
|
+
newOpportunities?: 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' | 'slug'> & {
|
|
1128
1144
|
project?: Maybe<Pick<IProject, 'name' | 'contract' | 'symbol' | 'originalMediaUrl' | 'mediaUrl'>>;
|
|
1129
1145
|
})>>>;
|
|
1130
|
-
recentOpportunities?: Maybe<Array<Maybe<(Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'projectBlockchain' | 'projectContract' | 'projectName' | 'projectSlug' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | '
|
|
1146
|
+
recentOpportunities?: 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' | 'slug'> & {
|
|
1131
1147
|
project?: Maybe<Pick<IProject, 'name' | 'contract' | 'symbol' | 'originalMediaUrl' | 'mediaUrl'>>;
|
|
1132
1148
|
})>>>;
|
|
1133
|
-
eventOpportunities?: Maybe<Array<Maybe<(Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'projectBlockchain' | 'projectContract' | 'projectName' | 'projectSlug' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | '
|
|
1149
|
+
eventOpportunities?: 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' | 'slug'> & {
|
|
1134
1150
|
project?: Maybe<Pick<IProject, 'name' | 'contract' | 'symbol' | 'originalMediaUrl' | 'mediaUrl'>>;
|
|
1135
1151
|
})>>>;
|
|
1136
1152
|
};
|
|
@@ -1166,10 +1182,10 @@ export type IFetchProjectBySlugQuery = {
|
|
|
1166
1182
|
snapshots?: Maybe<Array<Pick<IProjectSnapshot, 'date' | 'contract' | 'blockchain' | 'volume' | 'marketCap' | 'price' | 'liquidity' | 'xFollowers' | 'holders' | 'ludoRank'>>>;
|
|
1167
1183
|
reactions: Pick<IProjectReactions, 'likes' | 'neutrals' | 'dislikes'>;
|
|
1168
1184
|
votesGeo?: Maybe<Array<Maybe<Pick<IVotesGeolocation, 'country' | 'votes' | 'votesPercentage'>>>>;
|
|
1169
|
-
airdrops?: Maybe<Array<Maybe<(Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | '
|
|
1185
|
+
airdrops?: Maybe<Array<Maybe<(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'> & {
|
|
1170
1186
|
project?: Maybe<Pick<IProject, 'name' | 'contract' | 'symbol' | 'originalMediaUrl' | 'mediaUrl'>>;
|
|
1171
1187
|
})>>>;
|
|
1172
|
-
opportunities?: Maybe<Array<Maybe<(Pick<IOpportunityV2, 'opportunityId' | 'projectId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | '
|
|
1188
|
+
opportunities?: Maybe<Array<Maybe<(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'> & {
|
|
1173
1189
|
project?: Maybe<Pick<IProject, 'name' | 'symbol' | 'originalMediaUrl' | 'mediaUrl'>>;
|
|
1174
1190
|
})>>>;
|
|
1175
1191
|
communityVotes?: Maybe<Array<Maybe<Pick<IProjectCommunityVote, 'calculatedAt' | 'communityVote' | 'likesRating' | 'neutralsRating' | 'dislikesRating'>>>>;
|
|
@@ -34,10 +34,14 @@ var ILinkType;
|
|
|
34
34
|
})(ILinkType || (exports.ILinkType = ILinkType = {}));
|
|
35
35
|
var IOpportunityType;
|
|
36
36
|
(function (IOpportunityType) {
|
|
37
|
+
/** deprecated start */
|
|
37
38
|
IOpportunityType["TokenAirdrop"] = "TOKEN_AIRDROP";
|
|
38
39
|
IOpportunityType["Marketing"] = "MARKETING";
|
|
39
40
|
IOpportunityType["NftMinting"] = "NFT_MINTING";
|
|
40
41
|
IOpportunityType["Event"] = "EVENT";
|
|
42
|
+
/** deprecated end */
|
|
43
|
+
IOpportunityType["Airdrop"] = "airdrop";
|
|
44
|
+
IOpportunityType["Eventinperson"] = "eventinperson";
|
|
41
45
|
})(IOpportunityType || (exports.IOpportunityType = IOpportunityType = {}));
|
|
42
46
|
var IProjectRegistrationStatus;
|
|
43
47
|
(function (IProjectRegistrationStatus) {
|
|
@@ -543,8 +547,6 @@ exports.FetchOpportunitiesByIdsDocument = (0, client_1.gql) `
|
|
|
543
547
|
projectUrl
|
|
544
548
|
activeFrom
|
|
545
549
|
activeUntil
|
|
546
|
-
minXpLevel
|
|
547
|
-
maxXpLevel
|
|
548
550
|
minRank
|
|
549
551
|
maxRank
|
|
550
552
|
media
|
|
@@ -611,8 +613,6 @@ exports.FetchOpportunitiesForProfileDocument = (0, client_1.gql) `
|
|
|
611
613
|
projectUrl
|
|
612
614
|
activeFrom
|
|
613
615
|
activeUntil
|
|
614
|
-
minXpLevel
|
|
615
|
-
maxXpLevel
|
|
616
616
|
minRank
|
|
617
617
|
maxRank
|
|
618
618
|
media
|
|
@@ -694,8 +694,6 @@ exports.FetchBrandBySlugDocument = (0, client_1.gql) `
|
|
|
694
694
|
projectUrl
|
|
695
695
|
activeFrom
|
|
696
696
|
activeUntil
|
|
697
|
-
minXpLevel
|
|
698
|
-
maxXpLevel
|
|
699
697
|
minRank
|
|
700
698
|
maxRank
|
|
701
699
|
media
|
|
@@ -733,8 +731,6 @@ exports.FetchBrandBySlugDocument = (0, client_1.gql) `
|
|
|
733
731
|
projectUrl
|
|
734
732
|
activeFrom
|
|
735
733
|
activeUntil
|
|
736
|
-
minXpLevel
|
|
737
|
-
maxXpLevel
|
|
738
734
|
minRank
|
|
739
735
|
maxRank
|
|
740
736
|
media
|
|
@@ -901,8 +897,6 @@ exports.FetchOpportunityDocument = (0, client_1.gql) `
|
|
|
901
897
|
projectUrl
|
|
902
898
|
activeFrom
|
|
903
899
|
activeUntil
|
|
904
|
-
minXpLevel
|
|
905
|
-
maxXpLevel
|
|
906
900
|
minRank
|
|
907
901
|
maxRank
|
|
908
902
|
media
|
|
@@ -969,8 +963,6 @@ exports.FetchOpportunityBySlugDocument = (0, client_1.gql) `
|
|
|
969
963
|
projectUrl
|
|
970
964
|
activeFrom
|
|
971
965
|
activeUntil
|
|
972
|
-
minXpLevel
|
|
973
|
-
maxXpLevel
|
|
974
966
|
minRank
|
|
975
967
|
maxRank
|
|
976
968
|
media
|
|
@@ -1050,8 +1042,6 @@ exports.FetchProfileOpportunitiesDocument = (0, client_1.gql) `
|
|
|
1050
1042
|
projectUrl
|
|
1051
1043
|
activeFrom
|
|
1052
1044
|
activeUntil
|
|
1053
|
-
minXpLevel
|
|
1054
|
-
maxXpLevel
|
|
1055
1045
|
minRank
|
|
1056
1046
|
maxRank
|
|
1057
1047
|
media
|
|
@@ -1097,8 +1087,6 @@ exports.FetchProfileOpportunitiesDocument = (0, client_1.gql) `
|
|
|
1097
1087
|
projectUrl
|
|
1098
1088
|
activeFrom
|
|
1099
1089
|
activeUntil
|
|
1100
|
-
minXpLevel
|
|
1101
|
-
maxXpLevel
|
|
1102
1090
|
minRank
|
|
1103
1091
|
maxRank
|
|
1104
1092
|
media
|
|
@@ -1144,8 +1132,6 @@ exports.FetchProfileOpportunitiesDocument = (0, client_1.gql) `
|
|
|
1144
1132
|
projectUrl
|
|
1145
1133
|
activeFrom
|
|
1146
1134
|
activeUntil
|
|
1147
|
-
minXpLevel
|
|
1148
|
-
maxXpLevel
|
|
1149
1135
|
minRank
|
|
1150
1136
|
maxRank
|
|
1151
1137
|
media
|
|
@@ -1381,8 +1367,6 @@ exports.FetchProjectBySlugDocument = (0, client_1.gql) `
|
|
|
1381
1367
|
projectUrl
|
|
1382
1368
|
activeFrom
|
|
1383
1369
|
activeUntil
|
|
1384
|
-
minXpLevel
|
|
1385
|
-
maxXpLevel
|
|
1386
1370
|
minRank
|
|
1387
1371
|
maxRank
|
|
1388
1372
|
media
|
|
@@ -1423,8 +1407,6 @@ exports.FetchProjectBySlugDocument = (0, client_1.gql) `
|
|
|
1423
1407
|
projectUrl
|
|
1424
1408
|
activeFrom
|
|
1425
1409
|
activeUntil
|
|
1426
|
-
minXpLevel
|
|
1427
|
-
maxXpLevel
|
|
1428
1410
|
minRank
|
|
1429
1411
|
maxRank
|
|
1430
1412
|
media
|