Skip to content

chore: update openapi-fetch test fixture #2313

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 10, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/openapi-fetch/test/examples/schemas/github.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32229,7 +32229,7 @@ export interface components {
* @default RIGHT
* @enum {string|null}
*/
start_side: "LEFT" | "RIGHT";
start_side: "LEFT" | "RIGHT" | null;
/**
* @description The line of the blob to which the comment applies. The last line of the range for a multi-line comment
* @example 2
Expand Down Expand Up @@ -33004,7 +33004,7 @@ export interface components {
* @default RIGHT
* @enum {string|null}
*/
start_side: "LEFT" | "RIGHT";
start_side: "LEFT" | "RIGHT" | null;
/**
* @description The line of the blob to which the comment applies. The last line of the range for a multi-line comment
* @example 2
Expand Down Expand Up @@ -108426,7 +108426,7 @@ export interface operations {
/** @description The name of the task for the deployment (e.g., `deploy` or `deploy:migrations`). */
task?: string;
/** @description The name of the environment that was deployed to (e.g., `staging` or `production`). */
environment?: string;
environment?: string | null;
/** @description The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." */
per_page?: components["parameters"]["per-page"];
/** @description The page number of the results to fetch. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." */
Expand Down