@poolzfinance/api4 1.15.6 → 1.15.7
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 +2 -2
- package/dist/types/graphql/graphql.d.ts +1 -0
- package/package.json +1 -1
|
@@ -28,7 +28,7 @@ type Documents = {
|
|
|
28
28
|
"\n mutation GenerateSignature($request: GenerateSignatureRequest!) {\n generateSignature(request: $request) {\n ValidFrom\n CurrentTime\n }\n}": typeof types.GenerateSignatureDocument;
|
|
29
29
|
"\n query MyQuery {\n time\n}": typeof types.MyQueryDocument;
|
|
30
30
|
"\nmutation GenerateTokenFromSignature($eip4361message: String!, $signature: String!) {\n generateTokenFromSignature(eip4361message: $eip4361message, signature: $signature){\n token\n validUntil\n }\n}": typeof types.GenerateTokenFromSignatureDocument;
|
|
31
|
-
"\n query GetTokenBalances($userAddress: String!, $chainId: Int!, $limit: Int) {\n getTokenBalances(userAddress: $userAddress, chainId: $chainId, limit: $limit) {\n pagination {\n current_page\n next_page\n total_pages\n }\n data {\n contract\n value\n name\n symbol\n }\n }\n }\n": typeof types.GetTokenBalancesDocument;
|
|
31
|
+
"\n query GetTokenBalances($userAddress: String!, $chainId: Int!, $limit: Int) {\n getTokenBalances(userAddress: $userAddress, chainId: $chainId, limit: $limit) {\n pagination {\n current_page\n next_page\n total_pages\n }\n data {\n contract\n value\n name\n symbol\n decimals\n }\n }\n }\n": typeof types.GetTokenBalancesDocument;
|
|
32
32
|
"\n query GenerateMyInvestSignature($projectId: String!, $weiAmount: String!) {\n generateMyInvestSignature(projectId: $projectId, weiAmount: $weiAmount) {\n Signature\n ValidUntil\n PoolzBackId\n }\n }\n": typeof types.GenerateMyInvestSignatureDocument;
|
|
33
33
|
"\n query getLeaderboardByAddress($address: String) {\n leaderBoard(address: $address) {\n Amount\n Owner\n Rank\n }\n}": typeof types.GetLeaderboardByAddressDocument;
|
|
34
34
|
"\n query getLeaderboard {\n leaderBoard {\n Rank\n Owner\n Amount\n }\n}": typeof types.GetLeaderboardDocument;
|
|
@@ -136,7 +136,7 @@ export declare function gql(source: "\nmutation GenerateTokenFromSignature($eip4
|
|
|
136
136
|
/**
|
|
137
137
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
138
138
|
*/
|
|
139
|
-
export declare function gql(source: "\n query GetTokenBalances($userAddress: String!, $chainId: Int!, $limit: Int) {\n getTokenBalances(userAddress: $userAddress, chainId: $chainId, limit: $limit) {\n pagination {\n current_page\n next_page\n total_pages\n }\n data {\n contract\n value\n name\n symbol\n }\n }\n }\n"): (typeof documents)["\n query GetTokenBalances($userAddress: String!, $chainId: Int!, $limit: Int) {\n getTokenBalances(userAddress: $userAddress, chainId: $chainId, limit: $limit) {\n pagination {\n current_page\n next_page\n total_pages\n }\n data {\n contract\n value\n name\n symbol\n }\n }\n }\n"];
|
|
139
|
+
export declare function gql(source: "\n query GetTokenBalances($userAddress: String!, $chainId: Int!, $limit: Int) {\n getTokenBalances(userAddress: $userAddress, chainId: $chainId, limit: $limit) {\n pagination {\n current_page\n next_page\n total_pages\n }\n data {\n contract\n value\n name\n symbol\n decimals\n }\n }\n }\n"): (typeof documents)["\n query GetTokenBalances($userAddress: String!, $chainId: Int!, $limit: Int) {\n getTokenBalances(userAddress: $userAddress, chainId: $chainId, limit: $limit) {\n pagination {\n current_page\n next_page\n total_pages\n }\n data {\n contract\n value\n name\n symbol\n decimals\n }\n }\n }\n"];
|
|
140
140
|
/**
|
|
141
141
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
142
142
|
*/
|