@kipicore/dbcore 1.1.630 → 1.1.632
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/constants/app.d.ts +216 -73
- package/dist/constants/app.js +233 -77
- package/dist/constants/errorMessages.d.ts +203 -18
- package/dist/constants/errorMessages.js +256 -22
- package/dist/constants/successMessages.d.ts +300 -13
- package/dist/constants/successMessages.js +353 -17
- package/dist/db/psql/migrations/20260626000010-create_account_vouchers.js +93 -0
- package/dist/db/psql/migrations/20260626000011-create_account_journal_entries.js +77 -0
- package/dist/db/psql/migrations/20260627000001-create-account-expense-categories.js +64 -0
- package/dist/db/psql/migrations/20260627000002-create-account-expense-requests.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000002-create-account-expense-requests.js +86 -0
- package/dist/db/psql/migrations/20260627000003-create-account-expense-payments.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000003-create-account-expense-payments.js +76 -0
- package/dist/db/psql/migrations/20260627000004-create-account-vendor-invoices.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000004-create-account-vendor-invoices.js +94 -0
- package/dist/db/psql/migrations/20260627000005-create-account-vendor-payments.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000005-create-account-vendor-payments.js +80 -0
- package/dist/db/psql/migrations/20260627000006-create-account-bank-reconciliation-batches.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000006-create-account-bank-reconciliation-batches.js +81 -0
- package/dist/db/psql/migrations/20260627000007-create-account-bank-statement-lines.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000007-create-account-bank-statement-lines.js +83 -0
- package/dist/db/psql/migrations/20260627000008-create-account-bank-reconciliation-matches.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000008-create-account-bank-reconciliation-matches.js +70 -0
- package/dist/db/psql/migrations/20260627000009-create-account-asset-categories.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000009-create-account-asset-categories.js +83 -0
- package/dist/db/psql/migrations/20260627000010-create-account-fixed-assets.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000010-create-account-fixed-assets.js +78 -0
- package/dist/db/psql/migrations/20260627000011-create-account-asset-depreciation-schedules.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000011-create-account-asset-depreciation-schedules.js +69 -0
- package/dist/db/psql/migrations/20260627000012-create-account-asset-disposals.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000012-create-account-asset-disposals.js +70 -0
- package/dist/db/psql/migrations/20260627000012-create_account_journal_lines.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000012-create_account_journal_lines.js +81 -0
- package/dist/db/psql/migrations/20260627000013-create-account-inventory-valuations.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000013-create-account-inventory-valuations.js +79 -0
- package/dist/db/psql/migrations/20260627000013-create_account_ledger_balances.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000013-create_account_ledger_balances.js +77 -0
- package/dist/db/psql/migrations/20260627000014-create-account-inventory-postings.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000014-create-account-inventory-postings.js +69 -0
- package/dist/db/psql/migrations/20260627000014-create_account_posting_events.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000014-create_account_posting_events.js +89 -0
- package/dist/db/psql/migrations/20260627000015-create-account-approval-workflows.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000015-create-account-approval-workflows.js +56 -0
- package/dist/db/psql/migrations/20260627000015-create_account_posting_rules.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000015-create_account_posting_rules.js +85 -0
- package/dist/db/psql/migrations/20260627000016-create-account-approval-steps.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000016-create-account-approval-steps.js +73 -0
- package/dist/db/psql/migrations/20260627000016-create_account_rule_ledger_mappings.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000016-create_account_rule_ledger_mappings.js +82 -0
- package/dist/db/psql/migrations/20260627000017-create-account-approval-requests.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000017-create-account-approval-requests.js +77 -0
- package/dist/db/psql/migrations/20260627000017-create_account_party_accounts.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000017-create_account_party_accounts.js +65 -0
- package/dist/db/psql/migrations/20260627000018-create-account-approval-actions.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000018-create-account-approval-actions.js +72 -0
- package/dist/db/psql/migrations/20260627000019-create-account-integration-connections.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000019-create-account-integration-connections.js +56 -0
- package/dist/db/psql/migrations/20260627000020-create-account-integration-mappings.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000020-create-account-integration-mappings.js +76 -0
- package/dist/db/psql/migrations/20260627000021-create-account-sync-jobs.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000021-create-account-sync-jobs.js +81 -0
- package/dist/db/psql/migrations/20260627000022-create-account-sync-logs.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000022-create-account-sync-logs.js +72 -0
- package/dist/db/psql/migrations/20260627000023-create-account-webhook-subscriptions.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000023-create-account-webhook-subscriptions.js +65 -0
- package/dist/db/psql/migrations/20260627000024-create-account-webhook-deliveries.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000024-create-account-webhook-deliveries.js +77 -0
- package/dist/db/psql/migrations/20260627000025-create-account-report-snapshots.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000025-create-account-report-snapshots.js +76 -0
- package/dist/db/psql/migrations/20260627000026-create-account-financial-kpis.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000026-create-account-financial-kpis.js +72 -0
- package/dist/db/psql/migrations/20260627000027-create-account-budgets.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000027-create-account-budgets.js +76 -0
- package/dist/db/psql/migrations/20260627000028-create-account-budget-periods.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000028-create-account-budget-periods.js +64 -0
- package/dist/db/psql/migrations/20260627000029-create-account-budget-consumptions.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000029-create-account-budget-consumptions.js +64 -0
- package/dist/db/psql/migrations/20260627000030-create-account-tax-types.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000030-create-account-tax-types.js +72 -0
- package/dist/db/psql/migrations/20260627000031-create-account-tax-entries.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000031-create-account-tax-entries.js +64 -0
- package/dist/db/psql/migrations/20260627000032-create-account-funds.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000032-create-account-funds.js +80 -0
- package/dist/db/psql/migrations/20260627000033-create-account-donors.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000033-create-account-donors.js +68 -0
- package/dist/db/psql/migrations/20260627000034-create-account-grants.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000034-create-account-grants.js +76 -0
- package/dist/db/psql/migrations/20260627000035-create-account-fund-transactions.d.ts +2 -0
- package/dist/db/psql/migrations/20260627000035-create-account-fund-transactions.js +80 -0
- package/dist/helpers/s3Uploader.d.ts +0 -1
- package/dist/helpers/s3Uploader.js +1 -20
- package/dist/interfaces/accountApprovalActionInterface.d.ts +13 -0
- package/dist/interfaces/accountApprovalRequestInterface.d.ts +14 -0
- package/dist/interfaces/accountApprovalStepInterface.d.ts +12 -0
- package/dist/interfaces/accountApprovalWorkflowInterface.d.ts +9 -0
- package/dist/interfaces/accountAssetCategoryInterface.d.ts +15 -0
- package/dist/interfaces/accountAssetCategoryInterface.js +2 -0
- package/dist/interfaces/accountAssetDepreciationScheduleInterface.d.ts +11 -0
- package/dist/interfaces/accountAssetDepreciationScheduleInterface.js +2 -0
- package/dist/interfaces/accountAssetDisposalInterface.d.ts +11 -0
- package/dist/interfaces/accountAssetDisposalInterface.js +2 -0
- package/dist/interfaces/accountBankReconciliationBatchInterface.d.ts +20 -0
- package/dist/interfaces/accountBankReconciliationBatchInterface.js +2 -0
- package/dist/interfaces/accountBankReconciliationMatchInterface.d.ts +12 -0
- package/dist/interfaces/accountBankReconciliationMatchInterface.js +2 -0
- package/dist/interfaces/accountBankStatementLineInterface.d.ts +15 -0
- package/dist/interfaces/accountBankStatementLineInterface.js +2 -0
- package/dist/interfaces/accountBudgetConsumptionInterface.d.ts +10 -0
- package/dist/interfaces/accountBudgetConsumptionInterface.js +2 -0
- package/dist/interfaces/accountBudgetInterface.d.ts +35 -0
- package/dist/interfaces/accountBudgetInterface.js +2 -0
- package/dist/interfaces/accountBudgetPeriodInterface.d.ts +10 -0
- package/dist/interfaces/accountBudgetPeriodInterface.js +2 -0
- package/dist/interfaces/accountCostCenterInterface.d.ts +3 -0
- package/dist/interfaces/accountDashboardInterface.d.ts +75 -0
- package/dist/interfaces/accountDashboardInterface.js +2 -0
- package/dist/interfaces/accountDonorInterface.d.ts +12 -0
- package/dist/interfaces/accountDonorInterface.js +2 -0
- package/dist/interfaces/accountExpenseCategoryInterface.d.ts +10 -0
- package/dist/interfaces/accountExpenseCategoryInterface.js +2 -0
- package/dist/interfaces/accountExpensePaymentInterface.d.ts +14 -0
- package/dist/interfaces/accountExpensePaymentInterface.js +2 -0
- package/dist/interfaces/accountExpenseRequestInterface.d.ts +27 -0
- package/dist/interfaces/accountExpenseRequestInterface.js +2 -0
- package/dist/interfaces/accountFinancialKpiInterface.d.ts +13 -0
- package/dist/interfaces/accountFinancialKpiInterface.js +2 -0
- package/dist/interfaces/accountFinancialYearInterface.d.ts +6 -0
- package/dist/interfaces/accountFixedAssetInterface.d.ts +13 -0
- package/dist/interfaces/accountFixedAssetInterface.js +2 -0
- package/dist/interfaces/accountFundInterface.d.ts +24 -0
- package/dist/interfaces/accountFundInterface.js +2 -0
- package/dist/interfaces/accountFundTransactionInterface.d.ts +15 -0
- package/dist/interfaces/accountFundTransactionInterface.js +2 -0
- package/dist/interfaces/accountGrantInterface.d.ts +14 -0
- package/dist/interfaces/accountGrantInterface.js +2 -0
- package/dist/interfaces/accountGroupInterface.d.ts +3 -0
- package/dist/interfaces/accountIntegrationConnectionInterface.d.ts +9 -0
- package/dist/interfaces/accountIntegrationConnectionInterface.js +2 -0
- package/dist/interfaces/accountIntegrationMappingInterface.d.ts +14 -0
- package/dist/interfaces/accountIntegrationMappingInterface.js +2 -0
- package/dist/interfaces/accountInventoryPostingInterface.d.ts +12 -0
- package/dist/interfaces/accountInventoryPostingInterface.js +2 -0
- package/dist/interfaces/accountInventoryValuationInterface.d.ts +14 -0
- package/dist/interfaces/accountInventoryValuationInterface.js +2 -0
- package/dist/interfaces/accountJournalEntryInterface.d.ts +19 -0
- package/dist/interfaces/accountJournalEntryInterface.js +2 -0
- package/dist/interfaces/accountJournalLineInterface.d.ts +28 -0
- package/dist/interfaces/accountJournalLineInterface.js +2 -0
- package/dist/interfaces/accountLedgerBalanceInterface.d.ts +17 -0
- package/dist/interfaces/accountLedgerBalanceInterface.js +2 -0
- package/dist/interfaces/accountLedgerInterface.d.ts +17 -0
- package/dist/interfaces/accountPartyAccountInterface.d.ts +14 -0
- package/dist/interfaces/accountPartyAccountInterface.js +2 -0
- package/dist/interfaces/accountPostingEventInterface.d.ts +32 -0
- package/dist/interfaces/accountPostingEventInterface.js +2 -0
- package/dist/interfaces/accountPostingRuleInterface.d.ts +24 -0
- package/dist/interfaces/accountPostingRuleInterface.js +2 -0
- package/dist/interfaces/accountReportSnapshotInterface.d.ts +14 -0
- package/dist/interfaces/accountReportSnapshotInterface.js +2 -0
- package/dist/interfaces/accountReportingInterface.d.ts +282 -0
- package/dist/interfaces/accountReportingInterface.js +2 -0
- package/dist/interfaces/accountRuleLedgerMappingInterface.d.ts +20 -0
- package/dist/interfaces/accountRuleLedgerMappingInterface.js +2 -0
- package/dist/interfaces/accountSettingInterface.d.ts +11 -0
- package/dist/interfaces/accountSettingInterface.js +2 -0
- package/dist/interfaces/accountSyncJobInterface.d.ts +15 -0
- package/dist/interfaces/accountSyncJobInterface.js +2 -0
- package/dist/interfaces/accountSyncLogInterface.d.ts +13 -0
- package/dist/interfaces/accountSyncLogInterface.js +2 -0
- package/dist/interfaces/accountTaxEntryInterface.d.ts +24 -0
- package/dist/interfaces/accountTaxEntryInterface.js +2 -0
- package/dist/interfaces/accountTaxTypeInterface.d.ts +13 -0
- package/dist/interfaces/accountTaxTypeInterface.js +2 -0
- package/dist/interfaces/accountVendorInvoiceInterface.d.ts +41 -0
- package/dist/interfaces/accountVendorInvoiceInterface.js +2 -0
- package/dist/interfaces/accountVendorPaymentInterface.d.ts +15 -0
- package/dist/interfaces/accountVendorPaymentInterface.js +2 -0
- package/dist/interfaces/accountVoucherInterface.d.ts +42 -0
- package/dist/interfaces/accountVoucherInterface.js +2 -0
- package/dist/interfaces/accountWebhookDeliveryInterface.d.ts +14 -0
- package/dist/interfaces/accountWebhookDeliveryInterface.js +2 -0
- package/dist/interfaces/accountWebhookSubscriptionInterface.d.ts +11 -0
- package/dist/interfaces/accountWebhookSubscriptionInterface.js +2 -0
- package/dist/interfaces/accountsActivityStreamInterface.d.ts +14 -0
- package/dist/interfaces/accountsActivityStreamInterface.js +2 -0
- package/dist/interfaces/accountsAttachmentInterface.d.ts +14 -0
- package/dist/interfaces/accountsAttachmentInterface.js +2 -0
- package/dist/interfaces/accountsAuditLogInterface.d.ts +19 -0
- package/dist/interfaces/accountsAuditLogInterface.js +2 -0
- package/dist/interfaces/accountsNotificationInterface.d.ts +15 -0
- package/dist/interfaces/accountsNotificationInterface.js +2 -0
- package/dist/interfaces/accountsSyncPayloadInterface.d.ts +14 -0
- package/dist/interfaces/accountsSyncPayloadInterface.js +2 -0
- package/dist/interfaces/accountsWorkflowHistoryInterface.d.ts +15 -0
- package/dist/interfaces/accountsWorkflowHistoryInterface.js +2 -0
- package/dist/interfaces/index.d.ts +52 -2
- package/dist/interfaces/index.js +52 -2
- package/dist/interfaces/refundInterface.d.ts +0 -2
- package/dist/interfaces/rmsAssetTransactionInterface.d.ts +1 -1
- package/dist/models/mongodb/accountSettingModel.d.ts +4 -0
- package/dist/models/mongodb/{productMetaModel.js → accountSettingModel.js} +14 -57
- package/dist/models/mongodb/accountsActivityStreamModel.d.ts +4 -0
- package/dist/models/mongodb/accountsActivityStreamModel.js +52 -0
- package/dist/models/mongodb/accountsAttachmentModel.d.ts +4 -0
- package/dist/models/mongodb/accountsAttachmentModel.js +53 -0
- package/dist/models/mongodb/accountsAuditLogModel.d.ts +4 -0
- package/dist/models/mongodb/accountsAuditLogModel.js +57 -0
- package/dist/models/mongodb/accountsNotificationModel.d.ts +4 -0
- package/dist/models/mongodb/accountsNotificationModel.js +54 -0
- package/dist/models/mongodb/accountsSyncPayloadModel.d.ts +4 -0
- package/dist/models/mongodb/accountsSyncPayloadModel.js +53 -0
- package/dist/models/mongodb/accountsWorkflowHistoryModel.d.ts +4 -0
- package/dist/models/mongodb/accountsWorkflowHistoryModel.js +54 -0
- package/dist/models/mongodb/index.d.ts +7 -2
- package/dist/models/mongodb/index.js +16 -5
- package/dist/models/psql/accountApprovalActionModel.d.ts +23 -0
- package/dist/models/psql/accountApprovalActionModel.js +82 -0
- package/dist/models/psql/accountApprovalRequestModel.d.ts +24 -0
- package/dist/models/psql/accountApprovalRequestModel.js +85 -0
- package/dist/models/psql/accountApprovalStepModel.d.ts +22 -0
- package/dist/models/psql/accountApprovalStepModel.js +83 -0
- package/dist/models/psql/accountApprovalWorkflowModel.d.ts +19 -0
- package/dist/models/psql/accountApprovalWorkflowModel.js +55 -0
- package/dist/models/psql/accountAssetCategoryModel.d.ts +25 -0
- package/dist/models/psql/accountAssetCategoryModel.js +94 -0
- package/dist/models/psql/accountAssetDepreciationScheduleModel.d.ts +21 -0
- package/dist/models/psql/accountAssetDepreciationScheduleModel.js +77 -0
- package/dist/models/psql/accountAssetDisposalModel.d.ts +21 -0
- package/dist/models/psql/accountAssetDisposalModel.js +78 -0
- package/dist/models/psql/accountBankReconciliationBatchModel.d.ts +25 -0
- package/dist/models/psql/accountBankReconciliationBatchModel.js +92 -0
- package/dist/models/psql/accountBankReconciliationMatchModel.d.ts +22 -0
- package/dist/models/psql/accountBankReconciliationMatchModel.js +82 -0
- package/dist/models/psql/accountBankStatementLineModel.d.ts +25 -0
- package/dist/models/psql/accountBankStatementLineModel.js +92 -0
- package/dist/models/psql/accountBudgetConsumptionModel.d.ts +20 -0
- package/dist/models/psql/accountBudgetConsumptionModel.js +71 -0
- package/dist/models/psql/accountBudgetModel.d.ts +24 -0
- package/dist/models/psql/accountBudgetModel.js +92 -0
- package/dist/models/psql/accountBudgetPeriodModel.d.ts +20 -0
- package/dist/models/psql/accountBudgetPeriodModel.js +68 -0
- package/dist/models/psql/accountDonorModel.d.ts +22 -0
- package/dist/models/psql/accountDonorModel.js +73 -0
- package/dist/models/psql/accountExpenseCategoryModel.d.ts +20 -0
- package/dist/models/psql/accountExpenseCategoryModel.js +71 -0
- package/dist/models/psql/accountExpensePaymentModel.d.ts +24 -0
- package/dist/models/psql/accountExpensePaymentModel.js +89 -0
- package/dist/models/psql/accountExpenseRequestModel.d.ts +26 -0
- package/dist/models/psql/accountExpenseRequestModel.js +102 -0
- package/dist/models/psql/accountFinancialKpiModel.d.ts +23 -0
- package/dist/models/psql/accountFinancialKpiModel.js +81 -0
- package/dist/models/psql/accountFixedAssetModel.d.ts +23 -0
- package/dist/models/psql/accountFixedAssetModel.js +85 -0
- package/dist/models/psql/accountFundModel.d.ts +25 -0
- package/dist/models/psql/accountFundModel.js +88 -0
- package/dist/models/psql/accountFundTransactionModel.d.ts +25 -0
- package/dist/models/psql/accountFundTransactionModel.js +97 -0
- package/dist/models/psql/accountGrantModel.d.ts +24 -0
- package/dist/models/psql/accountGrantModel.js +83 -0
- package/dist/models/psql/accountIntegrationConnectionModel.d.ts +19 -0
- package/dist/models/psql/accountIntegrationConnectionModel.js +55 -0
- package/dist/models/psql/accountIntegrationMappingModel.d.ts +24 -0
- package/dist/models/psql/accountIntegrationMappingModel.js +83 -0
- package/dist/models/psql/accountInventoryPostingModel.d.ts +22 -0
- package/dist/models/psql/accountInventoryPostingModel.js +74 -0
- package/dist/models/psql/accountInventoryValuationModel.d.ts +24 -0
- package/dist/models/psql/accountInventoryValuationModel.js +89 -0
- package/dist/models/psql/accountJournalEntryModel.d.ts +24 -0
- package/dist/models/psql/accountJournalEntryModel.js +87 -0
- package/dist/models/psql/accountJournalLineModel.d.ts +24 -0
- package/dist/models/psql/accountJournalLineModel.js +95 -0
- package/dist/models/psql/accountLedgerBalanceModel.d.ts +23 -0
- package/dist/models/psql/accountLedgerBalanceModel.js +87 -0
- package/dist/models/psql/accountPartyAccountModel.d.ts +21 -0
- package/dist/models/psql/accountPartyAccountModel.js +68 -0
- package/dist/models/psql/accountPostingEventModel.d.ts +27 -0
- package/dist/models/psql/accountPostingEventModel.js +98 -0
- package/dist/models/psql/accountPostingRuleModel.d.ts +26 -0
- package/dist/models/psql/accountPostingRuleModel.js +90 -0
- package/dist/models/psql/accountReportSnapshotModel.d.ts +24 -0
- package/dist/models/psql/accountReportSnapshotModel.js +84 -0
- package/dist/models/psql/accountRuleLedgerMappingModel.d.ts +24 -0
- package/dist/models/psql/accountRuleLedgerMappingModel.js +97 -0
- package/dist/models/psql/accountSyncJobModel.d.ts +25 -0
- package/dist/models/psql/accountSyncJobModel.js +89 -0
- package/dist/models/psql/accountSyncLogModel.d.ts +23 -0
- package/dist/models/psql/accountSyncLogModel.js +78 -0
- package/dist/models/psql/accountTaxEntryModel.d.ts +20 -0
- package/dist/models/psql/accountTaxEntryModel.js +71 -0
- package/dist/models/psql/accountTaxTypeModel.d.ts +23 -0
- package/dist/models/psql/accountTaxTypeModel.js +79 -0
- package/dist/models/psql/accountVendorInvoiceModel.d.ts +28 -0
- package/dist/models/psql/accountVendorInvoiceModel.js +109 -0
- package/dist/models/psql/accountVendorPaymentModel.d.ts +25 -0
- package/dist/models/psql/accountVendorPaymentModel.js +95 -0
- package/dist/models/psql/accountVoucherModel.d.ts +28 -0
- package/dist/models/psql/accountVoucherModel.js +111 -0
- package/dist/models/psql/accountWebhookDeliveryModel.d.ts +24 -0
- package/dist/models/psql/accountWebhookDeliveryModel.js +84 -0
- package/dist/models/psql/accountWebhookSubscriptionModel.d.ts +21 -0
- package/dist/models/psql/accountWebhookSubscriptionModel.js +66 -0
- package/dist/models/psql/index.d.ts +43 -0
- package/dist/models/psql/index.js +88 -1
- package/dist/models/psql/refundModel.d.ts +0 -2
- package/dist/models/psql/refundModel.js +0 -17
- package/dist/models/psql/rmsAssetTransactionModel.d.ts +1 -1
- package/dist/models/psql/rmsAssetTransactionModel.js +4 -6
- package/dist/models/psql/userModel.js +0 -1
- package/dist/types/accountApprovalActionType.d.ts +2 -0
- package/dist/types/accountApprovalActionType.js +2 -0
- package/dist/types/accountApprovalRequestType.d.ts +2 -0
- package/dist/types/accountApprovalRequestType.js +2 -0
- package/dist/types/accountApprovalStepType.d.ts +2 -0
- package/dist/types/accountApprovalStepType.js +2 -0
- package/dist/types/accountApprovalWorkflowType.d.ts +2 -0
- package/dist/types/accountApprovalWorkflowType.js +2 -0
- package/dist/types/accountAssetCategoryType.d.ts +2 -0
- package/dist/types/accountAssetCategoryType.js +2 -0
- package/dist/types/accountAssetDepreciationScheduleType.d.ts +2 -0
- package/dist/types/accountAssetDepreciationScheduleType.js +2 -0
- package/dist/types/accountAssetDisposalType.d.ts +2 -0
- package/dist/types/accountAssetDisposalType.js +2 -0
- package/dist/types/accountBankReconciliationBatchType.d.ts +2 -0
- package/dist/types/accountBankReconciliationBatchType.js +2 -0
- package/dist/types/accountBankReconciliationMatchType.d.ts +2 -0
- package/dist/types/accountBankReconciliationMatchType.js +2 -0
- package/dist/types/accountBankStatementLineType.d.ts +2 -0
- package/dist/types/accountBankStatementLineType.js +2 -0
- package/dist/types/accountBudgetConsumptionType.d.ts +2 -0
- package/dist/types/accountBudgetConsumptionType.js +2 -0
- package/dist/types/accountBudgetPeriodType.d.ts +2 -0
- package/dist/types/accountBudgetPeriodType.js +2 -0
- package/dist/types/accountBudgetType.d.ts +2 -0
- package/dist/types/accountBudgetType.js +2 -0
- package/dist/types/accountDonorType.d.ts +2 -0
- package/dist/types/accountDonorType.js +2 -0
- package/dist/types/accountExpenseCategoryType.d.ts +2 -0
- package/dist/types/accountExpenseCategoryType.js +2 -0
- package/dist/types/accountExpensePaymentType.d.ts +2 -0
- package/dist/types/accountExpensePaymentType.js +2 -0
- package/dist/types/accountExpenseRequestType.d.ts +2 -0
- package/dist/types/accountExpenseRequestType.js +2 -0
- package/dist/types/accountFinancialKpiType.d.ts +2 -0
- package/dist/types/accountFinancialKpiType.js +2 -0
- package/dist/types/accountFixedAssetType.d.ts +2 -0
- package/dist/types/accountFixedAssetType.js +2 -0
- package/dist/types/accountFundTransactionType.d.ts +2 -0
- package/dist/types/accountFundTransactionType.js +2 -0
- package/dist/types/accountFundType.d.ts +2 -0
- package/dist/types/accountFundType.js +2 -0
- package/dist/types/accountGrantType.d.ts +2 -0
- package/dist/types/accountGrantType.js +2 -0
- package/dist/types/accountIntegrationConnectionType.d.ts +2 -0
- package/dist/types/accountIntegrationConnectionType.js +2 -0
- package/dist/types/accountIntegrationMappingType.d.ts +2 -0
- package/dist/types/accountIntegrationMappingType.js +2 -0
- package/dist/types/accountInventoryPostingType.d.ts +2 -0
- package/dist/types/accountInventoryPostingType.js +2 -0
- package/dist/types/accountInventoryValuationType.d.ts +2 -0
- package/dist/types/accountInventoryValuationType.js +2 -0
- package/dist/types/accountJournalEntryType.d.ts +3 -0
- package/dist/types/accountJournalEntryType.js +2 -0
- package/dist/types/accountJournalLineType.d.ts +3 -0
- package/dist/types/accountJournalLineType.js +2 -0
- package/dist/types/accountLedgerBalanceType.d.ts +3 -0
- package/dist/types/accountLedgerBalanceType.js +2 -0
- package/dist/types/accountPartyAccountType.d.ts +3 -0
- package/dist/types/accountPartyAccountType.js +2 -0
- package/dist/types/accountPostingEventType.d.ts +3 -0
- package/dist/types/accountPostingEventType.js +2 -0
- package/dist/types/accountPostingRuleType.d.ts +3 -0
- package/dist/types/accountPostingRuleType.js +2 -0
- package/dist/types/accountReportSnapshotType.d.ts +2 -0
- package/dist/types/accountReportSnapshotType.js +2 -0
- package/dist/types/accountRuleLedgerMappingType.d.ts +3 -0
- package/dist/types/accountRuleLedgerMappingType.js +2 -0
- package/dist/types/accountSettingType.d.ts +2 -0
- package/dist/types/accountSettingType.js +2 -0
- package/dist/types/accountSyncJobType.d.ts +2 -0
- package/dist/types/accountSyncJobType.js +2 -0
- package/dist/types/accountSyncLogType.d.ts +2 -0
- package/dist/types/accountSyncLogType.js +2 -0
- package/dist/types/accountTaxEntryType.d.ts +2 -0
- package/dist/types/accountTaxEntryType.js +2 -0
- package/dist/types/accountTaxTypeType.d.ts +2 -0
- package/dist/types/accountTaxTypeType.js +2 -0
- package/dist/types/accountVendorInvoiceType.d.ts +2 -0
- package/dist/types/accountVendorInvoiceType.js +2 -0
- package/dist/types/accountVendorPaymentType.d.ts +2 -0
- package/dist/types/accountVendorPaymentType.js +2 -0
- package/dist/types/accountVoucherType.d.ts +3 -0
- package/dist/types/accountVoucherType.js +2 -0
- package/dist/types/accountWebhookDeliveryType.d.ts +2 -0
- package/dist/types/accountWebhookDeliveryType.js +2 -0
- package/dist/types/accountWebhookSubscriptionType.d.ts +2 -0
- package/dist/types/accountWebhookSubscriptionType.js +2 -0
- package/dist/types/accountsActivityStreamType.d.ts +2 -0
- package/dist/types/accountsActivityStreamType.js +2 -0
- package/dist/types/accountsAttachmentType.d.ts +2 -0
- package/dist/types/accountsAttachmentType.js +2 -0
- package/dist/types/accountsAuditLogType.d.ts +2 -0
- package/dist/types/accountsAuditLogType.js +2 -0
- package/dist/types/accountsNotificationType.d.ts +2 -0
- package/dist/types/accountsNotificationType.js +2 -0
- package/dist/types/accountsSyncPayloadType.d.ts +2 -0
- package/dist/types/accountsSyncPayloadType.js +2 -0
- package/dist/types/accountsWorkflowHistoryType.d.ts +2 -0
- package/dist/types/accountsWorkflowHistoryType.js +2 -0
- package/dist/types/index.d.ts +50 -2
- package/dist/types/index.js +50 -2
- package/package.json +1 -1
- package/dist/db/psql/migrations/20260630000001-alter_rms_asset_transactions_user_penalty_id.js +0 -21
- package/dist/db/psql/migrations/20260702000000-add-amount-to-refunds.js +0 -13
- package/dist/db/psql/migrations/20260702000001-add-user-id-to-refunds.js +0 -13
- package/dist/interfaces/productMetaInterface.d.ts +0 -18
- package/dist/interfaces/vendorCompanyMetaInterface.d.ts +0 -34
- package/dist/models/mongodb/productMetaModel.d.ts +0 -4
- package/dist/models/mongodb/vendorCompanyMetaModel.d.ts +0 -4
- package/dist/models/mongodb/vendorCompanyMetaModel.js +0 -142
- package/dist/types/productMetaType.d.ts +0 -2
- package/dist/types/vendorCompanyMetaType.d.ts +0 -2
- /package/dist/db/psql/migrations/{20260702000000-add-amount-to-refunds.d.ts → 20260626000010-create_account_vouchers.d.ts} +0 -0
- /package/dist/db/psql/migrations/{20260702000001-add-user-id-to-refunds.d.ts → 20260626000011-create_account_journal_entries.d.ts} +0 -0
- /package/dist/db/psql/migrations/{20260630000001-alter_rms_asset_transactions_user_penalty_id.d.ts → 20260627000001-create-account-expense-categories.d.ts} +0 -0
- /package/dist/interfaces/{productMetaInterface.js → accountApprovalActionInterface.js} +0 -0
- /package/dist/interfaces/{vendorCompanyMetaInterface.js → accountApprovalRequestInterface.js} +0 -0
- /package/dist/{types/productMetaType.js → interfaces/accountApprovalStepInterface.js} +0 -0
- /package/dist/{types/vendorCompanyMetaType.js → interfaces/accountApprovalWorkflowInterface.js} +0 -0
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const sequelize_1 = require("sequelize");
|
|
4
|
+
const index_1 = require("./index");
|
|
5
|
+
class AccountPostingEventModel extends sequelize_1.Model {
|
|
6
|
+
static associate(models) {
|
|
7
|
+
const { AccountJournalEntryModel, InstituteModel, AcademicCalendarModel } = models;
|
|
8
|
+
if (AccountJournalEntryModel) {
|
|
9
|
+
AccountPostingEventModel.belongsTo(AccountJournalEntryModel, { foreignKey: 'journalEntryId', as: 'journalEntry' });
|
|
10
|
+
}
|
|
11
|
+
if (InstituteModel) {
|
|
12
|
+
AccountPostingEventModel.belongsTo(InstituteModel, { foreignKey: 'instituteId', as: 'institute' });
|
|
13
|
+
}
|
|
14
|
+
if (AcademicCalendarModel) {
|
|
15
|
+
AccountPostingEventModel.belongsTo(AcademicCalendarModel, { foreignKey: 'academicCalendarId', as: 'academicCalendar' });
|
|
16
|
+
}
|
|
17
|
+
const { UserModel } = models;
|
|
18
|
+
if (UserModel) {
|
|
19
|
+
AccountPostingEventModel.belongsTo(UserModel, { foreignKey: { name: 'createdBy', allowNull: true, field: 'created_by' }, as: 'createdByUser' });
|
|
20
|
+
AccountPostingEventModel.belongsTo(UserModel, { foreignKey: { name: 'updatedBy', allowNull: true, field: 'updated_by' }, as: 'updatedByUser' });
|
|
21
|
+
AccountPostingEventModel.belongsTo(UserModel, { foreignKey: { name: 'deletedBy', allowNull: true, field: 'deleted_by' }, as: 'deletedByUser' });
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
AccountPostingEventModel.init({
|
|
26
|
+
id: {
|
|
27
|
+
type: sequelize_1.DataTypes.UUID,
|
|
28
|
+
defaultValue: sequelize_1.DataTypes.UUIDV4,
|
|
29
|
+
primaryKey: true,
|
|
30
|
+
allowNull: false,
|
|
31
|
+
},
|
|
32
|
+
instituteId: {
|
|
33
|
+
type: sequelize_1.DataTypes.UUID,
|
|
34
|
+
allowNull: true,
|
|
35
|
+
field: 'institute_id',
|
|
36
|
+
},
|
|
37
|
+
academicCalendarId: {
|
|
38
|
+
type: sequelize_1.DataTypes.UUID,
|
|
39
|
+
allowNull: true,
|
|
40
|
+
field: 'academic_calendar_id',
|
|
41
|
+
},
|
|
42
|
+
eventKey: {
|
|
43
|
+
type: sequelize_1.DataTypes.STRING,
|
|
44
|
+
allowNull: true,
|
|
45
|
+
field: 'event_key',
|
|
46
|
+
},
|
|
47
|
+
sourceModule: {
|
|
48
|
+
type: sequelize_1.DataTypes.STRING,
|
|
49
|
+
allowNull: true,
|
|
50
|
+
field: 'source_module',
|
|
51
|
+
},
|
|
52
|
+
sourceType: {
|
|
53
|
+
type: sequelize_1.DataTypes.STRING,
|
|
54
|
+
allowNull: true,
|
|
55
|
+
field: 'source_type',
|
|
56
|
+
},
|
|
57
|
+
sourceId: {
|
|
58
|
+
type: sequelize_1.DataTypes.STRING,
|
|
59
|
+
allowNull: true,
|
|
60
|
+
field: 'source_id',
|
|
61
|
+
},
|
|
62
|
+
eventType: {
|
|
63
|
+
type: sequelize_1.DataTypes.STRING,
|
|
64
|
+
allowNull: true,
|
|
65
|
+
field: 'event_type',
|
|
66
|
+
},
|
|
67
|
+
eventDate: {
|
|
68
|
+
type: sequelize_1.DataTypes.DATE,
|
|
69
|
+
allowNull: true,
|
|
70
|
+
field: 'event_date',
|
|
71
|
+
},
|
|
72
|
+
payloadJson: {
|
|
73
|
+
type: sequelize_1.DataTypes.JSONB,
|
|
74
|
+
allowNull: true,
|
|
75
|
+
field: 'payload_json',
|
|
76
|
+
},
|
|
77
|
+
journalEntryId: {
|
|
78
|
+
type: sequelize_1.DataTypes.UUID,
|
|
79
|
+
allowNull: true,
|
|
80
|
+
field: 'journal_entry_id',
|
|
81
|
+
},
|
|
82
|
+
errorMessage: {
|
|
83
|
+
type: sequelize_1.DataTypes.STRING,
|
|
84
|
+
allowNull: true,
|
|
85
|
+
field: 'error_message',
|
|
86
|
+
},
|
|
87
|
+
status: {
|
|
88
|
+
type: sequelize_1.DataTypes.STRING,
|
|
89
|
+
allowNull: true,
|
|
90
|
+
},
|
|
91
|
+
}, {
|
|
92
|
+
modelName: 'AccountPostingEventModel',
|
|
93
|
+
tableName: 'account_posting_events',
|
|
94
|
+
timestamps: true,
|
|
95
|
+
paranoid: true,
|
|
96
|
+
sequelize: index_1.sequelize,
|
|
97
|
+
});
|
|
98
|
+
exports.default = AccountPostingEventModel;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { Model } from 'sequelize';
|
|
2
|
+
import { IAccountPostingRuleModelAttributes } from '../../interfaces/accountPostingRuleInterface';
|
|
3
|
+
import { TAccountPostingRuleModelCreationAttributes } from '../../types/accountPostingRuleType';
|
|
4
|
+
import { AccountSourceModule, AccountEventType } from '../../constants/app';
|
|
5
|
+
declare class AccountPostingRuleModel extends Model<IAccountPostingRuleModelAttributes, TAccountPostingRuleModelCreationAttributes> {
|
|
6
|
+
id: string;
|
|
7
|
+
instituteId: string;
|
|
8
|
+
academicCalendarId: string;
|
|
9
|
+
sourceModule?: AccountSourceModule;
|
|
10
|
+
eventType?: AccountEventType;
|
|
11
|
+
priority?: number;
|
|
12
|
+
conditionsJson?: any;
|
|
13
|
+
debitStrategy?: string;
|
|
14
|
+
creditStrategy?: string;
|
|
15
|
+
costCenterStrategy?: string;
|
|
16
|
+
effectiveFrom?: Date;
|
|
17
|
+
effectiveTo?: Date;
|
|
18
|
+
createdBy?: string;
|
|
19
|
+
updatedBy?: string;
|
|
20
|
+
deletedBy?: string;
|
|
21
|
+
readonly createdAt: Date;
|
|
22
|
+
readonly updatedAt: Date;
|
|
23
|
+
readonly deletedAt?: Date;
|
|
24
|
+
static associate(models: any): void;
|
|
25
|
+
}
|
|
26
|
+
export default AccountPostingRuleModel;
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const sequelize_1 = require("sequelize");
|
|
4
|
+
const index_1 = require("./index");
|
|
5
|
+
class AccountPostingRuleModel extends sequelize_1.Model {
|
|
6
|
+
static associate(models) {
|
|
7
|
+
const { InstituteModel, AcademicCalendarModel } = models;
|
|
8
|
+
if (InstituteModel) {
|
|
9
|
+
AccountPostingRuleModel.belongsTo(InstituteModel, { foreignKey: 'instituteId', as: 'institute' });
|
|
10
|
+
}
|
|
11
|
+
if (AcademicCalendarModel) {
|
|
12
|
+
AccountPostingRuleModel.belongsTo(AcademicCalendarModel, { foreignKey: 'academicCalendarId', as: 'academicCalendar' });
|
|
13
|
+
}
|
|
14
|
+
const { UserModel } = models;
|
|
15
|
+
if (UserModel) {
|
|
16
|
+
AccountPostingRuleModel.belongsTo(UserModel, { foreignKey: { name: 'createdBy', allowNull: true, field: 'created_by' }, as: 'createdByUser' });
|
|
17
|
+
AccountPostingRuleModel.belongsTo(UserModel, { foreignKey: { name: 'updatedBy', allowNull: true, field: 'updated_by' }, as: 'updatedByUser' });
|
|
18
|
+
AccountPostingRuleModel.belongsTo(UserModel, { foreignKey: { name: 'deletedBy', allowNull: true, field: 'deleted_by' }, as: 'deletedByUser' });
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
AccountPostingRuleModel.init({
|
|
23
|
+
id: {
|
|
24
|
+
type: sequelize_1.DataTypes.UUID,
|
|
25
|
+
defaultValue: sequelize_1.DataTypes.UUIDV4,
|
|
26
|
+
primaryKey: true,
|
|
27
|
+
allowNull: false,
|
|
28
|
+
},
|
|
29
|
+
instituteId: {
|
|
30
|
+
type: sequelize_1.DataTypes.UUID,
|
|
31
|
+
allowNull: true,
|
|
32
|
+
field: 'institute_id',
|
|
33
|
+
},
|
|
34
|
+
academicCalendarId: {
|
|
35
|
+
type: sequelize_1.DataTypes.UUID,
|
|
36
|
+
allowNull: true,
|
|
37
|
+
field: 'academic_calendar_id',
|
|
38
|
+
},
|
|
39
|
+
sourceModule: {
|
|
40
|
+
type: sequelize_1.DataTypes.STRING,
|
|
41
|
+
allowNull: true,
|
|
42
|
+
field: 'source_module',
|
|
43
|
+
},
|
|
44
|
+
eventType: {
|
|
45
|
+
type: sequelize_1.DataTypes.STRING,
|
|
46
|
+
allowNull: true,
|
|
47
|
+
field: 'event_type',
|
|
48
|
+
},
|
|
49
|
+
priority: {
|
|
50
|
+
type: sequelize_1.DataTypes.INTEGER,
|
|
51
|
+
allowNull: true,
|
|
52
|
+
},
|
|
53
|
+
conditionsJson: {
|
|
54
|
+
type: sequelize_1.DataTypes.JSONB,
|
|
55
|
+
allowNull: true,
|
|
56
|
+
field: 'conditions_json',
|
|
57
|
+
},
|
|
58
|
+
debitStrategy: {
|
|
59
|
+
type: sequelize_1.DataTypes.STRING,
|
|
60
|
+
allowNull: true,
|
|
61
|
+
field: 'debit_strategy',
|
|
62
|
+
},
|
|
63
|
+
creditStrategy: {
|
|
64
|
+
type: sequelize_1.DataTypes.STRING,
|
|
65
|
+
allowNull: true,
|
|
66
|
+
field: 'credit_strategy',
|
|
67
|
+
},
|
|
68
|
+
costCenterStrategy: {
|
|
69
|
+
type: sequelize_1.DataTypes.STRING,
|
|
70
|
+
allowNull: true,
|
|
71
|
+
field: 'cost_center_strategy',
|
|
72
|
+
},
|
|
73
|
+
effectiveFrom: {
|
|
74
|
+
type: sequelize_1.DataTypes.DATE,
|
|
75
|
+
allowNull: true,
|
|
76
|
+
field: 'effective_from',
|
|
77
|
+
},
|
|
78
|
+
effectiveTo: {
|
|
79
|
+
type: sequelize_1.DataTypes.DATE,
|
|
80
|
+
allowNull: true,
|
|
81
|
+
field: 'effective_to',
|
|
82
|
+
},
|
|
83
|
+
}, {
|
|
84
|
+
modelName: 'AccountPostingRuleModel',
|
|
85
|
+
tableName: 'account_posting_rules',
|
|
86
|
+
timestamps: true,
|
|
87
|
+
paranoid: true,
|
|
88
|
+
sequelize: index_1.sequelize,
|
|
89
|
+
});
|
|
90
|
+
exports.default = AccountPostingRuleModel;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { Model } from 'sequelize';
|
|
2
|
+
import { IAccountReportSnapshotModelAttributes } from '../../interfaces/accountReportSnapshotInterface';
|
|
3
|
+
import { TAccountReportSnapshotModelCreationAttributes } from '../../types/accountReportSnapshotType';
|
|
4
|
+
import { AccountReportType } from '../../constants/app';
|
|
5
|
+
declare class AccountReportSnapshotModel extends Model<IAccountReportSnapshotModelAttributes, TAccountReportSnapshotModelCreationAttributes> implements IAccountReportSnapshotModelAttributes {
|
|
6
|
+
id: string;
|
|
7
|
+
instituteId: string;
|
|
8
|
+
academicCalendarId: string;
|
|
9
|
+
reportType: AccountReportType;
|
|
10
|
+
financialYearId: string;
|
|
11
|
+
fromDate: Date;
|
|
12
|
+
toDate: Date;
|
|
13
|
+
filtersJson?: any;
|
|
14
|
+
reportFileStorageId?: string;
|
|
15
|
+
generatedBy?: string;
|
|
16
|
+
createdBy?: string;
|
|
17
|
+
updatedBy?: string;
|
|
18
|
+
deletedBy?: string;
|
|
19
|
+
readonly createdAt: Date;
|
|
20
|
+
readonly updatedAt: Date;
|
|
21
|
+
readonly deletedAt?: Date;
|
|
22
|
+
static associate(models: any): void;
|
|
23
|
+
}
|
|
24
|
+
export default AccountReportSnapshotModel;
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const sequelize_1 = require("sequelize");
|
|
4
|
+
const index_1 = require("./index");
|
|
5
|
+
class AccountReportSnapshotModel extends sequelize_1.Model {
|
|
6
|
+
static associate(models) {
|
|
7
|
+
const { InstituteModel, AcademicCalendarModel, AccountFinancialYearModel, UserModel, } = models;
|
|
8
|
+
if (InstituteModel) {
|
|
9
|
+
AccountReportSnapshotModel.belongsTo(InstituteModel, { foreignKey: 'instituteId', as: 'institute' });
|
|
10
|
+
}
|
|
11
|
+
if (AcademicCalendarModel) {
|
|
12
|
+
AccountReportSnapshotModel.belongsTo(AcademicCalendarModel, { foreignKey: 'academicCalendarId', as: 'academicCalendar' });
|
|
13
|
+
}
|
|
14
|
+
if (AccountFinancialYearModel) {
|
|
15
|
+
AccountReportSnapshotModel.belongsTo(AccountFinancialYearModel, { foreignKey: 'financialYearId', as: 'financialYear' });
|
|
16
|
+
}
|
|
17
|
+
if (UserModel) {
|
|
18
|
+
AccountReportSnapshotModel.belongsTo(UserModel, { foreignKey: { name: 'generatedBy', allowNull: true, field: 'generated_by' }, as: 'generator' });
|
|
19
|
+
AccountReportSnapshotModel.belongsTo(UserModel, { foreignKey: { name: 'createdBy', allowNull: true, field: 'created_by' }, as: 'createdByUser' });
|
|
20
|
+
AccountReportSnapshotModel.belongsTo(UserModel, { foreignKey: { name: 'updatedBy', allowNull: true, field: 'updated_by' }, as: 'updatedByUser' });
|
|
21
|
+
AccountReportSnapshotModel.belongsTo(UserModel, { foreignKey: { name: 'deletedBy', allowNull: true, field: 'deleted_by' }, as: 'deletedByUser' });
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
AccountReportSnapshotModel.init({
|
|
26
|
+
id: {
|
|
27
|
+
type: sequelize_1.DataTypes.UUID,
|
|
28
|
+
defaultValue: sequelize_1.DataTypes.UUIDV4,
|
|
29
|
+
primaryKey: true,
|
|
30
|
+
allowNull: false,
|
|
31
|
+
},
|
|
32
|
+
instituteId: {
|
|
33
|
+
type: sequelize_1.DataTypes.UUID,
|
|
34
|
+
allowNull: true,
|
|
35
|
+
field: 'institute_id',
|
|
36
|
+
},
|
|
37
|
+
academicCalendarId: {
|
|
38
|
+
type: sequelize_1.DataTypes.UUID,
|
|
39
|
+
allowNull: true,
|
|
40
|
+
field: 'academic_calendar_id',
|
|
41
|
+
},
|
|
42
|
+
reportType: {
|
|
43
|
+
type: sequelize_1.DataTypes.STRING,
|
|
44
|
+
allowNull: true,
|
|
45
|
+
field: 'report_type',
|
|
46
|
+
},
|
|
47
|
+
financialYearId: {
|
|
48
|
+
type: sequelize_1.DataTypes.UUID,
|
|
49
|
+
allowNull: true,
|
|
50
|
+
field: 'financial_year_id',
|
|
51
|
+
},
|
|
52
|
+
fromDate: {
|
|
53
|
+
type: sequelize_1.DataTypes.DATE,
|
|
54
|
+
allowNull: true,
|
|
55
|
+
field: 'from_date',
|
|
56
|
+
},
|
|
57
|
+
toDate: {
|
|
58
|
+
type: sequelize_1.DataTypes.DATE,
|
|
59
|
+
allowNull: true,
|
|
60
|
+
field: 'to_date',
|
|
61
|
+
},
|
|
62
|
+
filtersJson: {
|
|
63
|
+
type: sequelize_1.DataTypes.JSONB,
|
|
64
|
+
allowNull: true,
|
|
65
|
+
field: 'filters_json',
|
|
66
|
+
},
|
|
67
|
+
reportFileStorageId: {
|
|
68
|
+
type: sequelize_1.DataTypes.UUID,
|
|
69
|
+
allowNull: true,
|
|
70
|
+
field: 'report_file_storage_id',
|
|
71
|
+
},
|
|
72
|
+
generatedBy: {
|
|
73
|
+
type: sequelize_1.DataTypes.UUID,
|
|
74
|
+
allowNull: true,
|
|
75
|
+
field: 'generated_by',
|
|
76
|
+
},
|
|
77
|
+
}, {
|
|
78
|
+
sequelize: index_1.sequelize,
|
|
79
|
+
modelName: 'AccountReportSnapshotModel',
|
|
80
|
+
tableName: 'account_report_snapshots',
|
|
81
|
+
timestamps: true,
|
|
82
|
+
paranoid: true,
|
|
83
|
+
});
|
|
84
|
+
exports.default = AccountReportSnapshotModel;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { Model } from 'sequelize';
|
|
2
|
+
import { IAccountRuleLedgerMappingModelAttributes } from '../../interfaces/accountRuleLedgerMappingInterface';
|
|
3
|
+
import { TAccountRuleLedgerMappingModelCreationAttributes } from '../../types/accountRuleLedgerMappingType';
|
|
4
|
+
declare class AccountRuleLedgerMappingModel extends Model<IAccountRuleLedgerMappingModelAttributes, TAccountRuleLedgerMappingModelCreationAttributes> {
|
|
5
|
+
id: string;
|
|
6
|
+
instituteId: string;
|
|
7
|
+
academicCalendarId: string;
|
|
8
|
+
ruleId?: string;
|
|
9
|
+
sourceRefType?: string;
|
|
10
|
+
sourceRefId?: string;
|
|
11
|
+
debitLedgerId?: string;
|
|
12
|
+
creditLedgerId?: string;
|
|
13
|
+
taxTypeId?: string;
|
|
14
|
+
costCenterId?: string;
|
|
15
|
+
isDefault: boolean;
|
|
16
|
+
createdBy?: string;
|
|
17
|
+
updatedBy?: string;
|
|
18
|
+
deletedBy?: string;
|
|
19
|
+
readonly createdAt: Date;
|
|
20
|
+
readonly updatedAt: Date;
|
|
21
|
+
readonly deletedAt?: Date;
|
|
22
|
+
static associate(models: any): void;
|
|
23
|
+
}
|
|
24
|
+
export default AccountRuleLedgerMappingModel;
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const sequelize_1 = require("sequelize");
|
|
4
|
+
const index_1 = require("./index");
|
|
5
|
+
class AccountRuleLedgerMappingModel extends sequelize_1.Model {
|
|
6
|
+
static associate(models) {
|
|
7
|
+
const { AccountPostingRuleModel, AccountLedgerModel, AccountCostCenterModel, InstituteModel, AcademicCalendarModel } = models;
|
|
8
|
+
if (AccountPostingRuleModel) {
|
|
9
|
+
AccountRuleLedgerMappingModel.belongsTo(AccountPostingRuleModel, { foreignKey: 'ruleId', as: 'rule' });
|
|
10
|
+
}
|
|
11
|
+
if (AccountLedgerModel) {
|
|
12
|
+
AccountRuleLedgerMappingModel.belongsTo(AccountLedgerModel, { foreignKey: 'debitLedgerId', as: 'debitLedger' });
|
|
13
|
+
AccountRuleLedgerMappingModel.belongsTo(AccountLedgerModel, { foreignKey: 'creditLedgerId', as: 'creditLedger' });
|
|
14
|
+
}
|
|
15
|
+
if (AccountCostCenterModel) {
|
|
16
|
+
AccountRuleLedgerMappingModel.belongsTo(AccountCostCenterModel, { foreignKey: 'costCenterId', as: 'costCenter' });
|
|
17
|
+
}
|
|
18
|
+
if (InstituteModel) {
|
|
19
|
+
AccountRuleLedgerMappingModel.belongsTo(InstituteModel, { foreignKey: 'instituteId', as: 'institute' });
|
|
20
|
+
}
|
|
21
|
+
if (AcademicCalendarModel) {
|
|
22
|
+
AccountRuleLedgerMappingModel.belongsTo(AcademicCalendarModel, { foreignKey: 'academicCalendarId', as: 'academicCalendar' });
|
|
23
|
+
}
|
|
24
|
+
const { UserModel } = models;
|
|
25
|
+
if (UserModel) {
|
|
26
|
+
AccountRuleLedgerMappingModel.belongsTo(UserModel, { foreignKey: { name: 'createdBy', allowNull: true, field: 'created_by' }, as: 'createdByUser' });
|
|
27
|
+
AccountRuleLedgerMappingModel.belongsTo(UserModel, { foreignKey: { name: 'updatedBy', allowNull: true, field: 'updated_by' }, as: 'updatedByUser' });
|
|
28
|
+
AccountRuleLedgerMappingModel.belongsTo(UserModel, { foreignKey: { name: 'deletedBy', allowNull: true, field: 'deleted_by' }, as: 'deletedByUser' });
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
AccountRuleLedgerMappingModel.init({
|
|
33
|
+
id: {
|
|
34
|
+
type: sequelize_1.DataTypes.UUID,
|
|
35
|
+
defaultValue: sequelize_1.DataTypes.UUIDV4,
|
|
36
|
+
primaryKey: true,
|
|
37
|
+
allowNull: false,
|
|
38
|
+
},
|
|
39
|
+
instituteId: {
|
|
40
|
+
type: sequelize_1.DataTypes.UUID,
|
|
41
|
+
allowNull: true,
|
|
42
|
+
field: 'institute_id',
|
|
43
|
+
},
|
|
44
|
+
academicCalendarId: {
|
|
45
|
+
type: sequelize_1.DataTypes.UUID,
|
|
46
|
+
allowNull: true,
|
|
47
|
+
field: 'academic_calendar_id',
|
|
48
|
+
},
|
|
49
|
+
ruleId: {
|
|
50
|
+
type: sequelize_1.DataTypes.UUID,
|
|
51
|
+
allowNull: true,
|
|
52
|
+
field: 'rule_id',
|
|
53
|
+
},
|
|
54
|
+
sourceRefType: {
|
|
55
|
+
type: sequelize_1.DataTypes.STRING,
|
|
56
|
+
allowNull: true,
|
|
57
|
+
field: 'source_ref_type',
|
|
58
|
+
},
|
|
59
|
+
sourceRefId: {
|
|
60
|
+
type: sequelize_1.DataTypes.STRING,
|
|
61
|
+
allowNull: true,
|
|
62
|
+
field: 'source_ref_id',
|
|
63
|
+
},
|
|
64
|
+
debitLedgerId: {
|
|
65
|
+
type: sequelize_1.DataTypes.UUID,
|
|
66
|
+
allowNull: true,
|
|
67
|
+
field: 'debit_ledger_id',
|
|
68
|
+
},
|
|
69
|
+
creditLedgerId: {
|
|
70
|
+
type: sequelize_1.DataTypes.UUID,
|
|
71
|
+
allowNull: true,
|
|
72
|
+
field: 'credit_ledger_id',
|
|
73
|
+
},
|
|
74
|
+
taxTypeId: {
|
|
75
|
+
type: sequelize_1.DataTypes.UUID,
|
|
76
|
+
allowNull: true,
|
|
77
|
+
field: 'tax_type_id',
|
|
78
|
+
},
|
|
79
|
+
costCenterId: {
|
|
80
|
+
type: sequelize_1.DataTypes.UUID,
|
|
81
|
+
allowNull: true,
|
|
82
|
+
field: 'cost_center_id',
|
|
83
|
+
},
|
|
84
|
+
isDefault: {
|
|
85
|
+
type: sequelize_1.DataTypes.BOOLEAN,
|
|
86
|
+
allowNull: false,
|
|
87
|
+
defaultValue: false,
|
|
88
|
+
field: 'is_default',
|
|
89
|
+
},
|
|
90
|
+
}, {
|
|
91
|
+
modelName: 'AccountRuleLedgerMappingModel',
|
|
92
|
+
tableName: 'account_rule_ledger_mappings',
|
|
93
|
+
timestamps: true,
|
|
94
|
+
paranoid: true,
|
|
95
|
+
sequelize: index_1.sequelize,
|
|
96
|
+
});
|
|
97
|
+
exports.default = AccountRuleLedgerMappingModel;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { Model } from 'sequelize';
|
|
2
|
+
import { IAccountSyncJobModelAttributes } from '../../interfaces/accountSyncJobInterface';
|
|
3
|
+
import { TAccountSyncJobModelCreationAttributes } from '../../types/accountSyncJobType';
|
|
4
|
+
import { AccountIntegrationProvider, AccountSyncAction } from '../../constants/app';
|
|
5
|
+
declare class AccountSyncJobModel extends Model<IAccountSyncJobModelAttributes, TAccountSyncJobModelCreationAttributes> implements IAccountSyncJobModelAttributes {
|
|
6
|
+
id: string;
|
|
7
|
+
instituteId: string;
|
|
8
|
+
academicCalendarId: string;
|
|
9
|
+
connectionId: string;
|
|
10
|
+
provider: AccountIntegrationProvider;
|
|
11
|
+
objectType: string;
|
|
12
|
+
objectId: string;
|
|
13
|
+
action: AccountSyncAction;
|
|
14
|
+
payloadRef: any;
|
|
15
|
+
attempts?: number;
|
|
16
|
+
nextRetryAt?: Date;
|
|
17
|
+
createdBy?: string;
|
|
18
|
+
updatedBy?: string;
|
|
19
|
+
deletedBy?: string;
|
|
20
|
+
readonly createdAt: Date;
|
|
21
|
+
readonly updatedAt: Date;
|
|
22
|
+
readonly deletedAt?: Date;
|
|
23
|
+
static associate(models: any): void;
|
|
24
|
+
}
|
|
25
|
+
export default AccountSyncJobModel;
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const sequelize_1 = require("sequelize");
|
|
4
|
+
const index_1 = require("./index");
|
|
5
|
+
class AccountSyncJobModel extends sequelize_1.Model {
|
|
6
|
+
static associate(models) {
|
|
7
|
+
const { InstituteModel, AcademicCalendarModel, AccountIntegrationConnectionModel, UserModel, } = models;
|
|
8
|
+
if (InstituteModel) {
|
|
9
|
+
AccountSyncJobModel.belongsTo(InstituteModel, { foreignKey: 'instituteId', as: 'institute' });
|
|
10
|
+
}
|
|
11
|
+
if (AcademicCalendarModel) {
|
|
12
|
+
AccountSyncJobModel.belongsTo(AcademicCalendarModel, { foreignKey: 'academicCalendarId', as: 'academicCalendar' });
|
|
13
|
+
}
|
|
14
|
+
if (AccountIntegrationConnectionModel) {
|
|
15
|
+
AccountSyncJobModel.belongsTo(AccountIntegrationConnectionModel, { foreignKey: 'connectionId', as: 'connection' });
|
|
16
|
+
}
|
|
17
|
+
if (UserModel) {
|
|
18
|
+
AccountSyncJobModel.belongsTo(UserModel, { foreignKey: { name: 'createdBy', allowNull: true, field: 'created_by' }, as: 'createdByUser' });
|
|
19
|
+
AccountSyncJobModel.belongsTo(UserModel, { foreignKey: { name: 'updatedBy', allowNull: true, field: 'updated_by' }, as: 'updatedByUser' });
|
|
20
|
+
AccountSyncJobModel.belongsTo(UserModel, { foreignKey: { name: 'deletedBy', allowNull: true, field: 'deleted_by' }, as: 'deletedByUser' });
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
AccountSyncJobModel.init({
|
|
25
|
+
id: {
|
|
26
|
+
type: sequelize_1.DataTypes.UUID,
|
|
27
|
+
defaultValue: sequelize_1.DataTypes.UUIDV4,
|
|
28
|
+
primaryKey: true,
|
|
29
|
+
allowNull: false,
|
|
30
|
+
},
|
|
31
|
+
instituteId: {
|
|
32
|
+
type: sequelize_1.DataTypes.UUID,
|
|
33
|
+
allowNull: true,
|
|
34
|
+
field: 'institute_id',
|
|
35
|
+
},
|
|
36
|
+
academicCalendarId: {
|
|
37
|
+
type: sequelize_1.DataTypes.UUID,
|
|
38
|
+
allowNull: true,
|
|
39
|
+
field: 'academic_calendar_id',
|
|
40
|
+
},
|
|
41
|
+
connectionId: {
|
|
42
|
+
type: sequelize_1.DataTypes.UUID,
|
|
43
|
+
allowNull: true,
|
|
44
|
+
field: 'connection_id',
|
|
45
|
+
},
|
|
46
|
+
provider: {
|
|
47
|
+
type: sequelize_1.DataTypes.STRING,
|
|
48
|
+
allowNull: true,
|
|
49
|
+
field: 'provider',
|
|
50
|
+
},
|
|
51
|
+
objectType: {
|
|
52
|
+
type: sequelize_1.DataTypes.STRING,
|
|
53
|
+
allowNull: true,
|
|
54
|
+
field: 'object_type',
|
|
55
|
+
},
|
|
56
|
+
objectId: {
|
|
57
|
+
type: sequelize_1.DataTypes.UUID,
|
|
58
|
+
allowNull: true,
|
|
59
|
+
field: 'object_id',
|
|
60
|
+
},
|
|
61
|
+
action: {
|
|
62
|
+
type: sequelize_1.DataTypes.STRING,
|
|
63
|
+
allowNull: true,
|
|
64
|
+
field: 'action',
|
|
65
|
+
},
|
|
66
|
+
payloadRef: {
|
|
67
|
+
type: sequelize_1.DataTypes.JSONB,
|
|
68
|
+
allowNull: true,
|
|
69
|
+
field: 'payload_ref',
|
|
70
|
+
},
|
|
71
|
+
attempts: {
|
|
72
|
+
type: sequelize_1.DataTypes.INTEGER,
|
|
73
|
+
allowNull: true,
|
|
74
|
+
field: 'attempts',
|
|
75
|
+
defaultValue: 0,
|
|
76
|
+
},
|
|
77
|
+
nextRetryAt: {
|
|
78
|
+
type: sequelize_1.DataTypes.DATE,
|
|
79
|
+
allowNull: true,
|
|
80
|
+
field: 'next_retry_at',
|
|
81
|
+
},
|
|
82
|
+
}, {
|
|
83
|
+
sequelize: index_1.sequelize,
|
|
84
|
+
modelName: 'AccountSyncJobModel',
|
|
85
|
+
tableName: 'account_sync_jobs',
|
|
86
|
+
timestamps: true,
|
|
87
|
+
paranoid: true,
|
|
88
|
+
});
|
|
89
|
+
exports.default = AccountSyncJobModel;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { Model } from 'sequelize';
|
|
2
|
+
import { IAccountSyncLogModelAttributes } from '../../interfaces/accountSyncLogInterface';
|
|
3
|
+
import { TAccountSyncLogModelCreationAttributes } from '../../types/accountSyncLogType';
|
|
4
|
+
import { AccountSyncStatus } from '../../constants/app';
|
|
5
|
+
declare class AccountSyncLogModel extends Model<IAccountSyncLogModelAttributes, TAccountSyncLogModelCreationAttributes> implements IAccountSyncLogModelAttributes {
|
|
6
|
+
id: string;
|
|
7
|
+
instituteId: string;
|
|
8
|
+
academicCalendarId: string;
|
|
9
|
+
syncJobId: string;
|
|
10
|
+
status: AccountSyncStatus;
|
|
11
|
+
requestRef?: any;
|
|
12
|
+
responseRef?: any;
|
|
13
|
+
message?: string;
|
|
14
|
+
attemptNo: number;
|
|
15
|
+
createdBy?: string;
|
|
16
|
+
updatedBy?: string;
|
|
17
|
+
deletedBy?: string;
|
|
18
|
+
readonly createdAt: Date;
|
|
19
|
+
readonly updatedAt: Date;
|
|
20
|
+
readonly deletedAt?: Date;
|
|
21
|
+
static associate(models: any): void;
|
|
22
|
+
}
|
|
23
|
+
export default AccountSyncLogModel;
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const sequelize_1 = require("sequelize");
|
|
4
|
+
const index_1 = require("./index");
|
|
5
|
+
class AccountSyncLogModel extends sequelize_1.Model {
|
|
6
|
+
static associate(models) {
|
|
7
|
+
const { InstituteModel, AcademicCalendarModel, AccountSyncJobModel, UserModel, } = models;
|
|
8
|
+
if (InstituteModel) {
|
|
9
|
+
AccountSyncLogModel.belongsTo(InstituteModel, { foreignKey: 'instituteId', as: 'institute' });
|
|
10
|
+
}
|
|
11
|
+
if (AcademicCalendarModel) {
|
|
12
|
+
AccountSyncLogModel.belongsTo(AcademicCalendarModel, { foreignKey: 'academicCalendarId', as: 'academicCalendar' });
|
|
13
|
+
}
|
|
14
|
+
if (AccountSyncJobModel) {
|
|
15
|
+
AccountSyncLogModel.belongsTo(AccountSyncJobModel, { foreignKey: 'syncJobId', as: 'syncJob' });
|
|
16
|
+
}
|
|
17
|
+
if (UserModel) {
|
|
18
|
+
AccountSyncLogModel.belongsTo(UserModel, { foreignKey: { name: 'createdBy', allowNull: true, field: 'created_by' }, as: 'createdByUser' });
|
|
19
|
+
AccountSyncLogModel.belongsTo(UserModel, { foreignKey: { name: 'updatedBy', allowNull: true, field: 'updated_by' }, as: 'updatedByUser' });
|
|
20
|
+
AccountSyncLogModel.belongsTo(UserModel, { foreignKey: { name: 'deletedBy', allowNull: true, field: 'deleted_by' }, as: 'deletedByUser' });
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
AccountSyncLogModel.init({
|
|
25
|
+
id: {
|
|
26
|
+
type: sequelize_1.DataTypes.UUID,
|
|
27
|
+
defaultValue: sequelize_1.DataTypes.UUIDV4,
|
|
28
|
+
primaryKey: true,
|
|
29
|
+
allowNull: false,
|
|
30
|
+
},
|
|
31
|
+
instituteId: {
|
|
32
|
+
type: sequelize_1.DataTypes.UUID,
|
|
33
|
+
allowNull: true,
|
|
34
|
+
field: 'institute_id',
|
|
35
|
+
},
|
|
36
|
+
academicCalendarId: {
|
|
37
|
+
type: sequelize_1.DataTypes.UUID,
|
|
38
|
+
allowNull: true,
|
|
39
|
+
field: 'academic_calendar_id',
|
|
40
|
+
},
|
|
41
|
+
syncJobId: {
|
|
42
|
+
type: sequelize_1.DataTypes.UUID,
|
|
43
|
+
allowNull: true,
|
|
44
|
+
field: 'sync_job_id',
|
|
45
|
+
},
|
|
46
|
+
status: {
|
|
47
|
+
type: sequelize_1.DataTypes.STRING,
|
|
48
|
+
allowNull: true,
|
|
49
|
+
field: 'status',
|
|
50
|
+
},
|
|
51
|
+
requestRef: {
|
|
52
|
+
type: sequelize_1.DataTypes.JSONB,
|
|
53
|
+
allowNull: true,
|
|
54
|
+
field: 'request_ref',
|
|
55
|
+
},
|
|
56
|
+
responseRef: {
|
|
57
|
+
type: sequelize_1.DataTypes.JSONB,
|
|
58
|
+
allowNull: true,
|
|
59
|
+
field: 'response_ref',
|
|
60
|
+
},
|
|
61
|
+
message: {
|
|
62
|
+
type: sequelize_1.DataTypes.TEXT,
|
|
63
|
+
allowNull: true,
|
|
64
|
+
field: 'message',
|
|
65
|
+
},
|
|
66
|
+
attemptNo: {
|
|
67
|
+
type: sequelize_1.DataTypes.INTEGER,
|
|
68
|
+
allowNull: true,
|
|
69
|
+
field: 'attempt_no',
|
|
70
|
+
},
|
|
71
|
+
}, {
|
|
72
|
+
sequelize: index_1.sequelize,
|
|
73
|
+
modelName: 'AccountSyncLogModel',
|
|
74
|
+
tableName: 'account_sync_logs',
|
|
75
|
+
timestamps: true,
|
|
76
|
+
paranoid: true,
|
|
77
|
+
});
|
|
78
|
+
exports.default = AccountSyncLogModel;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { Model } from 'sequelize';
|
|
2
|
+
import { IAccountTaxEntryModelAttributes } from '../../interfaces/accountTaxEntryInterface';
|
|
3
|
+
import { TAccountTaxEntryModelCreationAttributes } from '../../types/accountTaxEntryType';
|
|
4
|
+
declare class AccountTaxEntryModel extends Model<IAccountTaxEntryModelAttributes, TAccountTaxEntryModelCreationAttributes> implements IAccountTaxEntryModelAttributes {
|
|
5
|
+
id: string;
|
|
6
|
+
instituteId: string;
|
|
7
|
+
academicCalendarId: string;
|
|
8
|
+
taxTypeId: string;
|
|
9
|
+
journalLineId: string;
|
|
10
|
+
taxAmount: number;
|
|
11
|
+
baseAmount: number;
|
|
12
|
+
createdBy?: string;
|
|
13
|
+
updatedBy?: string;
|
|
14
|
+
deletedBy?: string;
|
|
15
|
+
readonly createdAt: Date;
|
|
16
|
+
readonly updatedAt: Date;
|
|
17
|
+
readonly deletedAt?: Date;
|
|
18
|
+
static associate(models: any): void;
|
|
19
|
+
}
|
|
20
|
+
export default AccountTaxEntryModel;
|