@kipicore/dbcore 1.1.574 → 1.1.575
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 +117 -0
- package/dist/constants/app.js +134 -1
- package/dist/constants/errorMessages.d.ts +10 -0
- package/dist/constants/errorMessages.js +12 -1
- package/dist/constants/successMessages.d.ts +12 -0
- package/dist/constants/successMessages.js +14 -1
- package/dist/db/psql/migrations/20260615045636-add_rms_models.d.ts +2 -0
- package/dist/db/psql/migrations/20260615045636-add_rms_models.js +276 -0
- package/dist/db/psql/migrations/20260615083628-add_storage_and_asset_transactions.d.ts +2 -0
- package/dist/db/psql/migrations/20260615083628-add_storage_and_asset_transactions.js +60 -0
- package/dist/interfaces/index.d.ts +18 -0
- package/dist/interfaces/index.js +18 -0
- package/dist/interfaces/rmsAssetInterface.d.ts +15 -0
- package/dist/interfaces/rmsAssetInterface.js +2 -0
- package/dist/interfaces/rmsAssetTransactionInterface.d.ts +16 -0
- package/dist/interfaces/rmsAssetTransactionInterface.js +2 -0
- package/dist/interfaces/rmsAuditLogInterface.d.ts +17 -0
- package/dist/interfaces/rmsAuditLogInterface.js +2 -0
- package/dist/interfaces/rmsDepartmentInterface.d.ts +10 -0
- package/dist/interfaces/rmsDepartmentInterface.js +2 -0
- package/dist/interfaces/rmsGrnInterface.d.ts +14 -0
- package/dist/interfaces/rmsGrnInterface.js +2 -0
- package/dist/interfaces/rmsGrnItemInterface.d.ts +13 -0
- package/dist/interfaces/rmsGrnItemInterface.js +2 -0
- package/dist/interfaces/rmsLocationInterface.d.ts +12 -0
- package/dist/interfaces/rmsLocationInterface.js +2 -0
- package/dist/interfaces/rmsPurchaseOrderInterface.d.ts +17 -0
- package/dist/interfaces/rmsPurchaseOrderInterface.js +2 -0
- package/dist/interfaces/rmsPurchaseOrderItemInterface.d.ts +13 -0
- package/dist/interfaces/rmsPurchaseOrderItemInterface.js +2 -0
- package/dist/interfaces/rmsPurchaseRequestInterface.d.ts +14 -0
- package/dist/interfaces/rmsPurchaseRequestInterface.js +2 -0
- package/dist/interfaces/rmsPurchaseRequestItemInterface.d.ts +13 -0
- package/dist/interfaces/rmsPurchaseRequestItemInterface.js +2 -0
- package/dist/interfaces/rmsRequestApprovalInterface.d.ts +13 -0
- package/dist/interfaces/rmsRequestApprovalInterface.js +2 -0
- package/dist/interfaces/rmsResourceDetailsInterface.d.ts +19 -0
- package/dist/interfaces/rmsResourceDetailsInterface.js +2 -0
- package/dist/interfaces/rmsResourceInterface.d.ts +23 -0
- package/dist/interfaces/rmsResourceInterface.js +2 -0
- package/dist/interfaces/rmsStockInterface.d.ts +17 -0
- package/dist/interfaces/rmsStockInterface.js +2 -0
- package/dist/interfaces/rmsStockTransactionInterface.d.ts +18 -0
- package/dist/interfaces/rmsStockTransactionInterface.js +2 -0
- package/dist/interfaces/rmsStorageInterface.d.ts +17 -0
- package/dist/interfaces/rmsStorageInterface.js +2 -0
- package/dist/interfaces/rmsVendorDocumentInterface.d.ts +11 -0
- package/dist/interfaces/rmsVendorDocumentInterface.js +2 -0
- package/dist/interfaces/rmsVendorInterface.d.ts +16 -0
- package/dist/interfaces/rmsVendorInterface.js +2 -0
- package/dist/models/mongodb/index.d.ts +2 -0
- package/dist/models/mongodb/index.js +5 -1
- package/dist/models/mongodb/rmsAuditLogModel.d.ts +4 -0
- package/dist/models/mongodb/rmsAuditLogModel.js +99 -0
- package/dist/models/mongodb/rmsResourceDetailsModel.d.ts +8 -0
- package/dist/models/mongodb/rmsResourceDetailsModel.js +57 -0
- package/dist/models/psql/index.d.ts +18 -0
- package/dist/models/psql/index.js +39 -1
- package/dist/models/psql/rmsAssetModel.d.ts +25 -0
- package/dist/models/psql/rmsAssetModel.js +80 -0
- package/dist/models/psql/rmsAssetTransactionModel.d.ts +26 -0
- package/dist/models/psql/rmsAssetTransactionModel.js +89 -0
- package/dist/models/psql/rmsDepartmentModel.d.ts +20 -0
- package/dist/models/psql/rmsDepartmentModel.js +67 -0
- package/dist/models/psql/rmsGrnItemModel.d.ts +23 -0
- package/dist/models/psql/rmsGrnItemModel.js +75 -0
- package/dist/models/psql/rmsGrnModel.d.ts +24 -0
- package/dist/models/psql/rmsGrnModel.js +74 -0
- package/dist/models/psql/rmsLocationModel.d.ts +22 -0
- package/dist/models/psql/rmsLocationModel.js +79 -0
- package/dist/models/psql/rmsPurchaseOrderItemModel.d.ts +23 -0
- package/dist/models/psql/rmsPurchaseOrderItemModel.js +89 -0
- package/dist/models/psql/rmsPurchaseOrderModel.d.ts +27 -0
- package/dist/models/psql/rmsPurchaseOrderModel.js +108 -0
- package/dist/models/psql/rmsPurchaseRequestItemModel.d.ts +23 -0
- package/dist/models/psql/rmsPurchaseRequestItemModel.js +86 -0
- package/dist/models/psql/rmsPurchaseRequestModel.d.ts +24 -0
- package/dist/models/psql/rmsPurchaseRequestModel.js +96 -0
- package/dist/models/psql/rmsRequestApprovalModel.d.ts +23 -0
- package/dist/models/psql/rmsRequestApprovalModel.js +79 -0
- package/dist/models/psql/rmsResourceModel.d.ts +33 -0
- package/dist/models/psql/rmsResourceModel.js +147 -0
- package/dist/models/psql/rmsStockModel.d.ts +27 -0
- package/dist/models/psql/rmsStockModel.js +113 -0
- package/dist/models/psql/rmsStockTransactionModel.d.ts +28 -0
- package/dist/models/psql/rmsStockTransactionModel.js +113 -0
- package/dist/models/psql/rmsStorageRackModel.d.ts +20 -0
- package/dist/models/psql/rmsStorageRackModel.js +57 -0
- package/dist/models/psql/rmsStorageSlotModel.d.ts +19 -0
- package/dist/models/psql/rmsStorageSlotModel.js +53 -0
- package/dist/models/psql/rmsVendorDocumentModel.d.ts +21 -0
- package/dist/models/psql/rmsVendorDocumentModel.js +80 -0
- package/dist/models/psql/rmsVendorModel.d.ts +27 -0
- package/dist/models/psql/rmsVendorModel.js +95 -0
- package/dist/types/index.d.ts +19 -0
- package/dist/types/index.js +19 -0
- package/dist/types/rmsAssetTransactionType.d.ts +3 -0
- package/dist/types/rmsAssetTransactionType.js +2 -0
- package/dist/types/rmsAssetType.d.ts +3 -0
- package/dist/types/rmsAssetType.js +2 -0
- package/dist/types/rmsAuditLogType.d.ts +3 -0
- package/dist/types/rmsAuditLogType.js +2 -0
- package/dist/types/rmsDepartmentType.d.ts +3 -0
- package/dist/types/rmsDepartmentType.js +2 -0
- package/dist/types/rmsGrnItemType.d.ts +3 -0
- package/dist/types/rmsGrnItemType.js +2 -0
- package/dist/types/rmsGrnType.d.ts +3 -0
- package/dist/types/rmsGrnType.js +2 -0
- package/dist/types/rmsLocationType.d.ts +3 -0
- package/dist/types/rmsLocationType.js +2 -0
- package/dist/types/rmsPurchaseOrderItemType.d.ts +3 -0
- package/dist/types/rmsPurchaseOrderItemType.js +2 -0
- package/dist/types/rmsPurchaseOrderType.d.ts +3 -0
- package/dist/types/rmsPurchaseOrderType.js +2 -0
- package/dist/types/rmsPurchaseRequestItemType.d.ts +3 -0
- package/dist/types/rmsPurchaseRequestItemType.js +2 -0
- package/dist/types/rmsPurchaseRequestType.d.ts +3 -0
- package/dist/types/rmsPurchaseRequestType.js +2 -0
- package/dist/types/rmsRequestApprovalType.d.ts +3 -0
- package/dist/types/rmsRequestApprovalType.js +2 -0
- package/dist/types/rmsResourceDetailsType.d.ts +2 -0
- package/dist/types/rmsResourceDetailsType.js +2 -0
- package/dist/types/rmsResourceType.d.ts +3 -0
- package/dist/types/rmsResourceType.js +2 -0
- package/dist/types/rmsStockTransactionType.d.ts +3 -0
- package/dist/types/rmsStockTransactionType.js +2 -0
- package/dist/types/rmsStockType.d.ts +3 -0
- package/dist/types/rmsStockType.js +2 -0
- package/dist/types/rmsStorageType.d.ts +4 -0
- package/dist/types/rmsStorageType.js +2 -0
- package/dist/types/rmsVendorDocumentType.d.ts +3 -0
- package/dist/types/rmsVendorDocumentType.js +2 -0
- package/dist/types/rmsVendorType.d.ts +3 -0
- package/dist/types/rmsVendorType.js +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Optional } from 'sequelize';
|
|
2
|
+
import { IRmsStorageRackAttributes, IRmsStorageSlotAttributes } from '../interfaces/rmsStorageInterface';
|
|
3
|
+
export type TRmsStorageRackCreationAttributes = Optional<IRmsStorageRackAttributes, 'id'>;
|
|
4
|
+
export type TRmsStorageSlotCreationAttributes = Optional<IRmsStorageSlotAttributes, 'id'>;
|
package/package.json
CHANGED