@tmlmobilidade/types 20250916.1040.35 → 20250916.1106.34

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.
@@ -185,3 +185,10 @@ export declare const CommentSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type",
185
185
  prev_value?: any;
186
186
  }>;
187
187
  export type Comment = z.infer<typeof CommentSchema>;
188
+ export type NoteComment = z.infer<typeof NoteCommentSchema>;
189
+ export interface FieldChangedComment<T, K extends keyof T> {
190
+ curr_value: T[K];
191
+ field: K;
192
+ prev_value: T[K];
193
+ type: typeof CommentTypeSchema.enum.field_changed;
194
+ }