@ccci/micro-server 1.0.196 → 1.0.197

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 (2) hide show
  1. package/dist/index.js +3 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -302403,15 +302403,15 @@ class BaseModel extends Model {
302403
302403
  return defaultAttributes ? {
302404
302404
  createdById: {
302405
302405
  type: new DataTypes.INTEGER,
302406
- comment: "UserId of the creator"
302406
+ comment: "References the user who initially created the record; used for audit and traceability."
302407
302407
  },
302408
302408
  updatedById: {
302409
302409
  type: new DataTypes.INTEGER,
302410
- comment: "UserId of the modifier"
302410
+ comment: "References the user who last updated the record; used for audit and traceability."
302411
302411
  },
302412
302412
  isActive: {
302413
302413
  type: new DataTypes.BOOLEAN,
302414
- comment: "Record active indicator",
302414
+ comment: "Indicates whether the record is currently active and relevant; inactive records are archived but retained for reference.",
302415
302415
  allowNull: false,
302416
302416
  defaultValue: true
302417
302417
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ccci/micro-server",
3
- "version": "1.0.196",
3
+ "version": "1.0.197",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",