/** * Catapult REST Endpoints * OpenAPI Specification of catapult-rest * * The version of the OpenAPI document: 1.0.4 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import * as runtime from '../runtime'; import type { NodeHealthInfoDTO, NodeInfoDTO, NodeTimeDTO, ServerInfoDTO, StorageInfoDTO, UnlockedAccountDTO } from '../models/index'; /** * */ export declare class NodeRoutesApi extends runtime.BaseAPI { /** * Supplies information regarding the connection and services status. * Get the node health information */ getNodeHealthRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Supplies information regarding the connection and services status. * Get the node health information */ getNodeHealth(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; /** * Supplies additional information about the application running on a node. * Get the node information */ getNodeInfoRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Supplies additional information about the application running on a node. * Get the node information */ getNodeInfo(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; /** * Gets the list of peers visible by the node. * Get peers information */ getNodePeersRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>>; /** * Gets the list of peers visible by the node. * Get peers information */ getNodePeers(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Returns storage information about the node. * Get the storage information of the node */ getNodeStorageRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Returns storage information about the node. * Get the storage information of the node */ getNodeStorage(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; /** * Gets the node time at the moment the reply was sent and received. * Get the node time */ getNodeTimeRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Gets the node time at the moment the reply was sent and received. * Get the node time */ getNodeTime(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; /** * Returns the version of the running catapult-rest component. * Get the version of the running REST component */ getServerInfoRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Returns the version of the running catapult-rest component. * Get the version of the running REST component */ getServerInfo(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; /** * Returns array of unlocked account public keys. * Get the unlocked harvesting account public keys. */ getUnlockedAccountRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Returns array of unlocked account public keys. * Get the unlocked harvesting account public keys. */ getUnlockedAccount(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; }