12 lines
503 B
TypeScript
12 lines
503 B
TypeScript
export declare const INVOICE_STATUS: {
|
|
readonly DRAFT: "Draft";
|
|
readonly PENDING: "Pending";
|
|
readonly PAID: "Paid";
|
|
readonly UNPAID: "Unpaid";
|
|
readonly OVERDUE: "Overdue";
|
|
readonly CANCELLED: "Cancelled";
|
|
readonly REFUNDED: "Refunded";
|
|
readonly COLLECTIONS: "Collections";
|
|
};
|
|
export type { InvoiceStatus, InvoiceItem, Invoice, InvoicePagination, InvoiceList, InvoiceSsoLink, PaymentInvoiceRequest, BillingSummary, InvoiceQueryParams, InvoiceListQuery, } from './schema';
|