@lomi./sdk
Version:
Official TypeScript SDK for the lomi. API
30 lines • 830 B
TypeScript
/**
* PayoutsService
* AUTO-GENERATED - Do not edit manually
*
* Payout management - transfer funds to beneficiaries
*/
import type { Database } from '../types.js';
type PayoutsRow = Database['public']['Tables']['payouts']['Row'];
type PayoutsInsert = Database['public']['Tables']['payouts']['Insert'];
export declare class PayoutsService {
/**
* List payouts
* Payout management - transfer funds to beneficiaries
*/
static list(options?: {
limit?: number;
offset?: number;
[key: string]: any;
}): Promise<PayoutsRow[]>;
/**
* Get a single payout
*/
static get(id: string): Promise<PayoutsRow>;
/**
* Create a new payout
*/
static create(data: PayoutsInsert): Promise<PayoutsRow>;
}
export {};
//# sourceMappingURL=PayoutsService.d.ts.map