@kipicore/dbcore 1.1.613 → 1.1.615
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 +169 -0
- package/dist/constants/app.js +196 -2
- package/dist/constants/errorMessages.d.ts +48 -0
- package/dist/constants/errorMessages.js +57 -1
- package/dist/constants/successMessages.d.ts +48 -0
- package/dist/constants/successMessages.js +57 -1
- package/dist/db/psql/migrations/20260626000001-create_account_financial_years.d.ts +2 -0
- package/dist/db/psql/migrations/20260626000001-create_account_financial_years.js +68 -0
- package/dist/db/psql/migrations/20260626000002-create_account_period_locks.d.ts +2 -0
- package/dist/db/psql/migrations/20260626000002-create_account_period_locks.js +71 -0
- package/dist/db/psql/migrations/20260626000003-create_account_number_sequences.d.ts +2 -0
- package/dist/db/psql/migrations/20260626000003-create_account_number_sequences.js +66 -0
- package/dist/db/psql/migrations/20260626000004-create_account_groups.d.ts +2 -0
- package/dist/db/psql/migrations/20260626000004-create_account_groups.js +72 -0
- package/dist/db/psql/migrations/20260626000005-create_account_ledgers.d.ts +2 -0
- package/dist/db/psql/migrations/20260626000005-create_account_ledgers.js +84 -0
- package/dist/db/psql/migrations/20260626000006-create_account_ledger_openings.d.ts +2 -0
- package/dist/db/psql/migrations/20260626000006-create_account_ledger_openings.js +66 -0
- package/dist/db/psql/migrations/20260626000007-create_account_cost_centers.d.ts +2 -0
- package/dist/db/psql/migrations/20260626000007-create_account_cost_centers.js +73 -0
- package/dist/db/psql/migrations/20260626000008-create_account_voucher_types.d.ts +2 -0
- package/dist/db/psql/migrations/20260626000008-create_account_voucher_types.js +70 -0
- package/dist/interfaces/accountCostCenterInterface.d.ts +13 -0
- package/dist/interfaces/accountCostCenterInterface.js +2 -0
- package/dist/interfaces/accountFinancialYearInterface.d.ts +13 -0
- package/dist/interfaces/accountFinancialYearInterface.js +2 -0
- package/dist/interfaces/accountGroupInterface.d.ts +13 -0
- package/dist/interfaces/accountGroupInterface.js +2 -0
- package/dist/interfaces/accountLedgerInterface.d.ts +16 -0
- package/dist/interfaces/accountLedgerInterface.js +2 -0
- package/dist/interfaces/accountLedgerOpeningInterface.d.ts +12 -0
- package/dist/interfaces/accountLedgerOpeningInterface.js +2 -0
- package/dist/interfaces/accountNumberSequenceInterface.d.ts +11 -0
- package/dist/interfaces/accountNumberSequenceInterface.js +2 -0
- package/dist/interfaces/accountPeriodLockInterface.d.ts +11 -0
- package/dist/interfaces/accountPeriodLockInterface.js +2 -0
- package/dist/interfaces/accountVoucherTypeInterface.d.ts +12 -0
- package/dist/interfaces/accountVoucherTypeInterface.js +2 -0
- package/dist/interfaces/index.d.ts +10 -0
- package/dist/interfaces/index.js +10 -0
- package/dist/models/psql/accountCostCenterModel.d.ts +23 -0
- package/dist/models/psql/accountCostCenterModel.js +86 -0
- package/dist/models/psql/accountFinancialYearModel.d.ts +23 -0
- package/dist/models/psql/accountFinancialYearModel.js +81 -0
- package/dist/models/psql/accountGroupModel.d.ts +23 -0
- package/dist/models/psql/accountGroupModel.js +83 -0
- package/dist/models/psql/accountLedgerModel.d.ts +26 -0
- package/dist/models/psql/accountLedgerModel.js +98 -0
- package/dist/models/psql/accountLedgerOpeningModel.d.ts +22 -0
- package/dist/models/psql/accountLedgerOpeningModel.js +77 -0
- package/dist/models/psql/accountNumberSequenceModel.d.ts +21 -0
- package/dist/models/psql/accountNumberSequenceModel.js +74 -0
- package/dist/models/psql/accountPeriodLockModel.d.ts +21 -0
- package/dist/models/psql/accountPeriodLockModel.js +73 -0
- package/dist/models/psql/accountVoucherTypeModel.d.ts +22 -0
- package/dist/models/psql/accountVoucherTypeModel.js +69 -0
- package/dist/models/psql/index.d.ts +8 -0
- package/dist/models/psql/index.js +17 -1
- package/dist/types/accountCostCenterType.d.ts +3 -0
- package/dist/types/accountCostCenterType.js +2 -0
- package/dist/types/accountFinancialYearType.d.ts +3 -0
- package/dist/types/accountFinancialYearType.js +2 -0
- package/dist/types/accountGroupType.d.ts +3 -0
- package/dist/types/accountGroupType.js +2 -0
- package/dist/types/accountLedgerOpeningType.d.ts +3 -0
- package/dist/types/accountLedgerOpeningType.js +2 -0
- package/dist/types/accountLedgerType.d.ts +3 -0
- package/dist/types/accountLedgerType.js +2 -0
- package/dist/types/accountNumberSequenceType.d.ts +3 -0
- package/dist/types/accountNumberSequenceType.js +2 -0
- package/dist/types/accountPeriodLockType.d.ts +3 -0
- package/dist/types/accountPeriodLockType.js +2 -0
- package/dist/types/accountVoucherTypeType.d.ts +3 -0
- package/dist/types/accountVoucherTypeType.js +2 -0
- package/dist/types/index.d.ts +10 -0
- package/dist/types/index.js +10 -0
- package/package.json +1 -1
package/dist/types/index.js
CHANGED
|
@@ -15,6 +15,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./academicCalendarType"), exports);
|
|
18
|
+
__exportStar(require("./accountFinancialYearType"), exports);
|
|
19
|
+
__exportStar(require("./accountPeriodLockType"), exports);
|
|
18
20
|
__exportStar(require("./accountHasReceiptDetailsType"), exports);
|
|
19
21
|
__exportStar(require("./announcementType"), exports);
|
|
20
22
|
__exportStar(require("./approveRequestType"), exports);
|
|
@@ -246,3 +248,11 @@ __exportStar(require("./rmsResourceDetailsType"), exports);
|
|
|
246
248
|
__exportStar(require("./userFinalResultType"), exports);
|
|
247
249
|
__exportStar(require("./refundType"), exports);
|
|
248
250
|
__exportStar(require("./kipiverseContactFormType"), exports);
|
|
251
|
+
__exportStar(require("./accountFinancialYearType"), exports);
|
|
252
|
+
__exportStar(require("./accountPeriodLockType"), exports);
|
|
253
|
+
__exportStar(require("./accountNumberSequenceType"), exports);
|
|
254
|
+
__exportStar(require("./accountGroupType"), exports);
|
|
255
|
+
__exportStar(require("./accountLedgerType"), exports);
|
|
256
|
+
__exportStar(require("./accountLedgerOpeningType"), exports);
|
|
257
|
+
__exportStar(require("./accountCostCenterType"), exports);
|
|
258
|
+
__exportStar(require("./accountVoucherTypeType"), exports);
|
package/package.json
CHANGED