@poolzfinance/api4 1.9.8 → 1.9.10
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/myLinkTelegram.d.ts +7 -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 +11 -4
- package/dist/types/graphql/graphql.d.ts +48 -24
- package/package.json +1 -1
|
@@ -91,27 +91,15 @@ export type AdminAutoSignUp = {
|
|
|
91
91
|
};
|
|
92
92
|
export type AdminKycProxy = {
|
|
93
93
|
__typename?: 'AdminKycProxy';
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
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'];
|
|
94
|
+
ApprovedDate?: Maybe<Scalars['String']['output']>;
|
|
95
|
+
BlockPassID?: Maybe<Scalars['String']['output']>;
|
|
96
|
+
InreviewDate?: Maybe<Scalars['String']['output']>;
|
|
97
|
+
IsArchived?: Maybe<Scalars['Boolean']['output']>;
|
|
98
|
+
RecordId: Scalars['String']['output'];
|
|
99
|
+
RefId?: Maybe<Scalars['String']['output']>;
|
|
100
|
+
Status: Scalars['String']['output'];
|
|
101
|
+
SubmitCount?: Maybe<Scalars['Int']['output']>;
|
|
102
|
+
WaitingDate?: Maybe<Scalars['String']['output']>;
|
|
115
103
|
};
|
|
116
104
|
export type AdminNonEvmWallet = {
|
|
117
105
|
__typename?: 'AdminNonEvmWallet';
|
|
@@ -125,6 +113,7 @@ export type AdminUsers = {
|
|
|
125
113
|
};
|
|
126
114
|
export type BoostProxy = {
|
|
127
115
|
__typename?: 'BoostProxy';
|
|
116
|
+
CampaignCode: Scalars['String']['output'];
|
|
128
117
|
CampaignName: Scalars['String']['output'];
|
|
129
118
|
TotalEntries: Scalars['Int']['output'];
|
|
130
119
|
TotalUsers: Scalars['Int']['output'];
|
|
@@ -135,6 +124,15 @@ export type BoostProxyUser = {
|
|
|
135
124
|
Address: Scalars['String']['output'];
|
|
136
125
|
Entries: Scalars['Int']['output'];
|
|
137
126
|
};
|
|
127
|
+
export type DataOnAuth = {
|
|
128
|
+
auth_date: Scalars['Int']['input'];
|
|
129
|
+
first_name: Scalars['String']['input'];
|
|
130
|
+
hash: Scalars['String']['input'];
|
|
131
|
+
id: Scalars['Int']['input'];
|
|
132
|
+
last_name: Scalars['String']['input'];
|
|
133
|
+
photo_url: Scalars['String']['input'];
|
|
134
|
+
username: Scalars['String']['input'];
|
|
135
|
+
};
|
|
138
136
|
export type GenerateTokenFromSignature = {
|
|
139
137
|
__typename?: 'GenerateTokenFromSignature';
|
|
140
138
|
token: Scalars['String']['output'];
|
|
@@ -146,6 +144,13 @@ export type InvestedErc20 = {
|
|
|
146
144
|
TokenOut: Scalars['Float']['output'];
|
|
147
145
|
Wallet: Scalars['String']['output'];
|
|
148
146
|
};
|
|
147
|
+
export type KolInvestedErc20 = {
|
|
148
|
+
__typename?: 'KolInvestedErc20';
|
|
149
|
+
AmountIn: Scalars['Float']['output'];
|
|
150
|
+
Name: Scalars['String']['output'];
|
|
151
|
+
TokenOut: Scalars['Float']['output'];
|
|
152
|
+
Wallet: Scalars['String']['output'];
|
|
153
|
+
};
|
|
149
154
|
export type Kyc = {
|
|
150
155
|
__typename?: 'Kyc';
|
|
151
156
|
data: KycData;
|
|
@@ -191,6 +196,8 @@ export type Mutation = {
|
|
|
191
196
|
deleteNonEvmWallet: UserData;
|
|
192
197
|
deleteUser: AdminUsers;
|
|
193
198
|
generateTokenFromSignature: GenerateTokenFromSignature;
|
|
199
|
+
logout: Scalars['Boolean']['output'];
|
|
200
|
+
myLinkTelegram: Scalars['Int']['output'];
|
|
194
201
|
sendToMonitor: Scalars['Int']['output'];
|
|
195
202
|
setMyAgree: Scalars['Boolean']['output'];
|
|
196
203
|
updateAutoSignUp: AdminAutoSignUp;
|
|
@@ -239,6 +246,9 @@ export type MutationGenerateTokenFromSignatureArgs = {
|
|
|
239
246
|
eip4361message: Scalars['String']['input'];
|
|
240
247
|
signature: Scalars['String']['input'];
|
|
241
248
|
};
|
|
249
|
+
export type MutationMyLinkTelegramArgs = {
|
|
250
|
+
dataOnAuth: DataOnAuth;
|
|
251
|
+
};
|
|
242
252
|
export type MutationSendToMonitorArgs = {
|
|
243
253
|
input: Scalars['String']['input'];
|
|
244
254
|
};
|
|
@@ -302,7 +312,7 @@ export type PutMyDataNonEvmWallet = {
|
|
|
302
312
|
export type Query = {
|
|
303
313
|
__typename?: 'Query';
|
|
304
314
|
adminAutoSignUp: Array<AdminAutoSignUp>;
|
|
305
|
-
adminKycProxy: AdminKycProxy
|
|
315
|
+
adminKycProxy: Array<AdminKycProxy>;
|
|
306
316
|
adminNonEvmWallet: Array<AdminNonEvmWallet>;
|
|
307
317
|
adminRpcWallets: Array<RpcWallet>;
|
|
308
318
|
adminUsers: Array<AdminUsers>;
|
|
@@ -310,6 +320,7 @@ export type Query = {
|
|
|
310
320
|
/** @deprecated Use a new query 'poolxTokenomics'. */
|
|
311
321
|
circulatingSupply: Scalars['Float']['output'];
|
|
312
322
|
investedErc20: Array<InvestedErc20>;
|
|
323
|
+
kolInvestedErc20: Array<KolInvestedErc20>;
|
|
313
324
|
leaderBoard: Array<LeaderBoard>;
|
|
314
325
|
myData?: Maybe<MyData>;
|
|
315
326
|
/** @deprecated Use a new query 'myProxyKYC'. */
|
|
@@ -338,8 +349,6 @@ export type QueryAdminAutoSignUpArgs = {
|
|
|
338
349
|
note?: InputMaybe<Scalars['String']['input']>;
|
|
339
350
|
};
|
|
340
351
|
export type QueryAdminKycProxyArgs = {
|
|
341
|
-
limit: Scalars['Int']['input'];
|
|
342
|
-
skip: Scalars['Int']['input'];
|
|
343
352
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
344
353
|
};
|
|
345
354
|
export type QueryAdminNonEvmWalletArgs = {
|
|
@@ -357,6 +366,9 @@ export type QueryBoostProxyArgs = {
|
|
|
357
366
|
export type QueryInvestedErc20Args = {
|
|
358
367
|
id: Scalars['Int']['input'];
|
|
359
368
|
};
|
|
369
|
+
export type QueryKolInvestedErc20Args = {
|
|
370
|
+
id: Scalars['Int']['input'];
|
|
371
|
+
};
|
|
360
372
|
export type QueryLeaderBoardArgs = {
|
|
361
373
|
address?: InputMaybe<Scalars['String']['input']>;
|
|
362
374
|
timestamp?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -515,6 +527,7 @@ export type BoostProxyDataQuery = {
|
|
|
515
527
|
TotalUsers: number;
|
|
516
528
|
CampaignName: string;
|
|
517
529
|
TotalEntries: number;
|
|
530
|
+
CampaignCode: string;
|
|
518
531
|
}>;
|
|
519
532
|
};
|
|
520
533
|
export type BoostProxyUsersQueryVariables = Exact<{
|
|
@@ -527,6 +540,7 @@ export type BoostProxyUsersQuery = {
|
|
|
527
540
|
TotalUsers: number;
|
|
528
541
|
CampaignName: string;
|
|
529
542
|
TotalEntries: number;
|
|
543
|
+
CampaignCode: string;
|
|
530
544
|
Users: Array<{
|
|
531
545
|
__typename?: 'BoostProxyUser';
|
|
532
546
|
Address: string;
|
|
@@ -698,6 +712,13 @@ export type UpdateNonEvmWalletMutation = {
|
|
|
698
712
|
}>;
|
|
699
713
|
};
|
|
700
714
|
};
|
|
715
|
+
export type MyLinkTelegramMutationVariables = Exact<{
|
|
716
|
+
dataOnAuth: DataOnAuth;
|
|
717
|
+
}>;
|
|
718
|
+
export type MyLinkTelegramMutation = {
|
|
719
|
+
__typename?: 'Mutation';
|
|
720
|
+
myLinkTelegram: number;
|
|
721
|
+
};
|
|
701
722
|
export type KycQueryVariables = Exact<{
|
|
702
723
|
[key: string]: never;
|
|
703
724
|
}>;
|
|
@@ -789,6 +810,9 @@ export declare const UpdateNonEvmWalletDocument: DocumentNode<UpdateNonEvmWallet
|
|
|
789
810
|
chainName: Scalars['String']['input'];
|
|
790
811
|
wallet: Scalars['String']['input'];
|
|
791
812
|
}>>;
|
|
813
|
+
export declare const MyLinkTelegramDocument: DocumentNode<MyLinkTelegramMutation, Exact<{
|
|
814
|
+
dataOnAuth: DataOnAuth;
|
|
815
|
+
}>>;
|
|
792
816
|
export declare const KycDocument: DocumentNode<KycQuery, Exact<{
|
|
793
817
|
[key: string]: never;
|
|
794
818
|
}>>;
|