Skip to content

Commit 8d242bf

Browse files
chore(build): auto-generate schemas
1 parent 98a616a commit 8d242bf

2 files changed

Lines changed: 41 additions & 0 deletions

File tree

after/codesettings-schemas/luau_lsp.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -375,18 +375,24 @@
375375
},
376376
"luau-lsp.plugin.enabled": {
377377
"default": false,
378+
"deprecationMessage": "Deprecated: Use luau-lsp.studioPlugin.enabled instead.",
379+
"markdownDeprecationMessage": "**Deprecated**: Use `luau-lsp.studioPlugin.enabled` instead.",
378380
"markdownDescription": "Use Roblox Studio Plugin to provide DataModel information",
379381
"scope": "window",
380382
"type": "boolean"
381383
},
382384
"luau-lsp.plugin.maximumRequestBodySize": {
383385
"default": "3mb",
386+
"deprecationMessage": "Deprecated: Use luau-lsp.studioPlugin.maximumRequestBodySize instead.",
387+
"markdownDeprecationMessage": "**Deprecated**: Use `luau-lsp.studioPlugin.maximumRequestBodySize` instead.",
384388
"markdownDescription": "The maximum request body size accepted from the plugin, in a string representation parse-able by the [bytes](https://www.npmjs.com/package/bytes) library",
385389
"scope": "window",
386390
"type": "string"
387391
},
388392
"luau-lsp.plugin.port": {
389393
"default": 3667,
394+
"deprecationMessage": "Deprecated: Use luau-lsp.studioPlugin.port instead.",
395+
"markdownDeprecationMessage": "**Deprecated**: Use `luau-lsp.studioPlugin.port` instead.",
390396
"markdownDescription": "Port number to connect to the Studio Plugin",
391397
"scope": "window",
392398
"type": "number"
@@ -538,6 +544,24 @@
538544
"scope": "resource",
539545
"type": "boolean"
540546
},
547+
"luau-lsp.studioPlugin.enabled": {
548+
"default": false,
549+
"markdownDescription": "Use Roblox Studio Plugin to provide DataModel information",
550+
"scope": "window",
551+
"type": "boolean"
552+
},
553+
"luau-lsp.studioPlugin.maximumRequestBodySize": {
554+
"default": "3mb",
555+
"markdownDescription": "The maximum request body size accepted from the plugin, in a string representation parse-able by the [bytes](https://www.npmjs.com/package/bytes) library",
556+
"scope": "window",
557+
"type": "string"
558+
},
559+
"luau-lsp.studioPlugin.port": {
560+
"default": 3667,
561+
"markdownDescription": "Port number to connect to the Studio Plugin",
562+
"scope": "window",
563+
"type": "number"
564+
},
541565
"luau-lsp.types.definitionFiles": {
542566
"additionalProperties": {
543567
"type": "string"

lua/codesettings/generated/annotations.lua

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16291,6 +16291,22 @@
1629116291
-- Whether the VSCode filesystem watchers are used to regenerate the sourcemap. If disabled, delegates to the generator process. If using `rojo`, this command stops using `--watch`
1629216292
---@field useVSCodeWatcher boolean?
1629316293

16294+
---@class lsp.luau_lsp.StudioPlugin
16295+
-- Use Roblox Studio Plugin to provide DataModel information
16296+
---@field enabled boolean?
16297+
-- The maximum request body size accepted from the plugin, in a string representation parse-able by the [bytes](https://www.npmjs.com/package/bytes) library
16298+
--
16299+
-- ```lua
16300+
-- default = "3mb"
16301+
-- ```
16302+
---@field maximumRequestBodySize string?
16303+
-- Port number to connect to the Studio Plugin
16304+
--
16305+
-- ```lua
16306+
-- default = 3667
16307+
-- ```
16308+
---@field port number?
16309+
1629416310
---@class lsp.luau_lsp.Types
1629516311
-- A mapping of package names to paths of definition files to load in to the type checker. Note that definition file syntax is currently unstable and may change at any time
1629616312
--
@@ -16347,6 +16363,7 @@
1634716363
---@field server lsp.luau_lsp.Server?
1634816364
---@field signatureHelp lsp.luau_lsp.SignatureHelp?
1634916365
---@field sourcemap lsp.luau_lsp.Sourcemap?
16366+
---@field studioPlugin lsp.luau_lsp.StudioPlugin?
1635016367
---@field types lsp.luau_lsp.Types?
1635116368

1635216369
---@class lsp.luau_lsp

0 commit comments

Comments
 (0)