@tmlmobilidade/types 20250903.2354.49 → 20250904.0.29
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/dist/src/sams/sam.d.ts +2 -1
- package/package.json +1 -1
package/dist/src/sams/sam.d.ts
CHANGED
|
@@ -311,7 +311,8 @@ export interface Sam extends Omit<z.infer<typeof SamSchema>, 'analysis' | 'creat
|
|
|
311
311
|
seen_last_at: null | UnixTimestamp;
|
|
312
312
|
updated_at: UnixTimestamp;
|
|
313
313
|
}
|
|
314
|
-
export interface CreateSamDto extends Omit<z.infer<typeof CreateSamSchema>, 'seen_first_at' | 'seen_last_at'> {
|
|
314
|
+
export interface CreateSamDto extends Omit<z.infer<typeof CreateSamSchema>, 'analysis' | 'seen_first_at' | 'seen_last_at'> {
|
|
315
|
+
analysis: SamAnalysis[];
|
|
315
316
|
seen_first_at: null | UnixTimestamp;
|
|
316
317
|
seen_last_at: null | UnixTimestamp;
|
|
317
318
|
}
|
package/package.json
CHANGED