@ludo.ninja/api 3.2.23 → 3.2.25

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.
@@ -129,6 +129,7 @@ export type IMutation = {
129
129
  subscribeOnAlerts: Scalars['Boolean'];
130
130
  reconsiderProjectStatus: Scalars['Boolean'];
131
131
  clickOnProjectLink: Scalars['Boolean'];
132
+ registerForProjectAirdropsUpdates: Scalars['Boolean'];
132
133
  };
133
134
  export type IMutationCreateBrandArgs = {
134
135
  input: IBrandInput;
@@ -202,6 +203,9 @@ export type IMutationReconsiderProjectStatusArgs = {
202
203
  export type IMutationClickOnProjectLinkArgs = {
203
204
  input: IProjectLinkClickInput;
204
205
  };
206
+ export type IMutationRegisterForProjectAirdropsUpdatesArgs = {
207
+ input: IProjectAirdropRegistrationInput;
208
+ };
205
209
  export type IOpportunitiesPage = {
206
210
  currentOpportunities?: Maybe<Array<Maybe<IOpportunity>>>;
207
211
  similarOpportunities?: Maybe<Array<Maybe<IOpportunity>>>;
@@ -349,6 +353,10 @@ export type IProject = {
349
353
  communityVoteDetails?: Maybe<Array<ICommunityVoteDetails>>;
350
354
  shareLink?: Maybe<Scalars['String']>;
351
355
  };
356
+ export type IProjectAirdropRegistrationInput = {
357
+ blockchain: Scalars['String'];
358
+ contract: Scalars['String'];
359
+ };
352
360
  export type IProjectAlerting = {
353
361
  userId: Scalars['String'];
354
362
  slotsFree: Scalars['Int'];
@@ -552,6 +560,7 @@ export type IResolversTypes = {
552
560
  OpportunityV2: ResolverTypeWrapper<IOpportunityV2>;
553
561
  ProfileOpportunities: ResolverTypeWrapper<IProfileOpportunities>;
554
562
  Project: ResolverTypeWrapper<IProject>;
563
+ ProjectAirdropRegistrationInput: IProjectAirdropRegistrationInput;
555
564
  ProjectAlerting: ResolverTypeWrapper<IProjectAlerting>;
556
565
  ProjectCommunityVote: ResolverTypeWrapper<IProjectCommunityVote>;
557
566
  ProjectLinkClickInput: IProjectLinkClickInput;
@@ -597,6 +606,7 @@ export type IResolversParentTypes = {
597
606
  OpportunityV2: IOpportunityV2;
598
607
  ProfileOpportunities: IProfileOpportunities;
599
608
  Project: IProject;
609
+ ProjectAirdropRegistrationInput: IProjectAirdropRegistrationInput;
600
610
  ProjectAlerting: IProjectAlerting;
601
611
  ProjectCommunityVote: IProjectCommunityVote;
602
612
  ProjectLinkClickInput: IProjectLinkClickInput;
@@ -706,6 +716,7 @@ export type IMutationResolvers<ContextType = any, ParentType extends IResolversP
706
716
  subscribeOnAlerts?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationSubscribeOnAlertsArgs, 'input'>>;
707
717
  reconsiderProjectStatus?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationReconsiderProjectStatusArgs, 'input'>>;
708
718
  clickOnProjectLink?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationClickOnProjectLinkArgs, 'input'>>;
719
+ registerForProjectAirdropsUpdates?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationRegisterForProjectAirdropsUpdatesArgs, 'input'>>;
709
720
  };
710
721
  export type IOpportunitiesPageResolvers<ContextType = any, ParentType extends IResolversParentTypes['OpportunitiesPage'] = IResolversParentTypes['OpportunitiesPage']> = {
711
722
  currentOpportunities?: Resolver<Maybe<Array<Maybe<IResolversTypes['Opportunity']>>>, ParentType, ContextType>;
@@ -997,6 +1008,10 @@ export type IRegisterForAirdrop2MutationVariables = Exact<{
997
1008
  address: Scalars['String'];
998
1009
  }>;
999
1010
  export type IRegisterForAirdrop2Mutation = Pick<IMutation, 'registerForAirdrop2'>;
1011
+ export type IRegisterForProjectAirdropsUpdatesMutationVariables = Exact<{
1012
+ input: IProjectAirdropRegistrationInput;
1013
+ }>;
1014
+ export type IRegisterForProjectAirdropsUpdatesMutation = Pick<IMutation, 'registerForProjectAirdropsUpdates'>;
1000
1015
  export type IRegisterNewProjectMutationVariables = Exact<{
1001
1016
  input: IProjectRegistrationInput;
1002
1017
  }>;
@@ -1406,6 +1421,31 @@ export declare function useRegisterForAirdrop2Mutation(baseOptions?: Apollo.Muta
1406
1421
  export type RegisterForAirdrop2MutationHookResult = ReturnType<typeof useRegisterForAirdrop2Mutation>;
1407
1422
  export type RegisterForAirdrop2MutationResult = Apollo.MutationResult<IRegisterForAirdrop2Mutation>;
1408
1423
  export type RegisterForAirdrop2MutationOptions = Apollo.BaseMutationOptions<IRegisterForAirdrop2Mutation, IRegisterForAirdrop2MutationVariables>;
1424
+ export declare const RegisterForProjectAirdropsUpdatesDocument: Apollo.DocumentNode;
1425
+ export type IRegisterForProjectAirdropsUpdatesMutationFn = Apollo.MutationFunction<IRegisterForProjectAirdropsUpdatesMutation, IRegisterForProjectAirdropsUpdatesMutationVariables>;
1426
+ /**
1427
+ * __useRegisterForProjectAirdropsUpdatesMutation__
1428
+ *
1429
+ * To run a mutation, you first call `useRegisterForProjectAirdropsUpdatesMutation` within a React component and pass it any options that fit your needs.
1430
+ * When your component renders, `useRegisterForProjectAirdropsUpdatesMutation` returns a tuple that includes:
1431
+ * - A mutate function that you can call at any time to execute the mutation
1432
+ * - An object with fields that represent the current status of the mutation's execution
1433
+ *
1434
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
1435
+ *
1436
+ * @example
1437
+ * const [registerForProjectAirdropsUpdatesMutation, { data, loading, error }] = useRegisterForProjectAirdropsUpdatesMutation({
1438
+ * variables: {
1439
+ * input: // value for 'input'
1440
+ * },
1441
+ * });
1442
+ */
1443
+ export declare function useRegisterForProjectAirdropsUpdatesMutation(baseOptions?: Apollo.MutationHookOptions<IRegisterForProjectAirdropsUpdatesMutation, IRegisterForProjectAirdropsUpdatesMutationVariables>): Apollo.MutationTuple<IRegisterForProjectAirdropsUpdatesMutation, Exact<{
1444
+ input: IProjectAirdropRegistrationInput;
1445
+ }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
1446
+ export type RegisterForProjectAirdropsUpdatesMutationHookResult = ReturnType<typeof useRegisterForProjectAirdropsUpdatesMutation>;
1447
+ export type RegisterForProjectAirdropsUpdatesMutationResult = Apollo.MutationResult<IRegisterForProjectAirdropsUpdatesMutation>;
1448
+ export type RegisterForProjectAirdropsUpdatesMutationOptions = Apollo.BaseMutationOptions<IRegisterForProjectAirdropsUpdatesMutation, IRegisterForProjectAirdropsUpdatesMutationVariables>;
1409
1449
  export declare const RegisterNewProjectDocument: Apollo.DocumentNode;
1410
1450
  export type IRegisterNewProjectMutationFn = Apollo.MutationFunction<IRegisterNewProjectMutation, IRegisterNewProjectMutationVariables>;
1411
1451
  /**
@@ -23,8 +23,8 @@ var __importStar = (this && this.__importStar) || function (mod) {
23
23
  return result;
24
24
  };
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
- exports.FetchOpportunityDocument = exports.useFetchOpportunitiesLazyQuery = exports.useFetchOpportunitiesQuery = exports.FetchOpportunitiesDocument = exports.useFetchMonitorsCounterLazyQuery = exports.useFetchMonitorsCounterQuery = exports.FetchMonitorsCounterDocument = exports.useFetchBrandBySlugLazyQuery = exports.useFetchBrandBySlugQuery = exports.FetchBrandBySlugDocument = exports.useFetchOpportunitiesForProfileLazyQuery = exports.useFetchOpportunitiesForProfileQuery = exports.FetchOpportunitiesForProfileDocument = exports.useFetchOpportunitiesByIdsLazyQuery = exports.useFetchOpportunitiesByIdsQuery = exports.FetchOpportunitiesByIdsDocument = exports.useFetchAirdropRegistrationsCsvLazyQuery = exports.useFetchAirdropRegistrationsCsvQuery = exports.FetchAirdropRegistrationsCsvDocument = exports.useSubscribeOnAlertsMutation = exports.SubscribeOnAlertsDocument = exports.useRegisterNewProjectMutation = exports.RegisterNewProjectDocument = exports.useRegisterForAirdrop2Mutation = exports.RegisterForAirdrop2Document = exports.useRegisterForAirdropMutation = exports.RegisterForAirdropDocument = exports.useReconsiderProjectStatusMutation = exports.ReconsiderProjectStatusDocument = exports.useReactOnProjectMutation = exports.ReactOnProjectDocument = exports.useOpenOpportunityMutation = exports.OpenOpportunityDocument = exports.useCreateOpportunityMutation = exports.CreateOpportunityDocument = exports.useCopyOpportunityShareLinkMutation = exports.CopyOpportunityShareLinkDocument = exports.useClickOnProjectLinkMutation = exports.ClickOnProjectLinkDocument = exports.useActivateMonitoringMutation = exports.ActivateMonitoringDocument = exports.useLikeOpportunityMutation = exports.LikeOpportunityDocument = exports.useDislikeOpportunityMutation = exports.DislikeOpportunityDocument = exports.IVoteType = exports.IReactionType = exports.IProjectRegistrationStatus = exports.IOpportunityType = exports.ILinkType = void 0;
27
- exports.useFetchProjectMonitoringLazyQuery = exports.useFetchProjectMonitoringQuery = exports.FetchProjectMonitoringDocument = exports.useFetchProjectBySlugLazyQuery = exports.useFetchProjectBySlugQuery = exports.FetchProjectBySlugDocument = exports.useFetchProjectAlertingLazyQuery = exports.useFetchProjectAlertingQuery = exports.FetchProjectAlertingDocument = exports.useFetchProjectLazyQuery = exports.useFetchProjectQuery = exports.FetchProjectDocument = exports.useFetchProfileOpportunitiesLazyQuery = exports.useFetchProfileOpportunitiesQuery = exports.FetchProfileOpportunitiesDocument = exports.useFetchOpportunityBySlugLazyQuery = exports.useFetchOpportunityBySlugQuery = exports.FetchOpportunityBySlugDocument = exports.useFetchOpportunityLazyQuery = exports.useFetchOpportunityQuery = void 0;
26
+ exports.useFetchOpportunitiesQuery = exports.FetchOpportunitiesDocument = exports.useFetchMonitorsCounterLazyQuery = exports.useFetchMonitorsCounterQuery = exports.FetchMonitorsCounterDocument = exports.useFetchBrandBySlugLazyQuery = exports.useFetchBrandBySlugQuery = exports.FetchBrandBySlugDocument = exports.useFetchOpportunitiesForProfileLazyQuery = exports.useFetchOpportunitiesForProfileQuery = exports.FetchOpportunitiesForProfileDocument = exports.useFetchOpportunitiesByIdsLazyQuery = exports.useFetchOpportunitiesByIdsQuery = exports.FetchOpportunitiesByIdsDocument = exports.useFetchAirdropRegistrationsCsvLazyQuery = exports.useFetchAirdropRegistrationsCsvQuery = exports.FetchAirdropRegistrationsCsvDocument = exports.useSubscribeOnAlertsMutation = exports.SubscribeOnAlertsDocument = exports.useRegisterNewProjectMutation = exports.RegisterNewProjectDocument = exports.useRegisterForProjectAirdropsUpdatesMutation = exports.RegisterForProjectAirdropsUpdatesDocument = exports.useRegisterForAirdrop2Mutation = exports.RegisterForAirdrop2Document = exports.useRegisterForAirdropMutation = exports.RegisterForAirdropDocument = exports.useReconsiderProjectStatusMutation = exports.ReconsiderProjectStatusDocument = exports.useReactOnProjectMutation = exports.ReactOnProjectDocument = exports.useOpenOpportunityMutation = exports.OpenOpportunityDocument = exports.useCreateOpportunityMutation = exports.CreateOpportunityDocument = exports.useCopyOpportunityShareLinkMutation = exports.CopyOpportunityShareLinkDocument = exports.useClickOnProjectLinkMutation = exports.ClickOnProjectLinkDocument = exports.useActivateMonitoringMutation = exports.ActivateMonitoringDocument = exports.useLikeOpportunityMutation = exports.LikeOpportunityDocument = exports.useDislikeOpportunityMutation = exports.DislikeOpportunityDocument = exports.IVoteType = exports.IReactionType = exports.IProjectRegistrationStatus = exports.IOpportunityType = exports.ILinkType = void 0;
27
+ exports.useFetchProjectMonitoringLazyQuery = exports.useFetchProjectMonitoringQuery = exports.FetchProjectMonitoringDocument = exports.useFetchProjectBySlugLazyQuery = exports.useFetchProjectBySlugQuery = exports.FetchProjectBySlugDocument = exports.useFetchProjectAlertingLazyQuery = exports.useFetchProjectAlertingQuery = exports.FetchProjectAlertingDocument = exports.useFetchProjectLazyQuery = exports.useFetchProjectQuery = exports.FetchProjectDocument = exports.useFetchProfileOpportunitiesLazyQuery = exports.useFetchProfileOpportunitiesQuery = exports.FetchProfileOpportunitiesDocument = exports.useFetchOpportunityBySlugLazyQuery = exports.useFetchOpportunityBySlugQuery = exports.FetchOpportunityBySlugDocument = exports.useFetchOpportunityLazyQuery = exports.useFetchOpportunityQuery = exports.FetchOpportunityDocument = exports.useFetchOpportunitiesLazyQuery = void 0;
28
28
  const client_1 = require("@apollo/client");
29
29
  const Apollo = __importStar(require("@apollo/client"));
30
30
  var ILinkType;
@@ -355,6 +355,32 @@ function useRegisterForAirdrop2Mutation(baseOptions) {
355
355
  return Apollo.useMutation(exports.RegisterForAirdrop2Document, baseOptions);
356
356
  }
357
357
  exports.useRegisterForAirdrop2Mutation = useRegisterForAirdrop2Mutation;
358
+ exports.RegisterForProjectAirdropsUpdatesDocument = (0, client_1.gql) `
359
+ mutation RegisterForProjectAirdropsUpdates($input: ProjectAirdropRegistrationInput!) {
360
+ registerForProjectAirdropsUpdates(input: $input)
361
+ }
362
+ `;
363
+ /**
364
+ * __useRegisterForProjectAirdropsUpdatesMutation__
365
+ *
366
+ * To run a mutation, you first call `useRegisterForProjectAirdropsUpdatesMutation` within a React component and pass it any options that fit your needs.
367
+ * When your component renders, `useRegisterForProjectAirdropsUpdatesMutation` returns a tuple that includes:
368
+ * - A mutate function that you can call at any time to execute the mutation
369
+ * - An object with fields that represent the current status of the mutation's execution
370
+ *
371
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
372
+ *
373
+ * @example
374
+ * const [registerForProjectAirdropsUpdatesMutation, { data, loading, error }] = useRegisterForProjectAirdropsUpdatesMutation({
375
+ * variables: {
376
+ * input: // value for 'input'
377
+ * },
378
+ * });
379
+ */
380
+ function useRegisterForProjectAirdropsUpdatesMutation(baseOptions) {
381
+ return Apollo.useMutation(exports.RegisterForProjectAirdropsUpdatesDocument, baseOptions);
382
+ }
383
+ exports.useRegisterForProjectAirdropsUpdatesMutation = useRegisterForProjectAirdropsUpdatesMutation;
358
384
  exports.RegisterNewProjectDocument = (0, client_1.gql) `
359
385
  mutation RegisterNewProject($input: ProjectRegistrationInput!) {
360
386
  registerNewProject(input: $input) {
@@ -778,14 +778,8 @@ export declare const OnPlayerStateUpdatedDocument: Apollo.DocumentNode;
778
778
  * },
779
779
  * });
780
780
  */
781
- export declare function useOnPlayerStateUpdatedSubscription(baseOptions: Apollo.SubscriptionHookOptions<IOnPlayerStateUpdatedSubscription, IOnPlayerStateUpdatedSubscriptionVariables>): {
782
- restart(): void;
783
- loading: boolean;
784
- data?: IOnPlayerStateUpdatedSubscription | undefined;
785
- error?: Apollo.ApolloError | undefined;
786
- variables?: Exact<{
787
- authToken: string;
788
- }> | undefined;
789
- };
781
+ export declare function useOnPlayerStateUpdatedSubscription(baseOptions: Apollo.SubscriptionHookOptions<IOnPlayerStateUpdatedSubscription, IOnPlayerStateUpdatedSubscriptionVariables>): Apollo.SubscriptionResult<IOnPlayerStateUpdatedSubscription, Exact<{
782
+ authToken: string;
783
+ }>>;
790
784
  export type OnPlayerStateUpdatedSubscriptionHookResult = ReturnType<typeof useOnPlayerStateUpdatedSubscription>;
791
785
  export type OnPlayerStateUpdatedSubscriptionResult = Apollo.SubscriptionResult<IOnPlayerStateUpdatedSubscription>;
package/build/index.d.ts CHANGED
@@ -28,8 +28,19 @@ declare const schema: {
28
28
  }>> | undefined): import("@apollo/client").LazyQueryResultTuple<mintInfoSchema.IFetchMintingInfoQuery, mintInfoSchema.Exact<{
29
29
  input: mintInfoSchema.IMintingInput;
30
30
  }>>;
31
+ useFetchNativeCoinPriceQuery(baseOptions: import("@apollo/client").QueryHookOptions<mintInfoSchema.IFetchNativeCoinPriceQuery, mintInfoSchema.Exact<{
32
+ chain: mintInfoSchema.IBlockchains;
33
+ }>>): import("@apollo/client").QueryResult<mintInfoSchema.IFetchNativeCoinPriceQuery, mintInfoSchema.Exact<{
34
+ chain: mintInfoSchema.IBlockchains;
35
+ }>>;
36
+ useFetchNativeCoinPriceLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<mintInfoSchema.IFetchNativeCoinPriceQuery, mintInfoSchema.Exact<{
37
+ chain: mintInfoSchema.IBlockchains;
38
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<mintInfoSchema.IFetchNativeCoinPriceQuery, mintInfoSchema.Exact<{
39
+ chain: mintInfoSchema.IBlockchains;
40
+ }>>;
31
41
  IBlockchains: typeof mintInfoSchema.IBlockchains;
32
42
  FetchMintingInfoDocument: import("graphql").DocumentNode;
43
+ FetchNativeCoinPriceDocument: import("graphql").DocumentNode;
33
44
  useReadNotificationMutation(baseOptions?: import("@apollo/client").MutationHookOptions<notificationsSchema.IReadNotificationMutation, notificationsSchema.Exact<{
34
45
  notificationId: string;
35
46
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<notificationsSchema.IReadNotificationMutation, notificationsSchema.Exact<{
@@ -38,16 +49,10 @@ declare const schema: {
38
49
  useOnNotificationSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<notificationsSchema.IOnNotificationSubscription, notificationsSchema.Exact<{
39
50
  authToken: string;
40
51
  notificationTypes: notificationsSchema.INotificationType[];
41
- }>>): {
42
- restart(): void;
43
- loading: boolean;
44
- data?: notificationsSchema.IOnNotificationSubscription | undefined;
45
- error?: import("@apollo/client").ApolloError | undefined;
46
- variables?: notificationsSchema.Exact<{
47
- authToken: string;
48
- notificationTypes: notificationsSchema.INotificationType[];
49
- }> | undefined;
50
- };
52
+ }>>): import("@apollo/client").SubscriptionResult<notificationsSchema.IOnNotificationSubscription, notificationsSchema.Exact<{
53
+ authToken: string;
54
+ notificationTypes: notificationsSchema.INotificationType[];
55
+ }>>;
51
56
  IEventType: typeof notificationsSchema.IEventType;
52
57
  INotificationType: typeof notificationsSchema.INotificationType;
53
58
  ReadNotificationDocument: import("graphql").DocumentNode;
@@ -139,15 +144,9 @@ declare const schema: {
139
144
  }>>;
140
145
  useOnPlayerStateUpdatedSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<tapsSchema.IOnPlayerStateUpdatedSubscription, tapsSchema.Exact<{
141
146
  authToken: string;
142
- }>>): {
143
- restart(): void;
144
- loading: boolean;
145
- data?: tapsSchema.IOnPlayerStateUpdatedSubscription | undefined;
146
- error?: import("@apollo/client").ApolloError | undefined;
147
- variables?: tapsSchema.Exact<{
148
- authToken: string;
149
- }> | undefined;
150
- };
147
+ }>>): import("@apollo/client").SubscriptionResult<tapsSchema.IOnPlayerStateUpdatedSubscription, tapsSchema.Exact<{
148
+ authToken: string;
149
+ }>>;
151
150
  IFarmingStatus: typeof tapsSchema.IFarmingStatus;
152
151
  INotificationStatus: typeof tapsSchema.INotificationStatus;
153
152
  IPlayingStreakStatus: typeof tapsSchema.IPlayingStreakStatus;
@@ -803,6 +802,11 @@ declare const schema: {
803
802
  blockchain: string;
804
803
  address: string;
805
804
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
805
+ useRegisterForProjectAirdropsUpdatesMutation(baseOptions?: import("@apollo/client").MutationHookOptions<opportunitiesSchema.IRegisterForProjectAirdropsUpdatesMutation, opportunitiesSchema.Exact<{
806
+ input: opportunitiesSchema.IProjectAirdropRegistrationInput;
807
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<opportunitiesSchema.IRegisterForProjectAirdropsUpdatesMutation, opportunitiesSchema.Exact<{
808
+ input: opportunitiesSchema.IProjectAirdropRegistrationInput;
809
+ }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
806
810
  useRegisterNewProjectMutation(baseOptions?: import("@apollo/client").MutationHookOptions<opportunitiesSchema.IRegisterNewProjectMutation, opportunitiesSchema.Exact<{
807
811
  input: opportunitiesSchema.IProjectRegistrationInput;
808
812
  }>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<opportunitiesSchema.IRegisterNewProjectMutation, opportunitiesSchema.Exact<{
@@ -942,6 +946,7 @@ declare const schema: {
942
946
  ReconsiderProjectStatusDocument: import("graphql").DocumentNode;
943
947
  RegisterForAirdropDocument: import("graphql").DocumentNode;
944
948
  RegisterForAirdrop2Document: import("graphql").DocumentNode;
949
+ RegisterForProjectAirdropsUpdatesDocument: import("graphql").DocumentNode;
945
950
  RegisterNewProjectDocument: import("graphql").DocumentNode;
946
951
  SubscribeOnAlertsDocument: import("graphql").DocumentNode;
947
952
  FetchAirdropRegistrationsCsvDocument: import("graphql").DocumentNode;
@@ -1650,59 +1655,29 @@ declare const schema: {
1650
1655
  }>>;
1651
1656
  useOnCommonOpportunityNotificationSubscription(baseOptions?: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnCommonOpportunityNotificationSubscription, experiencesSchema.Exact<{
1652
1657
  [key: string]: never;
1653
- }>> | undefined): {
1654
- restart(): void;
1655
- loading: boolean;
1656
- data?: experiencesSchema.IOnCommonOpportunityNotificationSubscription | undefined;
1657
- error?: import("@apollo/client").ApolloError | undefined;
1658
- variables?: experiencesSchema.Exact<{
1659
- [key: string]: never;
1660
- }> | undefined;
1661
- };
1658
+ }>> | undefined): import("@apollo/client").SubscriptionResult<experiencesSchema.IOnCommonOpportunityNotificationSubscription, experiencesSchema.Exact<{
1659
+ [key: string]: never;
1660
+ }>>;
1662
1661
  useOnInviteCodeUsedSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnInviteCodeUsedSubscription, experiencesSchema.Exact<{
1663
1662
  authToken: string;
1664
- }>>): {
1665
- restart(): void;
1666
- loading: boolean;
1667
- data?: experiencesSchema.IOnInviteCodeUsedSubscription | undefined;
1668
- error?: import("@apollo/client").ApolloError | undefined;
1669
- variables?: experiencesSchema.Exact<{
1670
- authToken: string;
1671
- }> | undefined;
1672
- };
1663
+ }>>): import("@apollo/client").SubscriptionResult<experiencesSchema.IOnInviteCodeUsedSubscription, experiencesSchema.Exact<{
1664
+ authToken: string;
1665
+ }>>;
1673
1666
  useOnMyExperienceIncrementedSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnMyExperienceIncrementedSubscription, experiencesSchema.Exact<{
1674
1667
  authToken: string;
1675
- }>>): {
1676
- restart(): void;
1677
- loading: boolean;
1678
- data?: experiencesSchema.IOnMyExperienceIncrementedSubscription | undefined;
1679
- error?: import("@apollo/client").ApolloError | undefined;
1680
- variables?: experiencesSchema.Exact<{
1681
- authToken: string;
1682
- }> | undefined;
1683
- };
1668
+ }>>): import("@apollo/client").SubscriptionResult<experiencesSchema.IOnMyExperienceIncrementedSubscription, experiencesSchema.Exact<{
1669
+ authToken: string;
1670
+ }>>;
1684
1671
  useOnMyExperienceUpdatedSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnMyExperienceUpdatedSubscription, experiencesSchema.Exact<{
1685
1672
  authToken: string;
1686
- }>>): {
1687
- restart(): void;
1688
- loading: boolean;
1689
- data?: experiencesSchema.IOnMyExperienceUpdatedSubscription | undefined;
1690
- error?: import("@apollo/client").ApolloError | undefined;
1691
- variables?: experiencesSchema.Exact<{
1692
- authToken: string;
1693
- }> | undefined;
1694
- };
1673
+ }>>): import("@apollo/client").SubscriptionResult<experiencesSchema.IOnMyExperienceUpdatedSubscription, experiencesSchema.Exact<{
1674
+ authToken: string;
1675
+ }>>;
1695
1676
  useOnUserOpportunityNotificationSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnUserOpportunityNotificationSubscription, experiencesSchema.Exact<{
1696
1677
  authToken: string;
1697
- }>>): {
1698
- restart(): void;
1699
- loading: boolean;
1700
- data?: experiencesSchema.IOnUserOpportunityNotificationSubscription | undefined;
1701
- error?: import("@apollo/client").ApolloError | undefined;
1702
- variables?: experiencesSchema.Exact<{
1703
- authToken: string;
1704
- }> | undefined;
1705
- };
1678
+ }>>): import("@apollo/client").SubscriptionResult<experiencesSchema.IOnUserOpportunityNotificationSubscription, experiencesSchema.Exact<{
1679
+ authToken: string;
1680
+ }>>;
1706
1681
  FetchMyActivityStreakDocument: import("graphql").DocumentNode;
1707
1682
  FetchMyExperienceV2Document: import("graphql").DocumentNode;
1708
1683
  FetchMyMonthReferralsXpsDocument: import("graphql").DocumentNode;
@@ -2453,6 +2428,20 @@ declare const schema: {
2453
2428
  sort: adminSchema.IAdminProjectsMonitoringSortInput;
2454
2429
  page: adminSchema.IAdminPageInput;
2455
2430
  }>>;
2431
+ useFetchProjectAirdropRegistrationsInfoCsvQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchProjectAirdropRegistrationsInfoCsvQuery, adminSchema.Exact<{
2432
+ blockchain: string;
2433
+ contract: string;
2434
+ }>>): import("@apollo/client").QueryResult<adminSchema.IFetchProjectAirdropRegistrationsInfoCsvQuery, adminSchema.Exact<{
2435
+ blockchain: string;
2436
+ contract: string;
2437
+ }>>;
2438
+ useFetchProjectAirdropRegistrationsInfoCsvLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchProjectAirdropRegistrationsInfoCsvQuery, adminSchema.Exact<{
2439
+ blockchain: string;
2440
+ contract: string;
2441
+ }>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchProjectAirdropRegistrationsInfoCsvQuery, adminSchema.Exact<{
2442
+ blockchain: string;
2443
+ contract: string;
2444
+ }>>;
2456
2445
  useFetchProjectLinksClicksInfoCsvQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchProjectLinksClicksInfoCsvQuery, adminSchema.Exact<{
2457
2446
  blockchain: string;
2458
2447
  contract: string;
@@ -2488,6 +2477,7 @@ declare const schema: {
2488
2477
  INotificationDestination: typeof adminSchema.INotificationDestination;
2489
2478
  IPayloadType: typeof adminSchema.IPayloadType;
2490
2479
  ITariffPlan: typeof adminSchema.ITariffPlan;
2480
+ ITrafficReferralType: typeof adminSchema.ITrafficReferralType;
2491
2481
  CreateReferralTypeDocument: import("graphql").DocumentNode;
2492
2482
  CreateTierDocument: import("graphql").DocumentNode;
2493
2483
  TriggerOpportunityNotificationDocument: import("graphql").DocumentNode;
@@ -2553,6 +2543,7 @@ declare const schema: {
2553
2543
  FetchLeaderboardDocument: import("graphql").DocumentNode;
2554
2544
  FetchLeaderboardProjectsPageDocument: import("graphql").DocumentNode;
2555
2545
  FetchMonitoringPageDocument: import("graphql").DocumentNode;
2546
+ FetchProjectAirdropRegistrationsInfoCsvDocument: import("graphql").DocumentNode;
2556
2547
  FetchProjectLinksClicksInfoCsvDocument: import("graphql").DocumentNode;
2557
2548
  FetchProjectReactionsInfoCsvDocument: import("graphql").DocumentNode;
2558
2549
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ludo.ninja/api",
3
- "version": "3.2.23",
3
+ "version": "3.2.25",
4
4
  "main": "./build/index.js",
5
5
  "scripts": {
6
6
  "test": "jest",
@@ -362,6 +362,7 @@ export type IAdminReferral = {
362
362
  mainWallet?: Maybe<IWallet>;
363
363
  referredUsersNum?: Maybe<Scalars['Int']>;
364
364
  referrals?: Maybe<Array<IReferredUsersInfo>>;
365
+ referralLinks?: Maybe<Array<IReferralLink>>;
365
366
  };
366
367
 
367
368
  export type IAdminUser = {
@@ -592,6 +593,31 @@ export enum IDevicePlatform {
592
593
  Unknown = 'UNKNOWN'
593
594
  }
594
595
 
596
+ export type IFeaturePackPurchase = {
597
+ userId: Scalars['String'];
598
+ username?: Maybe<Scalars['String']>;
599
+ price: Scalars['Float'];
600
+ featurePackId: Scalars['String'];
601
+ featurePackName: Scalars['String'];
602
+ };
603
+
604
+ export type IFeaturePackPurchaseFilterInput = {
605
+ userIdTerm?: Maybe<Scalars['String']>;
606
+ usernameTerm?: Maybe<Scalars['String']>;
607
+ price?: Maybe<Scalars['Float']>;
608
+ featurePackId?: Maybe<Scalars['String']>;
609
+ };
610
+
611
+ export type IFeaturePackPurchasePage = {
612
+ purchases?: Maybe<Array<IFeaturePackPurchase>>;
613
+ nextPage?: Maybe<IAdminPage>;
614
+ };
615
+
616
+ export type IFeaturePackPurchaseSortInput = {
617
+ sortByUsername?: Maybe<ISort>;
618
+ sortByFeaturePack?: Maybe<ISort>;
619
+ };
620
+
595
621
  export type IFormOpportunityFilterInput = {
596
622
  idTerm?: Maybe<Scalars['String']>;
597
623
  userIdTerm?: Maybe<Scalars['String']>;
@@ -1086,6 +1112,7 @@ export type IPublisherInput = {
1086
1112
 
1087
1113
  export type IQuery = {
1088
1114
  getDummy: Scalars['String'];
1115
+ fetchFeaturePackPurchasePage: IFeaturePackPurchasePage;
1089
1116
  fetchContactSupportPage: IContactSupportPage;
1090
1117
  fetchContentReportPage: IContentReportPage;
1091
1118
  fetchInvestorInquiryPage: IInvestorInquiryPage;
@@ -1113,6 +1140,7 @@ export type IQuery = {
1113
1140
  fetchLeaderboardProjectsPage: IAdminLeaderboardProjectsPage;
1114
1141
  fetchProjectReactionsInfoCsv: Scalars['String'];
1115
1142
  fetchProjectLinksClicksInfoCsv: Scalars['String'];
1143
+ fetchProjectAirdropRegistrationsInfoCsv: Scalars['String'];
1116
1144
  fetchAdminReferralsPage: IReferralsPage;
1117
1145
  fetchUnarchivedReferralTypes: Array<IReferralType>;
1118
1146
  fetchReferralTypesPage: IReferralTypesPage;
@@ -1125,6 +1153,13 @@ export type IQuery = {
1125
1153
  };
1126
1154
 
1127
1155
 
1156
+ export type IQueryFetchFeaturePackPurchasePageArgs = {
1157
+ filter: IFeaturePackPurchaseFilterInput;
1158
+ sort: IFeaturePackPurchaseSortInput;
1159
+ page: IAdminPageInput;
1160
+ };
1161
+
1162
+
1128
1163
  export type IQueryFetchContactSupportPageArgs = {
1129
1164
  filter: IContactSupportFilterInput;
1130
1165
  sort: IContactSupportSortInput;
@@ -1269,6 +1304,12 @@ export type IQueryFetchProjectLinksClicksInfoCsvArgs = {
1269
1304
  };
1270
1305
 
1271
1306
 
1307
+ export type IQueryFetchProjectAirdropRegistrationsInfoCsvArgs = {
1308
+ blockchain: Scalars['String'];
1309
+ contract: Scalars['String'];
1310
+ };
1311
+
1312
+
1272
1313
  export type IQueryFetchAdminReferralsPageArgs = {
1273
1314
  filter: IReferralsFilterInput;
1274
1315
  sort: IReferralsSortInput;
@@ -1332,6 +1373,7 @@ export type IRateLimitsInput = {
1332
1373
 
1333
1374
  export type IReferralLink = {
1334
1375
  referralUrl?: Maybe<Scalars['String']>;
1376
+ referralType?: Maybe<ITrafficReferralType>;
1335
1377
  numOfReferredIps?: Maybe<Scalars['Int']>;
1336
1378
  numOfReferredUsers?: Maybe<Scalars['Int']>;
1337
1379
  refcode?: Maybe<Scalars['String']>;
@@ -1497,6 +1539,13 @@ export type ITiersSortInput = {
1497
1539
  sortByFee?: Maybe<ISort>;
1498
1540
  };
1499
1541
 
1542
+ export enum ITrafficReferralType {
1543
+ Opportunity = 'OPPORTUNITY',
1544
+ Profile = 'PROFILE',
1545
+ Brand = 'BRAND',
1546
+ Project = 'PROJECT'
1547
+ }
1548
+
1500
1549
 
1501
1550
  export type IUserFeedback = {
1502
1551
  id: Scalars['String'];
@@ -1729,6 +1778,10 @@ export type IResolversTypes = {
1729
1778
  ContentReportSortInput: IContentReportSortInput;
1730
1779
  Country: ResolverTypeWrapper<ICountry>;
1731
1780
  DevicePlatform: IDevicePlatform;
1781
+ FeaturePackPurchase: ResolverTypeWrapper<IFeaturePackPurchase>;
1782
+ FeaturePackPurchaseFilterInput: IFeaturePackPurchaseFilterInput;
1783
+ FeaturePackPurchasePage: ResolverTypeWrapper<IFeaturePackPurchasePage>;
1784
+ FeaturePackPurchaseSortInput: IFeaturePackPurchaseSortInput;
1732
1785
  FormOpportunityFilterInput: IFormOpportunityFilterInput;
1733
1786
  FormOpportunityPage: ResolverTypeWrapper<IFormOpportunityPage>;
1734
1787
  FormOpportunitySortInput: IFormOpportunitySortInput;
@@ -1790,6 +1843,7 @@ export type IResolversTypes = {
1790
1843
  TiersFilterInput: ITiersFilterInput;
1791
1844
  TiersPage: ResolverTypeWrapper<ITiersPage>;
1792
1845
  TiersSortInput: ITiersSortInput;
1846
+ TrafficReferralType: ITrafficReferralType;
1793
1847
  Upload: ResolverTypeWrapper<Scalars['Upload']>;
1794
1848
  UserFeedback: ResolverTypeWrapper<IUserFeedback>;
1795
1849
  UserFeedbackFilterInput: IUserFeedbackFilterInput;
@@ -1864,6 +1918,10 @@ export type IResolversParentTypes = {
1864
1918
  ContentReportPage: IContentReportPage;
1865
1919
  ContentReportSortInput: IContentReportSortInput;
1866
1920
  Country: ICountry;
1921
+ FeaturePackPurchase: IFeaturePackPurchase;
1922
+ FeaturePackPurchaseFilterInput: IFeaturePackPurchaseFilterInput;
1923
+ FeaturePackPurchasePage: IFeaturePackPurchasePage;
1924
+ FeaturePackPurchaseSortInput: IFeaturePackPurchaseSortInput;
1867
1925
  FormOpportunityFilterInput: IFormOpportunityFilterInput;
1868
1926
  FormOpportunityPage: IFormOpportunityPage;
1869
1927
  FormOpportunitySortInput: IFormOpportunitySortInput;
@@ -2198,6 +2256,7 @@ export type IAdminReferralResolvers<ContextType = any, ParentType extends IResol
2198
2256
  mainWallet?: Resolver<Maybe<IResolversTypes['Wallet']>, ParentType, ContextType>;
2199
2257
  referredUsersNum?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
2200
2258
  referrals?: Resolver<Maybe<Array<IResolversTypes['ReferredUsersInfo']>>, ParentType, ContextType>;
2259
+ referralLinks?: Resolver<Maybe<Array<IResolversTypes['ReferralLink']>>, ParentType, ContextType>;
2201
2260
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2202
2261
  };
2203
2262
 
@@ -2296,6 +2355,21 @@ export type ICountryResolvers<ContextType = any, ParentType extends IResolversPa
2296
2355
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2297
2356
  };
2298
2357
 
2358
+ export type IFeaturePackPurchaseResolvers<ContextType = any, ParentType extends IResolversParentTypes['FeaturePackPurchase'] = IResolversParentTypes['FeaturePackPurchase']> = {
2359
+ userId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
2360
+ username?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2361
+ price?: Resolver<IResolversTypes['Float'], ParentType, ContextType>;
2362
+ featurePackId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
2363
+ featurePackName?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
2364
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2365
+ };
2366
+
2367
+ export type IFeaturePackPurchasePageResolvers<ContextType = any, ParentType extends IResolversParentTypes['FeaturePackPurchasePage'] = IResolversParentTypes['FeaturePackPurchasePage']> = {
2368
+ purchases?: Resolver<Maybe<Array<IResolversTypes['FeaturePackPurchase']>>, ParentType, ContextType>;
2369
+ nextPage?: Resolver<Maybe<IResolversTypes['AdminPage']>, ParentType, ContextType>;
2370
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2371
+ };
2372
+
2299
2373
  export type IFormOpportunityPageResolvers<ContextType = any, ParentType extends IResolversParentTypes['FormOpportunityPage'] = IResolversParentTypes['FormOpportunityPage']> = {
2300
2374
  opportunities?: Resolver<Array<IResolversTypes['AdminFormOpportunity']>, ParentType, ContextType>;
2301
2375
  nextPage?: Resolver<Maybe<IResolversTypes['AdminPage']>, ParentType, ContextType>;
@@ -2407,6 +2481,7 @@ export type IPartnershipInquiryPageResolvers<ContextType = any, ParentType exten
2407
2481
 
2408
2482
  export type IQueryResolvers<ContextType = any, ParentType extends IResolversParentTypes['Query'] = IResolversParentTypes['Query']> = {
2409
2483
  getDummy?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
2484
+ fetchFeaturePackPurchasePage?: Resolver<IResolversTypes['FeaturePackPurchasePage'], ParentType, ContextType, RequireFields<IQueryFetchFeaturePackPurchasePageArgs, 'filter' | 'sort' | 'page'>>;
2410
2485
  fetchContactSupportPage?: Resolver<IResolversTypes['ContactSupportPage'], ParentType, ContextType, RequireFields<IQueryFetchContactSupportPageArgs, 'filter' | 'sort' | 'page'>>;
2411
2486
  fetchContentReportPage?: Resolver<IResolversTypes['ContentReportPage'], ParentType, ContextType, RequireFields<IQueryFetchContentReportPageArgs, 'filter' | 'sort' | 'page'>>;
2412
2487
  fetchInvestorInquiryPage?: Resolver<IResolversTypes['InvestorInquiryPage'], ParentType, ContextType, RequireFields<IQueryFetchInvestorInquiryPageArgs, 'filter' | 'sort' | 'page'>>;
@@ -2434,6 +2509,7 @@ export type IQueryResolvers<ContextType = any, ParentType extends IResolversPare
2434
2509
  fetchLeaderboardProjectsPage?: Resolver<IResolversTypes['AdminLeaderboardProjectsPage'], ParentType, ContextType, RequireFields<IQueryFetchLeaderboardProjectsPageArgs, 'filter' | 'sort' | 'page'>>;
2435
2510
  fetchProjectReactionsInfoCsv?: Resolver<IResolversTypes['String'], ParentType, ContextType, RequireFields<IQueryFetchProjectReactionsInfoCsvArgs, 'blockchain' | 'contract'>>;
2436
2511
  fetchProjectLinksClicksInfoCsv?: Resolver<IResolversTypes['String'], ParentType, ContextType, RequireFields<IQueryFetchProjectLinksClicksInfoCsvArgs, 'blockchain' | 'contract'>>;
2512
+ fetchProjectAirdropRegistrationsInfoCsv?: Resolver<IResolversTypes['String'], ParentType, ContextType, RequireFields<IQueryFetchProjectAirdropRegistrationsInfoCsvArgs, 'blockchain' | 'contract'>>;
2437
2513
  fetchAdminReferralsPage?: Resolver<IResolversTypes['ReferralsPage'], ParentType, ContextType, RequireFields<IQueryFetchAdminReferralsPageArgs, 'filter' | 'sort' | 'page'>>;
2438
2514
  fetchUnarchivedReferralTypes?: Resolver<Array<IResolversTypes['ReferralType']>, ParentType, ContextType>;
2439
2515
  fetchReferralTypesPage?: Resolver<IResolversTypes['ReferralTypesPage'], ParentType, ContextType, RequireFields<IQueryFetchReferralTypesPageArgs, 'filter' | 'sort' | 'page'>>;
@@ -2456,6 +2532,7 @@ export type IRateLimitsResolvers<ContextType = any, ParentType extends IResolver
2456
2532
 
2457
2533
  export type IReferralLinkResolvers<ContextType = any, ParentType extends IResolversParentTypes['ReferralLink'] = IResolversParentTypes['ReferralLink']> = {
2458
2534
  referralUrl?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2535
+ referralType?: Resolver<Maybe<IResolversTypes['TrafficReferralType']>, ParentType, ContextType>;
2459
2536
  numOfReferredIps?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
2460
2537
  numOfReferredUsers?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
2461
2538
  refcode?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
@@ -2603,6 +2680,8 @@ export type IResolvers<ContextType = any> = {
2603
2680
  ContactSupportPage?: IContactSupportPageResolvers<ContextType>;
2604
2681
  ContentReportPage?: IContentReportPageResolvers<ContextType>;
2605
2682
  Country?: ICountryResolvers<ContextType>;
2683
+ FeaturePackPurchase?: IFeaturePackPurchaseResolvers<ContextType>;
2684
+ FeaturePackPurchasePage?: IFeaturePackPurchasePageResolvers<ContextType>;
2606
2685
  FormOpportunityPage?: IFormOpportunityPageResolvers<ContextType>;
2607
2686
  InvestorInquiryPage?: IInvestorInquiryPageResolvers<ContextType>;
2608
2687
  InvitesPage?: IInvitesPageResolvers<ContextType>;
@@ -3176,6 +3255,14 @@ export type IFetchMonitoringPageQuery = { fetchMonitoringPage: { projectsMonitor
3176
3255
  & { wallets?: Maybe<Array<Pick<IWallet, 'address' | 'blockchain' | 'chainId' | 'isMain'>>>, projects?: Maybe<Array<Pick<IAdminProject, 'blockchain' | 'contract' | 'name'>>> }
3177
3256
  )>, nextPage?: Maybe<Pick<IAdminPage, 'elements' | 'lastNum' | 'num' | 'size' | 'token'>> } };
3178
3257
 
3258
+ export type IFetchProjectAirdropRegistrationsInfoCsvQueryVariables = Exact<{
3259
+ blockchain: Scalars['String'];
3260
+ contract: Scalars['String'];
3261
+ }>;
3262
+
3263
+
3264
+ export type IFetchProjectAirdropRegistrationsInfoCsvQuery = Pick<IQuery, 'fetchProjectAirdropRegistrationsInfoCsv'>;
3265
+
3179
3266
  export type IFetchProjectLinksClicksInfoCsvQueryVariables = Exact<{
3180
3267
  blockchain: Scalars['String'];
3181
3268
  contract: Scalars['String'];
@@ -5808,6 +5895,41 @@ export function useFetchMonitoringPageLazyQuery(baseOptions?: Apollo.LazyQueryHo
5808
5895
  export type FetchMonitoringPageQueryHookResult = ReturnType<typeof useFetchMonitoringPageQuery>;
5809
5896
  export type FetchMonitoringPageLazyQueryHookResult = ReturnType<typeof useFetchMonitoringPageLazyQuery>;
5810
5897
  export type FetchMonitoringPageQueryResult = Apollo.QueryResult<IFetchMonitoringPageQuery, IFetchMonitoringPageQueryVariables>;
5898
+ export const FetchProjectAirdropRegistrationsInfoCsvDocument = gql`
5899
+ query FetchProjectAirdropRegistrationsInfoCsv($blockchain: String!, $contract: String!) {
5900
+ fetchProjectAirdropRegistrationsInfoCsv(
5901
+ blockchain: $blockchain
5902
+ contract: $contract
5903
+ )
5904
+ }
5905
+ `;
5906
+
5907
+ /**
5908
+ * __useFetchProjectAirdropRegistrationsInfoCsvQuery__
5909
+ *
5910
+ * To run a query within a React component, call `useFetchProjectAirdropRegistrationsInfoCsvQuery` and pass it any options that fit your needs.
5911
+ * When your component renders, `useFetchProjectAirdropRegistrationsInfoCsvQuery` returns an object from Apollo Client that contains loading, error, and data properties
5912
+ * you can use to render your UI.
5913
+ *
5914
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
5915
+ *
5916
+ * @example
5917
+ * const { data, loading, error } = useFetchProjectAirdropRegistrationsInfoCsvQuery({
5918
+ * variables: {
5919
+ * blockchain: // value for 'blockchain'
5920
+ * contract: // value for 'contract'
5921
+ * },
5922
+ * });
5923
+ */
5924
+ export function useFetchProjectAirdropRegistrationsInfoCsvQuery(baseOptions: Apollo.QueryHookOptions<IFetchProjectAirdropRegistrationsInfoCsvQuery, IFetchProjectAirdropRegistrationsInfoCsvQueryVariables>) {
5925
+ return Apollo.useQuery<IFetchProjectAirdropRegistrationsInfoCsvQuery, IFetchProjectAirdropRegistrationsInfoCsvQueryVariables>(FetchProjectAirdropRegistrationsInfoCsvDocument, baseOptions);
5926
+ }
5927
+ export function useFetchProjectAirdropRegistrationsInfoCsvLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchProjectAirdropRegistrationsInfoCsvQuery, IFetchProjectAirdropRegistrationsInfoCsvQueryVariables>) {
5928
+ return Apollo.useLazyQuery<IFetchProjectAirdropRegistrationsInfoCsvQuery, IFetchProjectAirdropRegistrationsInfoCsvQueryVariables>(FetchProjectAirdropRegistrationsInfoCsvDocument, baseOptions);
5929
+ }
5930
+ export type FetchProjectAirdropRegistrationsInfoCsvQueryHookResult = ReturnType<typeof useFetchProjectAirdropRegistrationsInfoCsvQuery>;
5931
+ export type FetchProjectAirdropRegistrationsInfoCsvLazyQueryHookResult = ReturnType<typeof useFetchProjectAirdropRegistrationsInfoCsvLazyQuery>;
5932
+ export type FetchProjectAirdropRegistrationsInfoCsvQueryResult = Apollo.QueryResult<IFetchProjectAirdropRegistrationsInfoCsvQuery, IFetchProjectAirdropRegistrationsInfoCsvQueryVariables>;
5811
5933
  export const FetchProjectLinksClicksInfoCsvDocument = gql`
5812
5934
  query FetchProjectLinksClicksInfoCsv($blockchain: String!, $contract: String!) {
5813
5935
  fetchProjectLinksClicksInfoCsv(blockchain: $blockchain, contract: $contract)