@memberjunction/actions-bizapps-accounting
Version:
Accounting system integration actions for MemberJunction
53 lines • 4.76 kB
JavaScript
;
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __exportStar = (this && this.__exportStar) || function(m, exports) {
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.GetBusinessCentralSalesInvoicesAction = exports.GetBusinessCentralCustomersAction = exports.GetBusinessCentralGeneralLedgerEntriesAction = exports.GetBusinessCentralGLAccountsAction = exports.CreateQuickBooksJournalEntryAction = exports.GetQuickBooksAccountBalancesAction = exports.GetQuickBooksTransactionsAction = exports.GetQuickBooksGLCodesAction = void 0;
// Export all accounting actions
__exportStar(require("./base/base-accounting-action"), exports);
// QuickBooks base
__exportStar(require("./providers/quickbooks/quickbooks-base.action"), exports);
// QuickBooks actions - export specific items to avoid conflicts
var get_gl_codes_action_1 = require("./providers/quickbooks/actions/get-gl-codes.action");
Object.defineProperty(exports, "GetQuickBooksGLCodesAction", { enumerable: true, get: function () { return get_gl_codes_action_1.GetQuickBooksGLCodesAction; } });
var get_transactions_action_1 = require("./providers/quickbooks/actions/get-transactions.action");
Object.defineProperty(exports, "GetQuickBooksTransactionsAction", { enumerable: true, get: function () { return get_transactions_action_1.GetQuickBooksTransactionsAction; } });
var get_account_balances_action_1 = require("./providers/quickbooks/actions/get-account-balances.action");
Object.defineProperty(exports, "GetQuickBooksAccountBalancesAction", { enumerable: true, get: function () { return get_account_balances_action_1.GetQuickBooksAccountBalancesAction; } });
// 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';
var create_journal_entry_action_1 = require("./providers/quickbooks/actions/create-journal-entry.action");
Object.defineProperty(exports, "CreateQuickBooksJournalEntryAction", { enumerable: true, get: function () { return create_journal_entry_action_1.CreateQuickBooksJournalEntryAction; } });
// Business Central base
__exportStar(require("./providers/business-central/business-central-base.action"), exports);
// Business Central actions
var get_gl_accounts_action_1 = require("./providers/business-central/actions/get-gl-accounts.action");
Object.defineProperty(exports, "GetBusinessCentralGLAccountsAction", { enumerable: true, get: function () { return get_gl_accounts_action_1.GetBusinessCentralGLAccountsAction; } });
var get_general_ledger_entries_action_1 = require("./providers/business-central/actions/get-general-ledger-entries.action");
Object.defineProperty(exports, "GetBusinessCentralGeneralLedgerEntriesAction", { enumerable: true, get: function () { return get_general_ledger_entries_action_1.GetBusinessCentralGeneralLedgerEntriesAction; } });
var get_customers_action_1 = require("./providers/business-central/actions/get-customers.action");
Object.defineProperty(exports, "GetBusinessCentralCustomersAction", { enumerable: true, get: function () { return get_customers_action_1.GetBusinessCentralCustomersAction; } });
var get_sales_invoices_action_1 = require("./providers/business-central/actions/get-sales-invoices.action");
Object.defineProperty(exports, "GetBusinessCentralSalesInvoicesAction", { enumerable: true, get: function () { return get_sales_invoices_action_1.GetBusinessCentralSalesInvoicesAction; } });
// 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';
//# sourceMappingURL=index.js.map