/** * Account type: ASSET, LIABILITY, EQUITY, REVENUE, or EXPENSE */ export const AccountAccountType = { "ASSET": "ASSET", "LIABILITY": "LIABILITY", "EQUITY": "EQUITY", "REVENUE": "REVENUE", "EXPENSE": "EXPENSE" } as const; export type AccountAccountType = (typeof AccountAccountType)[keyof typeof AccountAccountType]; /** * Lifecycle status: ACTIVE or INACTIVE */ export const AccountStatus = { "ACTIVE": "ACTIVE", "INACTIVE": "INACTIVE" } as const; export type AccountStatus = (typeof AccountStatus)[keyof typeof AccountStatus];