Skip to content

Commit

Permalink
Change name props temporary in generated models to avoid pipeline fail
Browse files Browse the repository at this point in the history
  • Loading branch information
mheggelund committed Oct 19, 2023
1 parent 8409d62 commit 29dea74
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/api/generated/models/AnalogueList.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@

export type AnalogueList = {
analogueId?: string;
name?: string | null;
name: string;
description?: string | null;
};
2 changes: 1 addition & 1 deletion src/api/generated/models/ParameterList.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
export type ParameterList = {
parameterId?: string;
identifier?: string | null;
name?: string | null;
name: string;
description?: string | null;
};

0 comments on commit 29dea74

Please sign in to comment.