@dakkitor/api-contracts 1.1.22 → 1.1.24

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.
@@ -109,7 +109,7 @@ exports.UpdateActiveSchema = zod_1.z
109
109
  .object({
110
110
  pay: WorkerPaySchema.optional().describe('Updated pay rate and unit'),
111
111
  hoursWorked: zod_1.z.number().min(0).optional().describe('Updated hours worked'),
112
- comment: zod_1.z.string().optional().describe('Updated comment'),
112
+ comment: zod_1.z.string().nullable().optional().describe('Updated comment'),
113
113
  statusSa: exports.ActiveStatusSchema.optional().describe('Updated SA status'),
114
114
  statusFa: exports.ActiveStatusSchema.optional().describe('Updated FA status'),
115
115
  })