UNPKG

@memberjunction/actions-bizapps-accounting

Version:

Accounting system integration actions for MemberJunction

34 lines (27 loc) 2.33 kB
// Export all accounting actions export * from './base/base-accounting-action'; // QuickBooks base export * from './providers/quickbooks/quickbooks-base.action'; // QuickBooks actions - export specific items to avoid conflicts export { GetQuickBooksGLCodesAction, GLCode } from './providers/quickbooks/actions/get-gl-codes.action'; export { GetQuickBooksTransactionsAction, Transaction, TransactionLine } from './providers/quickbooks/actions/get-transactions.action'; export { GetQuickBooksAccountBalancesAction, AccountBalance } from './providers/quickbooks/actions/get-account-balances.action'; // export { GetQuickBooksInvoicesAction, Invoice, InvoiceLine, Address as InvoiceAddress } from './providers/quickbooks/actions/get-invoices.action'; // export { GetQuickBooksBillsAction, Bill, BillLine, Address as BillAddress } from './providers/quickbooks/actions/get-bills.action'; // export { GetQuickBooksCustomersAction, Customer, Address as CustomerAddress } from './providers/quickbooks/actions/get-customers.action'; // export { GetQuickBooksVendorsAction, Vendor, Address as VendorAddress } from './providers/quickbooks/actions/get-vendors.action'; export { CreateQuickBooksJournalEntryAction, JournalEntryLine } from './providers/quickbooks/actions/create-journal-entry.action'; // Business Central base export * from './providers/business-central/business-central-base.action'; // Business Central actions export { GetBusinessCentralGLAccountsAction, BCGLAccount } from './providers/business-central/actions/get-gl-accounts.action'; export { GetBusinessCentralGeneralLedgerEntriesAction, BCGeneralLedgerEntry, BCDimensionSetLine } from './providers/business-central/actions/get-general-ledger-entries.action'; export { GetBusinessCentralCustomersAction, BCCustomer, BCAddress } from './providers/business-central/actions/get-customers.action'; export { GetBusinessCentralSalesInvoicesAction, BCSalesInvoice, BCSalesInvoiceLine } from './providers/business-central/actions/get-sales-invoices.action'; // NetSuite actions // export * from './providers/netsuite/actions/get-gl-codes.action'; // Sage Intacct actions // export * from './providers/sage-intacct/actions/get-gl-codes.action'; // Common actions // export * from './common/get-account-balances.action'; // export * from './common/validate-journal-entry.action';