Skip to content

Commit eb9214d

Browse files
committed
feat: adjust thread object types to be clonable
1 parent 2d83043 commit eb9214d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

apps/api/src/instrument-records/thread-types.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
export type RecordType = {
22
computedMeasures: null | { [key: string]: unknown };
3-
date: Date;
3+
date: string;
44
id: string;
55
instrumentId: string;
66
session: {
7-
date: Date;
7+
date: string;
88
id: string;
99
type: 'IN_PERSON' | 'REMOTE' | 'RETROSPECTIVE';
1010
user: null | {
1111
username: string;
1212
};
1313
};
1414
subject: {
15-
dateOfBirth: Date | null;
15+
age: number;
1616
groupIds: string[];
1717
id: string;
1818
sex: string;

0 commit comments

Comments
 (0)