@poolzfinance/api4 1.11.29 → 1.11.30
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/getDownloader.d.ts +3 -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 +38 -0
- package/package.json +1 -1
|
@@ -48,6 +48,9 @@ declare const documents: {
|
|
|
48
48
|
"\n query MyQuery {\n time\n}": DocumentNode<types.MyQueryQuery, types.Exact<{
|
|
49
49
|
[key: string]: never;
|
|
50
50
|
}>>;
|
|
51
|
+
"\n query Downloader {\n downloader {\n ChainId\n ChainName\n RpcUrl\n CovalentLastBlock\n SecondsToWarning\n SecondsToError\n BlockPerSecond\n Events {\n ContractAddress\n EventHash\n Active\n StartingBlock\n EndingBlock\n MaxBatchSize\n ResponseType\n MaxPageNumber\n UrlSet\n Mapping {\n Id\n Path\n Converter\n Name\n }\n }\n }\n}": DocumentNode<types.DownloaderQuery, types.Exact<{
|
|
52
|
+
[key: string]: never;
|
|
53
|
+
}>>;
|
|
51
54
|
"\nmutation GenerateTokenFromSignature($eip4361message: String!, $signature: String!) {\n generateTokenFromSignature(eip4361message: $eip4361message, signature: $signature){\n token\n validUntil\n }\n}": DocumentNode<types.GenerateTokenFromSignatureMutation, types.Exact<{
|
|
52
55
|
eip4361message: string;
|
|
53
56
|
signature: string;
|
|
@@ -199,6 +202,10 @@ export declare function gql(source: "\n query DaoSenderHistory($page: Int!) {\n
|
|
|
199
202
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
200
203
|
*/
|
|
201
204
|
export declare function gql(source: "\n query MyQuery {\n time\n}"): (typeof documents)["\n query MyQuery {\n time\n}"];
|
|
205
|
+
/**
|
|
206
|
+
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
207
|
+
*/
|
|
208
|
+
export declare function gql(source: "\n query Downloader {\n downloader {\n ChainId\n ChainName\n RpcUrl\n CovalentLastBlock\n SecondsToWarning\n SecondsToError\n BlockPerSecond\n Events {\n ContractAddress\n EventHash\n Active\n StartingBlock\n EndingBlock\n MaxBatchSize\n ResponseType\n MaxPageNumber\n UrlSet\n Mapping {\n Id\n Path\n Converter\n Name\n }\n }\n }\n}"): (typeof documents)["\n query Downloader {\n downloader {\n ChainId\n ChainName\n RpcUrl\n CovalentLastBlock\n SecondsToWarning\n SecondsToError\n BlockPerSecond\n Events {\n ContractAddress\n EventHash\n Active\n StartingBlock\n EndingBlock\n MaxBatchSize\n ResponseType\n MaxPageNumber\n UrlSet\n Mapping {\n Id\n Path\n Converter\n Name\n }\n }\n }\n}"];
|
|
202
209
|
/**
|
|
203
210
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
204
211
|
*/
|
|
@@ -940,6 +940,41 @@ export type MyQueryQuery = {
|
|
|
940
940
|
__typename?: 'Query';
|
|
941
941
|
time: number;
|
|
942
942
|
};
|
|
943
|
+
export type DownloaderQueryVariables = Exact<{
|
|
944
|
+
[key: string]: never;
|
|
945
|
+
}>;
|
|
946
|
+
export type DownloaderQuery = {
|
|
947
|
+
__typename?: 'Query';
|
|
948
|
+
downloader: Array<{
|
|
949
|
+
__typename?: 'Downloader';
|
|
950
|
+
ChainId: number;
|
|
951
|
+
ChainName: string;
|
|
952
|
+
RpcUrl: string;
|
|
953
|
+
CovalentLastBlock: number;
|
|
954
|
+
SecondsToWarning: number;
|
|
955
|
+
SecondsToError: number;
|
|
956
|
+
BlockPerSecond: number;
|
|
957
|
+
Events?: Array<{
|
|
958
|
+
__typename?: 'DownloaderEvents';
|
|
959
|
+
ContractAddress: string;
|
|
960
|
+
EventHash: string;
|
|
961
|
+
Active: boolean;
|
|
962
|
+
StartingBlock: number;
|
|
963
|
+
EndingBlock?: number | null;
|
|
964
|
+
MaxBatchSize: number;
|
|
965
|
+
ResponseType: string;
|
|
966
|
+
MaxPageNumber?: number | null;
|
|
967
|
+
UrlSet: string;
|
|
968
|
+
Mapping?: Array<{
|
|
969
|
+
__typename?: 'Mapping';
|
|
970
|
+
Id: number;
|
|
971
|
+
Path: string;
|
|
972
|
+
Converter: string;
|
|
973
|
+
Name: string;
|
|
974
|
+
}> | null;
|
|
975
|
+
}> | null;
|
|
976
|
+
}>;
|
|
977
|
+
};
|
|
943
978
|
export type GenerateTokenFromSignatureMutationVariables = Exact<{
|
|
944
979
|
eip4361message: Scalars['String']['input'];
|
|
945
980
|
signature: Scalars['String']['input'];
|
|
@@ -1355,6 +1390,9 @@ export declare const DaoSenderHistoryDocument: DocumentNode<DaoSenderHistoryQuer
|
|
|
1355
1390
|
export declare const MyQueryDocument: DocumentNode<MyQueryQuery, Exact<{
|
|
1356
1391
|
[key: string]: never;
|
|
1357
1392
|
}>>;
|
|
1393
|
+
export declare const DownloaderDocument: DocumentNode<DownloaderQuery, Exact<{
|
|
1394
|
+
[key: string]: never;
|
|
1395
|
+
}>>;
|
|
1358
1396
|
export declare const GenerateTokenFromSignatureDocument: DocumentNode<GenerateTokenFromSignatureMutation, Exact<{
|
|
1359
1397
|
eip4361message: Scalars['String']['input'];
|
|
1360
1398
|
signature: Scalars['String']['input'];
|