@poolzfinance/api4 1.11.18 → 1.11.19

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.
@@ -95,7 +95,7 @@ declare const documents: {
95
95
  dataOnAuth: types.DataOnAuth;
96
96
  tokenTransfer: types.OnboardingTokenTransfer;
97
97
  }>>;
98
- "\nquery OnboardingData($chatId:Long!, $dataOnAuth: DataOnAuth!) {\n onboardingData(chatId: $chatId, dataOnAuth: $dataOnAuth) {\n Tokens {\n ChainId\n TokenAddress\n Amount\n }\n TokenTransfer {\n ChainId\n TokenAddress\n Amount\n TxHash\n IsVerified\n }\n TokenAllocation {\n StartDate\n FinishDate\n Ratio\n }\n }\n}": DocumentNode<types.OnboardingDataQuery, types.Exact<{
98
+ "\nquery OnboardingData($chatId:Long!, $dataOnAuth: DataOnAuth!) {\n onboardingData(chatId: $chatId, dataOnAuth: $dataOnAuth) {\n Tokens {\n ChainId\n TokenAddress\n Amount\n }\n TokenTransfer {\n ChainId\n Amount\n TxHash\n Timestamp\n }\n TokenAllocation {\n StartDate\n FinishDate\n Ratio\n }\n }\n}": DocumentNode<types.OnboardingDataQuery, types.Exact<{
99
99
  chatId: any;
100
100
  dataOnAuth: types.DataOnAuth;
101
101
  }>>;
@@ -249,7 +249,7 @@ export declare function gql(source: "\n mutation OnboardingCheckTx($chatId:Long
249
249
  /**
250
250
  * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
251
251
  */
252
- export declare function gql(source: "\nquery OnboardingData($chatId:Long!, $dataOnAuth: DataOnAuth!) {\n onboardingData(chatId: $chatId, dataOnAuth: $dataOnAuth) {\n Tokens {\n ChainId\n TokenAddress\n Amount\n }\n TokenTransfer {\n ChainId\n TokenAddress\n Amount\n TxHash\n IsVerified\n }\n TokenAllocation {\n StartDate\n FinishDate\n Ratio\n }\n }\n}"): (typeof documents)["\nquery OnboardingData($chatId:Long!, $dataOnAuth: DataOnAuth!) {\n onboardingData(chatId: $chatId, dataOnAuth: $dataOnAuth) {\n Tokens {\n ChainId\n TokenAddress\n Amount\n }\n TokenTransfer {\n ChainId\n TokenAddress\n Amount\n TxHash\n IsVerified\n }\n TokenAllocation {\n StartDate\n FinishDate\n Ratio\n }\n }\n}"];
252
+ export declare function gql(source: "\nquery OnboardingData($chatId:Long!, $dataOnAuth: DataOnAuth!) {\n onboardingData(chatId: $chatId, dataOnAuth: $dataOnAuth) {\n Tokens {\n ChainId\n TokenAddress\n Amount\n }\n TokenTransfer {\n ChainId\n Amount\n TxHash\n Timestamp\n }\n TokenAllocation {\n StartDate\n FinishDate\n Ratio\n }\n }\n}"): (typeof documents)["\nquery OnboardingData($chatId:Long!, $dataOnAuth: DataOnAuth!) {\n onboardingData(chatId: $chatId, dataOnAuth: $dataOnAuth) {\n Tokens {\n ChainId\n TokenAddress\n Amount\n }\n TokenTransfer {\n ChainId\n Amount\n TxHash\n Timestamp\n }\n TokenAllocation {\n StartDate\n FinishDate\n Ratio\n }\n }\n}"];
253
253
  /**
254
254
  * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
255
255
  */
@@ -350,7 +350,7 @@ export type OnboardingData_Data = {
350
350
  __typename?: 'OnboardingData_Data';
351
351
  TokenAllocation: Array<OnboardingData_TokenAllocation>;
352
352
  TokenTransfer: Array<OnboardingData_TokenTransfer>;
353
- Tokens: Array<OnboardingData_Tokens>;
353
+ Tokens: OnboardingData_Tokens;
354
354
  };
355
355
  export type OnboardingData_TokenAllocation = {
356
356
  __typename?: 'OnboardingData_TokenAllocation';
@@ -362,8 +362,7 @@ export type OnboardingData_TokenTransfer = {
362
362
  __typename?: 'OnboardingData_TokenTransfer';
363
363
  Amount: Scalars['Float']['output'];
364
364
  ChainId: Scalars['Long']['output'];
365
- IsVerified: Scalars['Boolean']['output'];
366
- TokenAddress: Scalars['String']['output'];
365
+ Timestamp: Scalars['Long']['output'];
367
366
  TxHash: Scalars['String']['output'];
368
367
  };
369
368
  export type OnboardingData_Tokens = {
@@ -394,7 +393,6 @@ export type OnboardingTokenAllocation = {
394
393
  };
395
394
  export type OnboardingTokenTransfer = {
396
395
  ChainId: Scalars['Long']['input'];
397
- TokenAddress: Scalars['String']['input'];
398
396
  TxHash: Scalars['String']['input'];
399
397
  };
400
398
  export type PoolxPrice = {
@@ -1005,19 +1003,18 @@ export type OnboardingDataQuery = {
1005
1003
  __typename?: 'Query';
1006
1004
  onboardingData: {
1007
1005
  __typename?: 'OnboardingData_Data';
1008
- Tokens: Array<{
1006
+ Tokens: {
1009
1007
  __typename?: 'OnboardingData_Tokens';
1010
1008
  ChainId: any;
1011
1009
  TokenAddress: string;
1012
1010
  Amount: number;
1013
- }>;
1011
+ };
1014
1012
  TokenTransfer: Array<{
1015
1013
  __typename?: 'OnboardingData_TokenTransfer';
1016
1014
  ChainId: any;
1017
- TokenAddress: string;
1018
1015
  Amount: number;
1019
1016
  TxHash: string;
1020
- IsVerified: boolean;
1017
+ Timestamp: any;
1021
1018
  }>;
1022
1019
  TokenAllocation: Array<{
1023
1020
  __typename?: 'OnboardingData_TokenAllocation';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@poolzfinance/api4",
3
- "version": "1.11.18",
3
+ "version": "1.11.19",
4
4
  "description": "Bridge between front and back",
5
5
  "type": "module",
6
6
  "source": "src/index.ts",