@poolzfinance/api4 1.11.42 → 1.11.44
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 +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 +2 -2
- package/dist/types/graphql/graphql.d.ts +10 -0
- package/package.json +1 -1
|
@@ -171,7 +171,7 @@ declare const documents: {
|
|
|
171
171
|
"\n query TokenInfo($hashKey: String!) {\n tokenInfo(hashKey: $hashKey) {\n Address\n ChainId\n Decimals\n Name\n Symbol\n TotalSupply\n }\n }\n": DocumentNode<types.TokenInfoQuery, types.Exact<{
|
|
172
172
|
hashKey: string;
|
|
173
173
|
}>>;
|
|
174
|
-
"\n query TokenRefundsNFT($chainId: Int!, $poolId: Int!) {\n tokenRefundsNFT(chainId: $chainId, poolId: $poolId) {\n TxHash\n BlockSignedAt\n From\n }\n}": DocumentNode<types.TokenRefundsNftQuery, types.Exact<{
|
|
174
|
+
"\n query TokenRefundsNFT($chainId: Int!, $poolId: Int!) {\n tokenRefundsNFT(chainId: $chainId, poolId: $poolId) {\n TxHash\n BlockSignedAt\n From\n TokensRefunded {\n TokenId\n Amount\n }\n TokenOut {\n TokenId\n Amount\n }\n }\n}": DocumentNode<types.TokenRefundsNftQuery, types.Exact<{
|
|
175
175
|
chainId: number;
|
|
176
176
|
poolId: number;
|
|
177
177
|
}>>;
|
|
@@ -381,7 +381,7 @@ export declare function gql(source: "\n query TokenInfo($hashKey: String!) {\n
|
|
|
381
381
|
/**
|
|
382
382
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
383
383
|
*/
|
|
384
|
-
export declare function gql(source: "\n query TokenRefundsNFT($chainId: Int!, $poolId: Int!) {\n tokenRefundsNFT(chainId: $chainId, poolId: $poolId) {\n TxHash\n BlockSignedAt\n From\n }\n}"): (typeof documents)["\n query TokenRefundsNFT($chainId: Int!, $poolId: Int!) {\n tokenRefundsNFT(chainId: $chainId, poolId: $poolId) {\n TxHash\n BlockSignedAt\n From\n }\n}"];
|
|
384
|
+
export declare function gql(source: "\n query TokenRefundsNFT($chainId: Int!, $poolId: Int!) {\n tokenRefundsNFT(chainId: $chainId, poolId: $poolId) {\n TxHash\n BlockSignedAt\n From\n TokensRefunded {\n TokenId\n Amount\n }\n TokenOut {\n TokenId\n Amount\n }\n }\n}"): (typeof documents)["\n query TokenRefundsNFT($chainId: Int!, $poolId: Int!) {\n tokenRefundsNFT(chainId: $chainId, poolId: $poolId) {\n TxHash\n BlockSignedAt\n From\n TokensRefunded {\n TokenId\n Amount\n }\n TokenOut {\n TokenId\n Amount\n }\n }\n}"];
|
|
385
385
|
/**
|
|
386
386
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
387
387
|
*/
|
|
@@ -1484,6 +1484,16 @@ export type TokenRefundsNftQuery = {
|
|
|
1484
1484
|
TxHash: string;
|
|
1485
1485
|
BlockSignedAt: number;
|
|
1486
1486
|
From: string;
|
|
1487
|
+
TokensRefunded: {
|
|
1488
|
+
__typename?: 'TokenRefundsNFT_TokensRefunded';
|
|
1489
|
+
TokenId: number;
|
|
1490
|
+
Amount: number;
|
|
1491
|
+
};
|
|
1492
|
+
TokenOut: {
|
|
1493
|
+
__typename?: 'TokenRefundsNFT_TokenOut';
|
|
1494
|
+
TokenId: number;
|
|
1495
|
+
Amount: number;
|
|
1496
|
+
};
|
|
1487
1497
|
}>;
|
|
1488
1498
|
};
|
|
1489
1499
|
export type DataQueryVariables = Exact<{
|