We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d6b520 commit 10167abCopy full SHA for 10167ab
packages/openapi/api.yaml
@@ -1400,6 +1400,11 @@ components:
1400
type: object
1401
FileOpenRequest:
1402
properties:
1403
+ lineNumber:
1404
+ anyOf:
1405
+ - type: integer
1406
+ - type: 'null'
1407
+ default: null
1408
path:
1409
type: string
1410
required:
packages/openapi/src/api.ts
@@ -3391,6 +3391,8 @@ export interface components {
3391
};
3392
/** FileOpenRequest */
3393
FileOpenRequest: {
3394
+ /** @default null */
3395
+ lineNumber?: number | null;
3396
path: string;
3397
3398
/** FileSearchRequest */
0 commit comments