@poolzfinance/api4 1.11.18 → 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 +15 -22
- 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,9 +362,7 @@ export type OnboardingData_TokenAllocation = {
|
|
|
361
362
|
export type OnboardingData_TokenTransfer = {
|
|
362
363
|
__typename?: 'OnboardingData_TokenTransfer';
|
|
363
364
|
Amount: Scalars['Float']['output'];
|
|
364
|
-
|
|
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 = {
|
|
@@ -452,7 +451,7 @@ export type Query = {
|
|
|
452
451
|
myRole: Scalars['String']['output'];
|
|
453
452
|
mySignUpCheck: Array<SignUpCheck>;
|
|
454
453
|
mySignup: Array<MySignUp>;
|
|
455
|
-
onboardingData: OnboardingData_Data
|
|
454
|
+
onboardingData: Array<OnboardingData_Data>;
|
|
456
455
|
onboardingProjects: Array<OnboardingProject>;
|
|
457
456
|
poolxPrice: PoolxPrice;
|
|
458
457
|
poolxTokenomics: PoolxTokenomics;
|
|
@@ -998,34 +997,28 @@ export type OnboardingCheckTxMutation = {
|
|
|
998
997
|
};
|
|
999
998
|
};
|
|
1000
999
|
export type OnboardingDataQueryVariables = Exact<{
|
|
1001
|
-
chatId: Scalars['Long']['input'];
|
|
1002
1000
|
dataOnAuth: DataOnAuth;
|
|
1001
|
+
chatId: Scalars['Long']['input'];
|
|
1003
1002
|
}>;
|
|
1004
1003
|
export type OnboardingDataQuery = {
|
|
1005
1004
|
__typename?: 'Query';
|
|
1006
|
-
onboardingData: {
|
|
1005
|
+
onboardingData: Array<{
|
|
1007
1006
|
__typename?: 'OnboardingData_Data';
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
TokenAddress: string;
|
|
1012
|
-
Amount: number;
|
|
1013
|
-
}>;
|
|
1014
|
-
TokenTransfer: Array<{
|
|
1007
|
+
TokenAddress: string;
|
|
1008
|
+
ChainId: any;
|
|
1009
|
+
TokenTransfers: Array<{
|
|
1015
1010
|
__typename?: 'OnboardingData_TokenTransfer';
|
|
1016
|
-
ChainId: any;
|
|
1017
|
-
TokenAddress: string;
|
|
1018
1011
|
Amount: number;
|
|
1019
1012
|
TxHash: string;
|
|
1020
|
-
|
|
1013
|
+
Timestamp: any;
|
|
1021
1014
|
}>;
|
|
1022
|
-
|
|
1015
|
+
TokenAllocations: Array<{
|
|
1023
1016
|
__typename?: 'OnboardingData_TokenAllocation';
|
|
1024
1017
|
StartDate: string;
|
|
1025
1018
|
FinishDate?: string | null;
|
|
1026
1019
|
Ratio: number;
|
|
1027
1020
|
}>;
|
|
1028
|
-
}
|
|
1021
|
+
}>;
|
|
1029
1022
|
};
|
|
1030
1023
|
export type OnboardingProjectsQueryVariables = Exact<{
|
|
1031
1024
|
dataOnAuth: DataOnAuth;
|
|
@@ -1260,8 +1253,8 @@ export declare const OnboardingCheckTxDocument: DocumentNode<OnboardingCheckTxMu
|
|
|
1260
1253
|
tokenTransfer: OnboardingTokenTransfer;
|
|
1261
1254
|
}>>;
|
|
1262
1255
|
export declare const OnboardingDataDocument: DocumentNode<OnboardingDataQuery, Exact<{
|
|
1263
|
-
chatId: Scalars['Long']['input'];
|
|
1264
1256
|
dataOnAuth: DataOnAuth;
|
|
1257
|
+
chatId: Scalars['Long']['input'];
|
|
1265
1258
|
}>>;
|
|
1266
1259
|
export declare const OnboardingProjectsDocument: DocumentNode<OnboardingProjectsQuery, Exact<{
|
|
1267
1260
|
dataOnAuth: DataOnAuth;
|