@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.
- package/dist/endpoints/onBoardingCheckTx.d.ts +9 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -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/graphql/gql.d.ts +9 -0
- package/dist/types/graphql/graphql.d.ts +18 -0
- package/package.json +1 -1
|
@@ -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;
|