@poolzfinance/api4 1.8.14 → 1.8.15

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.
@@ -561,6 +561,26 @@ export type MyDataQuery = {
561
561
  }>;
562
562
  } | null;
563
563
  };
564
+ export type AddEvmWalletMutationVariables = Exact<{
565
+ wallet: Scalars['String']['input'];
566
+ }>;
567
+ export type AddEvmWalletMutation = {
568
+ __typename?: 'Mutation';
569
+ addEvmWallet: {
570
+ __typename?: 'UserData';
571
+ EvmWallet: Array<string>;
572
+ };
573
+ };
574
+ export type DeleteEvmWalletMutationVariables = Exact<{
575
+ wallet: Scalars['String']['input'];
576
+ }>;
577
+ export type DeleteEvmWalletMutation = {
578
+ __typename?: 'Mutation';
579
+ deleteEvmWallet: {
580
+ __typename?: 'UserData';
581
+ EvmWallet: Array<string>;
582
+ };
583
+ };
564
584
  export type AddNonEvmWalletMutationVariables = Exact<{
565
585
  chainName: Scalars['String']['input'];
566
586
  wallet: Scalars['String']['input'];
@@ -661,6 +681,12 @@ export declare const SetMyAgreeDocument: DocumentNode<SetMyAgreeMutation, Exact<
661
681
  export declare const MyDataDocument: DocumentNode<MyDataQuery, Exact<{
662
682
  [key: string]: never;
663
683
  }>>;
684
+ export declare const AddEvmWalletDocument: DocumentNode<AddEvmWalletMutation, Exact<{
685
+ wallet: Scalars['String']['input'];
686
+ }>>;
687
+ export declare const DeleteEvmWalletDocument: DocumentNode<DeleteEvmWalletMutation, Exact<{
688
+ wallet: Scalars['String']['input'];
689
+ }>>;
664
690
  export declare const AddNonEvmWalletDocument: DocumentNode<AddNonEvmWalletMutation, Exact<{
665
691
  chainName: Scalars['String']['input'];
666
692
  wallet: Scalars['String']['input'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@poolzfinance/api4",
3
- "version": "1.8.14",
3
+ "version": "1.8.15",
4
4
  "description": "Bridge between front and back",
5
5
  "type": "module",
6
6
  "source": "src/index.ts",