@poolzfinance/api4 1.11.14 → 1.11.15

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.
@@ -90,6 +90,11 @@ declare const documents: {
90
90
  "\n query SignUpCheck($poolIDs: [Int!]!) {\n mySignUpCheck(poolIDs: $poolIDs) {\n PoolId\n SignUp\n }\n }": DocumentNode<types.SignUpCheckQuery, types.Exact<{
91
91
  poolIDs: number | number[];
92
92
  }>>;
93
+ "\n mutation OnboardingCheckTx($chatId:Long!, $dataOnAuth: DataOnAuth!, $tokenTransfer: OnboardingTokenTransfer!) {\n onboardingCheckTx(chatId: $chatId, dataOnAuth: $dataOnAuth, tokenTransfer: $tokenTransfer) {\n Success\n ErrorMessage\n }\n}": DocumentNode<types.OnboardingCheckTxMutation, types.Exact<{
94
+ chatId: any;
95
+ dataOnAuth: types.DataOnAuth;
96
+ tokenTransfer: types.OnboardingTokenTransfer;
97
+ }>>;
93
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<{
94
99
  chatId: any;
95
100
  dataOnAuth: types.DataOnAuth;
@@ -232,6 +237,10 @@ export declare function gql(source: "\n query MyRole {\n myRole\n}"): (typeo
232
237
  * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
233
238
  */
234
239
  export declare function gql(source: "\n query SignUpCheck($poolIDs: [Int!]!) {\n mySignUpCheck(poolIDs: $poolIDs) {\n PoolId\n SignUp\n }\n }"): (typeof documents)["\n query SignUpCheck($poolIDs: [Int!]!) {\n mySignUpCheck(poolIDs: $poolIDs) {\n PoolId\n SignUp\n }\n }"];
240
+ /**
241
+ * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
242
+ */
243
+ export declare function gql(source: "\n mutation OnboardingCheckTx($chatId:Long!, $dataOnAuth: DataOnAuth!, $tokenTransfer: OnboardingTokenTransfer!) {\n onboardingCheckTx(chatId: $chatId, dataOnAuth: $dataOnAuth, tokenTransfer: $tokenTransfer) {\n Success\n ErrorMessage\n }\n}"): (typeof documents)["\n mutation OnboardingCheckTx($chatId:Long!, $dataOnAuth: DataOnAuth!, $tokenTransfer: OnboardingTokenTransfer!) {\n onboardingCheckTx(chatId: $chatId, dataOnAuth: $dataOnAuth, tokenTransfer: $tokenTransfer) {\n Success\n ErrorMessage\n }\n}"];
235
244
  /**
236
245
  * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
237
246
  */
@@ -972,6 +972,19 @@ export type SignUpCheckQuery = {
972
972
  SignUp?: boolean | null;
973
973
  }>;
974
974
  };
975
+ export type OnboardingCheckTxMutationVariables = Exact<{
976
+ chatId: Scalars['Long']['input'];
977
+ dataOnAuth: DataOnAuth;
978
+ tokenTransfer: OnboardingTokenTransfer;
979
+ }>;
980
+ export type OnboardingCheckTxMutation = {
981
+ __typename?: 'Mutation';
982
+ onboardingCheckTx: {
983
+ __typename?: 'OnboardingMutationsResponse';
984
+ Success: boolean;
985
+ ErrorMessage?: string | null;
986
+ };
987
+ };
975
988
  export type OnboardingDataQueryVariables = Exact<{
976
989
  chatId: Scalars['Long']['input'];
977
990
  dataOnAuth: DataOnAuth;
@@ -1216,6 +1229,11 @@ export declare const MyRoleDocument: DocumentNode<MyRoleQuery, Exact<{
1216
1229
  export declare const SignUpCheckDocument: DocumentNode<SignUpCheckQuery, Exact<{
1217
1230
  poolIDs: Array<Scalars['Int']['input']> | Scalars['Int']['input'];
1218
1231
  }>>;
1232
+ export declare const OnboardingCheckTxDocument: DocumentNode<OnboardingCheckTxMutation, Exact<{
1233
+ chatId: Scalars['Long']['input'];
1234
+ dataOnAuth: DataOnAuth;
1235
+ tokenTransfer: OnboardingTokenTransfer;
1236
+ }>>;
1219
1237
  export declare const OnboardingDataDocument: DocumentNode<OnboardingDataQuery, Exact<{
1220
1238
  chatId: Scalars['Long']['input'];
1221
1239
  dataOnAuth: DataOnAuth;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@poolzfinance/api4",
3
- "version": "1.11.14",
3
+ "version": "1.11.15",
4
4
  "description": "Bridge between front and back",
5
5
  "type": "module",
6
6
  "source": "src/index.ts",