@poolzfinance/api4 1.9.3 → 1.9.6
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/boostProxy.d.ts +6 -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 +21 -7
- package/dist/types/graphql/graphql.d.ts +96 -15
- package/package.json +1 -1
|
@@ -89,6 +89,30 @@ export type AdminAutoSignUp = {
|
|
|
89
89
|
Note: Scalars['String']['output'];
|
|
90
90
|
PoolzAmount: Scalars['Int']['output'];
|
|
91
91
|
};
|
|
92
|
+
export type AdminKycProxy = {
|
|
93
|
+
__typename?: 'AdminKycProxy';
|
|
94
|
+
data: AdminKycProxyData;
|
|
95
|
+
status: Scalars['String']['output'];
|
|
96
|
+
};
|
|
97
|
+
export type AdminKycProxyData = {
|
|
98
|
+
__typename?: 'AdminKycProxyData';
|
|
99
|
+
limit: Scalars['Int']['output'];
|
|
100
|
+
records: Array<AdminKycProxyDataRecord>;
|
|
101
|
+
skip: Scalars['Int']['output'];
|
|
102
|
+
total: Scalars['Int']['output'];
|
|
103
|
+
};
|
|
104
|
+
export type AdminKycProxyDataRecord = {
|
|
105
|
+
__typename?: 'AdminKycProxyDataRecord';
|
|
106
|
+
approvedDate: Scalars['String']['output'];
|
|
107
|
+
blockPassID: Scalars['String']['output'];
|
|
108
|
+
inreviewDate: Scalars['String']['output'];
|
|
109
|
+
isArchived: Scalars['Boolean']['output'];
|
|
110
|
+
recordId: Scalars['String']['output'];
|
|
111
|
+
refId: Scalars['String']['output'];
|
|
112
|
+
status: Scalars['String']['output'];
|
|
113
|
+
submitCount: Scalars['Int']['output'];
|
|
114
|
+
waitingDate: Scalars['String']['output'];
|
|
115
|
+
};
|
|
92
116
|
export type AdminNonEvmWallet = {
|
|
93
117
|
__typename?: 'AdminNonEvmWallet';
|
|
94
118
|
EvmWallet: Scalars['String']['output'];
|
|
@@ -99,6 +123,18 @@ export type AdminUsers = {
|
|
|
99
123
|
RoleId: Scalars['Int']['output'];
|
|
100
124
|
Wallet: Scalars['String']['output'];
|
|
101
125
|
};
|
|
126
|
+
export type BoostProxy = {
|
|
127
|
+
__typename?: 'BoostProxy';
|
|
128
|
+
CampaignName: Scalars['String']['output'];
|
|
129
|
+
TotalEntries: Scalars['Int']['output'];
|
|
130
|
+
TotalUsers: Scalars['Int']['output'];
|
|
131
|
+
Users: Array<BoostProxyUser>;
|
|
132
|
+
};
|
|
133
|
+
export type BoostProxyUser = {
|
|
134
|
+
__typename?: 'BoostProxyUser';
|
|
135
|
+
Address: Scalars['String']['output'];
|
|
136
|
+
Entries: Scalars['Int']['output'];
|
|
137
|
+
};
|
|
102
138
|
export type GenerateTokenFromSignature = {
|
|
103
139
|
__typename?: 'GenerateTokenFromSignature';
|
|
104
140
|
token: Scalars['String']['output'];
|
|
@@ -266,9 +302,11 @@ export type PutMyDataNonEvmWallet = {
|
|
|
266
302
|
export type Query = {
|
|
267
303
|
__typename?: 'Query';
|
|
268
304
|
adminAutoSignUp: Array<AdminAutoSignUp>;
|
|
305
|
+
adminKycProxy: AdminKycProxy;
|
|
269
306
|
adminNonEvmWallet: Array<AdminNonEvmWallet>;
|
|
270
307
|
adminRpcWallets: Array<RpcWallet>;
|
|
271
308
|
adminUsers: Array<AdminUsers>;
|
|
309
|
+
boostProxy: Array<BoostProxy>;
|
|
272
310
|
/** @deprecated Use a new query 'poolxTokenomics'. */
|
|
273
311
|
circulatingSupply: Scalars['Float']['output'];
|
|
274
312
|
investedErc20: Array<InvestedErc20>;
|
|
@@ -299,6 +337,11 @@ export type Query = {
|
|
|
299
337
|
export type QueryAdminAutoSignUpArgs = {
|
|
300
338
|
note?: InputMaybe<Scalars['String']['input']>;
|
|
301
339
|
};
|
|
340
|
+
export type QueryAdminKycProxyArgs = {
|
|
341
|
+
limit: Scalars['Int']['input'];
|
|
342
|
+
skip: Scalars['Int']['input'];
|
|
343
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
344
|
+
};
|
|
302
345
|
export type QueryAdminNonEvmWalletArgs = {
|
|
303
346
|
chainName: Scalars['String']['input'];
|
|
304
347
|
};
|
|
@@ -308,6 +351,9 @@ export type QueryAdminRpcWalletsArgs = {
|
|
|
308
351
|
export type QueryAdminUsersArgs = {
|
|
309
352
|
address?: InputMaybe<Scalars['String']['input']>;
|
|
310
353
|
};
|
|
354
|
+
export type QueryBoostProxyArgs = {
|
|
355
|
+
campaignCodes: Array<Scalars['String']['input']>;
|
|
356
|
+
};
|
|
311
357
|
export type QueryInvestedErc20Args = {
|
|
312
358
|
id: Scalars['Int']['input'];
|
|
313
359
|
};
|
|
@@ -459,6 +505,35 @@ export type VaultOut = {
|
|
|
459
505
|
LockUntil: Scalars['String']['output'];
|
|
460
506
|
Owner: Scalars['String']['output'];
|
|
461
507
|
};
|
|
508
|
+
export type BoostProxyDataQueryVariables = Exact<{
|
|
509
|
+
campaignCodes: Array<Scalars['String']['input']> | Scalars['String']['input'];
|
|
510
|
+
}>;
|
|
511
|
+
export type BoostProxyDataQuery = {
|
|
512
|
+
__typename?: 'Query';
|
|
513
|
+
boostProxy: Array<{
|
|
514
|
+
__typename?: 'BoostProxy';
|
|
515
|
+
TotalUsers: number;
|
|
516
|
+
CampaignName: string;
|
|
517
|
+
TotalEntries: number;
|
|
518
|
+
}>;
|
|
519
|
+
};
|
|
520
|
+
export type BoostProxyUsersQueryVariables = Exact<{
|
|
521
|
+
campaignCodes: Array<Scalars['String']['input']> | Scalars['String']['input'];
|
|
522
|
+
}>;
|
|
523
|
+
export type BoostProxyUsersQuery = {
|
|
524
|
+
__typename?: 'Query';
|
|
525
|
+
boostProxy: Array<{
|
|
526
|
+
__typename?: 'BoostProxy';
|
|
527
|
+
TotalUsers: number;
|
|
528
|
+
CampaignName: string;
|
|
529
|
+
TotalEntries: number;
|
|
530
|
+
Users: Array<{
|
|
531
|
+
__typename?: 'BoostProxyUser';
|
|
532
|
+
Address: string;
|
|
533
|
+
Entries: number;
|
|
534
|
+
}>;
|
|
535
|
+
}>;
|
|
536
|
+
};
|
|
462
537
|
export type GetCirculatingSupplyQueryVariables = Exact<{
|
|
463
538
|
[key: string]: never;
|
|
464
539
|
}>;
|
|
@@ -485,18 +560,6 @@ export type GenerateTokenFromSignatureMutation = {
|
|
|
485
560
|
validUntil: number;
|
|
486
561
|
};
|
|
487
562
|
};
|
|
488
|
-
export type KycQueryVariables = Exact<{
|
|
489
|
-
[key: string]: never;
|
|
490
|
-
}>;
|
|
491
|
-
export type KycQuery = {
|
|
492
|
-
__typename?: 'Query';
|
|
493
|
-
myProxyKYC: {
|
|
494
|
-
__typename?: 'KycProxy';
|
|
495
|
-
Proxy?: string | null;
|
|
496
|
-
RequestStatus: string;
|
|
497
|
-
Status?: string | null;
|
|
498
|
-
};
|
|
499
|
-
};
|
|
500
563
|
export type GetTotalPoolzQueryVariables = Exact<{
|
|
501
564
|
[key: string]: never;
|
|
502
565
|
}>;
|
|
@@ -635,6 +698,18 @@ export type UpdateNonEvmWalletMutation = {
|
|
|
635
698
|
}>;
|
|
636
699
|
};
|
|
637
700
|
};
|
|
701
|
+
export type KycQueryVariables = Exact<{
|
|
702
|
+
[key: string]: never;
|
|
703
|
+
}>;
|
|
704
|
+
export type KycQuery = {
|
|
705
|
+
__typename?: 'Query';
|
|
706
|
+
myProxyKYC: {
|
|
707
|
+
__typename?: 'KycProxy';
|
|
708
|
+
Proxy?: string | null;
|
|
709
|
+
RequestStatus: string;
|
|
710
|
+
Status?: string | null;
|
|
711
|
+
};
|
|
712
|
+
};
|
|
638
713
|
export type MyRoleQueryVariables = Exact<{
|
|
639
714
|
[key: string]: never;
|
|
640
715
|
}>;
|
|
@@ -663,6 +738,12 @@ export type MySignupQuery = {
|
|
|
663
738
|
SignupId: number;
|
|
664
739
|
}>;
|
|
665
740
|
};
|
|
741
|
+
export declare const BoostProxyDataDocument: DocumentNode<BoostProxyDataQuery, Exact<{
|
|
742
|
+
campaignCodes: Array<Scalars['String']['input']> | Scalars['String']['input'];
|
|
743
|
+
}>>;
|
|
744
|
+
export declare const BoostProxyUsersDocument: DocumentNode<BoostProxyUsersQuery, Exact<{
|
|
745
|
+
campaignCodes: Array<Scalars['String']['input']> | Scalars['String']['input'];
|
|
746
|
+
}>>;
|
|
666
747
|
export declare const GetCirculatingSupplyDocument: DocumentNode<GetCirculatingSupplyQuery, Exact<{
|
|
667
748
|
[key: string]: never;
|
|
668
749
|
}>>;
|
|
@@ -673,9 +754,6 @@ export declare const GenerateTokenFromSignatureDocument: DocumentNode<GenerateTo
|
|
|
673
754
|
eip4361message: Scalars['String']['input'];
|
|
674
755
|
signature: Scalars['String']['input'];
|
|
675
756
|
}>>;
|
|
676
|
-
export declare const KycDocument: DocumentNode<KycQuery, Exact<{
|
|
677
|
-
[key: string]: never;
|
|
678
|
-
}>>;
|
|
679
757
|
export declare const GetTotalPoolzDocument: DocumentNode<GetTotalPoolzQuery, Exact<{
|
|
680
758
|
[key: string]: never;
|
|
681
759
|
}>>;
|
|
@@ -711,6 +789,9 @@ export declare const UpdateNonEvmWalletDocument: DocumentNode<UpdateNonEvmWallet
|
|
|
711
789
|
chainName: Scalars['String']['input'];
|
|
712
790
|
wallet: Scalars['String']['input'];
|
|
713
791
|
}>>;
|
|
792
|
+
export declare const KycDocument: DocumentNode<KycQuery, Exact<{
|
|
793
|
+
[key: string]: never;
|
|
794
|
+
}>>;
|
|
714
795
|
export declare const MyRoleDocument: DocumentNode<MyRoleQuery, Exact<{
|
|
715
796
|
[key: string]: never;
|
|
716
797
|
}>>;
|