Member Junction
    Preparing search index...

    Shared shapes for ERP accounting verbs. Provider plugins may emit extra fields; callers of the verb set should rely on these.

    interface JournalEntryLine {
        accountId?: string;
        accountNumber?: string;
        classId?: string;
        credit?: number;
        debit?: number;
        departmentId?: string;
        description?: string;
        dimensions?: { code: string; valueCode: string }[];
        entityId?: string;
        entityType?: "Customer" | "Vendor" | "Employee";
    }
    Index

    Properties

    accountId?: string

    Provider account id (QBO Account.Id / BC accountId).

    accountNumber?: string

    ERP account number — preferred when posting (AM-4).

    classId?: string
    credit?: number
    debit?: number
    departmentId?: string
    description?: string
    dimensions?: { code: string; valueCode: string }[]
    entityId?: string
    entityType?: "Customer" | "Vendor" | "Employee"