@poolzfinance/api4 1.11.32 → 1.11.34

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.
@@ -20,5 +20,6 @@ export interface IAPI4ProviderInitionalState {
20
20
  account?: string;
21
21
  userDenied: boolean;
22
22
  privatTokenStatus: EPrivatTokenStatus;
23
+ siweResult: TSiwe | null;
23
24
  }
24
25
  export {};
@@ -487,17 +487,17 @@ export type MyInvestSum = {
487
487
  export type MyInvestmentsEth = {
488
488
  __typename?: 'MyInvestmentsETH';
489
489
  Amount: Scalars['Float']['output'];
490
- BlockSignedAt: Scalars['String']['output'];
491
- ChainId: Scalars['Long']['output'];
492
- Id: Scalars['Long']['output'];
490
+ BlockSignedAt: Scalars['Int']['output'];
491
+ ChainId: Scalars['Int']['output'];
492
+ Id: Scalars['Int']['output'];
493
493
  TxHash: Scalars['String']['output'];
494
494
  };
495
495
  export type MyInvestmentsErc20 = {
496
496
  __typename?: 'MyInvestmentsErc20';
497
497
  Amount: Scalars['Float']['output'];
498
- BlockSignedAt: Scalars['String']['output'];
499
- ChainId: Scalars['Long']['output'];
500
- Id: Scalars['Long']['output'];
498
+ BlockSignedAt: Scalars['Int']['output'];
499
+ ChainId: Scalars['Int']['output'];
500
+ Id: Scalars['Int']['output'];
501
501
  Token: Scalars['String']['output'];
502
502
  TxHash: Scalars['String']['output'];
503
503
  };
@@ -1225,20 +1225,20 @@ export type MyInvestedQuery = {
1225
1225
  __typename?: 'Query';
1226
1226
  myInvestmentsErc20: Array<{
1227
1227
  __typename?: 'MyInvestmentsErc20';
1228
- ChainId: any;
1228
+ ChainId: number;
1229
1229
  TxHash: string;
1230
- BlockSignedAt: string;
1230
+ BlockSignedAt: number;
1231
1231
  Amount: number;
1232
1232
  Token: string;
1233
- Id: any;
1233
+ Id: number;
1234
1234
  }>;
1235
1235
  myInvestmentsETH: Array<{
1236
1236
  __typename?: 'MyInvestmentsETH';
1237
- ChainId: any;
1237
+ ChainId: number;
1238
1238
  TxHash: string;
1239
- BlockSignedAt: string;
1239
+ BlockSignedAt: number;
1240
1240
  Amount: number;
1241
- Id: any;
1241
+ Id: number;
1242
1242
  }>;
1243
1243
  };
1244
1244
  export type MyLinkTelegramMutationVariables = Exact<{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@poolzfinance/api4",
3
- "version": "1.11.32",
3
+ "version": "1.11.34",
4
4
  "description": "Bridge between front and back",
5
5
  "type": "module",
6
6
  "source": "src/index.ts",