File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ import type { RecordArrayFieldValue } from '@douglasneuroinformatics/libui-form-types' ;
12import type { LicenseIdentifier } from '@opendatacapture/licenses' ;
23import type { ConditionalKeys , Merge , SetRequired } from 'type-fest' ;
34import type { z as z3 } from 'zod/v3' ;
@@ -104,7 +105,7 @@ type UnilingualClientInstrumentDetails = ClientInstrumentDetails<Language>;
104105type MultilingualClientInstrumentDetails = ClientInstrumentDetails < Language [ ] > ;
105106
106107/** @public */
107- type InstrumentMeasureValue = boolean | Date | number | string | undefined ;
108+ type InstrumentMeasureValue = boolean | Date | number | RecordArrayFieldValue [ ] | string | undefined ;
108109
109110/** @public */
110111type InstrumentMeasureVisibility = 'hidden' | 'visible' ;
Original file line number Diff line number Diff line change @@ -97,6 +97,7 @@ const $InstrumentMeasureValue: z.ZodType<InstrumentMeasureValue> = z.union([
9797 z . boolean ( ) ,
9898 z . number ( ) ,
9999 z . date ( ) ,
100+ z . array ( z . any ( ) ) ,
100101 z . undefined ( )
101102] ) ;
102103
You can’t perform that action at this time.
0 commit comments