@ludo.ninja/api 3.2.18 → 3.2.20
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.
- package/build/graphql_tools/__generated__/adminHost/schema.d.ts +102 -0
- package/build/graphql_tools/__generated__/adminHost/schema.js +31 -1
- package/build/graphql_tools/__generated__/assetsHost/schema.d.ts +9 -0
- package/build/graphql_tools/__generated__/authHost/schema.d.ts +9 -0
- package/build/graphql_tools/__generated__/identityHost/schema.d.ts +133 -0
- package/build/graphql_tools/__generated__/identityHost/schema.js +92 -4
- package/build/graphql_tools/__generated__/opportunitiesHost/schema.d.ts +46 -0
- package/build/graphql_tools/__generated__/opportunitiesHost/schema.js +33 -2
- package/build/index.d.ts +46 -0
- package/package.json +1 -1
- package/src/graphql_tools/__generated__/adminHost/schema.ts +48 -0
- package/src/graphql_tools/__generated__/opportunitiesHost/schema.ts +58 -0
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -637,6 +637,35 @@ export declare enum ILoginSource {
|
|
|
637
637
|
Backoffice = "BACKOFFICE",
|
|
638
638
|
Unknown = "UNKNOWN"
|
|
639
639
|
}
|
|
640
|
+
export type ILudoNft = {
|
|
641
|
+
blockchain: IBlockchains;
|
|
642
|
+
address?: Maybe<Scalars['String']>;
|
|
643
|
+
tokenId?: Maybe<Scalars['String']>;
|
|
644
|
+
wallet?: Maybe<Scalars['String']>;
|
|
645
|
+
rank?: Maybe<Scalars['Float']>;
|
|
646
|
+
tier?: Maybe<ITier>;
|
|
647
|
+
createdAt?: Maybe<Scalars['Long']>;
|
|
648
|
+
explorer?: Maybe<Scalars['String']>;
|
|
649
|
+
};
|
|
650
|
+
export type ILudoNftFilterInput = {
|
|
651
|
+
blockchain: IBlockchains;
|
|
652
|
+
walletTerm?: Maybe<Scalars['String']>;
|
|
653
|
+
tokenIdTerm?: Maybe<Scalars['String']>;
|
|
654
|
+
rank?: Maybe<Scalars['Float']>;
|
|
655
|
+
tierNameTerm?: Maybe<Scalars['String']>;
|
|
656
|
+
createdAfter?: Maybe<Scalars['Long']>;
|
|
657
|
+
createdBefore?: Maybe<Scalars['Long']>;
|
|
658
|
+
};
|
|
659
|
+
export type ILudoNftPage = {
|
|
660
|
+
ludoNfts: Array<ILudoNft>;
|
|
661
|
+
nextPage?: Maybe<IAdminPage>;
|
|
662
|
+
};
|
|
663
|
+
export type ILudoNftSortInput = {
|
|
664
|
+
sortByWallet?: Maybe<ISort>;
|
|
665
|
+
sortByRank?: Maybe<ISort>;
|
|
666
|
+
sortByTier?: Maybe<ISort>;
|
|
667
|
+
sortByCreatedAt?: Maybe<ISort>;
|
|
668
|
+
};
|
|
640
669
|
export type IMutation = {
|
|
641
670
|
setDummy: Scalars['String'];
|
|
642
671
|
removeInviteCode: Scalars['Boolean'];
|
|
@@ -914,6 +943,7 @@ export type IQuery = {
|
|
|
914
943
|
fetchLocations?: Maybe<Array<Maybe<ILocation>>>;
|
|
915
944
|
fetchAllCountries: Array<ICountry>;
|
|
916
945
|
fetchMonitoringPage: IAdminProjectsMonitoringPage;
|
|
946
|
+
fetchLudoNfts: ILudoNftPage;
|
|
917
947
|
fetchAdminOpportunitiesPage: IOpportunitiesPage;
|
|
918
948
|
fetchAdminCategories: Array<IAdminCategory>;
|
|
919
949
|
fetchAdminCategoriesPage: ICategoriesPage;
|
|
@@ -926,6 +956,7 @@ export type IQuery = {
|
|
|
926
956
|
fetchProjectsPage: IAdminProjectsPage;
|
|
927
957
|
fetchLeaderboardProjectsPage: IAdminLeaderboardProjectsPage;
|
|
928
958
|
fetchProjectReactionsInfoCsv: Scalars['String'];
|
|
959
|
+
fetchProjectLinksClicksInfoCsv: Scalars['String'];
|
|
929
960
|
fetchAdminReferralsPage: IReferralsPage;
|
|
930
961
|
fetchUnarchivedReferralTypes: Array<IReferralType>;
|
|
931
962
|
fetchReferralTypesPage: IReferralTypesPage;
|
|
@@ -990,6 +1021,11 @@ export type IQueryFetchMonitoringPageArgs = {
|
|
|
990
1021
|
sort: IAdminProjectsMonitoringSortInput;
|
|
991
1022
|
page: IAdminPageInput;
|
|
992
1023
|
};
|
|
1024
|
+
export type IQueryFetchLudoNftsArgs = {
|
|
1025
|
+
filter: ILudoNftFilterInput;
|
|
1026
|
+
sort: ILudoNftSortInput;
|
|
1027
|
+
page: IAdminPageInput;
|
|
1028
|
+
};
|
|
993
1029
|
export type IQueryFetchAdminOpportunitiesPageArgs = {
|
|
994
1030
|
filter: IOpportunitiesFilterInput;
|
|
995
1031
|
sort: IOpportunitiesSortInput;
|
|
@@ -1027,6 +1063,10 @@ export type IQueryFetchProjectReactionsInfoCsvArgs = {
|
|
|
1027
1063
|
blockchain: Scalars['String'];
|
|
1028
1064
|
contract: Scalars['String'];
|
|
1029
1065
|
};
|
|
1066
|
+
export type IQueryFetchProjectLinksClicksInfoCsvArgs = {
|
|
1067
|
+
blockchain: Scalars['String'];
|
|
1068
|
+
contract: Scalars['String'];
|
|
1069
|
+
};
|
|
1030
1070
|
export type IQueryFetchAdminReferralsPageArgs = {
|
|
1031
1071
|
filter: IReferralsFilterInput;
|
|
1032
1072
|
sort: IReferralsSortInput;
|
|
@@ -1410,6 +1450,10 @@ export type IResolversTypes = {
|
|
|
1410
1450
|
LocationType: ILocationType;
|
|
1411
1451
|
LoginSource: ILoginSource;
|
|
1412
1452
|
Long: ResolverTypeWrapper<Scalars['Long']>;
|
|
1453
|
+
LudoNft: ResolverTypeWrapper<ILudoNft>;
|
|
1454
|
+
LudoNftFilterInput: ILudoNftFilterInput;
|
|
1455
|
+
LudoNftPage: ResolverTypeWrapper<ILudoNftPage>;
|
|
1456
|
+
LudoNftSortInput: ILudoNftSortInput;
|
|
1413
1457
|
Mutation: ResolverTypeWrapper<{}>;
|
|
1414
1458
|
NotificationDestination: INotificationDestination;
|
|
1415
1459
|
NumberRangeInput: INumberRangeInput;
|
|
@@ -1537,6 +1581,10 @@ export type IResolversParentTypes = {
|
|
|
1537
1581
|
LeaderboardInput: ILeaderboardInput;
|
|
1538
1582
|
Location: ILocation;
|
|
1539
1583
|
Long: Scalars['Long'];
|
|
1584
|
+
LudoNft: ILudoNft;
|
|
1585
|
+
LudoNftFilterInput: ILudoNftFilterInput;
|
|
1586
|
+
LudoNftPage: ILudoNftPage;
|
|
1587
|
+
LudoNftSortInput: ILudoNftSortInput;
|
|
1540
1588
|
Mutation: {};
|
|
1541
1589
|
NumberRangeInput: INumberRangeInput;
|
|
1542
1590
|
OpportunitiesFilterInput: IOpportunitiesFilterInput;
|
|
@@ -1950,6 +1998,22 @@ export type ILocationResolvers<ContextType = any, ParentType extends IResolversP
|
|
|
1950
1998
|
export interface ILongScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Long'], any> {
|
|
1951
1999
|
name: 'Long';
|
|
1952
2000
|
}
|
|
2001
|
+
export type ILudoNftResolvers<ContextType = any, ParentType extends IResolversParentTypes['LudoNft'] = IResolversParentTypes['LudoNft']> = {
|
|
2002
|
+
blockchain?: Resolver<IResolversTypes['Blockchains'], ParentType, ContextType>;
|
|
2003
|
+
address?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2004
|
+
tokenId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2005
|
+
wallet?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2006
|
+
rank?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
2007
|
+
tier?: Resolver<Maybe<IResolversTypes['Tier']>, ParentType, ContextType>;
|
|
2008
|
+
createdAt?: Resolver<Maybe<IResolversTypes['Long']>, ParentType, ContextType>;
|
|
2009
|
+
explorer?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2010
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2011
|
+
};
|
|
2012
|
+
export type ILudoNftPageResolvers<ContextType = any, ParentType extends IResolversParentTypes['LudoNftPage'] = IResolversParentTypes['LudoNftPage']> = {
|
|
2013
|
+
ludoNfts?: Resolver<Array<IResolversTypes['LudoNft']>, ParentType, ContextType>;
|
|
2014
|
+
nextPage?: Resolver<Maybe<IResolversTypes['AdminPage']>, ParentType, ContextType>;
|
|
2015
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2016
|
+
};
|
|
1953
2017
|
export type IMutationResolvers<ContextType = any, ParentType extends IResolversParentTypes['Mutation'] = IResolversParentTypes['Mutation']> = {
|
|
1954
2018
|
setDummy?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
1955
2019
|
removeInviteCode?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationRemoveInviteCodeArgs, 'inviteCode'>>;
|
|
@@ -2013,6 +2077,7 @@ export type IQueryResolvers<ContextType = any, ParentType extends IResolversPare
|
|
|
2013
2077
|
fetchLocations?: Resolver<Maybe<Array<Maybe<IResolversTypes['Location']>>>, ParentType, ContextType, RequireFields<IQueryFetchLocationsArgs, 'term'>>;
|
|
2014
2078
|
fetchAllCountries?: Resolver<Array<IResolversTypes['Country']>, ParentType, ContextType>;
|
|
2015
2079
|
fetchMonitoringPage?: Resolver<IResolversTypes['AdminProjectsMonitoringPage'], ParentType, ContextType, RequireFields<IQueryFetchMonitoringPageArgs, 'filter' | 'sort' | 'page'>>;
|
|
2080
|
+
fetchLudoNfts?: Resolver<IResolversTypes['LudoNftPage'], ParentType, ContextType, RequireFields<IQueryFetchLudoNftsArgs, 'filter' | 'sort' | 'page'>>;
|
|
2016
2081
|
fetchAdminOpportunitiesPage?: Resolver<IResolversTypes['OpportunitiesPage'], ParentType, ContextType, RequireFields<IQueryFetchAdminOpportunitiesPageArgs, 'filter' | 'sort' | 'page'>>;
|
|
2017
2082
|
fetchAdminCategories?: Resolver<Array<IResolversTypes['AdminCategory']>, ParentType, ContextType>;
|
|
2018
2083
|
fetchAdminCategoriesPage?: Resolver<IResolversTypes['CategoriesPage'], ParentType, ContextType, RequireFields<IQueryFetchAdminCategoriesPageArgs, 'filter' | 'sort' | 'page'>>;
|
|
@@ -2025,6 +2090,7 @@ export type IQueryResolvers<ContextType = any, ParentType extends IResolversPare
|
|
|
2025
2090
|
fetchProjectsPage?: Resolver<IResolversTypes['AdminProjectsPage'], ParentType, ContextType, RequireFields<IQueryFetchProjectsPageArgs, 'filter' | 'sort' | 'page'>>;
|
|
2026
2091
|
fetchLeaderboardProjectsPage?: Resolver<IResolversTypes['AdminLeaderboardProjectsPage'], ParentType, ContextType, RequireFields<IQueryFetchLeaderboardProjectsPageArgs, 'filter' | 'sort' | 'page'>>;
|
|
2027
2092
|
fetchProjectReactionsInfoCsv?: Resolver<IResolversTypes['String'], ParentType, ContextType, RequireFields<IQueryFetchProjectReactionsInfoCsvArgs, 'blockchain' | 'contract'>>;
|
|
2093
|
+
fetchProjectLinksClicksInfoCsv?: Resolver<IResolversTypes['String'], ParentType, ContextType, RequireFields<IQueryFetchProjectLinksClicksInfoCsvArgs, 'blockchain' | 'contract'>>;
|
|
2028
2094
|
fetchAdminReferralsPage?: Resolver<IResolversTypes['ReferralsPage'], ParentType, ContextType, RequireFields<IQueryFetchAdminReferralsPageArgs, 'filter' | 'sort' | 'page'>>;
|
|
2029
2095
|
fetchUnarchivedReferralTypes?: Resolver<Array<IResolversTypes['ReferralType']>, ParentType, ContextType>;
|
|
2030
2096
|
fetchReferralTypesPage?: Resolver<IResolversTypes['ReferralTypesPage'], ParentType, ContextType, RequireFields<IQueryFetchReferralTypesPageArgs, 'filter' | 'sort' | 'page'>>;
|
|
@@ -2182,6 +2248,8 @@ export type IResolvers<ContextType = any> = {
|
|
|
2182
2248
|
Leaderboard?: ILeaderboardResolvers<ContextType>;
|
|
2183
2249
|
Location?: ILocationResolvers<ContextType>;
|
|
2184
2250
|
Long?: GraphQLScalarType;
|
|
2251
|
+
LudoNft?: ILudoNftResolvers<ContextType>;
|
|
2252
|
+
LudoNftPage?: ILudoNftPageResolvers<ContextType>;
|
|
2185
2253
|
Mutation?: IMutationResolvers<ContextType>;
|
|
2186
2254
|
OpportunitiesPage?: IOpportunitiesPageResolvers<ContextType>;
|
|
2187
2255
|
PartnershipInquiryPage?: IPartnershipInquiryPageResolvers<ContextType>;
|
|
@@ -2684,6 +2752,11 @@ export type IFetchMonitoringPageQuery = {
|
|
|
2684
2752
|
nextPage?: Maybe<Pick<IAdminPage, 'elements' | 'lastNum' | 'num' | 'size' | 'token'>>;
|
|
2685
2753
|
};
|
|
2686
2754
|
};
|
|
2755
|
+
export type IFetchProjectLinksClicksInfoCsvQueryVariables = Exact<{
|
|
2756
|
+
blockchain: Scalars['String'];
|
|
2757
|
+
contract: Scalars['String'];
|
|
2758
|
+
}>;
|
|
2759
|
+
export type IFetchProjectLinksClicksInfoCsvQuery = Pick<IQuery, 'fetchProjectLinksClicksInfoCsv'>;
|
|
2687
2760
|
export type IFetchProjectReactionsInfoCsvQueryVariables = Exact<{
|
|
2688
2761
|
blockchain: Scalars['String'];
|
|
2689
2762
|
contract: Scalars['String'];
|
|
@@ -4516,6 +4589,35 @@ export declare function useFetchMonitoringPageLazyQuery(baseOptions?: Apollo.Laz
|
|
|
4516
4589
|
export type FetchMonitoringPageQueryHookResult = ReturnType<typeof useFetchMonitoringPageQuery>;
|
|
4517
4590
|
export type FetchMonitoringPageLazyQueryHookResult = ReturnType<typeof useFetchMonitoringPageLazyQuery>;
|
|
4518
4591
|
export type FetchMonitoringPageQueryResult = Apollo.QueryResult<IFetchMonitoringPageQuery, IFetchMonitoringPageQueryVariables>;
|
|
4592
|
+
export declare const FetchProjectLinksClicksInfoCsvDocument: Apollo.DocumentNode;
|
|
4593
|
+
/**
|
|
4594
|
+
* __useFetchProjectLinksClicksInfoCsvQuery__
|
|
4595
|
+
*
|
|
4596
|
+
* To run a query within a React component, call `useFetchProjectLinksClicksInfoCsvQuery` and pass it any options that fit your needs.
|
|
4597
|
+
* When your component renders, `useFetchProjectLinksClicksInfoCsvQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
4598
|
+
* you can use to render your UI.
|
|
4599
|
+
*
|
|
4600
|
+
* @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;
|
|
4601
|
+
*
|
|
4602
|
+
* @example
|
|
4603
|
+
* const { data, loading, error } = useFetchProjectLinksClicksInfoCsvQuery({
|
|
4604
|
+
* variables: {
|
|
4605
|
+
* blockchain: // value for 'blockchain'
|
|
4606
|
+
* contract: // value for 'contract'
|
|
4607
|
+
* },
|
|
4608
|
+
* });
|
|
4609
|
+
*/
|
|
4610
|
+
export declare function useFetchProjectLinksClicksInfoCsvQuery(baseOptions: Apollo.QueryHookOptions<IFetchProjectLinksClicksInfoCsvQuery, IFetchProjectLinksClicksInfoCsvQueryVariables>): Apollo.QueryResult<IFetchProjectLinksClicksInfoCsvQuery, Exact<{
|
|
4611
|
+
blockchain: string;
|
|
4612
|
+
contract: string;
|
|
4613
|
+
}>>;
|
|
4614
|
+
export declare function useFetchProjectLinksClicksInfoCsvLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchProjectLinksClicksInfoCsvQuery, IFetchProjectLinksClicksInfoCsvQueryVariables>): Apollo.LazyQueryResultTuple<IFetchProjectLinksClicksInfoCsvQuery, Exact<{
|
|
4615
|
+
blockchain: string;
|
|
4616
|
+
contract: string;
|
|
4617
|
+
}>>;
|
|
4618
|
+
export type FetchProjectLinksClicksInfoCsvQueryHookResult = ReturnType<typeof useFetchProjectLinksClicksInfoCsvQuery>;
|
|
4619
|
+
export type FetchProjectLinksClicksInfoCsvLazyQueryHookResult = ReturnType<typeof useFetchProjectLinksClicksInfoCsvLazyQuery>;
|
|
4620
|
+
export type FetchProjectLinksClicksInfoCsvQueryResult = Apollo.QueryResult<IFetchProjectLinksClicksInfoCsvQuery, IFetchProjectLinksClicksInfoCsvQueryVariables>;
|
|
4519
4621
|
export declare const FetchProjectReactionsInfoCsvDocument: Apollo.DocumentNode;
|
|
4520
4622
|
/**
|
|
4521
4623
|
* __useFetchProjectReactionsInfoCsvQuery__
|
|
@@ -26,7 +26,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
26
26
|
exports.useAddInviteCodesMutation = exports.AddInviteCodesDocument = exports.useRegenerateOpportunityPayloadSecretKeyMutation = exports.RegenerateOpportunityPayloadSecretKeyDocument = exports.useCreatePublisherMutation = exports.CreatePublisherDocument = exports.useCreateProjectMutation = exports.CreateProjectDocument = exports.useCreateAdminOpportunityMutation = exports.CreateAdminOpportunityDocument = exports.useCreateCompanyTokenMutation = exports.CreateCompanyTokenDocument = exports.useCreateBrandMutation = exports.CreateBrandDocument = exports.useCreateCategoryMutation = exports.CreateCategoryDocument = exports.useChangeXpPointsMutation = exports.ChangeXpPointsDocument = exports.useUpdateTierArchivedStatusMutation = exports.UpdateTierArchivedStatusDocument = exports.useUpdateTierMutation = exports.UpdateTierDocument = exports.useUpdateReferralTypeArchivedStatusMutation = exports.UpdateReferralTypeArchivedStatusDocument = exports.useUpdateReferralTypeMutation = exports.UpdateReferralTypeDocument = exports.useUpdateOpportunityPushStatusMutation = exports.UpdateOpportunityPushStatusDocument = exports.useUpdateInviteCodeUsagesLimitMutation = exports.UpdateInviteCodeUsagesLimitDocument = exports.useTriggerOpportunityNotificationMutation = exports.TriggerOpportunityNotificationDocument = exports.useCreateTierMutation = exports.CreateTierDocument = exports.useCreateReferralTypeMutation = exports.CreateReferralTypeDocument = exports.ITariffPlan = exports.ISortDirection = exports.IReftypeColor = exports.IProjectType = exports.IPayloadType = exports.IOpportunityType = exports.INotificationDestination = exports.ILoginSource = exports.ILocationType = exports.ILeaderboardType = exports.IDevicePlatform = exports.IBlockchains = exports.IAuthorityType = exports.IAccessType = void 0;
|
|
27
27
|
exports.useFetchUnarchivedReferralTypesQuery = exports.FetchUnarchivedReferralTypesDocument = exports.useFetchPartnershipInquiryPageLazyQuery = exports.useFetchPartnershipInquiryPageQuery = exports.FetchPartnershipInquiryPageDocument = exports.useFetchInvestorInquiryPageLazyQuery = exports.useFetchInvestorInquiryPageQuery = exports.FetchInvestorInquiryPageDocument = exports.useFetchFormOpportunityPageLazyQuery = exports.useFetchFormOpportunityPageQuery = exports.FetchFormOpportunityPageDocument = exports.useFetchContentReportPageLazyQuery = exports.useFetchContentReportPageQuery = exports.FetchContentReportPageDocument = exports.useFetchContactSupportPageLazyQuery = exports.useFetchContactSupportPageQuery = exports.FetchContactSupportPageDocument = exports.useCheckInviteCodeLazyQuery = exports.useCheckInviteCodeQuery = exports.CheckInviteCodeDocument = exports.useUpdatePublisherMutation = exports.UpdatePublisherDocument = exports.useUpdateProjectMutation = exports.UpdateProjectDocument = exports.useUpdateProfileStatusMutation = exports.UpdateProfileStatusDocument = exports.useUpdateOpportunityArchivedStatusMutation = exports.UpdateOpportunityArchivedStatusDocument = exports.useUpdateOpportunityMutation = exports.UpdateOpportunityDocument = exports.useUpdateLeaderboardProjectHiddenStatusMutation = exports.UpdateLeaderboardProjectHiddenStatusDocument = exports.useUpdateLeaderboardMutation = exports.UpdateLeaderboardDocument = exports.useUpdateCompanyTokenRateLimitsMutation = exports.UpdateCompanyTokenRateLimitsDocument = exports.useUpdateCategoryArchivedStatusMutation = exports.UpdateCategoryArchivedStatusDocument = exports.useUpdateCategoryMutation = exports.UpdateCategoryDocument = exports.useUpdateBrandArchivedStatusMutation = exports.UpdateBrandArchivedStatusDocument = exports.useUpdateBrandMutation = exports.UpdateBrandDocument = exports.useUpdateAirdropMutation = exports.UpdateAirdropDocument = exports.useRevokeCompanyTokenMutation = exports.RevokeCompanyTokenDocument = exports.useRemoveInviteCodeMutation = exports.RemoveInviteCodeDocument = void 0;
|
|
28
28
|
exports.FetchAdminUsersPageDocument = exports.useFetchAdminReferralsPageLazyQuery = exports.useFetchAdminReferralsPageQuery = exports.FetchAdminReferralsPageDocument = exports.useFetchAdminProjectsPageLazyQuery = exports.useFetchAdminProjectsPageQuery = exports.FetchAdminProjectsPageDocument = exports.useFetchAdminProjectsLazyQuery = exports.useFetchAdminProjectsQuery = exports.FetchAdminProjectsDocument = exports.useFetchAdminOpportunitiesPageLazyQuery = exports.useFetchAdminOpportunitiesPageQuery = exports.FetchAdminOpportunitiesPageDocument = exports.useFetchAdminOpportunitiesByTypeLazyQuery = exports.useFetchAdminOpportunitiesByTypeQuery = exports.FetchAdminOpportunitiesByTypeDocument = exports.useFetchAdminInvitesPageLazyQuery = exports.useFetchAdminInvitesPageQuery = exports.FetchAdminInvitesPageDocument = exports.useFetchAdminCategoriesPageLazyQuery = exports.useFetchAdminCategoriesPageQuery = exports.FetchAdminCategoriesPageDocument = exports.useFetchAdminCategoriesLazyQuery = exports.useFetchAdminCategoriesQuery = exports.FetchAdminCategoriesDocument = exports.useFetchAdminBrandsPageLazyQuery = exports.useFetchAdminBrandsPageQuery = exports.FetchAdminBrandsPageDocument = exports.useFetchAdminBrandsLazyQuery = exports.useFetchAdminBrandsQuery = exports.FetchAdminBrandsDocument = exports.useFetchAdminAirdropsPageLazyQuery = exports.useFetchAdminAirdropsPageQuery = exports.FetchAdminAirdropsPageDocument = exports.useFetchUserFeedbackPageLazyQuery = exports.useFetchUserFeedbackPageQuery = exports.FetchUserFeedbackPageDocument = exports.useFetchTiersPageLazyQuery = exports.useFetchTiersPageQuery = exports.FetchTiersPageDocument = exports.useFetchTiersLazyQuery = exports.useFetchTiersQuery = exports.FetchTiersDocument = exports.useFetchRegistrationInvitePageLazyQuery = exports.useFetchRegistrationInvitePageQuery = exports.FetchRegistrationInvitePageDocument = exports.useFetchReferralTypesPageLazyQuery = exports.useFetchReferralTypesPageQuery = exports.FetchReferralTypesPageDocument = exports.useFetchUnarchivedReferralTypesLazyQuery = void 0;
|
|
29
|
-
exports.useFetchProjectReactionsInfoCsvLazyQuery = exports.useFetchProjectReactionsInfoCsvQuery = exports.FetchProjectReactionsInfoCsvDocument = exports.useFetchMonitoringPageLazyQuery = exports.useFetchMonitoringPageQuery = exports.FetchMonitoringPageDocument = exports.useFetchLeaderboardProjectsPageLazyQuery = exports.useFetchLeaderboardProjectsPageQuery = exports.FetchLeaderboardProjectsPageDocument = exports.useFetchLeaderboardLazyQuery = exports.useFetchLeaderboardQuery = exports.FetchLeaderboardDocument = exports.useFetchDefaultRateLimitsLazyQuery = exports.useFetchDefaultRateLimitsQuery = exports.FetchDefaultRateLimitsDocument = exports.useFetchCompanyTokensPageLazyQuery = exports.useFetchCompanyTokensPageQuery = exports.FetchCompanyTokensPageDocument = exports.useFetchBlockchainsLazyQuery = exports.useFetchBlockchainsQuery = exports.FetchBlockchainsDocument = exports.useFetchAllCountriesLazyQuery = exports.useFetchAllCountriesQuery = exports.FetchAllCountriesDocument = exports.useFetchAdminXpPageLazyQuery = exports.useFetchAdminXpPageQuery = exports.FetchAdminXpPageDocument = exports.useFetchAdminUsersPageLazyQuery = exports.useFetchAdminUsersPageQuery = void 0;
|
|
29
|
+
exports.useFetchProjectReactionsInfoCsvLazyQuery = exports.useFetchProjectReactionsInfoCsvQuery = exports.FetchProjectReactionsInfoCsvDocument = exports.useFetchProjectLinksClicksInfoCsvLazyQuery = exports.useFetchProjectLinksClicksInfoCsvQuery = exports.FetchProjectLinksClicksInfoCsvDocument = exports.useFetchMonitoringPageLazyQuery = exports.useFetchMonitoringPageQuery = exports.FetchMonitoringPageDocument = exports.useFetchLeaderboardProjectsPageLazyQuery = exports.useFetchLeaderboardProjectsPageQuery = exports.FetchLeaderboardProjectsPageDocument = exports.useFetchLeaderboardLazyQuery = exports.useFetchLeaderboardQuery = exports.FetchLeaderboardDocument = exports.useFetchDefaultRateLimitsLazyQuery = exports.useFetchDefaultRateLimitsQuery = exports.FetchDefaultRateLimitsDocument = exports.useFetchCompanyTokensPageLazyQuery = exports.useFetchCompanyTokensPageQuery = exports.FetchCompanyTokensPageDocument = exports.useFetchBlockchainsLazyQuery = exports.useFetchBlockchainsQuery = exports.FetchBlockchainsDocument = exports.useFetchAllCountriesLazyQuery = exports.useFetchAllCountriesQuery = exports.FetchAllCountriesDocument = exports.useFetchAdminXpPageLazyQuery = exports.useFetchAdminXpPageQuery = exports.FetchAdminXpPageDocument = exports.useFetchAdminUsersPageLazyQuery = exports.useFetchAdminUsersPageQuery = void 0;
|
|
30
30
|
const client_1 = require("@apollo/client");
|
|
31
31
|
const Apollo = __importStar(require("@apollo/client"));
|
|
32
32
|
var IAccessType;
|
|
@@ -2553,6 +2553,36 @@ function useFetchMonitoringPageLazyQuery(baseOptions) {
|
|
|
2553
2553
|
return Apollo.useLazyQuery(exports.FetchMonitoringPageDocument, baseOptions);
|
|
2554
2554
|
}
|
|
2555
2555
|
exports.useFetchMonitoringPageLazyQuery = useFetchMonitoringPageLazyQuery;
|
|
2556
|
+
exports.FetchProjectLinksClicksInfoCsvDocument = (0, client_1.gql) `
|
|
2557
|
+
query FetchProjectLinksClicksInfoCsv($blockchain: String!, $contract: String!) {
|
|
2558
|
+
fetchProjectLinksClicksInfoCsv(blockchain: $blockchain, contract: $contract)
|
|
2559
|
+
}
|
|
2560
|
+
`;
|
|
2561
|
+
/**
|
|
2562
|
+
* __useFetchProjectLinksClicksInfoCsvQuery__
|
|
2563
|
+
*
|
|
2564
|
+
* To run a query within a React component, call `useFetchProjectLinksClicksInfoCsvQuery` and pass it any options that fit your needs.
|
|
2565
|
+
* When your component renders, `useFetchProjectLinksClicksInfoCsvQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
2566
|
+
* you can use to render your UI.
|
|
2567
|
+
*
|
|
2568
|
+
* @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;
|
|
2569
|
+
*
|
|
2570
|
+
* @example
|
|
2571
|
+
* const { data, loading, error } = useFetchProjectLinksClicksInfoCsvQuery({
|
|
2572
|
+
* variables: {
|
|
2573
|
+
* blockchain: // value for 'blockchain'
|
|
2574
|
+
* contract: // value for 'contract'
|
|
2575
|
+
* },
|
|
2576
|
+
* });
|
|
2577
|
+
*/
|
|
2578
|
+
function useFetchProjectLinksClicksInfoCsvQuery(baseOptions) {
|
|
2579
|
+
return Apollo.useQuery(exports.FetchProjectLinksClicksInfoCsvDocument, baseOptions);
|
|
2580
|
+
}
|
|
2581
|
+
exports.useFetchProjectLinksClicksInfoCsvQuery = useFetchProjectLinksClicksInfoCsvQuery;
|
|
2582
|
+
function useFetchProjectLinksClicksInfoCsvLazyQuery(baseOptions) {
|
|
2583
|
+
return Apollo.useLazyQuery(exports.FetchProjectLinksClicksInfoCsvDocument, baseOptions);
|
|
2584
|
+
}
|
|
2585
|
+
exports.useFetchProjectLinksClicksInfoCsvLazyQuery = useFetchProjectLinksClicksInfoCsvLazyQuery;
|
|
2556
2586
|
exports.FetchProjectReactionsInfoCsvDocument = (0, client_1.gql) `
|
|
2557
2587
|
query FetchProjectReactionsInfoCsv($blockchain: String!, $contract: String!) {
|
|
2558
2588
|
fetchProjectReactionsInfoCsv(blockchain: $blockchain, contract: $contract)
|
|
@@ -204,6 +204,13 @@ export type IResolversParentTypes = {
|
|
|
204
204
|
Profile: IProfile;
|
|
205
205
|
Query: {};
|
|
206
206
|
};
|
|
207
|
+
export type IDeferDirectiveArgs = {
|
|
208
|
+
if?: Scalars['Boolean'];
|
|
209
|
+
label?: Maybe<Scalars['String']>;
|
|
210
|
+
};
|
|
211
|
+
export type IDeferDirectiveResolver<Result, Parent, ContextType = any, Args = IDeferDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
|
212
|
+
export type IExperimental_DisableErrorPropagationDirectiveArgs = {};
|
|
213
|
+
export type IExperimental_DisableErrorPropagationDirectiveResolver<Result, Parent, ContextType = any, Args = IExperimental_DisableErrorPropagationDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
|
207
214
|
export type IOneOfDirectiveArgs = {};
|
|
208
215
|
export type IOneOfDirectiveResolver<Result, Parent, ContextType = any, Args = IOneOfDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
|
209
216
|
export type IAssetResolvers<ContextType = any, ParentType extends IResolversParentTypes['Asset'] = IResolversParentTypes['Asset']> = {
|
|
@@ -325,6 +332,8 @@ export type IResolvers<ContextType = any> = {
|
|
|
325
332
|
Query?: IQueryResolvers<ContextType>;
|
|
326
333
|
};
|
|
327
334
|
export type IDirectiveResolvers<ContextType = any> = {
|
|
335
|
+
defer?: IDeferDirectiveResolver<any, any, ContextType>;
|
|
336
|
+
experimental_disableErrorPropagation?: IExperimental_DisableErrorPropagationDirectiveResolver<any, any, ContextType>;
|
|
328
337
|
oneOf?: IOneOfDirectiveResolver<any, any, ContextType>;
|
|
329
338
|
};
|
|
330
339
|
export type IDislikeAssetMutationVariables = Exact<{
|
|
@@ -132,6 +132,13 @@ export type IResolversParentTypes = {
|
|
|
132
132
|
TestResponse: ITestResponse;
|
|
133
133
|
TokenPair: ITokenPair;
|
|
134
134
|
};
|
|
135
|
+
export type IDeferDirectiveArgs = {
|
|
136
|
+
if?: Scalars['Boolean'];
|
|
137
|
+
label?: Maybe<Scalars['String']>;
|
|
138
|
+
};
|
|
139
|
+
export type IDeferDirectiveResolver<Result, Parent, ContextType = any, Args = IDeferDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
|
140
|
+
export type IExperimental_DisableErrorPropagationDirectiveArgs = {};
|
|
141
|
+
export type IExperimental_DisableErrorPropagationDirectiveResolver<Result, Parent, ContextType = any, Args = IExperimental_DisableErrorPropagationDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
|
135
142
|
export type IOneOfDirectiveArgs = {};
|
|
136
143
|
export type IOneOfDirectiveResolver<Result, Parent, ContextType = any, Args = IOneOfDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
|
137
144
|
export type ILoginResolvers<ContextType = any, ParentType extends IResolversParentTypes['Login'] = IResolversParentTypes['Login']> = {
|
|
@@ -183,6 +190,8 @@ export type IResolvers<ContextType = any> = {
|
|
|
183
190
|
TokenPair?: ITokenPairResolvers<ContextType>;
|
|
184
191
|
};
|
|
185
192
|
export type IDirectiveResolvers<ContextType = any> = {
|
|
193
|
+
defer?: IDeferDirectiveResolver<any, any, ContextType>;
|
|
194
|
+
experimental_disableErrorPropagation?: IExperimental_DisableErrorPropagationDirectiveResolver<any, any, ContextType>;
|
|
186
195
|
oneOf?: IOneOfDirectiveResolver<any, any, ContextType>;
|
|
187
196
|
};
|
|
188
197
|
export type IRefreshTokenMutationVariables = Exact<{
|
|
@@ -158,8 +158,11 @@ export type IMultiversxAudit = {
|
|
|
158
158
|
export type IMutation = {
|
|
159
159
|
setDummy: Scalars['String'];
|
|
160
160
|
createNonce: Scalars['String'];
|
|
161
|
+
createAdminNonce: INonce;
|
|
161
162
|
createTonNonce: Scalars['String'];
|
|
162
163
|
createEvmNonce: Scalars['String'];
|
|
164
|
+
createMfaSecret: Scalars['String'];
|
|
165
|
+
verifyMfaSecret: Scalars['Boolean'];
|
|
163
166
|
signInAdminMetamask: IIdentity;
|
|
164
167
|
signInMetamask: IIdentity;
|
|
165
168
|
signInTezos: IIdentity;
|
|
@@ -189,10 +192,19 @@ export type IMutationCreateNonceArgs = {
|
|
|
189
192
|
blockchain: Scalars['String'];
|
|
190
193
|
chainId?: Maybe<Scalars['String']>;
|
|
191
194
|
};
|
|
195
|
+
export type IMutationCreateAdminNonceArgs = {
|
|
196
|
+
address: Scalars['String'];
|
|
197
|
+
blockchain: Scalars['String'];
|
|
198
|
+
chainId?: Maybe<Scalars['String']>;
|
|
199
|
+
};
|
|
200
|
+
export type IMutationVerifyMfaSecretArgs = {
|
|
201
|
+
mfaCode: Scalars['String'];
|
|
202
|
+
};
|
|
192
203
|
export type IMutationSignInAdminMetamaskArgs = {
|
|
193
204
|
signature: Scalars['String'];
|
|
194
205
|
address: Scalars['String'];
|
|
195
206
|
chainId: Scalars['String'];
|
|
207
|
+
mfaCode?: Maybe<Scalars['String']>;
|
|
196
208
|
};
|
|
197
209
|
export type IMutationSignInMetamaskArgs = {
|
|
198
210
|
signature: Scalars['String'];
|
|
@@ -323,6 +335,10 @@ export type IMyProfileV2 = {
|
|
|
323
335
|
tierName?: Maybe<Scalars['String']>;
|
|
324
336
|
shareLink?: Maybe<Scalars['String']>;
|
|
325
337
|
};
|
|
338
|
+
export type INonce = {
|
|
339
|
+
nonce: Scalars['String'];
|
|
340
|
+
mfaEnabled: Scalars['Boolean'];
|
|
341
|
+
};
|
|
326
342
|
export type IProfile = {
|
|
327
343
|
userId: Scalars['ID'];
|
|
328
344
|
username?: Maybe<Scalars['String']>;
|
|
@@ -505,6 +521,7 @@ export type IResolversTypes = {
|
|
|
505
521
|
MultiversxAudit: ResolverTypeWrapper<IMultiversxAudit>;
|
|
506
522
|
Mutation: ResolverTypeWrapper<{}>;
|
|
507
523
|
MyProfileV2: ResolverTypeWrapper<IMyProfileV2>;
|
|
524
|
+
Nonce: ResolverTypeWrapper<INonce>;
|
|
508
525
|
Profile: ResolverTypeWrapper<IProfile>;
|
|
509
526
|
Proof: IProof;
|
|
510
527
|
Query: ResolverTypeWrapper<{}>;
|
|
@@ -542,6 +559,7 @@ export type IResolversParentTypes = {
|
|
|
542
559
|
MultiversxAudit: IMultiversxAudit;
|
|
543
560
|
Mutation: {};
|
|
544
561
|
MyProfileV2: IMyProfileV2;
|
|
562
|
+
Nonce: INonce;
|
|
545
563
|
Profile: IProfile;
|
|
546
564
|
Proof: IProof;
|
|
547
565
|
Query: {};
|
|
@@ -572,6 +590,13 @@ export type IConnectionDirectiveArgs = {
|
|
|
572
590
|
for: Scalars['String'];
|
|
573
591
|
};
|
|
574
592
|
export type IConnectionDirectiveResolver<Result, Parent, ContextType = any, Args = IConnectionDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
|
593
|
+
export type IDeferDirectiveArgs = {
|
|
594
|
+
if?: Scalars['Boolean'];
|
|
595
|
+
label?: Maybe<Scalars['String']>;
|
|
596
|
+
};
|
|
597
|
+
export type IDeferDirectiveResolver<Result, Parent, ContextType = any, Args = IDeferDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
|
598
|
+
export type IExperimental_DisableErrorPropagationDirectiveArgs = {};
|
|
599
|
+
export type IExperimental_DisableErrorPropagationDirectiveResolver<Result, Parent, ContextType = any, Args = IExperimental_DisableErrorPropagationDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
|
575
600
|
export type IOneOfDirectiveArgs = {};
|
|
576
601
|
export type IOneOfDirectiveResolver<Result, Parent, ContextType = any, Args = IOneOfDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
|
577
602
|
export type IAuditBalanceCollectionResolvers<ContextType = any, ParentType extends IResolversParentTypes['AuditBalanceCollection'] = IResolversParentTypes['AuditBalanceCollection']> = {
|
|
@@ -658,8 +683,11 @@ export type IMultiversxAuditResolvers<ContextType = any, ParentType extends IRes
|
|
|
658
683
|
export type IMutationResolvers<ContextType = any, ParentType extends IResolversParentTypes['Mutation'] = IResolversParentTypes['Mutation']> = {
|
|
659
684
|
setDummy?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
660
685
|
createNonce?: Resolver<IResolversTypes['String'], ParentType, ContextType, RequireFields<IMutationCreateNonceArgs, 'address' | 'blockchain'>>;
|
|
686
|
+
createAdminNonce?: Resolver<IResolversTypes['Nonce'], ParentType, ContextType, RequireFields<IMutationCreateAdminNonceArgs, 'address' | 'blockchain'>>;
|
|
661
687
|
createTonNonce?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
662
688
|
createEvmNonce?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
689
|
+
createMfaSecret?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
690
|
+
verifyMfaSecret?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationVerifyMfaSecretArgs, 'mfaCode'>>;
|
|
663
691
|
signInAdminMetamask?: Resolver<IResolversTypes['Identity'], ParentType, ContextType, RequireFields<IMutationSignInAdminMetamaskArgs, 'signature' | 'address' | 'chainId'>>;
|
|
664
692
|
signInMetamask?: Resolver<IResolversTypes['Identity'], ParentType, ContextType, RequireFields<IMutationSignInMetamaskArgs, 'signature' | 'address' | 'chainId'>>;
|
|
665
693
|
signInTezos?: Resolver<IResolversTypes['Identity'], ParentType, ContextType, RequireFields<IMutationSignInTezosArgs, 'signature' | 'pubkey'>>;
|
|
@@ -715,6 +743,11 @@ export type IMyProfileV2Resolvers<ContextType = any, ParentType extends IResolve
|
|
|
715
743
|
shareLink?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
716
744
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
717
745
|
};
|
|
746
|
+
export type INonceResolvers<ContextType = any, ParentType extends IResolversParentTypes['Nonce'] = IResolversParentTypes['Nonce']> = {
|
|
747
|
+
nonce?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
748
|
+
mfaEnabled?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
|
|
749
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
750
|
+
};
|
|
718
751
|
export type IProfileResolvers<ContextType = any, ParentType extends IResolversParentTypes['Profile'] = IResolversParentTypes['Profile']> = {
|
|
719
752
|
userId?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
|
720
753
|
username?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
@@ -807,6 +840,7 @@ export type IResolvers<ContextType = any> = {
|
|
|
807
840
|
MultiversxAudit?: IMultiversxAuditResolvers<ContextType>;
|
|
808
841
|
Mutation?: IMutationResolvers<ContextType>;
|
|
809
842
|
MyProfileV2?: IMyProfileV2Resolvers<ContextType>;
|
|
843
|
+
Nonce?: INonceResolvers<ContextType>;
|
|
810
844
|
Profile?: IProfileResolvers<ContextType>;
|
|
811
845
|
Query?: IQueryResolvers<ContextType>;
|
|
812
846
|
Social?: ISocialResolvers<ContextType>;
|
|
@@ -820,6 +854,8 @@ export type IDirectiveResolvers<ContextType = any> = {
|
|
|
820
854
|
Range?: IRangeDirectiveResolver<any, any, ContextType>;
|
|
821
855
|
Size?: ISizeDirectiveResolver<any, any, ContextType>;
|
|
822
856
|
connection?: IConnectionDirectiveResolver<any, any, ContextType>;
|
|
857
|
+
defer?: IDeferDirectiveResolver<any, any, ContextType>;
|
|
858
|
+
experimental_disableErrorPropagation?: IExperimental_DisableErrorPropagationDirectiveResolver<any, any, ContextType>;
|
|
823
859
|
oneOf?: IOneOfDirectiveResolver<any, any, ContextType>;
|
|
824
860
|
};
|
|
825
861
|
export type ISignInEthereumWeb3AuthMutationVariables = Exact<{
|
|
@@ -866,10 +902,22 @@ export type IAddWalletTonMutationVariables = Exact<{
|
|
|
866
902
|
request: ICheckTonProofRequest;
|
|
867
903
|
}>;
|
|
868
904
|
export type IAddWalletTonMutation = Pick<IMutation, 'addWalletTon'>;
|
|
905
|
+
export type ICreateAdminNonceMutationVariables = Exact<{
|
|
906
|
+
address: Scalars['String'];
|
|
907
|
+
blockchain: Scalars['String'];
|
|
908
|
+
chainId?: Maybe<Scalars['String']>;
|
|
909
|
+
}>;
|
|
910
|
+
export type ICreateAdminNonceMutation = {
|
|
911
|
+
createAdminNonce: Pick<INonce, 'nonce' | 'mfaEnabled'>;
|
|
912
|
+
};
|
|
869
913
|
export type ICreateEvmNonceMutationVariables = Exact<{
|
|
870
914
|
[key: string]: never;
|
|
871
915
|
}>;
|
|
872
916
|
export type ICreateEvmNonceMutation = Pick<IMutation, 'createEvmNonce'>;
|
|
917
|
+
export type ICreateMfaSecretMutationVariables = Exact<{
|
|
918
|
+
[key: string]: never;
|
|
919
|
+
}>;
|
|
920
|
+
export type ICreateMfaSecretMutation = Pick<IMutation, 'createMfaSecret'>;
|
|
873
921
|
export type ICreateNonceMutationVariables = Exact<{
|
|
874
922
|
address: Scalars['String'];
|
|
875
923
|
blockchain: Scalars['String'];
|
|
@@ -911,6 +959,7 @@ export type ISignInAdminMetamaskMutationVariables = Exact<{
|
|
|
911
959
|
signature: Scalars['String'];
|
|
912
960
|
address: Scalars['String'];
|
|
913
961
|
chainId: Scalars['String'];
|
|
962
|
+
mfaCode: Scalars['String'];
|
|
914
963
|
}>;
|
|
915
964
|
export type ISignInAdminMetamaskMutation = {
|
|
916
965
|
signInAdminMetamask: (Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode' | 'role' | 'reftypeId' | 'reftypeName' | 'reftypeColor'> & {
|
|
@@ -1017,6 +1066,10 @@ export type IUpdateProfileMutationVariables = Exact<{
|
|
|
1017
1066
|
telegramLink?: Maybe<Scalars['String']>;
|
|
1018
1067
|
}>;
|
|
1019
1068
|
export type IUpdateProfileMutation = Pick<IMutation, 'updateProfile'>;
|
|
1069
|
+
export type IVerifyMfaSecretMutationVariables = Exact<{
|
|
1070
|
+
mfaCode: Scalars['String'];
|
|
1071
|
+
}>;
|
|
1072
|
+
export type IVerifyMfaSecretMutation = Pick<IMutation, 'verifyMfaSecret'>;
|
|
1020
1073
|
export type IFetchAggregatedMultiversxAuditQueryVariables = Exact<{
|
|
1021
1074
|
userId: Scalars['ID'];
|
|
1022
1075
|
}>;
|
|
@@ -1266,6 +1319,35 @@ export declare function useAddWalletTonMutation(baseOptions?: Apollo.MutationHoo
|
|
|
1266
1319
|
export type AddWalletTonMutationHookResult = ReturnType<typeof useAddWalletTonMutation>;
|
|
1267
1320
|
export type AddWalletTonMutationResult = Apollo.MutationResult<IAddWalletTonMutation>;
|
|
1268
1321
|
export type AddWalletTonMutationOptions = Apollo.BaseMutationOptions<IAddWalletTonMutation, IAddWalletTonMutationVariables>;
|
|
1322
|
+
export declare const CreateAdminNonceDocument: Apollo.DocumentNode;
|
|
1323
|
+
export type ICreateAdminNonceMutationFn = Apollo.MutationFunction<ICreateAdminNonceMutation, ICreateAdminNonceMutationVariables>;
|
|
1324
|
+
/**
|
|
1325
|
+
* __useCreateAdminNonceMutation__
|
|
1326
|
+
*
|
|
1327
|
+
* To run a mutation, you first call `useCreateAdminNonceMutation` within a React component and pass it any options that fit your needs.
|
|
1328
|
+
* When your component renders, `useCreateAdminNonceMutation` returns a tuple that includes:
|
|
1329
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
1330
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
1331
|
+
*
|
|
1332
|
+
* @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;
|
|
1333
|
+
*
|
|
1334
|
+
* @example
|
|
1335
|
+
* const [createAdminNonceMutation, { data, loading, error }] = useCreateAdminNonceMutation({
|
|
1336
|
+
* variables: {
|
|
1337
|
+
* address: // value for 'address'
|
|
1338
|
+
* blockchain: // value for 'blockchain'
|
|
1339
|
+
* chainId: // value for 'chainId'
|
|
1340
|
+
* },
|
|
1341
|
+
* });
|
|
1342
|
+
*/
|
|
1343
|
+
export declare function useCreateAdminNonceMutation(baseOptions?: Apollo.MutationHookOptions<ICreateAdminNonceMutation, ICreateAdminNonceMutationVariables>): Apollo.MutationTuple<ICreateAdminNonceMutation, Exact<{
|
|
1344
|
+
address: string;
|
|
1345
|
+
blockchain: string;
|
|
1346
|
+
chainId?: Maybe<string> | undefined;
|
|
1347
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1348
|
+
export type CreateAdminNonceMutationHookResult = ReturnType<typeof useCreateAdminNonceMutation>;
|
|
1349
|
+
export type CreateAdminNonceMutationResult = Apollo.MutationResult<ICreateAdminNonceMutation>;
|
|
1350
|
+
export type CreateAdminNonceMutationOptions = Apollo.BaseMutationOptions<ICreateAdminNonceMutation, ICreateAdminNonceMutationVariables>;
|
|
1269
1351
|
export declare const CreateEvmNonceDocument: Apollo.DocumentNode;
|
|
1270
1352
|
export type ICreateEvmNonceMutationFn = Apollo.MutationFunction<ICreateEvmNonceMutation, ICreateEvmNonceMutationVariables>;
|
|
1271
1353
|
/**
|
|
@@ -1290,6 +1372,30 @@ export declare function useCreateEvmNonceMutation(baseOptions?: Apollo.MutationH
|
|
|
1290
1372
|
export type CreateEvmNonceMutationHookResult = ReturnType<typeof useCreateEvmNonceMutation>;
|
|
1291
1373
|
export type CreateEvmNonceMutationResult = Apollo.MutationResult<ICreateEvmNonceMutation>;
|
|
1292
1374
|
export type CreateEvmNonceMutationOptions = Apollo.BaseMutationOptions<ICreateEvmNonceMutation, ICreateEvmNonceMutationVariables>;
|
|
1375
|
+
export declare const CreateMfaSecretDocument: Apollo.DocumentNode;
|
|
1376
|
+
export type ICreateMfaSecretMutationFn = Apollo.MutationFunction<ICreateMfaSecretMutation, ICreateMfaSecretMutationVariables>;
|
|
1377
|
+
/**
|
|
1378
|
+
* __useCreateMfaSecretMutation__
|
|
1379
|
+
*
|
|
1380
|
+
* To run a mutation, you first call `useCreateMfaSecretMutation` within a React component and pass it any options that fit your needs.
|
|
1381
|
+
* When your component renders, `useCreateMfaSecretMutation` returns a tuple that includes:
|
|
1382
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
1383
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
1384
|
+
*
|
|
1385
|
+
* @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;
|
|
1386
|
+
*
|
|
1387
|
+
* @example
|
|
1388
|
+
* const [createMfaSecretMutation, { data, loading, error }] = useCreateMfaSecretMutation({
|
|
1389
|
+
* variables: {
|
|
1390
|
+
* },
|
|
1391
|
+
* });
|
|
1392
|
+
*/
|
|
1393
|
+
export declare function useCreateMfaSecretMutation(baseOptions?: Apollo.MutationHookOptions<ICreateMfaSecretMutation, ICreateMfaSecretMutationVariables>): Apollo.MutationTuple<ICreateMfaSecretMutation, Exact<{
|
|
1394
|
+
[key: string]: never;
|
|
1395
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1396
|
+
export type CreateMfaSecretMutationHookResult = ReturnType<typeof useCreateMfaSecretMutation>;
|
|
1397
|
+
export type CreateMfaSecretMutationResult = Apollo.MutationResult<ICreateMfaSecretMutation>;
|
|
1398
|
+
export type CreateMfaSecretMutationOptions = Apollo.BaseMutationOptions<ICreateMfaSecretMutation, ICreateMfaSecretMutationVariables>;
|
|
1293
1399
|
export declare const CreateNonceDocument: Apollo.DocumentNode;
|
|
1294
1400
|
export type ICreateNonceMutationFn = Apollo.MutationFunction<ICreateNonceMutation, ICreateNonceMutationVariables>;
|
|
1295
1401
|
/**
|
|
@@ -1496,6 +1602,7 @@ export type ISignInAdminMetamaskMutationFn = Apollo.MutationFunction<ISignInAdmi
|
|
|
1496
1602
|
* signature: // value for 'signature'
|
|
1497
1603
|
* address: // value for 'address'
|
|
1498
1604
|
* chainId: // value for 'chainId'
|
|
1605
|
+
* mfaCode: // value for 'mfaCode'
|
|
1499
1606
|
* },
|
|
1500
1607
|
* });
|
|
1501
1608
|
*/
|
|
@@ -1503,6 +1610,7 @@ export declare function useSignInAdminMetamaskMutation(baseOptions?: Apollo.Muta
|
|
|
1503
1610
|
signature: string;
|
|
1504
1611
|
address: string;
|
|
1505
1612
|
chainId: string;
|
|
1613
|
+
mfaCode: string;
|
|
1506
1614
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1507
1615
|
export type SignInAdminMetamaskMutationHookResult = ReturnType<typeof useSignInAdminMetamaskMutation>;
|
|
1508
1616
|
export type SignInAdminMetamaskMutationResult = Apollo.MutationResult<ISignInAdminMetamaskMutation>;
|
|
@@ -1736,6 +1844,31 @@ export declare function useUpdateProfileMutation(baseOptions?: Apollo.MutationHo
|
|
|
1736
1844
|
export type UpdateProfileMutationHookResult = ReturnType<typeof useUpdateProfileMutation>;
|
|
1737
1845
|
export type UpdateProfileMutationResult = Apollo.MutationResult<IUpdateProfileMutation>;
|
|
1738
1846
|
export type UpdateProfileMutationOptions = Apollo.BaseMutationOptions<IUpdateProfileMutation, IUpdateProfileMutationVariables>;
|
|
1847
|
+
export declare const VerifyMfaSecretDocument: Apollo.DocumentNode;
|
|
1848
|
+
export type IVerifyMfaSecretMutationFn = Apollo.MutationFunction<IVerifyMfaSecretMutation, IVerifyMfaSecretMutationVariables>;
|
|
1849
|
+
/**
|
|
1850
|
+
* __useVerifyMfaSecretMutation__
|
|
1851
|
+
*
|
|
1852
|
+
* To run a mutation, you first call `useVerifyMfaSecretMutation` within a React component and pass it any options that fit your needs.
|
|
1853
|
+
* When your component renders, `useVerifyMfaSecretMutation` returns a tuple that includes:
|
|
1854
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
1855
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
1856
|
+
*
|
|
1857
|
+
* @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;
|
|
1858
|
+
*
|
|
1859
|
+
* @example
|
|
1860
|
+
* const [verifyMfaSecretMutation, { data, loading, error }] = useVerifyMfaSecretMutation({
|
|
1861
|
+
* variables: {
|
|
1862
|
+
* mfaCode: // value for 'mfaCode'
|
|
1863
|
+
* },
|
|
1864
|
+
* });
|
|
1865
|
+
*/
|
|
1866
|
+
export declare function useVerifyMfaSecretMutation(baseOptions?: Apollo.MutationHookOptions<IVerifyMfaSecretMutation, IVerifyMfaSecretMutationVariables>): Apollo.MutationTuple<IVerifyMfaSecretMutation, Exact<{
|
|
1867
|
+
mfaCode: string;
|
|
1868
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1869
|
+
export type VerifyMfaSecretMutationHookResult = ReturnType<typeof useVerifyMfaSecretMutation>;
|
|
1870
|
+
export type VerifyMfaSecretMutationResult = Apollo.MutationResult<IVerifyMfaSecretMutation>;
|
|
1871
|
+
export type VerifyMfaSecretMutationOptions = Apollo.BaseMutationOptions<IVerifyMfaSecretMutation, IVerifyMfaSecretMutationVariables>;
|
|
1739
1872
|
export declare const FetchAggregatedMultiversxAuditDocument: Apollo.DocumentNode;
|
|
1740
1873
|
/**
|
|
1741
1874
|
* __useFetchAggregatedMultiversxAuditQuery__
|