File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ export interface Design {
1515 chart : Record < string , unknown > [ ] ;
1616 source_ids : string [ ] ;
1717 next_action : Record < string , unknown > | null ;
18- referenced_knowledge : Record < string , unknown > [ ] | null ;
18+ referenced_knowledge : Record < string , string [ ] > ;
1919 created_at : string ;
2020 updated_at : string ;
2121}
@@ -34,7 +34,7 @@ export function makeDesign(overrides?: Partial<Design>): Design {
3434 chart : [ ] ,
3535 source_ids : [ ] ,
3636 next_action : null ,
37- referenced_knowledge : null ,
37+ referenced_knowledge : { } ,
3838 created_at : "2026-01-01T00:00:00" ,
3939 updated_at : "2026-01-01T00:00:00" ,
4040 ...overrides ,
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ export interface Design {
8484 methodology : Methodology | null ;
8585 source_ids : string [ ] ;
8686 next_action : Record < string , unknown > | null ;
87- referenced_knowledge : Record < string , unknown > [ ] | null ;
87+ referenced_knowledge : Record < string , string [ ] > ;
8888 created_at : string ;
8989 updated_at : string ;
9090}
You can’t perform that action at this time.
0 commit comments