@poolzfinance/api4 1.8.13 → 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.
- package/dist/endpoints/myData.d.ts +14 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -2
- 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 +14 -0
- package/dist/types/graphql/graphql.d.ts +28 -2
- package/package.json +1 -1
|
@@ -218,7 +218,7 @@ export type MutationUpdateUserArgs = {
|
|
|
218
218
|
export type MyData = {
|
|
219
219
|
__typename?: 'MyData';
|
|
220
220
|
Agree: Scalars['Boolean']['output'];
|
|
221
|
-
EvmWallets
|
|
221
|
+
EvmWallets: Array<Scalars['String']['output']>;
|
|
222
222
|
NonEvmWallet: Array<NonEvmWallet>;
|
|
223
223
|
};
|
|
224
224
|
export type MySignUp = {
|
|
@@ -553,7 +553,7 @@ export type MyDataQuery = {
|
|
|
553
553
|
myData?: {
|
|
554
554
|
__typename?: 'MyData';
|
|
555
555
|
Agree: boolean;
|
|
556
|
-
EvmWallets
|
|
556
|
+
EvmWallets: Array<string>;
|
|
557
557
|
NonEvmWallet: Array<{
|
|
558
558
|
__typename?: 'NonEvmWallet';
|
|
559
559
|
ChainName: string;
|
|
@@ -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'];
|