Skip to content

Commit

Permalink
Fix MergeRequestSchema.closed_at property type (#3381)
Browse files Browse the repository at this point in the history
  • Loading branch information
kouak committed Aug 17, 2023
1 parent d3e8e34 commit 98ca75a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/resources/MergeRequests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export interface MergeRequestSchema extends CondensedMergeRequestSchema {
merged_by: MappedOmit<UserSchema, 'created_at'> | null;
merged_at: string | null;
closed_by: MappedOmit<UserSchema, 'created_at'> | null;
closed_at: MappedOmit<UserSchema, 'created_at'> | null;
closed_at: string | null;
target_branch: string;
source_branch: string;
user_notes_count: number;
Expand Down

0 comments on commit 98ca75a

Please sign in to comment.