@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.
Files changed (77) hide show
  1. package/dist/constants/app.d.ts +169 -0
  2. package/dist/constants/app.js +196 -2
  3. package/dist/constants/errorMessages.d.ts +48 -0
  4. package/dist/constants/errorMessages.js +57 -1
  5. package/dist/constants/successMessages.d.ts +48 -0
  6. package/dist/constants/successMessages.js +57 -1
  7. package/dist/db/psql/migrations/20260626000001-create_account_financial_years.d.ts +2 -0
  8. package/dist/db/psql/migrations/20260626000001-create_account_financial_years.js +68 -0
  9. package/dist/db/psql/migrations/20260626000002-create_account_period_locks.d.ts +2 -0
  10. package/dist/db/psql/migrations/20260626000002-create_account_period_locks.js +71 -0
  11. package/dist/db/psql/migrations/20260626000003-create_account_number_sequences.d.ts +2 -0
  12. package/dist/db/psql/migrations/20260626000003-create_account_number_sequences.js +66 -0
  13. package/dist/db/psql/migrations/20260626000004-create_account_groups.d.ts +2 -0
  14. package/dist/db/psql/migrations/20260626000004-create_account_groups.js +72 -0
  15. package/dist/db/psql/migrations/20260626000005-create_account_ledgers.d.ts +2 -0
  16. package/dist/db/psql/migrations/20260626000005-create_account_ledgers.js +84 -0
  17. package/dist/db/psql/migrations/20260626000006-create_account_ledger_openings.d.ts +2 -0
  18. package/dist/db/psql/migrations/20260626000006-create_account_ledger_openings.js +66 -0
  19. package/dist/db/psql/migrations/20260626000007-create_account_cost_centers.d.ts +2 -0
  20. package/dist/db/psql/migrations/20260626000007-create_account_cost_centers.js +73 -0
  21. package/dist/db/psql/migrations/20260626000008-create_account_voucher_types.d.ts +2 -0
  22. package/dist/db/psql/migrations/20260626000008-create_account_voucher_types.js +70 -0
  23. package/dist/interfaces/accountCostCenterInterface.d.ts +13 -0
  24. package/dist/interfaces/accountCostCenterInterface.js +2 -0
  25. package/dist/interfaces/accountFinancialYearInterface.d.ts +13 -0
  26. package/dist/interfaces/accountFinancialYearInterface.js +2 -0
  27. package/dist/interfaces/accountGroupInterface.d.ts +13 -0
  28. package/dist/interfaces/accountGroupInterface.js +2 -0
  29. package/dist/interfaces/accountLedgerInterface.d.ts +16 -0
  30. package/dist/interfaces/accountLedgerInterface.js +2 -0
  31. package/dist/interfaces/accountLedgerOpeningInterface.d.ts +12 -0
  32. package/dist/interfaces/accountLedgerOpeningInterface.js +2 -0
  33. package/dist/interfaces/accountNumberSequenceInterface.d.ts +11 -0
  34. package/dist/interfaces/accountNumberSequenceInterface.js +2 -0
  35. package/dist/interfaces/accountPeriodLockInterface.d.ts +11 -0
  36. package/dist/interfaces/accountPeriodLockInterface.js +2 -0
  37. package/dist/interfaces/accountVoucherTypeInterface.d.ts +12 -0
  38. package/dist/interfaces/accountVoucherTypeInterface.js +2 -0
  39. package/dist/interfaces/index.d.ts +10 -0
  40. package/dist/interfaces/index.js +10 -0
  41. package/dist/models/psql/accountCostCenterModel.d.ts +23 -0
  42. package/dist/models/psql/accountCostCenterModel.js +86 -0
  43. package/dist/models/psql/accountFinancialYearModel.d.ts +23 -0
  44. package/dist/models/psql/accountFinancialYearModel.js +81 -0
  45. package/dist/models/psql/accountGroupModel.d.ts +23 -0
  46. package/dist/models/psql/accountGroupModel.js +83 -0
  47. package/dist/models/psql/accountLedgerModel.d.ts +26 -0
  48. package/dist/models/psql/accountLedgerModel.js +98 -0
  49. package/dist/models/psql/accountLedgerOpeningModel.d.ts +22 -0
  50. package/dist/models/psql/accountLedgerOpeningModel.js +77 -0
  51. package/dist/models/psql/accountNumberSequenceModel.d.ts +21 -0
  52. package/dist/models/psql/accountNumberSequenceModel.js +74 -0
  53. package/dist/models/psql/accountPeriodLockModel.d.ts +21 -0
  54. package/dist/models/psql/accountPeriodLockModel.js +73 -0
  55. package/dist/models/psql/accountVoucherTypeModel.d.ts +22 -0
  56. package/dist/models/psql/accountVoucherTypeModel.js +69 -0
  57. package/dist/models/psql/index.d.ts +8 -0
  58. package/dist/models/psql/index.js +17 -1
  59. package/dist/types/accountCostCenterType.d.ts +3 -0
  60. package/dist/types/accountCostCenterType.js +2 -0
  61. package/dist/types/accountFinancialYearType.d.ts +3 -0
  62. package/dist/types/accountFinancialYearType.js +2 -0
  63. package/dist/types/accountGroupType.d.ts +3 -0
  64. package/dist/types/accountGroupType.js +2 -0
  65. package/dist/types/accountLedgerOpeningType.d.ts +3 -0
  66. package/dist/types/accountLedgerOpeningType.js +2 -0
  67. package/dist/types/accountLedgerType.d.ts +3 -0
  68. package/dist/types/accountLedgerType.js +2 -0
  69. package/dist/types/accountNumberSequenceType.d.ts +3 -0
  70. package/dist/types/accountNumberSequenceType.js +2 -0
  71. package/dist/types/accountPeriodLockType.d.ts +3 -0
  72. package/dist/types/accountPeriodLockType.js +2 -0
  73. package/dist/types/accountVoucherTypeType.d.ts +3 -0
  74. package/dist/types/accountVoucherTypeType.js +2 -0
  75. package/dist/types/index.d.ts +10 -0
  76. package/dist/types/index.js +10 -0
  77. package/package.json +1 -1
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kipicore/dbcore",
3
- "version": "1.1.613",
3
+ "version": "1.1.615",
4
4
  "description": "Reusable DB core package with Postgres, MongoDB, models, services, interfaces, and types",
5
5
  "types": "dist/index.d.ts",
6
6
  "main": "dist/index.js",