File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -1929,6 +1929,8 @@ export interface operations {
1929
1929
sortOrder ?: components [ "schemas" ] [ "SortOrder" ] ;
1930
1930
/** @description Filter by participant ID */
1931
1931
participantId ?: number ;
1932
+ /** @description Filter by study ID */
1933
+ studyId ?: number ;
1932
1934
/** @description Filter by study title */
1933
1935
studyTitle ?: string ;
1934
1936
} ;
@@ -2336,7 +2338,7 @@ export interface operations {
2336
2338
type ReadonlyArray < T > = [
2337
2339
Exclude < T , undefined >
2338
2340
] extends [
2339
- any [ ]
2341
+ unknown [ ]
2340
2342
] ? Readonly < Exclude < T , undefined > > : Readonly < Exclude < T , undefined > [ ] > ;
2341
2343
export const userCreationDtoRoleValues : ReadonlyArray < components [ "schemas" ] [ "UserCreationDto" ] [ "role" ] > = [ "ASSISTANT" , "ADMIN" ] ;
2342
2344
export const userResponseDtoRoleValues : ReadonlyArray < components [ "schemas" ] [ "UserResponseDto" ] [ "role" ] > = [ "ASSISTANT" , "ADMIN" ] ;
You can’t perform that action at this time.
0 commit comments