Skip to content

Commit 10167ab

Browse files
committed
Ran "make fe-codegen" to update api description following previous commit
1 parent 3d6b520 commit 10167ab

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

packages/openapi/api.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1400,6 +1400,11 @@ components:
14001400
type: object
14011401
FileOpenRequest:
14021402
properties:
1403+
lineNumber:
1404+
anyOf:
1405+
- type: integer
1406+
- type: 'null'
1407+
default: null
14031408
path:
14041409
type: string
14051410
required:

packages/openapi/src/api.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3391,6 +3391,8 @@ export interface components {
33913391
};
33923392
/** FileOpenRequest */
33933393
FileOpenRequest: {
3394+
/** @default null */
3395+
lineNumber?: number | null;
33943396
path: string;
33953397
};
33963398
/** FileSearchRequest */

0 commit comments

Comments
 (0)