@poolzfinance/api4 1.15.8 → 1.15.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.
@@ -43,7 +43,7 @@ type Documents = {
43
43
  "\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;
44
44
  "\n mutation DeleteNonEvmWallet($chainName: String!) {\n deleteNonEvmWallet(chainName: $chainName) {\n Agree\n NonEvmWallet {\n ChainName\n Wallet\n }\n }\n}": typeof types.DeleteNonEvmWalletDocument;
45
45
  "\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;
46
- "\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;
46
+ "\n query MyInvest {\n myInvest {\n PoolId\n ProjectId\n ProjectName\n ProjectLogoUrl\n ChainId\n Amount\n FinishTime\n StartTime\n Token\n TokenSymbol\n TokenName\n ChainLogo {\n DisplayText\n Color\n Url\n }\n OriginalLogo {\n DisplayText\n Color\n Url\n }\n TokenObject {\n Address\n Name\n Symbol\n }\n }\n }\n": typeof types.MyInvestDocument;
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;
@@ -197,7 +197,7 @@ export declare function gql(source: "\n mutation UpdateNonEvmWallet($chainName:
197
197
  /**
198
198
  * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
199
199
  */
200
- 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"];
200
+ export declare function gql(source: "\n query MyInvest {\n myInvest {\n PoolId\n ProjectId\n ProjectName\n ProjectLogoUrl\n ChainId\n Amount\n FinishTime\n StartTime\n Token\n TokenSymbol\n TokenName\n ChainLogo {\n DisplayText\n Color\n Url\n }\n OriginalLogo {\n DisplayText\n Color\n Url\n }\n TokenObject {\n Address\n Name\n Symbol\n }\n }\n }\n"): (typeof documents)["\n query MyInvest {\n myInvest {\n PoolId\n ProjectId\n ProjectName\n ProjectLogoUrl\n ChainId\n Amount\n FinishTime\n StartTime\n Token\n TokenSymbol\n TokenName\n ChainLogo {\n DisplayText\n Color\n Url\n }\n OriginalLogo {\n DisplayText\n Color\n Url\n }\n TokenObject {\n Address\n Name\n Symbol\n }\n }\n }\n"];
201
201
  /**
202
202
  * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
203
203
  */
@@ -382,6 +382,8 @@ export type MyInvest = {
382
382
  OriginalLogo: MyInvest_Logo;
383
383
  PoolId: Scalars['Int']['output'];
384
384
  ProjectId: Scalars['String']['output'];
385
+ ProjectLogoUrl?: Maybe<Scalars['String']['output']>;
386
+ ProjectName: Scalars['String']['output'];
385
387
  StartTime: Scalars['Int']['output'];
386
388
  Token: Scalars['String']['output'];
387
389
  TokenName: Scalars['String']['output'];
@@ -1197,13 +1199,35 @@ export type MyInvestQuery = {
1197
1199
  __typename?: 'Query';
1198
1200
  myInvest: Array<{
1199
1201
  __typename?: 'MyInvest';
1200
- ProjectId: string;
1201
1202
  PoolId: number;
1203
+ ProjectId: string;
1204
+ ProjectName: string;
1205
+ ProjectLogoUrl?: string | null;
1202
1206
  ChainId: number;
1203
- Token: string;
1204
1207
  Amount: number;
1205
- TokenName: string;
1208
+ FinishTime: number;
1209
+ StartTime: number;
1210
+ Token: string;
1206
1211
  TokenSymbol: string;
1212
+ TokenName: string;
1213
+ ChainLogo: {
1214
+ __typename?: 'MyInvest_Logo';
1215
+ DisplayText: string;
1216
+ Color?: string | null;
1217
+ Url: string;
1218
+ };
1219
+ OriginalLogo: {
1220
+ __typename?: 'MyInvest_Logo';
1221
+ DisplayText: string;
1222
+ Color?: string | null;
1223
+ Url: string;
1224
+ };
1225
+ TokenObject: {
1226
+ __typename?: 'MyInvest_Token';
1227
+ Address: string;
1228
+ Name: string;
1229
+ Symbol: string;
1230
+ };
1207
1231
  }>;
1208
1232
  };
1209
1233
  export type KycQueryVariables = Exact<{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@poolzfinance/api4",
3
- "version": "1.15.8",
3
+ "version": "1.15.9",
4
4
  "description": "Bridge between front and back",
5
5
  "type": "module",
6
6
  "source": "src/index.ts",