@ludo.ninja/api 3.2.23 → 3.2.24
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 +62 -0
- package/build/graphql_tools/__generated__/adminHost/schema.js +11 -4
- package/build/graphql_tools/__generated__/collectionsHost/schema.d.ts +9 -0
- package/build/graphql_tools/__generated__/experiencesHost/schema.d.ts +5 -5
- package/build/graphql_tools/__generated__/mintInfoHost/schema.d.ts +35 -0
- package/build/graphql_tools/__generated__/mintInfoHost/schema.js +30 -1
- package/build/graphql_tools/__generated__/notificationsHost/schema.d.ts +1 -1
- package/build/graphql_tools/__generated__/tapHost/schema.d.ts +1 -1
- package/build/index.d.ts +19 -7
- package/package.json +1 -1
- package/src/graphql_tools/__generated__/adminHost/schema.ts +71 -0
- package/src/graphql_tools/__generated__/collectionsHost/schema.ts +15 -0
- package/src/graphql_tools/__generated__/mintInfoHost/schema.ts +46 -1
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -337,6 +337,7 @@ export type IAdminReferral = {
|
|
|
337
337
|
mainWallet?: Maybe<IWallet>;
|
|
338
338
|
referredUsersNum?: Maybe<Scalars['Int']>;
|
|
339
339
|
referrals?: Maybe<Array<IReferredUsersInfo>>;
|
|
340
|
+
referralLinks?: Maybe<Array<IReferralLink>>;
|
|
340
341
|
};
|
|
341
342
|
export type IAdminUser = {
|
|
342
343
|
userId: Scalars['ID'];
|
|
@@ -539,6 +540,27 @@ export declare enum IDevicePlatform {
|
|
|
539
540
|
Computer = "COMPUTER",
|
|
540
541
|
Unknown = "UNKNOWN"
|
|
541
542
|
}
|
|
543
|
+
export type IFeaturePackPurchase = {
|
|
544
|
+
userId: Scalars['String'];
|
|
545
|
+
username?: Maybe<Scalars['String']>;
|
|
546
|
+
price: Scalars['Float'];
|
|
547
|
+
featurePackId: Scalars['String'];
|
|
548
|
+
featurePackName: Scalars['String'];
|
|
549
|
+
};
|
|
550
|
+
export type IFeaturePackPurchaseFilterInput = {
|
|
551
|
+
userIdTerm?: Maybe<Scalars['String']>;
|
|
552
|
+
usernameTerm?: Maybe<Scalars['String']>;
|
|
553
|
+
price?: Maybe<Scalars['Float']>;
|
|
554
|
+
featurePackId?: Maybe<Scalars['String']>;
|
|
555
|
+
};
|
|
556
|
+
export type IFeaturePackPurchasePage = {
|
|
557
|
+
purchases?: Maybe<Array<IFeaturePackPurchase>>;
|
|
558
|
+
nextPage?: Maybe<IAdminPage>;
|
|
559
|
+
};
|
|
560
|
+
export type IFeaturePackPurchaseSortInput = {
|
|
561
|
+
sortByUsername?: Maybe<ISort>;
|
|
562
|
+
sortByFeaturePack?: Maybe<ISort>;
|
|
563
|
+
};
|
|
542
564
|
export type IFormOpportunityFilterInput = {
|
|
543
565
|
idTerm?: Maybe<Scalars['String']>;
|
|
544
566
|
userIdTerm?: Maybe<Scalars['String']>;
|
|
@@ -930,6 +952,7 @@ export type IPublisherInput = {
|
|
|
930
952
|
};
|
|
931
953
|
export type IQuery = {
|
|
932
954
|
getDummy: Scalars['String'];
|
|
955
|
+
fetchFeaturePackPurchasePage: IFeaturePackPurchasePage;
|
|
933
956
|
fetchContactSupportPage: IContactSupportPage;
|
|
934
957
|
fetchContentReportPage: IContentReportPage;
|
|
935
958
|
fetchInvestorInquiryPage: IInvestorInquiryPage;
|
|
@@ -967,6 +990,11 @@ export type IQuery = {
|
|
|
967
990
|
fetchAdminUsersPage: IUsersPage;
|
|
968
991
|
fetchAdminXpPage: IXpPage;
|
|
969
992
|
};
|
|
993
|
+
export type IQueryFetchFeaturePackPurchasePageArgs = {
|
|
994
|
+
filter: IFeaturePackPurchaseFilterInput;
|
|
995
|
+
sort: IFeaturePackPurchaseSortInput;
|
|
996
|
+
page: IAdminPageInput;
|
|
997
|
+
};
|
|
970
998
|
export type IQueryFetchContactSupportPageArgs = {
|
|
971
999
|
filter: IContactSupportFilterInput;
|
|
972
1000
|
sort: IContactSupportSortInput;
|
|
@@ -1115,6 +1143,7 @@ export type IRateLimitsInput = {
|
|
|
1115
1143
|
};
|
|
1116
1144
|
export type IReferralLink = {
|
|
1117
1145
|
referralUrl?: Maybe<Scalars['String']>;
|
|
1146
|
+
referralType?: Maybe<ITrafficReferralType>;
|
|
1118
1147
|
numOfReferredIps?: Maybe<Scalars['Int']>;
|
|
1119
1148
|
numOfReferredUsers?: Maybe<Scalars['Int']>;
|
|
1120
1149
|
refcode?: Maybe<Scalars['String']>;
|
|
@@ -1255,6 +1284,12 @@ export type ITiersSortInput = {
|
|
|
1255
1284
|
sortByName?: Maybe<ISort>;
|
|
1256
1285
|
sortByFee?: Maybe<ISort>;
|
|
1257
1286
|
};
|
|
1287
|
+
export declare enum ITrafficReferralType {
|
|
1288
|
+
Opportunity = "OPPORTUNITY",
|
|
1289
|
+
Profile = "PROFILE",
|
|
1290
|
+
Brand = "BRAND",
|
|
1291
|
+
Project = "PROJECT"
|
|
1292
|
+
}
|
|
1258
1293
|
export type IUserFeedback = {
|
|
1259
1294
|
id: Scalars['String'];
|
|
1260
1295
|
userId?: Maybe<Scalars['String']>;
|
|
@@ -1434,6 +1469,10 @@ export type IResolversTypes = {
|
|
|
1434
1469
|
ContentReportSortInput: IContentReportSortInput;
|
|
1435
1470
|
Country: ResolverTypeWrapper<ICountry>;
|
|
1436
1471
|
DevicePlatform: IDevicePlatform;
|
|
1472
|
+
FeaturePackPurchase: ResolverTypeWrapper<IFeaturePackPurchase>;
|
|
1473
|
+
FeaturePackPurchaseFilterInput: IFeaturePackPurchaseFilterInput;
|
|
1474
|
+
FeaturePackPurchasePage: ResolverTypeWrapper<IFeaturePackPurchasePage>;
|
|
1475
|
+
FeaturePackPurchaseSortInput: IFeaturePackPurchaseSortInput;
|
|
1437
1476
|
FormOpportunityFilterInput: IFormOpportunityFilterInput;
|
|
1438
1477
|
FormOpportunityPage: ResolverTypeWrapper<IFormOpportunityPage>;
|
|
1439
1478
|
FormOpportunitySortInput: IFormOpportunitySortInput;
|
|
@@ -1495,6 +1534,7 @@ export type IResolversTypes = {
|
|
|
1495
1534
|
TiersFilterInput: ITiersFilterInput;
|
|
1496
1535
|
TiersPage: ResolverTypeWrapper<ITiersPage>;
|
|
1497
1536
|
TiersSortInput: ITiersSortInput;
|
|
1537
|
+
TrafficReferralType: ITrafficReferralType;
|
|
1498
1538
|
Upload: ResolverTypeWrapper<Scalars['Upload']>;
|
|
1499
1539
|
UserFeedback: ResolverTypeWrapper<IUserFeedback>;
|
|
1500
1540
|
UserFeedbackFilterInput: IUserFeedbackFilterInput;
|
|
@@ -1568,6 +1608,10 @@ export type IResolversParentTypes = {
|
|
|
1568
1608
|
ContentReportPage: IContentReportPage;
|
|
1569
1609
|
ContentReportSortInput: IContentReportSortInput;
|
|
1570
1610
|
Country: ICountry;
|
|
1611
|
+
FeaturePackPurchase: IFeaturePackPurchase;
|
|
1612
|
+
FeaturePackPurchaseFilterInput: IFeaturePackPurchaseFilterInput;
|
|
1613
|
+
FeaturePackPurchasePage: IFeaturePackPurchasePage;
|
|
1614
|
+
FeaturePackPurchaseSortInput: IFeaturePackPurchaseSortInput;
|
|
1571
1615
|
FormOpportunityFilterInput: IFormOpportunityFilterInput;
|
|
1572
1616
|
FormOpportunityPage: IFormOpportunityPage;
|
|
1573
1617
|
FormOpportunitySortInput: IFormOpportunitySortInput;
|
|
@@ -1877,6 +1921,7 @@ export type IAdminReferralResolvers<ContextType = any, ParentType extends IResol
|
|
|
1877
1921
|
mainWallet?: Resolver<Maybe<IResolversTypes['Wallet']>, ParentType, ContextType>;
|
|
1878
1922
|
referredUsersNum?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
1879
1923
|
referrals?: Resolver<Maybe<Array<IResolversTypes['ReferredUsersInfo']>>, ParentType, ContextType>;
|
|
1924
|
+
referralLinks?: Resolver<Maybe<Array<IResolversTypes['ReferralLink']>>, ParentType, ContextType>;
|
|
1880
1925
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1881
1926
|
};
|
|
1882
1927
|
export type IAdminUserResolvers<ContextType = any, ParentType extends IResolversParentTypes['AdminUser'] = IResolversParentTypes['AdminUser']> = {
|
|
@@ -1964,6 +2009,19 @@ export type ICountryResolvers<ContextType = any, ParentType extends IResolversPa
|
|
|
1964
2009
|
country?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
1965
2010
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1966
2011
|
};
|
|
2012
|
+
export type IFeaturePackPurchaseResolvers<ContextType = any, ParentType extends IResolversParentTypes['FeaturePackPurchase'] = IResolversParentTypes['FeaturePackPurchase']> = {
|
|
2013
|
+
userId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
2014
|
+
username?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2015
|
+
price?: Resolver<IResolversTypes['Float'], ParentType, ContextType>;
|
|
2016
|
+
featurePackId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
2017
|
+
featurePackName?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
2018
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2019
|
+
};
|
|
2020
|
+
export type IFeaturePackPurchasePageResolvers<ContextType = any, ParentType extends IResolversParentTypes['FeaturePackPurchasePage'] = IResolversParentTypes['FeaturePackPurchasePage']> = {
|
|
2021
|
+
purchases?: Resolver<Maybe<Array<IResolversTypes['FeaturePackPurchase']>>, ParentType, ContextType>;
|
|
2022
|
+
nextPage?: Resolver<Maybe<IResolversTypes['AdminPage']>, ParentType, ContextType>;
|
|
2023
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2024
|
+
};
|
|
1967
2025
|
export type IFormOpportunityPageResolvers<ContextType = any, ParentType extends IResolversParentTypes['FormOpportunityPage'] = IResolversParentTypes['FormOpportunityPage']> = {
|
|
1968
2026
|
opportunities?: Resolver<Array<IResolversTypes['AdminFormOpportunity']>, ParentType, ContextType>;
|
|
1969
2027
|
nextPage?: Resolver<Maybe<IResolversTypes['AdminPage']>, ParentType, ContextType>;
|
|
@@ -2064,6 +2122,7 @@ export type IPartnershipInquiryPageResolvers<ContextType = any, ParentType exten
|
|
|
2064
2122
|
};
|
|
2065
2123
|
export type IQueryResolvers<ContextType = any, ParentType extends IResolversParentTypes['Query'] = IResolversParentTypes['Query']> = {
|
|
2066
2124
|
getDummy?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
2125
|
+
fetchFeaturePackPurchasePage?: Resolver<IResolversTypes['FeaturePackPurchasePage'], ParentType, ContextType, RequireFields<IQueryFetchFeaturePackPurchasePageArgs, 'filter' | 'sort' | 'page'>>;
|
|
2067
2126
|
fetchContactSupportPage?: Resolver<IResolversTypes['ContactSupportPage'], ParentType, ContextType, RequireFields<IQueryFetchContactSupportPageArgs, 'filter' | 'sort' | 'page'>>;
|
|
2068
2127
|
fetchContentReportPage?: Resolver<IResolversTypes['ContentReportPage'], ParentType, ContextType, RequireFields<IQueryFetchContentReportPageArgs, 'filter' | 'sort' | 'page'>>;
|
|
2069
2128
|
fetchInvestorInquiryPage?: Resolver<IResolversTypes['InvestorInquiryPage'], ParentType, ContextType, RequireFields<IQueryFetchInvestorInquiryPageArgs, 'filter' | 'sort' | 'page'>>;
|
|
@@ -2111,6 +2170,7 @@ export type IRateLimitsResolvers<ContextType = any, ParentType extends IResolver
|
|
|
2111
2170
|
};
|
|
2112
2171
|
export type IReferralLinkResolvers<ContextType = any, ParentType extends IResolversParentTypes['ReferralLink'] = IResolversParentTypes['ReferralLink']> = {
|
|
2113
2172
|
referralUrl?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2173
|
+
referralType?: Resolver<Maybe<IResolversTypes['TrafficReferralType']>, ParentType, ContextType>;
|
|
2114
2174
|
numOfReferredIps?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
2115
2175
|
numOfReferredUsers?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
2116
2176
|
refcode?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
@@ -2242,6 +2302,8 @@ export type IResolvers<ContextType = any> = {
|
|
|
2242
2302
|
ContactSupportPage?: IContactSupportPageResolvers<ContextType>;
|
|
2243
2303
|
ContentReportPage?: IContentReportPageResolvers<ContextType>;
|
|
2244
2304
|
Country?: ICountryResolvers<ContextType>;
|
|
2305
|
+
FeaturePackPurchase?: IFeaturePackPurchaseResolvers<ContextType>;
|
|
2306
|
+
FeaturePackPurchasePage?: IFeaturePackPurchasePageResolvers<ContextType>;
|
|
2245
2307
|
FormOpportunityPage?: IFormOpportunityPageResolvers<ContextType>;
|
|
2246
2308
|
InvestorInquiryPage?: IInvestorInquiryPageResolvers<ContextType>;
|
|
2247
2309
|
InvitesPage?: IInvitesPageResolvers<ContextType>;
|
|
@@ -23,10 +23,10 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.
|
|
27
|
-
exports.
|
|
28
|
-
exports.
|
|
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;
|
|
26
|
+
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.ITrafficReferralType = 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
|
+
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 = exports.useAddInviteCodesMutation = void 0;
|
|
28
|
+
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 = exports.useFetchUnarchivedReferralTypesQuery = 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 = exports.FetchAdminUsersPageDocument = void 0;
|
|
30
30
|
const client_1 = require("@apollo/client");
|
|
31
31
|
const Apollo = __importStar(require("@apollo/client"));
|
|
32
32
|
var IAccessType;
|
|
@@ -134,6 +134,13 @@ var ITariffPlan;
|
|
|
134
134
|
ITariffPlan["Backend"] = "BACKEND";
|
|
135
135
|
ITariffPlan["Kyc"] = "KYC";
|
|
136
136
|
})(ITariffPlan || (exports.ITariffPlan = ITariffPlan = {}));
|
|
137
|
+
var ITrafficReferralType;
|
|
138
|
+
(function (ITrafficReferralType) {
|
|
139
|
+
ITrafficReferralType["Opportunity"] = "OPPORTUNITY";
|
|
140
|
+
ITrafficReferralType["Profile"] = "PROFILE";
|
|
141
|
+
ITrafficReferralType["Brand"] = "BRAND";
|
|
142
|
+
ITrafficReferralType["Project"] = "PROJECT";
|
|
143
|
+
})(ITrafficReferralType || (exports.ITrafficReferralType = ITrafficReferralType = {}));
|
|
137
144
|
exports.CreateReferralTypeDocument = (0, client_1.gql) `
|
|
138
145
|
mutation CreateReferralType($input: ReferralTypeInput!) {
|
|
139
146
|
createReferralType(input: $input)
|
|
@@ -241,6 +241,13 @@ export type IResolversParentTypes = {
|
|
|
241
241
|
Profile: IProfile;
|
|
242
242
|
Query: {};
|
|
243
243
|
};
|
|
244
|
+
export type IDeferDirectiveArgs = {
|
|
245
|
+
if?: Scalars['Boolean'];
|
|
246
|
+
label?: Maybe<Scalars['String']>;
|
|
247
|
+
};
|
|
248
|
+
export type IDeferDirectiveResolver<Result, Parent, ContextType = any, Args = IDeferDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
|
249
|
+
export type IExperimental_DisableErrorPropagationDirectiveArgs = {};
|
|
250
|
+
export type IExperimental_DisableErrorPropagationDirectiveResolver<Result, Parent, ContextType = any, Args = IExperimental_DisableErrorPropagationDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
|
244
251
|
export type IOneOfDirectiveArgs = {};
|
|
245
252
|
export type IOneOfDirectiveResolver<Result, Parent, ContextType = any, Args = IOneOfDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
|
246
253
|
export type IAttributeResolvers<ContextType = any, ParentType extends IResolversParentTypes['Attribute'] = IResolversParentTypes['Attribute']> = {
|
|
@@ -389,6 +396,8 @@ export type IResolvers<ContextType = any> = {
|
|
|
389
396
|
Query?: IQueryResolvers<ContextType>;
|
|
390
397
|
};
|
|
391
398
|
export type IDirectiveResolvers<ContextType = any> = {
|
|
399
|
+
defer?: IDeferDirectiveResolver<any, any, ContextType>;
|
|
400
|
+
experimental_disableErrorPropagation?: IExperimental_DisableErrorPropagationDirectiveResolver<any, any, ContextType>;
|
|
392
401
|
oneOf?: IOneOfDirectiveResolver<any, any, ContextType>;
|
|
393
402
|
};
|
|
394
403
|
export type IDislikeCollectionMutationVariables = Exact<{
|
|
@@ -424,7 +424,7 @@ export declare const OnCommonOpportunityNotificationDocument: Apollo.DocumentNod
|
|
|
424
424
|
* });
|
|
425
425
|
*/
|
|
426
426
|
export declare function useOnCommonOpportunityNotificationSubscription(baseOptions?: Apollo.SubscriptionHookOptions<IOnCommonOpportunityNotificationSubscription, IOnCommonOpportunityNotificationSubscriptionVariables>): {
|
|
427
|
-
restart()
|
|
427
|
+
restart: () => void;
|
|
428
428
|
loading: boolean;
|
|
429
429
|
data?: IOnCommonOpportunityNotificationSubscription | undefined;
|
|
430
430
|
error?: Apollo.ApolloError | undefined;
|
|
@@ -452,7 +452,7 @@ export declare const OnInviteCodeUsedDocument: Apollo.DocumentNode;
|
|
|
452
452
|
* });
|
|
453
453
|
*/
|
|
454
454
|
export declare function useOnInviteCodeUsedSubscription(baseOptions: Apollo.SubscriptionHookOptions<IOnInviteCodeUsedSubscription, IOnInviteCodeUsedSubscriptionVariables>): {
|
|
455
|
-
restart()
|
|
455
|
+
restart: () => void;
|
|
456
456
|
loading: boolean;
|
|
457
457
|
data?: IOnInviteCodeUsedSubscription | undefined;
|
|
458
458
|
error?: Apollo.ApolloError | undefined;
|
|
@@ -480,7 +480,7 @@ export declare const OnMyExperienceIncrementedDocument: Apollo.DocumentNode;
|
|
|
480
480
|
* });
|
|
481
481
|
*/
|
|
482
482
|
export declare function useOnMyExperienceIncrementedSubscription(baseOptions: Apollo.SubscriptionHookOptions<IOnMyExperienceIncrementedSubscription, IOnMyExperienceIncrementedSubscriptionVariables>): {
|
|
483
|
-
restart()
|
|
483
|
+
restart: () => void;
|
|
484
484
|
loading: boolean;
|
|
485
485
|
data?: IOnMyExperienceIncrementedSubscription | undefined;
|
|
486
486
|
error?: Apollo.ApolloError | undefined;
|
|
@@ -508,7 +508,7 @@ export declare const OnMyExperienceUpdatedDocument: Apollo.DocumentNode;
|
|
|
508
508
|
* });
|
|
509
509
|
*/
|
|
510
510
|
export declare function useOnMyExperienceUpdatedSubscription(baseOptions: Apollo.SubscriptionHookOptions<IOnMyExperienceUpdatedSubscription, IOnMyExperienceUpdatedSubscriptionVariables>): {
|
|
511
|
-
restart()
|
|
511
|
+
restart: () => void;
|
|
512
512
|
loading: boolean;
|
|
513
513
|
data?: IOnMyExperienceUpdatedSubscription | undefined;
|
|
514
514
|
error?: Apollo.ApolloError | undefined;
|
|
@@ -536,7 +536,7 @@ export declare const OnUserOpportunityNotificationDocument: Apollo.DocumentNode;
|
|
|
536
536
|
* });
|
|
537
537
|
*/
|
|
538
538
|
export declare function useOnUserOpportunityNotificationSubscription(baseOptions: Apollo.SubscriptionHookOptions<IOnUserOpportunityNotificationSubscription, IOnUserOpportunityNotificationSubscriptionVariables>): {
|
|
539
|
-
restart()
|
|
539
|
+
restart: () => void;
|
|
540
540
|
loading: boolean;
|
|
541
541
|
data?: IOnUserOpportunityNotificationSubscription | undefined;
|
|
542
542
|
error?: Apollo.ApolloError | undefined;
|
|
@@ -56,6 +56,7 @@ export type IQuery = {
|
|
|
56
56
|
getDummy: Scalars['String'];
|
|
57
57
|
fetchMintingInfo: IMintingInfo;
|
|
58
58
|
fetchGasPrice: Scalars['Long'];
|
|
59
|
+
fetchNativeCoinPrice: Scalars['Float'];
|
|
59
60
|
};
|
|
60
61
|
export type IQueryFetchMintingInfoArgs = {
|
|
61
62
|
input: IMintingInput;
|
|
@@ -63,6 +64,9 @@ export type IQueryFetchMintingInfoArgs = {
|
|
|
63
64
|
export type IQueryFetchGasPriceArgs = {
|
|
64
65
|
chain: IBlockchains;
|
|
65
66
|
};
|
|
67
|
+
export type IQueryFetchNativeCoinPriceArgs = {
|
|
68
|
+
chain: IBlockchains;
|
|
69
|
+
};
|
|
66
70
|
export type ITier = {
|
|
67
71
|
id: Scalars['String'];
|
|
68
72
|
name: Scalars['String'];
|
|
@@ -149,6 +153,7 @@ export type IQueryResolvers<ContextType = any, ParentType extends IResolversPare
|
|
|
149
153
|
getDummy?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
150
154
|
fetchMintingInfo?: Resolver<IResolversTypes['MintingInfo'], ParentType, ContextType, RequireFields<IQueryFetchMintingInfoArgs, 'input'>>;
|
|
151
155
|
fetchGasPrice?: Resolver<IResolversTypes['Long'], ParentType, ContextType, RequireFields<IQueryFetchGasPriceArgs, 'chain'>>;
|
|
156
|
+
fetchNativeCoinPrice?: Resolver<IResolversTypes['Float'], ParentType, ContextType, RequireFields<IQueryFetchNativeCoinPriceArgs, 'chain'>>;
|
|
152
157
|
};
|
|
153
158
|
export type ITierResolvers<ContextType = any, ParentType extends IResolversParentTypes['Tier'] = IResolversParentTypes['Tier']> = {
|
|
154
159
|
id?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
@@ -188,6 +193,10 @@ export type IFetchMintingInfoQuery = {
|
|
|
188
193
|
});
|
|
189
194
|
});
|
|
190
195
|
};
|
|
196
|
+
export type IFetchNativeCoinPriceQueryVariables = Exact<{
|
|
197
|
+
chain: IBlockchains;
|
|
198
|
+
}>;
|
|
199
|
+
export type IFetchNativeCoinPriceQuery = Pick<IQuery, 'fetchNativeCoinPrice'>;
|
|
191
200
|
export declare const FetchMintingInfoDocument: Apollo.DocumentNode;
|
|
192
201
|
/**
|
|
193
202
|
* __useFetchMintingInfoQuery__
|
|
@@ -214,3 +223,29 @@ export declare function useFetchMintingInfoLazyQuery(baseOptions?: Apollo.LazyQu
|
|
|
214
223
|
export type FetchMintingInfoQueryHookResult = ReturnType<typeof useFetchMintingInfoQuery>;
|
|
215
224
|
export type FetchMintingInfoLazyQueryHookResult = ReturnType<typeof useFetchMintingInfoLazyQuery>;
|
|
216
225
|
export type FetchMintingInfoQueryResult = Apollo.QueryResult<IFetchMintingInfoQuery, IFetchMintingInfoQueryVariables>;
|
|
226
|
+
export declare const FetchNativeCoinPriceDocument: Apollo.DocumentNode;
|
|
227
|
+
/**
|
|
228
|
+
* __useFetchNativeCoinPriceQuery__
|
|
229
|
+
*
|
|
230
|
+
* To run a query within a React component, call `useFetchNativeCoinPriceQuery` and pass it any options that fit your needs.
|
|
231
|
+
* When your component renders, `useFetchNativeCoinPriceQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
232
|
+
* you can use to render your UI.
|
|
233
|
+
*
|
|
234
|
+
* @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;
|
|
235
|
+
*
|
|
236
|
+
* @example
|
|
237
|
+
* const { data, loading, error } = useFetchNativeCoinPriceQuery({
|
|
238
|
+
* variables: {
|
|
239
|
+
* chain: // value for 'chain'
|
|
240
|
+
* },
|
|
241
|
+
* });
|
|
242
|
+
*/
|
|
243
|
+
export declare function useFetchNativeCoinPriceQuery(baseOptions: Apollo.QueryHookOptions<IFetchNativeCoinPriceQuery, IFetchNativeCoinPriceQueryVariables>): Apollo.QueryResult<IFetchNativeCoinPriceQuery, Exact<{
|
|
244
|
+
chain: IBlockchains;
|
|
245
|
+
}>>;
|
|
246
|
+
export declare function useFetchNativeCoinPriceLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchNativeCoinPriceQuery, IFetchNativeCoinPriceQueryVariables>): Apollo.LazyQueryResultTuple<IFetchNativeCoinPriceQuery, Exact<{
|
|
247
|
+
chain: IBlockchains;
|
|
248
|
+
}>>;
|
|
249
|
+
export type FetchNativeCoinPriceQueryHookResult = ReturnType<typeof useFetchNativeCoinPriceQuery>;
|
|
250
|
+
export type FetchNativeCoinPriceLazyQueryHookResult = ReturnType<typeof useFetchNativeCoinPriceLazyQuery>;
|
|
251
|
+
export type FetchNativeCoinPriceQueryResult = Apollo.QueryResult<IFetchNativeCoinPriceQuery, IFetchNativeCoinPriceQueryVariables>;
|
|
@@ -23,7 +23,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.useFetchMintingInfoLazyQuery = exports.useFetchMintingInfoQuery = exports.FetchMintingInfoDocument = exports.IBlockchains = void 0;
|
|
26
|
+
exports.useFetchNativeCoinPriceLazyQuery = exports.useFetchNativeCoinPriceQuery = exports.FetchNativeCoinPriceDocument = exports.useFetchMintingInfoLazyQuery = exports.useFetchMintingInfoQuery = exports.FetchMintingInfoDocument = exports.IBlockchains = void 0;
|
|
27
27
|
const client_1 = require("@apollo/client");
|
|
28
28
|
const Apollo = __importStar(require("@apollo/client"));
|
|
29
29
|
var IBlockchains;
|
|
@@ -80,3 +80,32 @@ function useFetchMintingInfoLazyQuery(baseOptions) {
|
|
|
80
80
|
return Apollo.useLazyQuery(exports.FetchMintingInfoDocument, baseOptions);
|
|
81
81
|
}
|
|
82
82
|
exports.useFetchMintingInfoLazyQuery = useFetchMintingInfoLazyQuery;
|
|
83
|
+
exports.FetchNativeCoinPriceDocument = (0, client_1.gql) `
|
|
84
|
+
query FetchNativeCoinPrice($chain: Blockchains!) {
|
|
85
|
+
fetchNativeCoinPrice(chain: $chain)
|
|
86
|
+
}
|
|
87
|
+
`;
|
|
88
|
+
/**
|
|
89
|
+
* __useFetchNativeCoinPriceQuery__
|
|
90
|
+
*
|
|
91
|
+
* To run a query within a React component, call `useFetchNativeCoinPriceQuery` and pass it any options that fit your needs.
|
|
92
|
+
* When your component renders, `useFetchNativeCoinPriceQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
93
|
+
* you can use to render your UI.
|
|
94
|
+
*
|
|
95
|
+
* @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;
|
|
96
|
+
*
|
|
97
|
+
* @example
|
|
98
|
+
* const { data, loading, error } = useFetchNativeCoinPriceQuery({
|
|
99
|
+
* variables: {
|
|
100
|
+
* chain: // value for 'chain'
|
|
101
|
+
* },
|
|
102
|
+
* });
|
|
103
|
+
*/
|
|
104
|
+
function useFetchNativeCoinPriceQuery(baseOptions) {
|
|
105
|
+
return Apollo.useQuery(exports.FetchNativeCoinPriceDocument, baseOptions);
|
|
106
|
+
}
|
|
107
|
+
exports.useFetchNativeCoinPriceQuery = useFetchNativeCoinPriceQuery;
|
|
108
|
+
function useFetchNativeCoinPriceLazyQuery(baseOptions) {
|
|
109
|
+
return Apollo.useLazyQuery(exports.FetchNativeCoinPriceDocument, baseOptions);
|
|
110
|
+
}
|
|
111
|
+
exports.useFetchNativeCoinPriceLazyQuery = useFetchNativeCoinPriceLazyQuery;
|
|
@@ -207,7 +207,7 @@ export declare const OnNotificationDocument: Apollo.DocumentNode;
|
|
|
207
207
|
* });
|
|
208
208
|
*/
|
|
209
209
|
export declare function useOnNotificationSubscription(baseOptions: Apollo.SubscriptionHookOptions<IOnNotificationSubscription, IOnNotificationSubscriptionVariables>): {
|
|
210
|
-
restart()
|
|
210
|
+
restart: () => void;
|
|
211
211
|
loading: boolean;
|
|
212
212
|
data?: IOnNotificationSubscription | undefined;
|
|
213
213
|
error?: Apollo.ApolloError | undefined;
|
|
@@ -779,7 +779,7 @@ export declare const OnPlayerStateUpdatedDocument: Apollo.DocumentNode;
|
|
|
779
779
|
* });
|
|
780
780
|
*/
|
|
781
781
|
export declare function useOnPlayerStateUpdatedSubscription(baseOptions: Apollo.SubscriptionHookOptions<IOnPlayerStateUpdatedSubscription, IOnPlayerStateUpdatedSubscriptionVariables>): {
|
|
782
|
-
restart()
|
|
782
|
+
restart: () => void;
|
|
783
783
|
loading: boolean;
|
|
784
784
|
data?: IOnPlayerStateUpdatedSubscription | undefined;
|
|
785
785
|
error?: Apollo.ApolloError | undefined;
|
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<{
|
|
@@ -39,7 +50,7 @@ declare const schema: {
|
|
|
39
50
|
authToken: string;
|
|
40
51
|
notificationTypes: notificationsSchema.INotificationType[];
|
|
41
52
|
}>>): {
|
|
42
|
-
restart()
|
|
53
|
+
restart: () => void;
|
|
43
54
|
loading: boolean;
|
|
44
55
|
data?: notificationsSchema.IOnNotificationSubscription | undefined;
|
|
45
56
|
error?: import("@apollo/client").ApolloError | undefined;
|
|
@@ -140,7 +151,7 @@ declare const schema: {
|
|
|
140
151
|
useOnPlayerStateUpdatedSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<tapsSchema.IOnPlayerStateUpdatedSubscription, tapsSchema.Exact<{
|
|
141
152
|
authToken: string;
|
|
142
153
|
}>>): {
|
|
143
|
-
restart()
|
|
154
|
+
restart: () => void;
|
|
144
155
|
loading: boolean;
|
|
145
156
|
data?: tapsSchema.IOnPlayerStateUpdatedSubscription | undefined;
|
|
146
157
|
error?: import("@apollo/client").ApolloError | undefined;
|
|
@@ -1651,7 +1662,7 @@ declare const schema: {
|
|
|
1651
1662
|
useOnCommonOpportunityNotificationSubscription(baseOptions?: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnCommonOpportunityNotificationSubscription, experiencesSchema.Exact<{
|
|
1652
1663
|
[key: string]: never;
|
|
1653
1664
|
}>> | undefined): {
|
|
1654
|
-
restart()
|
|
1665
|
+
restart: () => void;
|
|
1655
1666
|
loading: boolean;
|
|
1656
1667
|
data?: experiencesSchema.IOnCommonOpportunityNotificationSubscription | undefined;
|
|
1657
1668
|
error?: import("@apollo/client").ApolloError | undefined;
|
|
@@ -1662,7 +1673,7 @@ declare const schema: {
|
|
|
1662
1673
|
useOnInviteCodeUsedSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnInviteCodeUsedSubscription, experiencesSchema.Exact<{
|
|
1663
1674
|
authToken: string;
|
|
1664
1675
|
}>>): {
|
|
1665
|
-
restart()
|
|
1676
|
+
restart: () => void;
|
|
1666
1677
|
loading: boolean;
|
|
1667
1678
|
data?: experiencesSchema.IOnInviteCodeUsedSubscription | undefined;
|
|
1668
1679
|
error?: import("@apollo/client").ApolloError | undefined;
|
|
@@ -1673,7 +1684,7 @@ declare const schema: {
|
|
|
1673
1684
|
useOnMyExperienceIncrementedSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnMyExperienceIncrementedSubscription, experiencesSchema.Exact<{
|
|
1674
1685
|
authToken: string;
|
|
1675
1686
|
}>>): {
|
|
1676
|
-
restart()
|
|
1687
|
+
restart: () => void;
|
|
1677
1688
|
loading: boolean;
|
|
1678
1689
|
data?: experiencesSchema.IOnMyExperienceIncrementedSubscription | undefined;
|
|
1679
1690
|
error?: import("@apollo/client").ApolloError | undefined;
|
|
@@ -1684,7 +1695,7 @@ declare const schema: {
|
|
|
1684
1695
|
useOnMyExperienceUpdatedSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnMyExperienceUpdatedSubscription, experiencesSchema.Exact<{
|
|
1685
1696
|
authToken: string;
|
|
1686
1697
|
}>>): {
|
|
1687
|
-
restart()
|
|
1698
|
+
restart: () => void;
|
|
1688
1699
|
loading: boolean;
|
|
1689
1700
|
data?: experiencesSchema.IOnMyExperienceUpdatedSubscription | undefined;
|
|
1690
1701
|
error?: import("@apollo/client").ApolloError | undefined;
|
|
@@ -1695,7 +1706,7 @@ declare const schema: {
|
|
|
1695
1706
|
useOnUserOpportunityNotificationSubscription(baseOptions: import("@apollo/client").SubscriptionHookOptions<experiencesSchema.IOnUserOpportunityNotificationSubscription, experiencesSchema.Exact<{
|
|
1696
1707
|
authToken: string;
|
|
1697
1708
|
}>>): {
|
|
1698
|
-
restart()
|
|
1709
|
+
restart: () => void;
|
|
1699
1710
|
loading: boolean;
|
|
1700
1711
|
data?: experiencesSchema.IOnUserOpportunityNotificationSubscription | undefined;
|
|
1701
1712
|
error?: import("@apollo/client").ApolloError | undefined;
|
|
@@ -2488,6 +2499,7 @@ declare const schema: {
|
|
|
2488
2499
|
INotificationDestination: typeof adminSchema.INotificationDestination;
|
|
2489
2500
|
IPayloadType: typeof adminSchema.IPayloadType;
|
|
2490
2501
|
ITariffPlan: typeof adminSchema.ITariffPlan;
|
|
2502
|
+
ITrafficReferralType: typeof adminSchema.ITrafficReferralType;
|
|
2491
2503
|
CreateReferralTypeDocument: import("graphql").DocumentNode;
|
|
2492
2504
|
CreateTierDocument: import("graphql").DocumentNode;
|
|
2493
2505
|
TriggerOpportunityNotificationDocument: import("graphql").DocumentNode;
|