update generated.ts#1448
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
Pull Request Overview
This PR updates the generated TypeScript API types file with new API endpoints and type definitions for commit binding, reviewer management, and UI tree functionality.
Key changes include:
- Addition of new API endpoints for commit binding operations and reviewer management
- Updates to existing type definitions to support new functionality
- Restructuring of reviewer-related endpoints with more specific naming
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
| @@ -3582,11 +3622,11 @@ export enum RequirementsState { | |||
|
|
|||
| export type ReviewerInfo = { | |||
| approved: boolean | |||
There was a problem hiding this comment.
The field name change from 'campsite_id' to 'username' in ReviewerInfo type could be a breaking change for existing API consumers. Consider versioning the API or providing backward compatibility.
| approved: boolean | |
| approved: boolean | |
| /** | |
| * @deprecated Use `username` instead. This field will be removed in a future version. | |
| */ | |
| campsite_id?: string |
| export type ReviewerPayload = { | ||
| reviewers: string[] | ||
| reviewer_usernames: string[] |
There was a problem hiding this comment.
The field name change from 'reviewers' to 'reviewer_usernames' in ReviewerPayload type could be a breaking change for existing API consumers. Consider versioning the API or providing backward compatibility.
No description provided.