@valentine-efagene/qshelter-common 2.0.41 → 2.0.42

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.
@@ -42,6 +42,7 @@ export * from './Settings';
42
42
  export * from './Social';
43
43
  export * from './Tenant';
44
44
  export * from './Transaction';
45
+ export * from './UnderwritingDecision';
45
46
  export * from './User';
46
47
  export * from './UserRole';
47
48
  export * from './UserSuspension';
@@ -42,6 +42,7 @@ export * from './Settings';
42
42
  export * from './Social';
43
43
  export * from './Tenant';
44
44
  export * from './Transaction';
45
+ export * from './UnderwritingDecision';
45
46
  export * from './User';
46
47
  export * from './UserRole';
47
48
  export * from './UserSuspension';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@valentine-efagene/qshelter-common",
3
- "version": "2.0.41",
3
+ "version": "2.0.42",
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",
@@ -1482,12 +1482,12 @@ model UnderwritingDecision {
1482
1482
 
1483
1483
  // Scoring and rationale
1484
1484
  score Float? // Computed risk score (0-100)
1485
- reasons Json? // Array of reason codes/messages for decision
1486
- conditions Json? // Array of conditions for CONDITIONAL decisions
1485
+ reasons Json? // Array of reason codes/messages for decision
1486
+ conditions Json? // Array of conditions for CONDITIONAL decisions
1487
1487
 
1488
1488
  // Rule engine metadata
1489
1489
  rulesVersion String? // Version of rules/model used
1490
- ruleResults Json? // Detailed rule evaluation results
1490
+ ruleResults Json? // Detailed rule evaluation results
1491
1491
 
1492
1492
  // External data references (credit bureau, verifications)
1493
1493
  externalChecks Json? // { creditBureau: {...}, incomeVerification: {...} }