Skip to content

Commit fb385a3

Browse files
authored
chore: update openapi-fetch test fixture (#2313)
1 parent 2264d1d commit fb385a3

File tree

1 file changed

+3
-3
lines changed
  • packages/openapi-fetch/test/examples/schemas

1 file changed

+3
-3
lines changed

packages/openapi-fetch/test/examples/schemas/github.d.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -32229,7 +32229,7 @@ export interface components {
3222932229
* @default RIGHT
3223032230
* @enum {string|null}
3223132231
*/
32232-
start_side: "LEFT" | "RIGHT";
32232+
start_side: "LEFT" | "RIGHT" | null;
3223332233
/**
3223432234
* @description The line of the blob to which the comment applies. The last line of the range for a multi-line comment
3223532235
* @example 2
@@ -33004,7 +33004,7 @@ export interface components {
3300433004
* @default RIGHT
3300533005
* @enum {string|null}
3300633006
*/
33007-
start_side: "LEFT" | "RIGHT";
33007+
start_side: "LEFT" | "RIGHT" | null;
3300833008
/**
3300933009
* @description The line of the blob to which the comment applies. The last line of the range for a multi-line comment
3301033010
* @example 2
@@ -108426,7 +108426,7 @@ export interface operations {
108426108426
/** @description The name of the task for the deployment (e.g., `deploy` or `deploy:migrations`). */
108427108427
task?: string;
108428108428
/** @description The name of the environment that was deployed to (e.g., `staging` or `production`). */
108429-
environment?: string;
108429+
environment?: string | null;
108430108430
/** @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)." */
108431108431
per_page?: components["parameters"]["per-page"];
108432108432
/** @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)." */

0 commit comments

Comments
 (0)