Skip to content

Commit 7135992

Browse files
Valentin Grünerclaude
andauthored
fix(webapp): regenerate the client after title became optional
PracticeAreaReviewArtifact.title is @nullable on the server and no longer required in openapi.yaml, but the generated client still declared it as always present. CI regenerates the client and fails on any diff, so the two had to be brought back in step. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
1 parent f1144e1 commit 7135992

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

webapp/src/api/types.gen.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3322,7 +3322,7 @@ export type PracticeAreaReviewArtifact = {
33223322
number?: number;
33233323
provider?: 'GITHUB' | 'GITLAB' | 'SLACK' | 'OUTLINE';
33243324
repositoryName?: string;
3325-
title: string;
3325+
title?: string;
33263326
type: string;
33273327
url?: string;
33283328
};

0 commit comments

Comments
 (0)