@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.
- package/dist/components/API4Inner.d.ts +5 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +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/IAPI4ProviderProps.d.ts +1 -0
- package/dist/types/graphql/graphql.d.ts +12 -12
- package/package.json +1 -1
|
@@ -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['
|
|
491
|
-
ChainId: Scalars['
|
|
492
|
-
Id: Scalars['
|
|
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['
|
|
499
|
-
ChainId: Scalars['
|
|
500
|
-
Id: Scalars['
|
|
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:
|
|
1228
|
+
ChainId: number;
|
|
1229
1229
|
TxHash: string;
|
|
1230
|
-
BlockSignedAt:
|
|
1230
|
+
BlockSignedAt: number;
|
|
1231
1231
|
Amount: number;
|
|
1232
1232
|
Token: string;
|
|
1233
|
-
Id:
|
|
1233
|
+
Id: number;
|
|
1234
1234
|
}>;
|
|
1235
1235
|
myInvestmentsETH: Array<{
|
|
1236
1236
|
__typename?: 'MyInvestmentsETH';
|
|
1237
|
-
ChainId:
|
|
1237
|
+
ChainId: number;
|
|
1238
1238
|
TxHash: string;
|
|
1239
|
-
BlockSignedAt:
|
|
1239
|
+
BlockSignedAt: number;
|
|
1240
1240
|
Amount: number;
|
|
1241
|
-
Id:
|
|
1241
|
+
Id: number;
|
|
1242
1242
|
}>;
|
|
1243
1243
|
};
|
|
1244
1244
|
export type MyLinkTelegramMutationVariables = Exact<{
|