@poolzfinance/api4 1.9.9 → 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.
@@ -124,6 +124,15 @@ export type BoostProxyUser = {
124
124
  Address: Scalars['String']['output'];
125
125
  Entries: Scalars['Int']['output'];
126
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
+ };
127
136
  export type GenerateTokenFromSignature = {
128
137
  __typename?: 'GenerateTokenFromSignature';
129
138
  token: Scalars['String']['output'];
@@ -188,6 +197,7 @@ export type Mutation = {
188
197
  deleteUser: AdminUsers;
189
198
  generateTokenFromSignature: GenerateTokenFromSignature;
190
199
  logout: Scalars['Boolean']['output'];
200
+ myLinkTelegram: Scalars['Int']['output'];
191
201
  sendToMonitor: Scalars['Int']['output'];
192
202
  setMyAgree: Scalars['Boolean']['output'];
193
203
  updateAutoSignUp: AdminAutoSignUp;
@@ -236,6 +246,9 @@ export type MutationGenerateTokenFromSignatureArgs = {
236
246
  eip4361message: Scalars['String']['input'];
237
247
  signature: Scalars['String']['input'];
238
248
  };
249
+ export type MutationMyLinkTelegramArgs = {
250
+ dataOnAuth: DataOnAuth;
251
+ };
239
252
  export type MutationSendToMonitorArgs = {
240
253
  input: Scalars['String']['input'];
241
254
  };
@@ -699,6 +712,13 @@ export type UpdateNonEvmWalletMutation = {
699
712
  }>;
700
713
  };
701
714
  };
715
+ export type MyLinkTelegramMutationVariables = Exact<{
716
+ dataOnAuth: DataOnAuth;
717
+ }>;
718
+ export type MyLinkTelegramMutation = {
719
+ __typename?: 'Mutation';
720
+ myLinkTelegram: number;
721
+ };
702
722
  export type KycQueryVariables = Exact<{
703
723
  [key: string]: never;
704
724
  }>;
@@ -790,6 +810,9 @@ export declare const UpdateNonEvmWalletDocument: DocumentNode<UpdateNonEvmWallet
790
810
  chainName: Scalars['String']['input'];
791
811
  wallet: Scalars['String']['input'];
792
812
  }>>;
813
+ export declare const MyLinkTelegramDocument: DocumentNode<MyLinkTelegramMutation, Exact<{
814
+ dataOnAuth: DataOnAuth;
815
+ }>>;
793
816
  export declare const KycDocument: DocumentNode<KycQuery, Exact<{
794
817
  [key: string]: never;
795
818
  }>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@poolzfinance/api4",
3
- "version": "1.9.9",
3
+ "version": "1.9.10",
4
4
  "description": "Bridge between front and back",
5
5
  "type": "module",
6
6
  "source": "src/index.ts",