UNPKG

assembly-payments

Version:
28 lines (27 loc) 925 B
import { Client } from '../client'; import { SingleRoutingNumber, ToolsStatus } from '../types'; declare const _default: (client: Client) => { /** * @description Validate a US bank routing number before creating an account. This can be used to provide on-demand verification, and further information of the bank information a User is providing. * * @tags Bank Accounts * @name ValidateRoutingNumber * @summary Validate Routing Number * @request GET:/tools/routing_number * @secure */ validateRoutingNumber: (params: { routing_number: string; }) => Promise<SingleRoutingNumber>; /** * @description Displays a health check of the Assembly service. * * @tags Tools * @name HealthCheck * @summary Health check * @request GET:/tools/status * @secure */ healthCheck: () => Promise<ToolsStatus>; }; export default _default;