@poolzfinance/api4 1.15.9 → 1.16.1
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 +3 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.modern.js +2 -2
- 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 +9 -4
- package/dist/types/graphql/graphql.d.ts +26 -0
- package/package.json +1 -1
|
@@ -47,9 +47,10 @@ type Documents = {
|
|
|
47
47
|
"\n query KYC {\n myProxyKYC {\n Proxy\n RequestStatus\n Status\n }\n}": typeof types.KycDocument;
|
|
48
48
|
"\n query MyRoles {\n myRoles\n }": typeof types.MyRolesDocument;
|
|
49
49
|
"\n query PoolxPrice {\n poolxPrice {\n Price\n Timestamp\n }\n }": typeof types.PoolxPriceDocument;
|
|
50
|
-
"\n query PoolxTokenomicsV2_Simple {\n poolxTokenomicsV2 {\n CirculatingSupply\n Locked\n }\n }\n": typeof types.PoolxTokenomicsV2_SimpleDocument;
|
|
51
|
-
"\n query PoolxTokenomicsV2_Full {\n poolxTokenomicsV2 {\n CirculatingSupply\n Locked\n InternalSum\n ExternalSum\n External {\n Name\n Balance\n }\n Internal {\n Name\n Balance\n }\n }\n }\n": typeof types.PoolxTokenomicsV2_FullDocument;
|
|
50
|
+
"\n query PoolxTokenomicsV2_Simple {\n poolxTokenomicsV2 {\n CirculatingSupply\n Locked\n TotalSupply\n }\n }\n": typeof types.PoolxTokenomicsV2_SimpleDocument;
|
|
51
|
+
"\n query PoolxTokenomicsV2_Full {\n poolxTokenomicsV2 {\n CirculatingSupply\n Locked\n InternalSum\n ExternalSum\n TotalSupply\n External {\n Name\n Balance\n }\n Internal {\n Name\n Balance\n }\n }\n }\n": typeof types.PoolxTokenomicsV2_FullDocument;
|
|
52
52
|
"\n query ProjectIdToPoolzBackId($projectId: String!) {\n projectIdToPoolzBackId(projectId: $projectId)\n }\n": typeof types.ProjectIdToPoolzBackIdDocument;
|
|
53
|
+
"\n query ProjectIdToPoolzBackIdV2($projectId: String!) {\n projectIdToPoolzBackIdV2(projectId: $projectId) {\n PoolzBackId\n TokenSymbol\n }\n }\n": typeof types.ProjectIdToPoolzBackIdV2Document;
|
|
53
54
|
"\n query MySignUpV3($projectIDs: [String!]!) {\n mySignUpV3(projectIDs: $projectIDs) {\n ProjectId\n SignedUp\n }\n }\n": typeof types.MySignUpV3Document;
|
|
54
55
|
"\n query AdminSignUpV3($projectId: String!, $minPoolxAmount: Int!) {\n adminSignUpV3(projectId: $projectId, minPoolxAmount: $minPoolxAmount) {\n Address\n Amount\n }\n }\n": typeof types.AdminSignUpV3Document;
|
|
55
56
|
"\n mutation ProjectSignUpV3($projectId: String!) {\n projectSignUpV3(projectId: $projectId) {\n ProjectId\n UserAddress\n JoinedTime\n }\n }\n": typeof types.ProjectSignUpV3Document;
|
|
@@ -213,15 +214,19 @@ export declare function gql(source: "\n query PoolxPrice {\n poolxPrice {\n
|
|
|
213
214
|
/**
|
|
214
215
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
215
216
|
*/
|
|
216
|
-
export declare function gql(source: "\n query PoolxTokenomicsV2_Simple {\n poolxTokenomicsV2 {\n CirculatingSupply\n Locked\n }\n }\n"): (typeof documents)["\n query PoolxTokenomicsV2_Simple {\n poolxTokenomicsV2 {\n CirculatingSupply\n Locked\n }\n }\n"];
|
|
217
|
+
export declare function gql(source: "\n query PoolxTokenomicsV2_Simple {\n poolxTokenomicsV2 {\n CirculatingSupply\n Locked\n TotalSupply\n }\n }\n"): (typeof documents)["\n query PoolxTokenomicsV2_Simple {\n poolxTokenomicsV2 {\n CirculatingSupply\n Locked\n TotalSupply\n }\n }\n"];
|
|
217
218
|
/**
|
|
218
219
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
219
220
|
*/
|
|
220
|
-
export declare function gql(source: "\n query PoolxTokenomicsV2_Full {\n poolxTokenomicsV2 {\n CirculatingSupply\n Locked\n InternalSum\n ExternalSum\n External {\n Name\n Balance\n }\n Internal {\n Name\n Balance\n }\n }\n }\n"): (typeof documents)["\n query PoolxTokenomicsV2_Full {\n poolxTokenomicsV2 {\n CirculatingSupply\n Locked\n InternalSum\n ExternalSum\n External {\n Name\n Balance\n }\n Internal {\n Name\n Balance\n }\n }\n }\n"];
|
|
221
|
+
export declare function gql(source: "\n query PoolxTokenomicsV2_Full {\n poolxTokenomicsV2 {\n CirculatingSupply\n Locked\n InternalSum\n ExternalSum\n TotalSupply\n External {\n Name\n Balance\n }\n Internal {\n Name\n Balance\n }\n }\n }\n"): (typeof documents)["\n query PoolxTokenomicsV2_Full {\n poolxTokenomicsV2 {\n CirculatingSupply\n Locked\n InternalSum\n ExternalSum\n TotalSupply\n External {\n Name\n Balance\n }\n Internal {\n Name\n Balance\n }\n }\n }\n"];
|
|
221
222
|
/**
|
|
222
223
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
223
224
|
*/
|
|
224
225
|
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"];
|
|
226
|
+
/**
|
|
227
|
+
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
228
|
+
*/
|
|
229
|
+
export declare function gql(source: "\n query ProjectIdToPoolzBackIdV2($projectId: String!) {\n projectIdToPoolzBackIdV2(projectId: $projectId) {\n PoolzBackId\n TokenSymbol\n }\n }\n"): (typeof documents)["\n query ProjectIdToPoolzBackIdV2($projectId: String!) {\n projectIdToPoolzBackIdV2(projectId: $projectId) {\n PoolzBackId\n TokenSymbol\n }\n }\n"];
|
|
225
230
|
/**
|
|
226
231
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
227
232
|
*/
|
|
@@ -438,12 +438,18 @@ export type PoolxTokenomicsV2 = {
|
|
|
438
438
|
Internal: Array<PoolxTokenomicsV2_Balance>;
|
|
439
439
|
InternalSum: Scalars['Float']['output'];
|
|
440
440
|
Locked: Scalars['Float']['output'];
|
|
441
|
+
TotalSupply: Scalars['Float']['output'];
|
|
441
442
|
};
|
|
442
443
|
export type PoolxTokenomicsV2_Balance = {
|
|
443
444
|
__typename?: 'PoolxTokenomicsV2_Balance';
|
|
444
445
|
Balance: Scalars['Float']['output'];
|
|
445
446
|
Name: Scalars['String']['output'];
|
|
446
447
|
};
|
|
448
|
+
export type ProjectIdToPoolzBackIdV2 = {
|
|
449
|
+
__typename?: 'ProjectIdToPoolzBackIdV2';
|
|
450
|
+
PoolzBackId: Scalars['Int']['output'];
|
|
451
|
+
TokenSymbol: Scalars['String']['output'];
|
|
452
|
+
};
|
|
447
453
|
export type ProjectSignUpV3 = {
|
|
448
454
|
__typename?: 'ProjectSignUpV3';
|
|
449
455
|
JoinedTime: Scalars['Int']['output'];
|
|
@@ -488,7 +494,9 @@ export type Query = {
|
|
|
488
494
|
myUpcomingAllocation: Array<MyUpcomingAllocation>;
|
|
489
495
|
poolxPrice: PoolxPrice;
|
|
490
496
|
poolxTokenomicsV2: PoolxTokenomicsV2;
|
|
497
|
+
/** @deprecated Use new 'projectIdToPoolzBackIdV2' endpoint. */
|
|
491
498
|
projectIdToPoolzBackId: Scalars['Int']['output'];
|
|
499
|
+
projectIdToPoolzBackIdV2: ProjectIdToPoolzBackIdV2;
|
|
492
500
|
retrieveSignature: RetrieveSignatureResponse;
|
|
493
501
|
splitDataEncoder: Scalars['String']['output'];
|
|
494
502
|
time: Scalars['Int']['output'];
|
|
@@ -590,6 +598,10 @@ export type QueryProjectIdToPoolzBackIdArgs = {
|
|
|
590
598
|
projectId: Scalars['String']['input'];
|
|
591
599
|
};
|
|
592
600
|
/** --- your entry point --- */
|
|
601
|
+
export type QueryProjectIdToPoolzBackIdV2Args = {
|
|
602
|
+
projectId: Scalars['String']['input'];
|
|
603
|
+
};
|
|
604
|
+
/** --- your entry point --- */
|
|
593
605
|
export type QueryRetrieveSignatureArgs = {
|
|
594
606
|
request: RetrieveSignatureRequest;
|
|
595
607
|
};
|
|
@@ -1269,6 +1281,7 @@ export type PoolxTokenomicsV2_SimpleQuery = {
|
|
|
1269
1281
|
__typename?: 'PoolxTokenomicsV2';
|
|
1270
1282
|
CirculatingSupply: number;
|
|
1271
1283
|
Locked: number;
|
|
1284
|
+
TotalSupply: number;
|
|
1272
1285
|
};
|
|
1273
1286
|
};
|
|
1274
1287
|
export type PoolxTokenomicsV2_FullQueryVariables = Exact<{
|
|
@@ -1282,6 +1295,7 @@ export type PoolxTokenomicsV2_FullQuery = {
|
|
|
1282
1295
|
Locked: number;
|
|
1283
1296
|
InternalSum: number;
|
|
1284
1297
|
ExternalSum: number;
|
|
1298
|
+
TotalSupply: number;
|
|
1285
1299
|
External: Array<{
|
|
1286
1300
|
__typename?: 'PoolxTokenomicsV2_Balance';
|
|
1287
1301
|
Name: string;
|
|
@@ -1301,6 +1315,17 @@ export type ProjectIdToPoolzBackIdQuery = {
|
|
|
1301
1315
|
__typename?: 'Query';
|
|
1302
1316
|
projectIdToPoolzBackId: number;
|
|
1303
1317
|
};
|
|
1318
|
+
export type ProjectIdToPoolzBackIdV2QueryVariables = Exact<{
|
|
1319
|
+
projectId: Scalars['String']['input'];
|
|
1320
|
+
}>;
|
|
1321
|
+
export type ProjectIdToPoolzBackIdV2Query = {
|
|
1322
|
+
__typename?: 'Query';
|
|
1323
|
+
projectIdToPoolzBackIdV2: {
|
|
1324
|
+
__typename?: 'ProjectIdToPoolzBackIdV2';
|
|
1325
|
+
PoolzBackId: number;
|
|
1326
|
+
TokenSymbol: string;
|
|
1327
|
+
};
|
|
1328
|
+
};
|
|
1304
1329
|
export type MySignUpV3QueryVariables = Exact<{
|
|
1305
1330
|
projectIDs: Array<Scalars['String']['input']> | Scalars['String']['input'];
|
|
1306
1331
|
}>;
|
|
@@ -1406,6 +1431,7 @@ export declare const PoolxPriceDocument: DocumentNode<PoolxPriceQuery, PoolxPric
|
|
|
1406
1431
|
export declare const PoolxTokenomicsV2_SimpleDocument: DocumentNode<PoolxTokenomicsV2_SimpleQuery, PoolxTokenomicsV2_SimpleQueryVariables>;
|
|
1407
1432
|
export declare const PoolxTokenomicsV2_FullDocument: DocumentNode<PoolxTokenomicsV2_FullQuery, PoolxTokenomicsV2_FullQueryVariables>;
|
|
1408
1433
|
export declare const ProjectIdToPoolzBackIdDocument: DocumentNode<ProjectIdToPoolzBackIdQuery, ProjectIdToPoolzBackIdQueryVariables>;
|
|
1434
|
+
export declare const ProjectIdToPoolzBackIdV2Document: DocumentNode<ProjectIdToPoolzBackIdV2Query, ProjectIdToPoolzBackIdV2QueryVariables>;
|
|
1409
1435
|
export declare const MySignUpV3Document: DocumentNode<MySignUpV3Query, MySignUpV3QueryVariables>;
|
|
1410
1436
|
export declare const AdminSignUpV3Document: DocumentNode<AdminSignUpV3Query, AdminSignUpV3QueryVariables>;
|
|
1411
1437
|
export declare const ProjectSignUpV3Document: DocumentNode<ProjectSignUpV3Mutation, ProjectSignUpV3MutationVariables>;
|