@poolzfinance/api4 1.11.19 → 1.11.20
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/onBoardingData.d.ts +2 -2
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +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/graphql/gql.d.ts +3 -3
- package/dist/types/graphql/graphql.d.ts +14 -18
- package/package.json +1 -1
|
@@ -95,9 +95,9 @@ declare const documents: {
|
|
|
95
95
|
dataOnAuth: types.DataOnAuth;
|
|
96
96
|
tokenTransfer: types.OnboardingTokenTransfer;
|
|
97
97
|
}>>;
|
|
98
|
-
"\nquery OnboardingData($
|
|
99
|
-
chatId: any;
|
|
98
|
+
"\nquery OnboardingData($dataOnAuth: DataOnAuth!, $chatId:Long!) {\n onboardingData(dataOnAuth: $dataOnAuth, chatId: $chatId) {\n TokenAddress\n ChainId\n TokenTransfers {\n Amount\n TxHash\n Timestamp\n }\n TokenAllocations {\n StartDate\n FinishDate\n Ratio\n }\n }\n}": DocumentNode<types.OnboardingDataQuery, types.Exact<{
|
|
100
99
|
dataOnAuth: types.DataOnAuth;
|
|
100
|
+
chatId: any;
|
|
101
101
|
}>>;
|
|
102
102
|
"\nquery OnboardingProjects($dataOnAuth: DataOnAuth!) {\n onboardingProjects(dataOnAuth: $dataOnAuth)\n {\n ChatId\n ChatTitle\n }\n}": DocumentNode<types.OnboardingProjectsQuery, types.Exact<{
|
|
103
103
|
dataOnAuth: types.DataOnAuth;
|
|
@@ -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($
|
|
252
|
+
export declare function gql(source: "\nquery OnboardingData($dataOnAuth: DataOnAuth!, $chatId:Long!) {\n onboardingData(dataOnAuth: $dataOnAuth, chatId: $chatId) {\n TokenAddress\n ChainId\n TokenTransfers {\n Amount\n TxHash\n Timestamp\n }\n TokenAllocations {\n StartDate\n FinishDate\n Ratio\n }\n }\n}"): (typeof documents)["\nquery OnboardingData($dataOnAuth: DataOnAuth!, $chatId:Long!) {\n onboardingData(dataOnAuth: $dataOnAuth, chatId: $chatId) {\n TokenAddress\n ChainId\n TokenTransfers {\n Amount\n TxHash\n Timestamp\n }\n TokenAllocations {\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
|
*/
|
|
@@ -348,9 +348,10 @@ export type NonEvmWallet = {
|
|
|
348
348
|
};
|
|
349
349
|
export type OnboardingData_Data = {
|
|
350
350
|
__typename?: 'OnboardingData_Data';
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
351
|
+
ChainId: Scalars['Long']['output'];
|
|
352
|
+
TokenAddress: Scalars['String']['output'];
|
|
353
|
+
TokenAllocations: Array<OnboardingData_TokenAllocation>;
|
|
354
|
+
TokenTransfers: Array<OnboardingData_TokenTransfer>;
|
|
354
355
|
};
|
|
355
356
|
export type OnboardingData_TokenAllocation = {
|
|
356
357
|
__typename?: 'OnboardingData_TokenAllocation';
|
|
@@ -361,7 +362,6 @@ export type OnboardingData_TokenAllocation = {
|
|
|
361
362
|
export type OnboardingData_TokenTransfer = {
|
|
362
363
|
__typename?: 'OnboardingData_TokenTransfer';
|
|
363
364
|
Amount: Scalars['Float']['output'];
|
|
364
|
-
ChainId: Scalars['Long']['output'];
|
|
365
365
|
Timestamp: Scalars['Long']['output'];
|
|
366
366
|
TxHash: Scalars['String']['output'];
|
|
367
367
|
};
|
|
@@ -393,6 +393,7 @@ export type OnboardingTokenAllocation = {
|
|
|
393
393
|
};
|
|
394
394
|
export type OnboardingTokenTransfer = {
|
|
395
395
|
ChainId: Scalars['Long']['input'];
|
|
396
|
+
TokenAddress: Scalars['String']['input'];
|
|
396
397
|
TxHash: Scalars['String']['input'];
|
|
397
398
|
};
|
|
398
399
|
export type PoolxPrice = {
|
|
@@ -450,7 +451,7 @@ export type Query = {
|
|
|
450
451
|
myRole: Scalars['String']['output'];
|
|
451
452
|
mySignUpCheck: Array<SignUpCheck>;
|
|
452
453
|
mySignup: Array<MySignUp>;
|
|
453
|
-
onboardingData: OnboardingData_Data
|
|
454
|
+
onboardingData: Array<OnboardingData_Data>;
|
|
454
455
|
onboardingProjects: Array<OnboardingProject>;
|
|
455
456
|
poolxPrice: PoolxPrice;
|
|
456
457
|
poolxTokenomics: PoolxTokenomics;
|
|
@@ -996,33 +997,28 @@ export type OnboardingCheckTxMutation = {
|
|
|
996
997
|
};
|
|
997
998
|
};
|
|
998
999
|
export type OnboardingDataQueryVariables = Exact<{
|
|
999
|
-
chatId: Scalars['Long']['input'];
|
|
1000
1000
|
dataOnAuth: DataOnAuth;
|
|
1001
|
+
chatId: Scalars['Long']['input'];
|
|
1001
1002
|
}>;
|
|
1002
1003
|
export type OnboardingDataQuery = {
|
|
1003
1004
|
__typename?: 'Query';
|
|
1004
|
-
onboardingData: {
|
|
1005
|
+
onboardingData: Array<{
|
|
1005
1006
|
__typename?: 'OnboardingData_Data';
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
TokenAddress: string;
|
|
1010
|
-
Amount: number;
|
|
1011
|
-
};
|
|
1012
|
-
TokenTransfer: Array<{
|
|
1007
|
+
TokenAddress: string;
|
|
1008
|
+
ChainId: any;
|
|
1009
|
+
TokenTransfers: Array<{
|
|
1013
1010
|
__typename?: 'OnboardingData_TokenTransfer';
|
|
1014
|
-
ChainId: any;
|
|
1015
1011
|
Amount: number;
|
|
1016
1012
|
TxHash: string;
|
|
1017
1013
|
Timestamp: any;
|
|
1018
1014
|
}>;
|
|
1019
|
-
|
|
1015
|
+
TokenAllocations: Array<{
|
|
1020
1016
|
__typename?: 'OnboardingData_TokenAllocation';
|
|
1021
1017
|
StartDate: string;
|
|
1022
1018
|
FinishDate?: string | null;
|
|
1023
1019
|
Ratio: number;
|
|
1024
1020
|
}>;
|
|
1025
|
-
}
|
|
1021
|
+
}>;
|
|
1026
1022
|
};
|
|
1027
1023
|
export type OnboardingProjectsQueryVariables = Exact<{
|
|
1028
1024
|
dataOnAuth: DataOnAuth;
|
|
@@ -1257,8 +1253,8 @@ export declare const OnboardingCheckTxDocument: DocumentNode<OnboardingCheckTxMu
|
|
|
1257
1253
|
tokenTransfer: OnboardingTokenTransfer;
|
|
1258
1254
|
}>>;
|
|
1259
1255
|
export declare const OnboardingDataDocument: DocumentNode<OnboardingDataQuery, Exact<{
|
|
1260
|
-
chatId: Scalars['Long']['input'];
|
|
1261
1256
|
dataOnAuth: DataOnAuth;
|
|
1257
|
+
chatId: Scalars['Long']['input'];
|
|
1262
1258
|
}>>;
|
|
1263
1259
|
export declare const OnboardingProjectsDocument: DocumentNode<OnboardingProjectsQuery, Exact<{
|
|
1264
1260
|
dataOnAuth: DataOnAuth;
|