@ludo.ninja/api 3.2.0 → 3.2.2
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 +18 -16
- package/build/graphql_tools/__generated__/adminHost/schema.js +16 -14
- package/build/graphql_tools/__generated__/mintInfoHost/schema.d.ts +25 -7
- package/build/graphql_tools/__generated__/mintInfoHost/schema.js +18 -13
- package/build/graphql_tools/__generated__/opportunitiesHost/schema.d.ts +22 -5
- package/build/graphql_tools/__generated__/opportunitiesHost/schema.js +3 -0
- package/build/graphql_tools/__generated__/searchHost/schema.d.ts +5 -3
- package/build/graphql_tools/__generated__/searchHost/schema.js +3 -0
- package/build/index.d.ts +1 -1
- package/package.json +1 -1
- package/src/graphql_tools/__generated__/adminHost/schema.ts +21 -19
- package/src/graphql_tools/__generated__/mintInfoHost/schema.ts +32 -8
- package/src/graphql_tools/__generated__/opportunitiesHost/schema.ts +28 -5
- package/src/graphql_tools/__generated__/searchHost/schema.ts +8 -3
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -386,6 +386,18 @@ export declare enum IAuthorityType {
|
|
|
386
386
|
Search = "SEARCH",
|
|
387
387
|
Medias = "MEDIAS"
|
|
388
388
|
}
|
|
389
|
+
export declare enum IBlockchains {
|
|
390
|
+
PolygonMainnet = "POLYGON_MAINNET",
|
|
391
|
+
PolygonAmoy = "POLYGON_AMOY",
|
|
392
|
+
EthereumMainnet = "ETHEREUM_MAINNET",
|
|
393
|
+
EthereumSepolia = "ETHEREUM_SEPOLIA",
|
|
394
|
+
BaseMainnet = "BASE_MAINNET",
|
|
395
|
+
BaseSepolia = "BASE_SEPOLIA",
|
|
396
|
+
BscMainnet = "BSC_MAINNET",
|
|
397
|
+
BscTestnet = "BSC_TESTNET",
|
|
398
|
+
TonTestnet = "TON_TESTNET",
|
|
399
|
+
TonMainnet = "TON_MAINNET"
|
|
400
|
+
}
|
|
389
401
|
export type IBrandInput = {
|
|
390
402
|
name: Scalars['String'];
|
|
391
403
|
matchingWords: Array<Scalars['String']>;
|
|
@@ -437,16 +449,6 @@ export type ICategoryInput = {
|
|
|
437
449
|
name: Scalars['String'];
|
|
438
450
|
matchingWords: Array<Scalars['String']>;
|
|
439
451
|
};
|
|
440
|
-
export declare enum IChains {
|
|
441
|
-
PolygonMainnet = "POLYGON_MAINNET",
|
|
442
|
-
PolygonAmoy = "POLYGON_AMOY",
|
|
443
|
-
EthereumMainnet = "ETHEREUM_MAINNET",
|
|
444
|
-
EthereumSepolia = "ETHEREUM_SEPOLIA",
|
|
445
|
-
BaseMainnet = "BASE_MAINNET",
|
|
446
|
-
BaseSepolia = "BASE_SEPOLIA",
|
|
447
|
-
BscMainnet = "BSC_MAINNET",
|
|
448
|
-
BscTestnet = "BSC_TESTNET"
|
|
449
|
-
}
|
|
450
452
|
export type ICheckInviteCodeData = {
|
|
451
453
|
code: Scalars['String'];
|
|
452
454
|
isAvailable: Scalars['Boolean'];
|
|
@@ -1187,11 +1189,11 @@ export type ITier = {
|
|
|
1187
1189
|
archived?: Maybe<Scalars['Boolean']>;
|
|
1188
1190
|
};
|
|
1189
1191
|
export type ITierFee = {
|
|
1190
|
-
|
|
1192
|
+
blockchain: IBlockchains;
|
|
1191
1193
|
fee?: Maybe<Scalars['Float']>;
|
|
1192
1194
|
};
|
|
1193
1195
|
export type ITierFeeInput = {
|
|
1194
|
-
|
|
1196
|
+
blockchain: IBlockchains;
|
|
1195
1197
|
fee?: Maybe<Scalars['Float']>;
|
|
1196
1198
|
};
|
|
1197
1199
|
export type ITierInput = {
|
|
@@ -1370,6 +1372,7 @@ export type IResolversTypes = {
|
|
|
1370
1372
|
AirdropsLeaderboardFilterInput: IAirdropsLeaderboardFilterInput;
|
|
1371
1373
|
AirdropsLeaderboardSortInput: IAirdropsLeaderboardSortInput;
|
|
1372
1374
|
AuthorityType: IAuthorityType;
|
|
1375
|
+
Blockchains: IBlockchains;
|
|
1373
1376
|
BrandInput: IBrandInput;
|
|
1374
1377
|
BrandsFilterInput: IBrandsFilterInput;
|
|
1375
1378
|
BrandsPage: ResolverTypeWrapper<IBrandsPage>;
|
|
@@ -1378,7 +1381,6 @@ export type IResolversTypes = {
|
|
|
1378
1381
|
CategoriesPage: ResolverTypeWrapper<ICategoriesPage>;
|
|
1379
1382
|
CategoriesSortInput: ICategoriesSortInput;
|
|
1380
1383
|
CategoryInput: ICategoryInput;
|
|
1381
|
-
Chains: IChains;
|
|
1382
1384
|
CheckInviteCodeData: ResolverTypeWrapper<ICheckInviteCodeData>;
|
|
1383
1385
|
CompanyToken: ResolverTypeWrapper<ICompanyToken>;
|
|
1384
1386
|
CompanyTokenInput: ICompanyTokenInput;
|
|
@@ -2098,7 +2100,7 @@ export type ITierResolvers<ContextType = any, ParentType extends IResolversParen
|
|
|
2098
2100
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2099
2101
|
};
|
|
2100
2102
|
export type ITierFeeResolvers<ContextType = any, ParentType extends IResolversParentTypes['TierFee'] = IResolversParentTypes['TierFee']> = {
|
|
2101
|
-
|
|
2103
|
+
blockchain?: Resolver<IResolversTypes['Blockchains'], ParentType, ContextType>;
|
|
2102
2104
|
fee?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
2103
2105
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2104
2106
|
};
|
|
@@ -2460,7 +2462,7 @@ export type IFetchTiersQueryVariables = Exact<{
|
|
|
2460
2462
|
}>;
|
|
2461
2463
|
export type IFetchTiersQuery = {
|
|
2462
2464
|
fetchTiers: Array<(Pick<ITier, 'id' | 'name' | 'description' | 'archived'> & {
|
|
2463
|
-
fees?: Maybe<Array<Maybe<Pick<ITierFee, '
|
|
2465
|
+
fees?: Maybe<Array<Maybe<Pick<ITierFee, 'blockchain' | 'fee'>>>>;
|
|
2464
2466
|
})>;
|
|
2465
2467
|
};
|
|
2466
2468
|
export type IFetchTiersPageQueryVariables = Exact<{
|
|
@@ -2471,7 +2473,7 @@ export type IFetchTiersPageQueryVariables = Exact<{
|
|
|
2471
2473
|
export type IFetchTiersPageQuery = {
|
|
2472
2474
|
fetchTiersPage: {
|
|
2473
2475
|
tiers: Array<(Pick<ITier, 'id' | 'name' | 'description' | 'archived'> & {
|
|
2474
|
-
fees?: Maybe<Array<Maybe<Pick<ITierFee, '
|
|
2476
|
+
fees?: Maybe<Array<Maybe<Pick<ITierFee, 'blockchain' | 'fee'>>>>;
|
|
2475
2477
|
})>;
|
|
2476
2478
|
nextPage?: Maybe<Pick<IAdminPage, 'elements' | 'lastNum' | 'num' | 'size' | 'token'>>;
|
|
2477
2479
|
};
|
|
@@ -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.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.
|
|
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
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;
|
|
@@ -39,17 +39,19 @@ var IAuthorityType;
|
|
|
39
39
|
IAuthorityType["Search"] = "SEARCH";
|
|
40
40
|
IAuthorityType["Medias"] = "MEDIAS";
|
|
41
41
|
})(IAuthorityType || (exports.IAuthorityType = IAuthorityType = {}));
|
|
42
|
-
var
|
|
43
|
-
(function (
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
42
|
+
var IBlockchains;
|
|
43
|
+
(function (IBlockchains) {
|
|
44
|
+
IBlockchains["PolygonMainnet"] = "POLYGON_MAINNET";
|
|
45
|
+
IBlockchains["PolygonAmoy"] = "POLYGON_AMOY";
|
|
46
|
+
IBlockchains["EthereumMainnet"] = "ETHEREUM_MAINNET";
|
|
47
|
+
IBlockchains["EthereumSepolia"] = "ETHEREUM_SEPOLIA";
|
|
48
|
+
IBlockchains["BaseMainnet"] = "BASE_MAINNET";
|
|
49
|
+
IBlockchains["BaseSepolia"] = "BASE_SEPOLIA";
|
|
50
|
+
IBlockchains["BscMainnet"] = "BSC_MAINNET";
|
|
51
|
+
IBlockchains["BscTestnet"] = "BSC_TESTNET";
|
|
52
|
+
IBlockchains["TonTestnet"] = "TON_TESTNET";
|
|
53
|
+
IBlockchains["TonMainnet"] = "TON_MAINNET";
|
|
54
|
+
})(IBlockchains || (exports.IBlockchains = IBlockchains = {}));
|
|
53
55
|
/** Sync with DevicePlatform.java */
|
|
54
56
|
var IDevicePlatform;
|
|
55
57
|
(function (IDevicePlatform) {
|
|
@@ -1436,7 +1438,7 @@ exports.FetchTiersDocument = (0, client_1.gql) `
|
|
|
1436
1438
|
name
|
|
1437
1439
|
description
|
|
1438
1440
|
fees {
|
|
1439
|
-
|
|
1441
|
+
blockchain
|
|
1440
1442
|
fee
|
|
1441
1443
|
}
|
|
1442
1444
|
archived
|
|
@@ -1474,7 +1476,7 @@ exports.FetchTiersPageDocument = (0, client_1.gql) `
|
|
|
1474
1476
|
name
|
|
1475
1477
|
description
|
|
1476
1478
|
fees {
|
|
1477
|
-
|
|
1479
|
+
blockchain
|
|
1478
1480
|
fee
|
|
1479
1481
|
}
|
|
1480
1482
|
archived
|
|
@@ -26,7 +26,7 @@ export type Scalars = {
|
|
|
26
26
|
Long: any;
|
|
27
27
|
Upload: any;
|
|
28
28
|
};
|
|
29
|
-
export declare enum
|
|
29
|
+
export declare enum IBlockchains {
|
|
30
30
|
PolygonMainnet = "POLYGON_MAINNET",
|
|
31
31
|
PolygonAmoy = "POLYGON_AMOY",
|
|
32
32
|
EthereumMainnet = "ETHEREUM_MAINNET",
|
|
@@ -34,7 +34,9 @@ export declare enum IChains {
|
|
|
34
34
|
BaseMainnet = "BASE_MAINNET",
|
|
35
35
|
BaseSepolia = "BASE_SEPOLIA",
|
|
36
36
|
BscMainnet = "BSC_MAINNET",
|
|
37
|
-
BscTestnet = "BSC_TESTNET"
|
|
37
|
+
BscTestnet = "BSC_TESTNET",
|
|
38
|
+
TonTestnet = "TON_TESTNET",
|
|
39
|
+
TonMainnet = "TON_MAINNET"
|
|
38
40
|
}
|
|
39
41
|
export type IMintingInfo = {
|
|
40
42
|
rank: Scalars['Int'];
|
|
@@ -59,12 +61,17 @@ export type IQueryFetchMintingInfoArgs = {
|
|
|
59
61
|
input: IMintingInput;
|
|
60
62
|
};
|
|
61
63
|
export type IQueryFetchGasPriceArgs = {
|
|
62
|
-
chain:
|
|
64
|
+
chain: IBlockchains;
|
|
63
65
|
};
|
|
64
66
|
export type ITier = {
|
|
65
67
|
id: Scalars['String'];
|
|
66
68
|
name: Scalars['String'];
|
|
67
69
|
description?: Maybe<Scalars['String']>;
|
|
70
|
+
fees?: Maybe<Array<Maybe<ITierFee>>>;
|
|
71
|
+
archived?: Maybe<Scalars['Boolean']>;
|
|
72
|
+
};
|
|
73
|
+
export type ITierFee = {
|
|
74
|
+
blockchain: IBlockchains;
|
|
68
75
|
fee?: Maybe<Scalars['Float']>;
|
|
69
76
|
};
|
|
70
77
|
export type ResolverTypeWrapper<T> = Promise<T> | T;
|
|
@@ -95,7 +102,7 @@ export type NextResolverFn<T> = () => Promise<T>;
|
|
|
95
102
|
export type DirectiveResolverFn<TResult = {}, TParent = {}, TContext = {}, TArgs = {}> = (next: NextResolverFn<TResult>, parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => TResult | Promise<TResult>;
|
|
96
103
|
/** Mapping between all available schema types and the resolvers types */
|
|
97
104
|
export type IResolversTypes = {
|
|
98
|
-
|
|
105
|
+
Blockchains: IBlockchains;
|
|
99
106
|
Long: ResolverTypeWrapper<Scalars['Long']>;
|
|
100
107
|
MintingInfo: ResolverTypeWrapper<IMintingInfo>;
|
|
101
108
|
Int: ResolverTypeWrapper<Scalars['Int']>;
|
|
@@ -105,8 +112,9 @@ export type IResolversTypes = {
|
|
|
105
112
|
Mutation: ResolverTypeWrapper<{}>;
|
|
106
113
|
Query: ResolverTypeWrapper<{}>;
|
|
107
114
|
Tier: ResolverTypeWrapper<ITier>;
|
|
108
|
-
Upload: ResolverTypeWrapper<Scalars['Upload']>;
|
|
109
115
|
Boolean: ResolverTypeWrapper<Scalars['Boolean']>;
|
|
116
|
+
TierFee: ResolverTypeWrapper<ITierFee>;
|
|
117
|
+
Upload: ResolverTypeWrapper<Scalars['Upload']>;
|
|
110
118
|
};
|
|
111
119
|
/** Mapping between all available schema types and the resolvers parents */
|
|
112
120
|
export type IResolversParentTypes = {
|
|
@@ -119,8 +127,9 @@ export type IResolversParentTypes = {
|
|
|
119
127
|
Mutation: {};
|
|
120
128
|
Query: {};
|
|
121
129
|
Tier: ITier;
|
|
122
|
-
Upload: Scalars['Upload'];
|
|
123
130
|
Boolean: Scalars['Boolean'];
|
|
131
|
+
TierFee: ITierFee;
|
|
132
|
+
Upload: Scalars['Upload'];
|
|
124
133
|
};
|
|
125
134
|
export type IOneOfDirectiveArgs = {};
|
|
126
135
|
export type IOneOfDirectiveResolver<Result, Parent, ContextType = any, Args = IOneOfDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
|
@@ -145,6 +154,12 @@ export type ITierResolvers<ContextType = any, ParentType extends IResolversParen
|
|
|
145
154
|
id?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
146
155
|
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
147
156
|
description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
157
|
+
fees?: Resolver<Maybe<Array<Maybe<IResolversTypes['TierFee']>>>, ParentType, ContextType>;
|
|
158
|
+
archived?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
159
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
160
|
+
};
|
|
161
|
+
export type ITierFeeResolvers<ContextType = any, ParentType extends IResolversParentTypes['TierFee'] = IResolversParentTypes['TierFee']> = {
|
|
162
|
+
blockchain?: Resolver<IResolversTypes['Blockchains'], ParentType, ContextType>;
|
|
148
163
|
fee?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
149
164
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
150
165
|
};
|
|
@@ -157,6 +172,7 @@ export type IResolvers<ContextType = any> = {
|
|
|
157
172
|
Mutation?: IMutationResolvers<ContextType>;
|
|
158
173
|
Query?: IQueryResolvers<ContextType>;
|
|
159
174
|
Tier?: ITierResolvers<ContextType>;
|
|
175
|
+
TierFee?: ITierFeeResolvers<ContextType>;
|
|
160
176
|
Upload?: GraphQLScalarType;
|
|
161
177
|
};
|
|
162
178
|
export type IDirectiveResolvers<ContextType = any> = {
|
|
@@ -167,7 +183,9 @@ export type IFetchMintingInfoQueryVariables = Exact<{
|
|
|
167
183
|
}>;
|
|
168
184
|
export type IFetchMintingInfoQuery = {
|
|
169
185
|
fetchMintingInfo: (Pick<IMintingInfo, 'rank' | 'nftPrice'> & {
|
|
170
|
-
tier: Pick<ITier, 'id' | 'name' | 'description'
|
|
186
|
+
tier: (Pick<ITier, 'id' | 'name' | 'description'> & {
|
|
187
|
+
fees?: Maybe<Array<Maybe<Pick<ITierFee, 'blockchain' | 'fee'>>>>;
|
|
188
|
+
});
|
|
171
189
|
});
|
|
172
190
|
};
|
|
173
191
|
export declare const FetchMintingInfoDocument: Apollo.DocumentNode;
|
|
@@ -23,20 +23,22 @@ 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.
|
|
26
|
+
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
|
-
var
|
|
30
|
-
(function (
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
29
|
+
var IBlockchains;
|
|
30
|
+
(function (IBlockchains) {
|
|
31
|
+
IBlockchains["PolygonMainnet"] = "POLYGON_MAINNET";
|
|
32
|
+
IBlockchains["PolygonAmoy"] = "POLYGON_AMOY";
|
|
33
|
+
IBlockchains["EthereumMainnet"] = "ETHEREUM_MAINNET";
|
|
34
|
+
IBlockchains["EthereumSepolia"] = "ETHEREUM_SEPOLIA";
|
|
35
|
+
IBlockchains["BaseMainnet"] = "BASE_MAINNET";
|
|
36
|
+
IBlockchains["BaseSepolia"] = "BASE_SEPOLIA";
|
|
37
|
+
IBlockchains["BscMainnet"] = "BSC_MAINNET";
|
|
38
|
+
IBlockchains["BscTestnet"] = "BSC_TESTNET";
|
|
39
|
+
IBlockchains["TonTestnet"] = "TON_TESTNET";
|
|
40
|
+
IBlockchains["TonMainnet"] = "TON_MAINNET";
|
|
41
|
+
})(IBlockchains || (exports.IBlockchains = IBlockchains = {}));
|
|
40
42
|
exports.FetchMintingInfoDocument = (0, client_1.gql) `
|
|
41
43
|
query FetchMintingInfo($input: MintingInput!) {
|
|
42
44
|
fetchMintingInfo(input: $input) {
|
|
@@ -45,7 +47,10 @@ exports.FetchMintingInfoDocument = (0, client_1.gql) `
|
|
|
45
47
|
id
|
|
46
48
|
name
|
|
47
49
|
description
|
|
48
|
-
|
|
50
|
+
fees {
|
|
51
|
+
blockchain
|
|
52
|
+
fee
|
|
53
|
+
}
|
|
49
54
|
}
|
|
50
55
|
nftPrice
|
|
51
56
|
}
|
|
@@ -25,6 +25,10 @@ export type Scalars = {
|
|
|
25
25
|
/** A 64-bit signed integer */
|
|
26
26
|
Long: any;
|
|
27
27
|
};
|
|
28
|
+
export type IAlertsSubscriptionInput = {
|
|
29
|
+
blockchain: Scalars['String'];
|
|
30
|
+
contract: Scalars['String'];
|
|
31
|
+
};
|
|
28
32
|
export type IBrand = {
|
|
29
33
|
brandId: Scalars['ID'];
|
|
30
34
|
name: Scalars['String'];
|
|
@@ -105,6 +109,7 @@ export type IMutation = {
|
|
|
105
109
|
registerNewProject: IProjectRegistrationResult;
|
|
106
110
|
reactOnProject: Scalars['Boolean'];
|
|
107
111
|
activateMonitoring: Scalars['Boolean'];
|
|
112
|
+
subscribeOnAlerts: Scalars['Boolean'];
|
|
108
113
|
};
|
|
109
114
|
export type IMutationCreateBrandArgs = {
|
|
110
115
|
input: IBrandInput;
|
|
@@ -169,6 +174,9 @@ export type IMutationReactOnProjectArgs = {
|
|
|
169
174
|
export type IMutationActivateMonitoringArgs = {
|
|
170
175
|
input: IMonitoringActivationInput;
|
|
171
176
|
};
|
|
177
|
+
export type IMutationSubscribeOnAlertsArgs = {
|
|
178
|
+
input: IAlertsSubscriptionInput;
|
|
179
|
+
};
|
|
172
180
|
export type IOpportunitiesPage = {
|
|
173
181
|
currentOpportunities?: Maybe<Array<Maybe<IOpportunity>>>;
|
|
174
182
|
similarOpportunities?: Maybe<Array<Maybe<IOpportunity>>>;
|
|
@@ -308,6 +316,9 @@ export type IProject = {
|
|
|
308
316
|
holdersGeo?: Maybe<Array<Maybe<IHoldersGeolocation>>>;
|
|
309
317
|
status?: Maybe<IProjectStatus>;
|
|
310
318
|
ludoRankDifference?: Maybe<ILudoRankDifference>;
|
|
319
|
+
monitored?: Maybe<Scalars['Boolean']>;
|
|
320
|
+
alertsSubscriptionIsActive?: Maybe<Scalars['Boolean']>;
|
|
321
|
+
originalMediaUrl?: Maybe<Scalars['String']>;
|
|
311
322
|
};
|
|
312
323
|
export type IProjectCommunityVote = {
|
|
313
324
|
calculatedAt: Scalars['Long'];
|
|
@@ -453,9 +464,10 @@ export type NextResolverFn<T> = () => Promise<T>;
|
|
|
453
464
|
export type DirectiveResolverFn<TResult = {}, TParent = {}, TContext = {}, TArgs = {}> = (next: NextResolverFn<TResult>, parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => TResult | Promise<TResult>;
|
|
454
465
|
/** Mapping between all available schema types and the resolvers types */
|
|
455
466
|
export type IResolversTypes = {
|
|
467
|
+
AlertsSubscriptionInput: IAlertsSubscriptionInput;
|
|
468
|
+
String: ResolverTypeWrapper<Scalars['String']>;
|
|
456
469
|
Brand: ResolverTypeWrapper<IBrand>;
|
|
457
470
|
ID: ResolverTypeWrapper<Scalars['ID']>;
|
|
458
|
-
String: ResolverTypeWrapper<Scalars['String']>;
|
|
459
471
|
Boolean: ResolverTypeWrapper<Scalars['Boolean']>;
|
|
460
472
|
BrandInput: IBrandInput;
|
|
461
473
|
Category: ResolverTypeWrapper<ICategory>;
|
|
@@ -491,9 +503,10 @@ export type IResolversTypes = {
|
|
|
491
503
|
};
|
|
492
504
|
/** Mapping between all available schema types and the resolvers parents */
|
|
493
505
|
export type IResolversParentTypes = {
|
|
506
|
+
AlertsSubscriptionInput: IAlertsSubscriptionInput;
|
|
507
|
+
String: Scalars['String'];
|
|
494
508
|
Brand: IBrand;
|
|
495
509
|
ID: Scalars['ID'];
|
|
496
|
-
String: Scalars['String'];
|
|
497
510
|
Boolean: Scalars['Boolean'];
|
|
498
511
|
BrandInput: IBrandInput;
|
|
499
512
|
Category: ICategory;
|
|
@@ -600,6 +613,7 @@ export type IMutationResolvers<ContextType = any, ParentType extends IResolversP
|
|
|
600
613
|
registerNewProject?: Resolver<IResolversTypes['ProjectRegistrationResult'], ParentType, ContextType, RequireFields<IMutationRegisterNewProjectArgs, 'input'>>;
|
|
601
614
|
reactOnProject?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationReactOnProjectArgs, 'input'>>;
|
|
602
615
|
activateMonitoring?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationActivateMonitoringArgs, 'input'>>;
|
|
616
|
+
subscribeOnAlerts?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationSubscribeOnAlertsArgs, 'input'>>;
|
|
603
617
|
};
|
|
604
618
|
export type IOpportunitiesPageResolvers<ContextType = any, ParentType extends IResolversParentTypes['OpportunitiesPage'] = IResolversParentTypes['OpportunitiesPage']> = {
|
|
605
619
|
currentOpportunities?: Resolver<Maybe<Array<Maybe<IResolversTypes['Opportunity']>>>, ParentType, ContextType>;
|
|
@@ -715,6 +729,9 @@ export type IProjectResolvers<ContextType = any, ParentType extends IResolversPa
|
|
|
715
729
|
holdersGeo?: Resolver<Maybe<Array<Maybe<IResolversTypes['HoldersGeolocation']>>>, ParentType, ContextType>;
|
|
716
730
|
status?: Resolver<Maybe<IResolversTypes['ProjectStatus']>, ParentType, ContextType>;
|
|
717
731
|
ludoRankDifference?: Resolver<Maybe<IResolversTypes['LudoRankDifference']>, ParentType, ContextType>;
|
|
732
|
+
monitored?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
733
|
+
alertsSubscriptionIsActive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
734
|
+
originalMediaUrl?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
718
735
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
719
736
|
};
|
|
720
737
|
export type IProjectCommunityVoteResolvers<ContextType = any, ParentType extends IResolversParentTypes['ProjectCommunityVote'] = IResolversParentTypes['ProjectCommunityVote']> = {
|
|
@@ -928,7 +945,7 @@ export type IFetchProjectQueryVariables = Exact<{
|
|
|
928
945
|
contract: Scalars['String'];
|
|
929
946
|
}>;
|
|
930
947
|
export type IFetchProjectQuery = {
|
|
931
|
-
fetchProject?: Maybe<(Pick<IProject, 'blockchain' | 'contract' | 'name' | 'slug' | 'symbol' | 'website' | 'twitter' | 'type' | 'ludoRank' | 'investors' | 'holders' | 'volume' | 'marketCap' | 'liquidity' | 'price' | 'twitterFollowers' | 'twitterSentiment' | 'verified'> & {
|
|
948
|
+
fetchProject?: Maybe<(Pick<IProject, 'blockchain' | 'contract' | 'name' | 'slug' | 'symbol' | 'website' | 'twitter' | 'type' | 'ludoRank' | 'investors' | 'holders' | 'volume' | 'marketCap' | 'liquidity' | 'price' | 'twitterFollowers' | 'twitterSentiment' | 'verified' | 'originalMediaUrl'> & {
|
|
932
949
|
status?: Maybe<Pick<IProjectStatus, 'monitored' | 'removalReason' | 'removalDate'>>;
|
|
933
950
|
})>;
|
|
934
951
|
};
|
|
@@ -936,7 +953,7 @@ export type IFetchProjectBySlugQueryVariables = Exact<{
|
|
|
936
953
|
slug: Scalars['String'];
|
|
937
954
|
}>;
|
|
938
955
|
export type IFetchProjectBySlugQuery = {
|
|
939
|
-
fetchProjectBySlug: (Pick<IProject, 'blockchain' | 'contract' | 'name' | 'slug' | 'symbol' | 'website' | 'twitter' | 'type' | 'ludoRank' | 'investors' | 'holders' | 'volume' | 'marketCap' | 'liquidity' | 'price' | 'twitterFollowers' | 'twitterSentiment' | 'verified' | 'userReaction' | 'communityVote' | 'hideDiagrams'> & {
|
|
956
|
+
fetchProjectBySlug: (Pick<IProject, 'blockchain' | 'contract' | 'name' | 'slug' | 'symbol' | 'website' | 'twitter' | 'type' | 'ludoRank' | 'investors' | 'holders' | 'volume' | 'marketCap' | 'liquidity' | 'price' | 'twitterFollowers' | 'twitterSentiment' | 'verified' | 'originalMediaUrl' | 'userReaction' | 'communityVote' | 'hideDiagrams'> & {
|
|
940
957
|
status?: Maybe<Pick<IProjectStatus, 'monitored' | 'removalReason' | 'removalDate'>>;
|
|
941
958
|
snapshots?: Maybe<Array<Maybe<Pick<IProjectSnapshot, 'date' | 'contract' | 'blockchain' | 'volume' | 'marketCap' | 'price' | 'liquidity' | 'xFollowers' | 'holders' | 'ludoRank'>>>>;
|
|
942
959
|
reactions: Pick<IProjectReactions, 'likes' | 'neutrals' | 'dislikes'>;
|
|
@@ -953,7 +970,7 @@ export type IFetchProjectMonitoringQueryVariables = Exact<{
|
|
|
953
970
|
export type IFetchProjectMonitoringQuery = {
|
|
954
971
|
fetchProjectMonitoring?: Maybe<(Pick<IProjectMonitoring, 'userId' | 'monitorsFree' | 'monitorsLimit' | 'activeUntil'> & {
|
|
955
972
|
monitors?: Maybe<Array<(Pick<IMonitor, 'userId' | 'blockchain' | 'contract'> & {
|
|
956
|
-
project: (Pick<IProject, 'blockchain' | 'contract' | 'name' | 'slug' | 'symbol' | 'type' | 'ludoRank' | 'price' | 'verified'> & {
|
|
973
|
+
project: (Pick<IProject, 'blockchain' | 'contract' | 'name' | 'slug' | 'symbol' | 'type' | 'ludoRank' | 'price' | 'verified' | 'originalMediaUrl'> & {
|
|
957
974
|
ludoRankDifference?: Maybe<Pick<ILudoRankDifference, 'hourDifference' | 'dayDifference' | 'weekDifference'>>;
|
|
958
975
|
});
|
|
959
976
|
})>>;
|
|
@@ -1019,6 +1019,7 @@ exports.FetchProjectDocument = (0, client_1.gql) `
|
|
|
1019
1019
|
twitterFollowers
|
|
1020
1020
|
twitterSentiment
|
|
1021
1021
|
verified
|
|
1022
|
+
originalMediaUrl
|
|
1022
1023
|
status {
|
|
1023
1024
|
monitored
|
|
1024
1025
|
removalReason
|
|
@@ -1073,6 +1074,7 @@ exports.FetchProjectBySlugDocument = (0, client_1.gql) `
|
|
|
1073
1074
|
twitterFollowers
|
|
1074
1075
|
twitterSentiment
|
|
1075
1076
|
verified
|
|
1077
|
+
originalMediaUrl
|
|
1076
1078
|
status {
|
|
1077
1079
|
monitored
|
|
1078
1080
|
removalReason
|
|
@@ -1230,6 +1232,7 @@ exports.FetchProjectMonitoringDocument = (0, client_1.gql) `
|
|
|
1230
1232
|
ludoRank
|
|
1231
1233
|
price
|
|
1232
1234
|
verified
|
|
1235
|
+
originalMediaUrl
|
|
1233
1236
|
ludoRankDifference {
|
|
1234
1237
|
hourDifference
|
|
1235
1238
|
dayDifference
|
|
@@ -329,6 +329,7 @@ export type IProject = {
|
|
|
329
329
|
ludoRankDayDifference?: Maybe<Scalars['Float']>;
|
|
330
330
|
ludoRankWeekDifference?: Maybe<Scalars['Float']>;
|
|
331
331
|
price?: Maybe<Scalars['Float']>;
|
|
332
|
+
originalMediaUrl?: Maybe<Scalars['String']>;
|
|
332
333
|
};
|
|
333
334
|
export declare enum IProjectType {
|
|
334
335
|
MemeCoins = "MEME_COINS",
|
|
@@ -988,6 +989,7 @@ export type IProjectResolvers<ContextType = any, ParentType extends IResolversPa
|
|
|
988
989
|
ludoRankDayDifference?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
989
990
|
ludoRankWeekDifference?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
990
991
|
price?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
992
|
+
originalMediaUrl?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
991
993
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
992
994
|
};
|
|
993
995
|
export type IProjectsPageResolvers<ContextType = any, ParentType extends IResolversParentTypes['ProjectsPage'] = IResolversParentTypes['ProjectsPage']> = {
|
|
@@ -1290,7 +1292,7 @@ export type IFetchProjectsByTermQueryVariables = Exact<{
|
|
|
1290
1292
|
pageSize: Scalars['Int'];
|
|
1291
1293
|
}>;
|
|
1292
1294
|
export type IFetchProjectsByTermQuery = {
|
|
1293
|
-
fetchProjectsByTerm: Array<Pick<IProject, 'id' | 'name' | 'slug' | 'type' | 'ludoRank' | 'ludoRankHourDifference' | 'ludoRankDayDifference' | 'ludoRankWeekDifference' | 'price'>>;
|
|
1295
|
+
fetchProjectsByTerm: Array<Pick<IProject, 'id' | 'name' | 'slug' | 'type' | 'ludoRank' | 'ludoRankHourDifference' | 'ludoRankDayDifference' | 'ludoRankWeekDifference' | 'price' | 'originalMediaUrl'>>;
|
|
1294
1296
|
};
|
|
1295
1297
|
export type IFetchProjectsLeaderboardQueryVariables = Exact<{
|
|
1296
1298
|
filter: IProjectsLeaderboardFilterInput;
|
|
@@ -1299,7 +1301,7 @@ export type IFetchProjectsLeaderboardQueryVariables = Exact<{
|
|
|
1299
1301
|
}>;
|
|
1300
1302
|
export type IFetchProjectsLeaderboardQuery = {
|
|
1301
1303
|
fetchProjectsLeaderboard: {
|
|
1302
|
-
projects: Array<Pick<IProject, 'id' | 'name' | 'slug' | 'type' | 'ludoRank' | 'ludoRankHourDifference' | 'ludoRankDayDifference' | 'ludoRankWeekDifference' | 'price'>>;
|
|
1304
|
+
projects: Array<Pick<IProject, 'id' | 'name' | 'slug' | 'type' | 'ludoRank' | 'ludoRankHourDifference' | 'ludoRankDayDifference' | 'ludoRankWeekDifference' | 'price' | 'originalMediaUrl'>>;
|
|
1303
1305
|
nextPage?: Maybe<Pick<IPage, 'token' | 'num' | 'size' | 'elements' | 'lastNum'>>;
|
|
1304
1306
|
};
|
|
1305
1307
|
};
|
|
@@ -1311,7 +1313,7 @@ export type IFetchProjectsPageQueryVariables = Exact<{
|
|
|
1311
1313
|
}>;
|
|
1312
1314
|
export type IFetchProjectsPageQuery = {
|
|
1313
1315
|
fetchProjectsPage: {
|
|
1314
|
-
projects: Array<Pick<IProject, 'id' | 'name' | 'slug' | 'type' | 'ludoRank' | 'ludoRankHourDifference' | 'ludoRankDayDifference' | 'ludoRankWeekDifference' | 'price'>>;
|
|
1316
|
+
projects: Array<Pick<IProject, 'id' | 'name' | 'slug' | 'type' | 'ludoRank' | 'ludoRankHourDifference' | 'ludoRankDayDifference' | 'ludoRankWeekDifference' | 'price' | 'originalMediaUrl'>>;
|
|
1315
1317
|
nextPage?: Maybe<Pick<IPage, 'token' | 'num' | 'size' | 'elements' | 'lastNum'>>;
|
|
1316
1318
|
};
|
|
1317
1319
|
};
|
|
@@ -1219,6 +1219,7 @@ exports.FetchProjectsByTermDocument = (0, client_1.gql) `
|
|
|
1219
1219
|
ludoRankDayDifference
|
|
1220
1220
|
ludoRankWeekDifference
|
|
1221
1221
|
price
|
|
1222
|
+
originalMediaUrl
|
|
1222
1223
|
}
|
|
1223
1224
|
}
|
|
1224
1225
|
`;
|
|
@@ -1260,6 +1261,7 @@ exports.FetchProjectsLeaderboardDocument = (0, client_1.gql) `
|
|
|
1260
1261
|
ludoRankDayDifference
|
|
1261
1262
|
ludoRankWeekDifference
|
|
1262
1263
|
price
|
|
1264
|
+
originalMediaUrl
|
|
1263
1265
|
}
|
|
1264
1266
|
nextPage {
|
|
1265
1267
|
token
|
|
@@ -1310,6 +1312,7 @@ exports.FetchProjectsPageDocument = (0, client_1.gql) `
|
|
|
1310
1312
|
ludoRankDayDifference
|
|
1311
1313
|
ludoRankWeekDifference
|
|
1312
1314
|
price
|
|
1315
|
+
originalMediaUrl
|
|
1313
1316
|
}
|
|
1314
1317
|
nextPage {
|
|
1315
1318
|
token
|
package/build/index.d.ts
CHANGED
|
@@ -28,7 +28,7 @@ declare const schema: {
|
|
|
28
28
|
}>> | undefined): import("@apollo/client").LazyQueryResultTuple<mintInfoSchema.IFetchMintingInfoQuery, mintInfoSchema.Exact<{
|
|
29
29
|
input: mintInfoSchema.IMintingInput;
|
|
30
30
|
}>>;
|
|
31
|
-
|
|
31
|
+
IBlockchains: typeof mintInfoSchema.IBlockchains;
|
|
32
32
|
FetchMintingInfoDocument: import("graphql").DocumentNode;
|
|
33
33
|
useReadNotificationMutation(baseOptions?: import("@apollo/client").MutationHookOptions<notificationsSchema.IReadNotificationMutation, notificationsSchema.Exact<{
|
|
34
34
|
notificationId: string;
|
package/package.json
CHANGED
|
@@ -417,6 +417,19 @@ export enum IAuthorityType {
|
|
|
417
417
|
Medias = 'MEDIAS'
|
|
418
418
|
}
|
|
419
419
|
|
|
420
|
+
export enum IBlockchains {
|
|
421
|
+
PolygonMainnet = 'POLYGON_MAINNET',
|
|
422
|
+
PolygonAmoy = 'POLYGON_AMOY',
|
|
423
|
+
EthereumMainnet = 'ETHEREUM_MAINNET',
|
|
424
|
+
EthereumSepolia = 'ETHEREUM_SEPOLIA',
|
|
425
|
+
BaseMainnet = 'BASE_MAINNET',
|
|
426
|
+
BaseSepolia = 'BASE_SEPOLIA',
|
|
427
|
+
BscMainnet = 'BSC_MAINNET',
|
|
428
|
+
BscTestnet = 'BSC_TESTNET',
|
|
429
|
+
TonTestnet = 'TON_TESTNET',
|
|
430
|
+
TonMainnet = 'TON_MAINNET'
|
|
431
|
+
}
|
|
432
|
+
|
|
420
433
|
export type IBrandInput = {
|
|
421
434
|
name: Scalars['String'];
|
|
422
435
|
matchingWords: Array<Scalars['String']>;
|
|
@@ -476,17 +489,6 @@ export type ICategoryInput = {
|
|
|
476
489
|
matchingWords: Array<Scalars['String']>;
|
|
477
490
|
};
|
|
478
491
|
|
|
479
|
-
export enum IChains {
|
|
480
|
-
PolygonMainnet = 'POLYGON_MAINNET',
|
|
481
|
-
PolygonAmoy = 'POLYGON_AMOY',
|
|
482
|
-
EthereumMainnet = 'ETHEREUM_MAINNET',
|
|
483
|
-
EthereumSepolia = 'ETHEREUM_SEPOLIA',
|
|
484
|
-
BaseMainnet = 'BASE_MAINNET',
|
|
485
|
-
BaseSepolia = 'BASE_SEPOLIA',
|
|
486
|
-
BscMainnet = 'BSC_MAINNET',
|
|
487
|
-
BscTestnet = 'BSC_TESTNET'
|
|
488
|
-
}
|
|
489
|
-
|
|
490
492
|
export type ICheckInviteCodeData = {
|
|
491
493
|
code: Scalars['String'];
|
|
492
494
|
isAvailable: Scalars['Boolean'];
|
|
@@ -1415,12 +1417,12 @@ export type ITier = {
|
|
|
1415
1417
|
};
|
|
1416
1418
|
|
|
1417
1419
|
export type ITierFee = {
|
|
1418
|
-
|
|
1420
|
+
blockchain: IBlockchains;
|
|
1419
1421
|
fee?: Maybe<Scalars['Float']>;
|
|
1420
1422
|
};
|
|
1421
1423
|
|
|
1422
1424
|
export type ITierFeeInput = {
|
|
1423
|
-
|
|
1425
|
+
blockchain: IBlockchains;
|
|
1424
1426
|
fee?: Maybe<Scalars['Float']>;
|
|
1425
1427
|
};
|
|
1426
1428
|
|
|
@@ -1657,6 +1659,7 @@ export type IResolversTypes = {
|
|
|
1657
1659
|
AirdropsLeaderboardFilterInput: IAirdropsLeaderboardFilterInput;
|
|
1658
1660
|
AirdropsLeaderboardSortInput: IAirdropsLeaderboardSortInput;
|
|
1659
1661
|
AuthorityType: IAuthorityType;
|
|
1662
|
+
Blockchains: IBlockchains;
|
|
1660
1663
|
BrandInput: IBrandInput;
|
|
1661
1664
|
BrandsFilterInput: IBrandsFilterInput;
|
|
1662
1665
|
BrandsPage: ResolverTypeWrapper<IBrandsPage>;
|
|
@@ -1665,7 +1668,6 @@ export type IResolversTypes = {
|
|
|
1665
1668
|
CategoriesPage: ResolverTypeWrapper<ICategoriesPage>;
|
|
1666
1669
|
CategoriesSortInput: ICategoriesSortInput;
|
|
1667
1670
|
CategoryInput: ICategoryInput;
|
|
1668
|
-
Chains: IChains;
|
|
1669
1671
|
CheckInviteCodeData: ResolverTypeWrapper<ICheckInviteCodeData>;
|
|
1670
1672
|
CompanyToken: ResolverTypeWrapper<ICompanyToken>;
|
|
1671
1673
|
CompanyTokenInput: ICompanyTokenInput;
|
|
@@ -2441,7 +2443,7 @@ export type ITierResolvers<ContextType = any, ParentType extends IResolversParen
|
|
|
2441
2443
|
};
|
|
2442
2444
|
|
|
2443
2445
|
export type ITierFeeResolvers<ContextType = any, ParentType extends IResolversParentTypes['TierFee'] = IResolversParentTypes['TierFee']> = {
|
|
2444
|
-
|
|
2446
|
+
blockchain?: Resolver<IResolversTypes['Blockchains'], ParentType, ContextType>;
|
|
2445
2447
|
fee?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
2446
2448
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2447
2449
|
};
|
|
@@ -2898,7 +2900,7 @@ export type IFetchTiersQueryVariables = Exact<{ [key: string]: never; }>;
|
|
|
2898
2900
|
|
|
2899
2901
|
export type IFetchTiersQuery = { fetchTiers: Array<(
|
|
2900
2902
|
Pick<ITier, 'id' | 'name' | 'description' | 'archived'>
|
|
2901
|
-
& { fees?: Maybe<Array<Maybe<Pick<ITierFee, '
|
|
2903
|
+
& { fees?: Maybe<Array<Maybe<Pick<ITierFee, 'blockchain' | 'fee'>>>> }
|
|
2902
2904
|
)> };
|
|
2903
2905
|
|
|
2904
2906
|
export type IFetchTiersPageQueryVariables = Exact<{
|
|
@@ -2910,7 +2912,7 @@ export type IFetchTiersPageQueryVariables = Exact<{
|
|
|
2910
2912
|
|
|
2911
2913
|
export type IFetchTiersPageQuery = { fetchTiersPage: { tiers: Array<(
|
|
2912
2914
|
Pick<ITier, 'id' | 'name' | 'description' | 'archived'>
|
|
2913
|
-
& { fees?: Maybe<Array<Maybe<Pick<ITierFee, '
|
|
2915
|
+
& { fees?: Maybe<Array<Maybe<Pick<ITierFee, 'blockchain' | 'fee'>>>> }
|
|
2914
2916
|
)>, nextPage?: Maybe<Pick<IAdminPage, 'elements' | 'lastNum' | 'num' | 'size' | 'token'>> } };
|
|
2915
2917
|
|
|
2916
2918
|
export type IFetchUserFeedbackPageQueryVariables = Exact<{
|
|
@@ -4559,7 +4561,7 @@ export const FetchTiersDocument = gql`
|
|
|
4559
4561
|
name
|
|
4560
4562
|
description
|
|
4561
4563
|
fees {
|
|
4562
|
-
|
|
4564
|
+
blockchain
|
|
4563
4565
|
fee
|
|
4564
4566
|
}
|
|
4565
4567
|
archived
|
|
@@ -4599,7 +4601,7 @@ export const FetchTiersPageDocument = gql`
|
|
|
4599
4601
|
name
|
|
4600
4602
|
description
|
|
4601
4603
|
fees {
|
|
4602
|
-
|
|
4604
|
+
blockchain
|
|
4603
4605
|
fee
|
|
4604
4606
|
}
|
|
4605
4607
|
archived
|