UNPKG

@lomi./sdk

Version:

Official TypeScript SDK for the lomi. API

25 lines 822 B
/** * OrganizationsService * AUTO-GENERATED - Do not edit manually * * Organization metrics - view MRR, ARR, total revenue, merchant lifetime value, and other organization metrics */ import type { Database } from '../types.js'; type OrganizationsRow = Database['public']['Tables']['organizations']['Row']; export declare class OrganizationsService { /** * List organizations * Organization metrics - view MRR, ARR, total revenue, merchant lifetime value, and other organization metrics */ static list(options?: { limit?: number; offset?: number; [key: string]: any; }): Promise<OrganizationsRow[]>; /** * Get a single organization */ static get(id: string): Promise<OrganizationsRow>; } export {}; //# sourceMappingURL=OrganizationsService.d.ts.map