@lomi./sdk
Version:
Official TypeScript SDK for the lomi. API
25 lines • 723 B
TypeScript
/**
* AccountsService
* AUTO-GENERATED - Do not edit manually
*
* Account balances - view organization account balances and SPI account information
*/
import type { Database } from '../types.js';
type AccountsRow = Database['public']['Tables']['accounts']['Row'];
export declare class AccountsService {
/**
* List accounts
* Account balances - view organization account balances and SPI account information
*/
static list(options?: {
limit?: number;
offset?: number;
[key: string]: any;
}): Promise<AccountsRow[]>;
/**
* Get a single account
*/
static get(id: string): Promise<AccountsRow>;
}
export {};
//# sourceMappingURL=AccountsService.d.ts.map