@poolzfinance/api4 1.13.8 → 1.13.9
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 +2 -0
- package/package.json +1 -1
|
@@ -40,7 +40,7 @@ type Documents = {
|
|
|
40
40
|
"\n mutation AddNonEvmWallet($chainName: String!, $wallet: String!) {\n addNonEvmWallet(chainName: $chainName, wallet: $wallet) {\n Agree\n NonEvmWallet {\n ChainName\n Wallet\n }\n EvmWallet\n }\n}": typeof types.AddNonEvmWalletDocument;
|
|
41
41
|
"\n mutation DeleteNonEvmWallet($chainName: String!) {\n deleteNonEvmWallet(chainName: $chainName) {\n Agree\n NonEvmWallet {\n ChainName\n Wallet\n }\n }\n}": typeof types.DeleteNonEvmWalletDocument;
|
|
42
42
|
"\n mutation UpdateNonEvmWallet($chainName: String!, $wallet: String!) {\n updateNonEvmWallet(chainName: $chainName, wallet: $wallet) {\n Agree\n NonEvmWallet {\n ChainName\n Wallet\n }\n }\n}": typeof types.UpdateNonEvmWalletDocument;
|
|
43
|
-
"\n query MyInvest {\n myInvest {\n ProjectId\n PoolId\n ChainId\n Token\n Amount\n TokenName\n }\n }\n": typeof types.MyInvestDocument;
|
|
43
|
+
"\n query MyInvest {\n myInvest {\n ProjectId\n PoolId\n ChainId\n Token\n Amount\n TokenName\n TokenSymbol\n }\n }\n": typeof types.MyInvestDocument;
|
|
44
44
|
"\n query MyInvested {\n myInvestmentsErc20 {\n ChainId\n TxHash\n BlockSignedAt\n Amount\n Token\n Id\n }\n myInvestmentsETH {\n ChainId\n TxHash\n BlockSignedAt\n Amount\n Id\n }\n}": typeof types.MyInvestedDocument;
|
|
45
45
|
"\n query KYC {\n myProxyKYC {\n Proxy\n RequestStatus\n Status\n }\n}": typeof types.KycDocument;
|
|
46
46
|
"\n query MyRoles {\n myRoles\n }": typeof types.MyRolesDocument;
|
|
@@ -182,7 +182,7 @@ export declare function gql(source: "\n mutation UpdateNonEvmWallet($chainName:
|
|
|
182
182
|
/**
|
|
183
183
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
184
184
|
*/
|
|
185
|
-
export declare function gql(source: "\n query MyInvest {\n myInvest {\n ProjectId\n PoolId\n ChainId\n Token\n Amount\n TokenName\n }\n }\n"): (typeof documents)["\n query MyInvest {\n myInvest {\n ProjectId\n PoolId\n ChainId\n Token\n Amount\n TokenName\n }\n }\n"];
|
|
185
|
+
export declare function gql(source: "\n query MyInvest {\n myInvest {\n ProjectId\n PoolId\n ChainId\n Token\n Amount\n TokenName\n TokenSymbol\n }\n }\n"): (typeof documents)["\n query MyInvest {\n myInvest {\n ProjectId\n PoolId\n ChainId\n Token\n Amount\n TokenName\n TokenSymbol\n }\n }\n"];
|
|
186
186
|
/**
|
|
187
187
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
188
188
|
*/
|
|
@@ -321,6 +321,7 @@ export type MyInvest = {
|
|
|
321
321
|
ProjectId: Scalars['String']['output'];
|
|
322
322
|
Token: Scalars['String']['output'];
|
|
323
323
|
TokenName: Scalars['String']['output'];
|
|
324
|
+
TokenSymbol: Scalars['String']['output'];
|
|
324
325
|
};
|
|
325
326
|
export type MyInvestmentsEth = {
|
|
326
327
|
__typename?: 'MyInvestmentsETH';
|
|
@@ -1043,6 +1044,7 @@ export type MyInvestQuery = {
|
|
|
1043
1044
|
Token: string;
|
|
1044
1045
|
Amount: number;
|
|
1045
1046
|
TokenName: string;
|
|
1047
|
+
TokenSymbol: string;
|
|
1046
1048
|
}>;
|
|
1047
1049
|
};
|
|
1048
1050
|
export type MyInvestedQueryVariables = Exact<{
|