@poolzfinance/api4 1.15.9 → 1.16.0
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/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- 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 +4 -4
- package/dist/types/graphql/graphql.d.ts +3 -0
- package/package.json +1 -1
|
@@ -47,8 +47,8 @@ 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
53
|
"\n query MySignUpV3($projectIDs: [String!]!) {\n mySignUpV3(projectIDs: $projectIDs) {\n ProjectId\n SignedUp\n }\n }\n": typeof types.MySignUpV3Document;
|
|
54
54
|
"\n query AdminSignUpV3($projectId: String!, $minPoolxAmount: Int!) {\n adminSignUpV3(projectId: $projectId, minPoolxAmount: $minPoolxAmount) {\n Address\n Amount\n }\n }\n": typeof types.AdminSignUpV3Document;
|
|
@@ -213,11 +213,11 @@ export declare function gql(source: "\n query PoolxPrice {\n poolxPrice {\n
|
|
|
213
213
|
/**
|
|
214
214
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
215
215
|
*/
|
|
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"];
|
|
216
|
+
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
217
|
/**
|
|
218
218
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
219
219
|
*/
|
|
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"];
|
|
220
|
+
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
221
|
/**
|
|
222
222
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
223
223
|
*/
|
|
@@ -438,6 +438,7 @@ 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';
|
|
@@ -1269,6 +1270,7 @@ export type PoolxTokenomicsV2_SimpleQuery = {
|
|
|
1269
1270
|
__typename?: 'PoolxTokenomicsV2';
|
|
1270
1271
|
CirculatingSupply: number;
|
|
1271
1272
|
Locked: number;
|
|
1273
|
+
TotalSupply: number;
|
|
1272
1274
|
};
|
|
1273
1275
|
};
|
|
1274
1276
|
export type PoolxTokenomicsV2_FullQueryVariables = Exact<{
|
|
@@ -1282,6 +1284,7 @@ export type PoolxTokenomicsV2_FullQuery = {
|
|
|
1282
1284
|
Locked: number;
|
|
1283
1285
|
InternalSum: number;
|
|
1284
1286
|
ExternalSum: number;
|
|
1287
|
+
TotalSupply: number;
|
|
1285
1288
|
External: Array<{
|
|
1286
1289
|
__typename?: 'PoolxTokenomicsV2_Balance';
|
|
1287
1290
|
Name: string;
|