@poolzfinance/api4 1.9.3 → 1.9.5

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.
@@ -21,9 +21,6 @@ declare const documents: {
21
21
  eip4361message: string;
22
22
  signature: string;
23
23
  }>>;
24
- "\n query KYC {\n myProxyKYC {\n Proxy\n RequestStatus\n Status\n }\n}": DocumentNode<types.KycQuery, types.Exact<{
25
- [key: string]: never;
26
- }>>;
27
24
  "\n query getTotalPoolz {\n totalPoolzLocked {\n Locked\n Data {\n LockedDealV2\n DelayVault\n Reserved\n }\n }\n}": DocumentNode<types.GetTotalPoolzQuery, types.Exact<{
28
25
  [key: string]: never;
29
26
  }>>;
@@ -59,6 +56,9 @@ declare const documents: {
59
56
  chainName: string;
60
57
  wallet: string;
61
58
  }>>;
59
+ "\n query KYC {\n myProxyKYC {\n Proxy\n RequestStatus\n Status\n }\n}": DocumentNode<types.KycQuery, types.Exact<{
60
+ [key: string]: never;
61
+ }>>;
62
62
  "\n query MyRole {\n myRole\n}": DocumentNode<types.MyRoleQuery, types.Exact<{
63
63
  [key: string]: never;
64
64
  }>>;
@@ -94,10 +94,6 @@ export declare function gql(source: "\n query MyQuery {\n time\n}"): (typeof
94
94
  * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
95
95
  */
96
96
  export declare function gql(source: "\nmutation GenerateTokenFromSignature($eip4361message: String!, $signature: String!) {\n generateTokenFromSignature(eip4361message: $eip4361message, signature: $signature){\n token\n validUntil\n }\n}"): (typeof documents)["\nmutation GenerateTokenFromSignature($eip4361message: String!, $signature: String!) {\n generateTokenFromSignature(eip4361message: $eip4361message, signature: $signature){\n token\n validUntil\n }\n}"];
97
- /**
98
- * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
99
- */
100
- export declare function gql(source: "\n query KYC {\n myProxyKYC {\n Proxy\n RequestStatus\n Status\n }\n}"): (typeof documents)["\n query KYC {\n myProxyKYC {\n Proxy\n RequestStatus\n Status\n }\n}"];
101
97
  /**
102
98
  * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
103
99
  */
@@ -142,6 +138,10 @@ export declare function gql(source: "\n mutation DeleteNonEvmWallet($chainName:
142
138
  * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
143
139
  */
144
140
  export declare function gql(source: "\n mutation UpdateNonEvmWallet($chainName: String!, $wallet: String!) {\n updateNonEvmWallet(chainName: $chainName, wallet: $wallet) {\n Agree\n NonEvmWallet {\n ChainName\n Wallet\n }\n }\n}"): (typeof documents)["\n mutation UpdateNonEvmWallet($chainName: String!, $wallet: String!) {\n updateNonEvmWallet(chainName: $chainName, wallet: $wallet) {\n Agree\n NonEvmWallet {\n ChainName\n Wallet\n }\n }\n}"];
141
+ /**
142
+ * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
143
+ */
144
+ export declare function gql(source: "\n query KYC {\n myProxyKYC {\n Proxy\n RequestStatus\n Status\n }\n}"): (typeof documents)["\n query KYC {\n myProxyKYC {\n Proxy\n RequestStatus\n Status\n }\n}"];
145
145
  /**
146
146
  * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
147
147
  */
@@ -485,18 +485,6 @@ export type GenerateTokenFromSignatureMutation = {
485
485
  validUntil: number;
486
486
  };
487
487
  };
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
488
  export type GetTotalPoolzQueryVariables = Exact<{
501
489
  [key: string]: never;
502
490
  }>;
@@ -635,6 +623,18 @@ export type UpdateNonEvmWalletMutation = {
635
623
  }>;
636
624
  };
637
625
  };
626
+ export type KycQueryVariables = Exact<{
627
+ [key: string]: never;
628
+ }>;
629
+ export type KycQuery = {
630
+ __typename?: 'Query';
631
+ myProxyKYC: {
632
+ __typename?: 'KycProxy';
633
+ Proxy?: string | null;
634
+ RequestStatus: string;
635
+ Status?: string | null;
636
+ };
637
+ };
638
638
  export type MyRoleQueryVariables = Exact<{
639
639
  [key: string]: never;
640
640
  }>;
@@ -673,9 +673,6 @@ export declare const GenerateTokenFromSignatureDocument: DocumentNode<GenerateTo
673
673
  eip4361message: Scalars['String']['input'];
674
674
  signature: Scalars['String']['input'];
675
675
  }>>;
676
- export declare const KycDocument: DocumentNode<KycQuery, Exact<{
677
- [key: string]: never;
678
- }>>;
679
676
  export declare const GetTotalPoolzDocument: DocumentNode<GetTotalPoolzQuery, Exact<{
680
677
  [key: string]: never;
681
678
  }>>;
@@ -711,6 +708,9 @@ export declare const UpdateNonEvmWalletDocument: DocumentNode<UpdateNonEvmWallet
711
708
  chainName: Scalars['String']['input'];
712
709
  wallet: Scalars['String']['input'];
713
710
  }>>;
711
+ export declare const KycDocument: DocumentNode<KycQuery, Exact<{
712
+ [key: string]: never;
713
+ }>>;
714
714
  export declare const MyRoleDocument: DocumentNode<MyRoleQuery, Exact<{
715
715
  [key: string]: never;
716
716
  }>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@poolzfinance/api4",
3
- "version": "1.9.3",
3
+ "version": "1.9.5",
4
4
  "description": "Bridge between front and back",
5
5
  "type": "module",
6
6
  "source": "src/index.ts",