@poolzfinance/api4 1.13.3 → 1.13.4
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/dist/endpoints/projectIdToPoolzBackId.d.ts +1 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.modern.js +1 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.module.js +1 -1
- package/dist/index.module.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/types/graphql/gql.d.ts +5 -0
- package/dist/types/graphql/graphql.d.ts +12 -0
- package/package.json +1 -1
|
@@ -45,6 +45,7 @@ type Documents = {
|
|
|
45
45
|
"\n query MyRoles {\n myRoles\n }": typeof types.MyRolesDocument;
|
|
46
46
|
"\n query PoolxPrice {\n poolxPrice {\n Price\n Timestamp\n }\n }": typeof types.PoolxPriceDocument;
|
|
47
47
|
"\n query GetPoolxTokenomics {\n poolxTokenomics {\n CirculatingSupply\n Locked\n Data {\n TotalSupply\n BuyBack\n LockedDealV2\n DelayVault\n DelayVaultV2\n Reserved\n }\n Trade {\n Sum\n Huobi\n GateIO\n PancakeSwapV3_01\n PancakeSwapV3\n Mexc\n }\n }\n }\n": typeof types.GetPoolxTokenomicsDocument;
|
|
48
|
+
"\n query ProjectIdToPoolzBackId($projectId: String!) {\n projectIdToPoolzBackId(projectId: $projectId)\n }\n": typeof types.ProjectIdToPoolzBackIdDocument;
|
|
48
49
|
"\n query MySignUpV3($projectIDs: [String!]!) {\n mySignUpV3(projectIDs: $projectIDs) {\n ProjectId\n SignedUp\n }\n }\n": typeof types.MySignUpV3Document;
|
|
49
50
|
"\n query AdminSignUpV3($projectId: String!, $minPoolxAmount: Int!) {\n adminSignUpV3(projectId: $projectId, minPoolxAmount: $minPoolxAmount) {\n Address\n Amount\n }\n }\n": typeof types.AdminSignUpV3Document;
|
|
50
51
|
"\n mutation ProjectSignUpV3($projectId: String!) {\n projectSignUpV3(projectId: $projectId) {\n ProjectId\n UserAddress\n JoinedTime\n }\n }\n": typeof types.ProjectSignUpV3Document;
|
|
@@ -198,6 +199,10 @@ export declare function gql(source: "\n query PoolxPrice {\n poolxPrice {\n
|
|
|
198
199
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
199
200
|
*/
|
|
200
201
|
export declare function gql(source: "\n query GetPoolxTokenomics {\n poolxTokenomics {\n CirculatingSupply\n Locked\n Data {\n TotalSupply\n BuyBack\n LockedDealV2\n DelayVault\n DelayVaultV2\n Reserved\n }\n Trade {\n Sum\n Huobi\n GateIO\n PancakeSwapV3_01\n PancakeSwapV3\n Mexc\n }\n }\n }\n"): (typeof documents)["\n query GetPoolxTokenomics {\n poolxTokenomics {\n CirculatingSupply\n Locked\n Data {\n TotalSupply\n BuyBack\n LockedDealV2\n DelayVault\n DelayVaultV2\n Reserved\n }\n Trade {\n Sum\n Huobi\n GateIO\n PancakeSwapV3_01\n PancakeSwapV3\n Mexc\n }\n }\n }\n"];
|
|
202
|
+
/**
|
|
203
|
+
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
204
|
+
*/
|
|
205
|
+
export declare function gql(source: "\n query ProjectIdToPoolzBackId($projectId: String!) {\n projectIdToPoolzBackId(projectId: $projectId)\n }\n"): (typeof documents)["\n query ProjectIdToPoolzBackId($projectId: String!) {\n projectIdToPoolzBackId(projectId: $projectId)\n }\n"];
|
|
201
206
|
/**
|
|
202
207
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
203
208
|
*/
|
|
@@ -679,6 +679,7 @@ export type Query = {
|
|
|
679
679
|
myUpcomingAllocation: Array<MyUpcomingAllocation>;
|
|
680
680
|
poolxPrice: PoolxPrice;
|
|
681
681
|
poolxTokenomics: PoolxTokenomics;
|
|
682
|
+
projectIdToPoolzBackId: Scalars['Int']['output'];
|
|
682
683
|
retrieveSignature: RetrieveSignatureResponse;
|
|
683
684
|
seasonPass: Array<SeasonPass>;
|
|
684
685
|
/** @deprecated Old system. Please use new endpoints from API4.SignUp. */
|
|
@@ -814,6 +815,9 @@ export type QueryMySignUpV3Args = {
|
|
|
814
815
|
export type QueryMyUpcomingAllocationArgs = {
|
|
815
816
|
projectIDs: Array<Scalars['String']['input']>;
|
|
816
817
|
};
|
|
818
|
+
export type QueryProjectIdToPoolzBackIdArgs = {
|
|
819
|
+
projectId: Scalars['String']['input'];
|
|
820
|
+
};
|
|
817
821
|
export type QueryRetrieveSignatureArgs = {
|
|
818
822
|
request: RetrieveSignatureRequest;
|
|
819
823
|
};
|
|
@@ -1577,6 +1581,13 @@ export type GetPoolxTokenomicsQuery = {
|
|
|
1577
1581
|
};
|
|
1578
1582
|
};
|
|
1579
1583
|
};
|
|
1584
|
+
export type ProjectIdToPoolzBackIdQueryVariables = Exact<{
|
|
1585
|
+
projectId: Scalars['String']['input'];
|
|
1586
|
+
}>;
|
|
1587
|
+
export type ProjectIdToPoolzBackIdQuery = {
|
|
1588
|
+
__typename?: 'Query';
|
|
1589
|
+
projectIdToPoolzBackId: number;
|
|
1590
|
+
};
|
|
1580
1591
|
export type MySignUpV3QueryVariables = Exact<{
|
|
1581
1592
|
projectIDs: Array<Scalars['String']['input']> | Scalars['String']['input'];
|
|
1582
1593
|
}>;
|
|
@@ -1700,6 +1711,7 @@ export declare const KycDocument: DocumentNode<KycQuery, KycQueryVariables>;
|
|
|
1700
1711
|
export declare const MyRolesDocument: DocumentNode<MyRolesQuery, MyRolesQueryVariables>;
|
|
1701
1712
|
export declare const PoolxPriceDocument: DocumentNode<PoolxPriceQuery, PoolxPriceQueryVariables>;
|
|
1702
1713
|
export declare const GetPoolxTokenomicsDocument: DocumentNode<GetPoolxTokenomicsQuery, GetPoolxTokenomicsQueryVariables>;
|
|
1714
|
+
export declare const ProjectIdToPoolzBackIdDocument: DocumentNode<ProjectIdToPoolzBackIdQuery, ProjectIdToPoolzBackIdQueryVariables>;
|
|
1703
1715
|
export declare const MySignUpV3Document: DocumentNode<MySignUpV3Query, MySignUpV3QueryVariables>;
|
|
1704
1716
|
export declare const AdminSignUpV3Document: DocumentNode<AdminSignUpV3Query, AdminSignUpV3QueryVariables>;
|
|
1705
1717
|
export declare const ProjectSignUpV3Document: DocumentNode<ProjectSignUpV3Mutation, ProjectSignUpV3MutationVariables>;
|