@poolzfinance/api4 1.11.8 → 1.11.9
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/adminCleanCache.d.ts +7 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -1
- 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 +7 -0
- package/dist/types/graphql/graphql.d.ts +49 -0
- package/package.json +1 -1
|
@@ -11,6 +11,9 @@ import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/
|
|
|
11
11
|
* Therefore it is highly recommended to use the babel or swc plugin for production.
|
|
12
12
|
*/
|
|
13
13
|
declare const documents: {
|
|
14
|
+
"\nmutation AdminCleanCache {\n adminCleanCache {\n result {\n id\n }\n messages {\n code\n message\n }\n errors {\n code\n message\n }\n success\n }\n}": DocumentNode<types.AdminCleanCacheMutation, types.Exact<{
|
|
15
|
+
[key: string]: never;
|
|
16
|
+
}>>;
|
|
14
17
|
"\n query GetApprovedContracts($onlyApproved: Boolean!) {\n approvedContracts(onlyApproved: $onlyApproved) {\n ContractAddress\n Status\n }\n }": DocumentNode<types.GetApprovedContractsQuery, types.Exact<{
|
|
15
18
|
onlyApproved: boolean;
|
|
16
19
|
}>>;
|
|
@@ -121,6 +124,10 @@ declare const documents: {
|
|
|
121
124
|
* Please regenerate the types.
|
|
122
125
|
*/
|
|
123
126
|
export declare function gql(source: string): unknown;
|
|
127
|
+
/**
|
|
128
|
+
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
129
|
+
*/
|
|
130
|
+
export declare function gql(source: "\nmutation AdminCleanCache {\n adminCleanCache {\n result {\n id\n }\n messages {\n code\n message\n }\n errors {\n code\n message\n }\n success\n }\n}"): (typeof documents)["\nmutation AdminCleanCache {\n adminCleanCache {\n result {\n id\n }\n messages {\n code\n message\n }\n errors {\n code\n message\n }\n success\n }\n}"];
|
|
124
131
|
/**
|
|
125
132
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
126
133
|
*/
|
|
@@ -130,6 +130,27 @@ export type BoostProxyUser = {
|
|
|
130
130
|
Address: Scalars['String']['output'];
|
|
131
131
|
Entries: Scalars['Int']['output'];
|
|
132
132
|
};
|
|
133
|
+
export type CleanCache = {
|
|
134
|
+
__typename?: 'CleanCache';
|
|
135
|
+
errors: Array<CleanCacheError>;
|
|
136
|
+
messages: Array<CleanCacheMessage>;
|
|
137
|
+
result: CleanCacheResult;
|
|
138
|
+
success: Scalars['Boolean']['output'];
|
|
139
|
+
};
|
|
140
|
+
export type CleanCacheError = {
|
|
141
|
+
__typename?: 'CleanCacheError';
|
|
142
|
+
code: Scalars['Int']['output'];
|
|
143
|
+
message: Scalars['String']['output'];
|
|
144
|
+
};
|
|
145
|
+
export type CleanCacheMessage = {
|
|
146
|
+
__typename?: 'CleanCacheMessage';
|
|
147
|
+
code: Scalars['Int']['output'];
|
|
148
|
+
message: Scalars['String']['output'];
|
|
149
|
+
};
|
|
150
|
+
export type CleanCacheResult = {
|
|
151
|
+
__typename?: 'CleanCacheResult';
|
|
152
|
+
id: Scalars['String']['output'];
|
|
153
|
+
};
|
|
133
154
|
export type DataOnAuth = {
|
|
134
155
|
auth_date: Scalars['Int']['input'];
|
|
135
156
|
first_name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -195,6 +216,7 @@ export type Mutation = {
|
|
|
195
216
|
addNonEvmWallet: UserData;
|
|
196
217
|
addUser: AdminUsers;
|
|
197
218
|
adminAddAction: AdminAction;
|
|
219
|
+
adminCleanCache: CleanCache;
|
|
198
220
|
adminDeleteAction: Scalars['Boolean']['output'];
|
|
199
221
|
adminUpdateAction: ActionSettings;
|
|
200
222
|
deleteAutoSignUp: AdminAutoSignUp;
|
|
@@ -570,6 +592,30 @@ export type VaultsDataBalance = {
|
|
|
570
592
|
BalanceOfToken: Scalars['Float']['output'];
|
|
571
593
|
FetchTime: Scalars['Int']['output'];
|
|
572
594
|
};
|
|
595
|
+
export type AdminCleanCacheMutationVariables = Exact<{
|
|
596
|
+
[key: string]: never;
|
|
597
|
+
}>;
|
|
598
|
+
export type AdminCleanCacheMutation = {
|
|
599
|
+
__typename?: 'Mutation';
|
|
600
|
+
adminCleanCache: {
|
|
601
|
+
__typename?: 'CleanCache';
|
|
602
|
+
success: boolean;
|
|
603
|
+
result: {
|
|
604
|
+
__typename?: 'CleanCacheResult';
|
|
605
|
+
id: string;
|
|
606
|
+
};
|
|
607
|
+
messages: Array<{
|
|
608
|
+
__typename?: 'CleanCacheMessage';
|
|
609
|
+
code: number;
|
|
610
|
+
message: string;
|
|
611
|
+
}>;
|
|
612
|
+
errors: Array<{
|
|
613
|
+
__typename?: 'CleanCacheError';
|
|
614
|
+
code: number;
|
|
615
|
+
message: string;
|
|
616
|
+
}>;
|
|
617
|
+
};
|
|
618
|
+
};
|
|
573
619
|
export type GetApprovedContractsQueryVariables = Exact<{
|
|
574
620
|
onlyApproved: Scalars['Boolean']['input'];
|
|
575
621
|
}>;
|
|
@@ -960,6 +1006,9 @@ export type DataQuery = {
|
|
|
960
1006
|
}>;
|
|
961
1007
|
}>;
|
|
962
1008
|
};
|
|
1009
|
+
export declare const AdminCleanCacheDocument: DocumentNode<AdminCleanCacheMutation, Exact<{
|
|
1010
|
+
[key: string]: never;
|
|
1011
|
+
}>>;
|
|
963
1012
|
export declare const GetApprovedContractsDocument: DocumentNode<GetApprovedContractsQuery, Exact<{
|
|
964
1013
|
onlyApproved: Scalars['Boolean']['input'];
|
|
965
1014
|
}>>;
|