Skip to content

Commit

Permalink
chore: Fix required fields
Browse files Browse the repository at this point in the history
  • Loading branch information
d-beezee committed Aug 7, 2024
1 parent 2bd10bb commit 3ddfd16
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions src/reference/openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10709,6 +10709,8 @@ components:
type: boolean
x-stoplight:
id: 6imsh5mbep30d
required:
- value
required:
- type
- properties:
Expand All @@ -10731,6 +10733,8 @@ components:
type: boolean
x-stoplight:
id: wiocd6n2pq0z5
required:
- value
required:
- type
type: object
Expand Down
6 changes: 3 additions & 3 deletions src/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -806,16 +806,16 @@ export interface components {
| {
type: components["schemas"]["PreselectionQuestionMultiple"];
options?: {
value?: string;
value: string;
isInvalid?: boolean;
}[];
}
| {
type: components["schemas"]["PreselectionQuestionCuf"];
options?: {
value?: number;
value: number;
isInvalid?: boolean;
};
}[];
}
);
/** Project */
Expand Down

0 comments on commit 3ddfd16

Please sign in to comment.