Skip to content

Commit

Permalink
Fix snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
kubk committed Jun 23, 2023
1 parent 4c9d206 commit e6083a3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/TypeScriptGeneratorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,9 @@ class StudentNotesUpdateInput {}
#[Dto]
class StudentNotesInput {}
#[Dto]
class StudentNotesOutput {}
class StudentNotesOutput {
public string $id;
}
#[ApiResource(
collectionOperations: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ export type StudentNotesInput = {
};

export type StudentNotesOutput = {
id: string;
};

export type StudentNotesUpdateInput = {
Expand Down

0 comments on commit e6083a3

Please sign in to comment.