@valentine-efagene/qshelter-common 2.0.118 → 2.0.119

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@valentine-efagene/qshelter-common",
3
- "version": "2.0.118",
3
+ "version": "2.0.119",
4
4
  "description": "Shared database schemas and utilities for QShelter services",
5
5
  "main": "dist/src/index.js",
6
6
  "types": "dist/src/index.d.ts",
@@ -1119,13 +1119,13 @@ model DocumentationPlanStep {
1119
1119
  // =========================================================================
1120
1120
  // GATE STEP CONFIGURATION (only applicable when stepType = GATE)
1121
1121
  // =========================================================================
1122
- gateActor GateActor? // Who must perform the action
1123
- gateAction GateAction? // What action is required
1124
- gateRoleId String? // If gateActor = SPECIFIC_ROLE, which role
1125
- gateInstructions String? @db.Text // Instructions shown to actor
1126
- allowReject Boolean @default(true) // Can the actor reject?
1127
- rejectBehavior GateRejectBehavior? // What happens on reject
1128
- requiresComment Boolean @default(false) // Must actor provide a comment?
1122
+ gateActor GateActor? // Who must perform the action
1123
+ gateAction GateAction? // What action is required
1124
+ gateRoleId String? // If gateActor = SPECIFIC_ROLE, which role
1125
+ gateInstructions String? @db.Text // Instructions shown to actor
1126
+ allowReject Boolean @default(true) // Can the actor reject?
1127
+ rejectBehavior GateRejectBehavior? // What happens on reject
1128
+ requiresComment Boolean @default(false) // Must actor provide a comment?
1129
1129
 
1130
1130
  createdAt DateTime @default(now())
1131
1131
  updatedAt DateTime @updatedAt
@@ -2106,20 +2106,20 @@ model DocumentationStep {
2106
2106
  // =========================================================================
2107
2107
  // GATE STEP CONFIGURATION (only applicable when stepType = GATE)
2108
2108
  // =========================================================================
2109
- gateActor GateActor? // Who must perform the action
2110
- gateAction GateAction? // What action is required
2111
- gateRoleId String? // If gateActor = SPECIFIC_ROLE, which role
2112
- gateInstructions String? @db.Text // Instructions shown to actor
2113
- allowReject Boolean @default(true) // Can the actor reject?
2114
- rejectBehavior GateRejectBehavior? // What happens on reject
2115
- requiresComment Boolean @default(false) // Must actor provide a comment?
2109
+ gateActor GateActor? // Who must perform the action
2110
+ gateAction GateAction? // What action is required
2111
+ gateRoleId String? // If gateActor = SPECIFIC_ROLE, which role
2112
+ gateInstructions String? @db.Text // Instructions shown to actor
2113
+ allowReject Boolean @default(true) // Can the actor reject?
2114
+ rejectBehavior GateRejectBehavior? // What happens on reject
2115
+ requiresComment Boolean @default(false) // Must actor provide a comment?
2116
2116
 
2117
2117
  // Gate action tracking
2118
- gateActedAt DateTime? // When the gate action was performed
2119
- gateActedById String? // Who performed the gate action
2120
- gateActedBy User? @relation("GateActedBy", fields: [gateActedById], references: [id])
2121
- gateDecision String? // APPROVED, REJECTED, ACKNOWLEDGED, etc.
2122
- gateComment String? @db.Text // Comment from actor
2118
+ gateActedAt DateTime? // When the gate action was performed
2119
+ gateActedById String? // Who performed the gate action
2120
+ gateActedBy User? @relation("GateActedBy", fields: [gateActedById], references: [id])
2121
+ gateDecision String? // APPROVED, REJECTED, ACKNOWLEDGED, etc.
2122
+ gateComment String? @db.Text // Comment from actor
2123
2123
 
2124
2124
  // Timing
2125
2125
  dueDate DateTime?