@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.
@@ -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<{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@poolzfinance/api4",
3
- "version": "1.11.42",
3
+ "version": "1.11.44",
4
4
  "description": "Bridge between front and back",
5
5
  "type": "module",
6
6
  "source": "src/index.ts",