@poolzfinance/api4 1.9.1 → 1.9.3
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/myProxyKYC.d.ts +6 -0
- package/dist/endpoints/myRole.d.ts +3 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +3 -3
- 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 +2 -2
- package/dist/types/graphql/graphql.d.ts +5 -8
- package/package.json +1 -1
- package/dist/endpoints/getKYCStatus.d.ts +0 -5
|
@@ -21,7 +21,7 @@ declare const documents: {
|
|
|
21
21
|
eip4361message: string;
|
|
22
22
|
signature: string;
|
|
23
23
|
}>>;
|
|
24
|
-
"\n query KYC {\n
|
|
24
|
+
"\n query KYC {\n myProxyKYC {\n Proxy\n RequestStatus\n Status\n }\n}": DocumentNode<types.KycQuery, types.Exact<{
|
|
25
25
|
[key: string]: never;
|
|
26
26
|
}>>;
|
|
27
27
|
"\n query getTotalPoolz {\n totalPoolzLocked {\n Locked\n Data {\n LockedDealV2\n DelayVault\n Reserved\n }\n }\n}": DocumentNode<types.GetTotalPoolzQuery, types.Exact<{
|
|
@@ -97,7 +97,7 @@ export declare function gql(source: "\nmutation GenerateTokenFromSignature($eip4
|
|
|
97
97
|
/**
|
|
98
98
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
99
99
|
*/
|
|
100
|
-
export declare function gql(source: "\n query KYC {\n
|
|
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
101
|
/**
|
|
102
102
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
103
103
|
*/
|
|
@@ -130,7 +130,6 @@ export type KycData = {
|
|
|
130
130
|
};
|
|
131
131
|
export type KycProxy = {
|
|
132
132
|
__typename?: 'KycProxy';
|
|
133
|
-
Name?: Maybe<Scalars['String']['output']>;
|
|
134
133
|
Proxy?: Maybe<Scalars['String']['output']>;
|
|
135
134
|
RequestStatus: Scalars['String']['output'];
|
|
136
135
|
Status?: Maybe<Scalars['String']['output']>;
|
|
@@ -491,13 +490,11 @@ export type KycQueryVariables = Exact<{
|
|
|
491
490
|
}>;
|
|
492
491
|
export type KycQuery = {
|
|
493
492
|
__typename?: 'Query';
|
|
494
|
-
|
|
495
|
-
__typename?: '
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
status: string;
|
|
500
|
-
};
|
|
493
|
+
myProxyKYC: {
|
|
494
|
+
__typename?: 'KycProxy';
|
|
495
|
+
Proxy?: string | null;
|
|
496
|
+
RequestStatus: string;
|
|
497
|
+
Status?: string | null;
|
|
501
498
|
};
|
|
502
499
|
};
|
|
503
500
|
export type GetTotalPoolzQueryVariables = Exact<{
|
package/package.json
CHANGED