@poolzfinance/api4 1.11.10 → 1.11.12
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/onBoardingProjects.d.ts +4 -3
- 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/graphql.d.ts +31 -0
- package/package.json +1 -1
|
@@ -328,6 +328,32 @@ export type NonEvmWallet = {
|
|
|
328
328
|
ChainName: Scalars['String']['output'];
|
|
329
329
|
Wallet: Scalars['String']['output'];
|
|
330
330
|
};
|
|
331
|
+
export type OnboardingData_Data = {
|
|
332
|
+
__typename?: 'OnboardingData_Data';
|
|
333
|
+
TokenAllocation?: Maybe<Array<OnboardingData_TokenAllocation>>;
|
|
334
|
+
TokenTransfer?: Maybe<Array<OnboardingData_TokenTransfer>>;
|
|
335
|
+
Tokens?: Maybe<Array<OnboardingData_Tokens>>;
|
|
336
|
+
};
|
|
337
|
+
export type OnboardingData_TokenAllocation = {
|
|
338
|
+
__typename?: 'OnboardingData_TokenAllocation';
|
|
339
|
+
FinishDate?: Maybe<Scalars['String']['output']>;
|
|
340
|
+
Ratio: Scalars['Float']['output'];
|
|
341
|
+
StartDate: Scalars['String']['output'];
|
|
342
|
+
};
|
|
343
|
+
export type OnboardingData_TokenTransfer = {
|
|
344
|
+
__typename?: 'OnboardingData_TokenTransfer';
|
|
345
|
+
Amount: Scalars['Float']['output'];
|
|
346
|
+
ChainId: Scalars['Long']['output'];
|
|
347
|
+
IsVerified: Scalars['Boolean']['output'];
|
|
348
|
+
TokenAddress: Scalars['String']['output'];
|
|
349
|
+
TxHash: Scalars['String']['output'];
|
|
350
|
+
};
|
|
351
|
+
export type OnboardingData_Tokens = {
|
|
352
|
+
__typename?: 'OnboardingData_Tokens';
|
|
353
|
+
Amount: Scalars['Float']['output'];
|
|
354
|
+
ChainId: Scalars['Long']['output'];
|
|
355
|
+
TokenAddress: Scalars['String']['output'];
|
|
356
|
+
};
|
|
331
357
|
export type OnboardingProject = {
|
|
332
358
|
__typename?: 'OnboardingProject';
|
|
333
359
|
ChatId: Scalars['Long']['output'];
|
|
@@ -387,6 +413,7 @@ export type Query = {
|
|
|
387
413
|
myRole: Scalars['String']['output'];
|
|
388
414
|
mySignUpCheck: Array<SignUpCheck>;
|
|
389
415
|
mySignup: Array<MySignUp>;
|
|
416
|
+
onboardingData: Array<OnboardingData_Data>;
|
|
390
417
|
onboardingProjects: Array<OnboardingProject>;
|
|
391
418
|
poolxPrice: PoolxPrice;
|
|
392
419
|
poolxTokenomics: PoolxTokenomics;
|
|
@@ -445,6 +472,10 @@ export type QueryMyInvestSumArgs = {
|
|
|
445
472
|
export type QueryMySignUpCheckArgs = {
|
|
446
473
|
poolIDs: Array<Scalars['Int']['input']>;
|
|
447
474
|
};
|
|
475
|
+
export type QueryOnboardingDataArgs = {
|
|
476
|
+
chatId: Scalars['Long']['input'];
|
|
477
|
+
dataOnAuth: DataOnAuth;
|
|
478
|
+
};
|
|
448
479
|
export type QueryOnboardingProjectsArgs = {
|
|
449
480
|
dataOnAuth: DataOnAuth;
|
|
450
481
|
};
|